Index: .env
===================================================================
--- .env	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ .env	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+ADMIN_KEY=admin-key123
Index: lan-frontend/.env
===================================================================
--- lan-frontend/.env	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/.env	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+VITE_API_BASE=http://192.168.11.232:5555
Index: lan-frontend/src/App.jsx
===================================================================
--- lan-frontend/src/App.jsx	(revision 640ed89213ad0086dc8379de00b8d102057ead1f)
+++ lan-frontend/src/App.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -1,1169 +1,171 @@
-import React, { useEffect, useState } from "react";
-import './App.css';
+import React from "react";
+import {useEffect, useMemo, useState} from "react";
+import "./styles/theme.css";
 
-function App() {
-  const [computers, setComputers] = useState([]);
-  const [filteredComputers, setFilteredComputers] = useState([]);
-  const [stats, setStats] = useState(null);
-  const [selectedComputer, setSelectedComputer] = useState(null);
-  const [computerDetails, setComputerDetails] = useState(null);
-  const [loadingDetails, setLoadingDetails] = useState(false);
-  const [performanceData, setPerformanceData] = useState([]);
-  const [eventDistribution, setEventDistribution] = useState([]);
-  const [networkTraffic, setNetworkTraffic] = useState([]);
-  const [topProcesses, setTopProcesses] = useState([]);
-   // Бои за графикони
-  const CHART_COLORS = {
-    primary: '#2563eb',
-    secondary: '#7c3aed',
-    accentGreen: '#10b981',
-    accentOrange: '#f59e0b',
-    accentRed: '#ef4444',
-    lightBlue: '#93c5fd',
-    lightPurple: '#c4b5fd'
-  };
+import TopBar from "./components/TopBar";
+import ComputerCard from "./components/ComputerCard";
+import ComputerDetailsModal from "./components/ComputerDetailsModal";
+import AIAssistantDrawer from "./components/AIAssistantDrawer";
 
-  // Функција за вчитување на податоци за графикони
-  const loadChartData = () => {
-    // Перформанс податоци (симулирани, треба да ги земеш од API)
-    const mockPerfData = Array.from({ length: 24 }, (_, i) => ({
-      hour: `${i}:00`,
-      cpu: 20 + Math.random() * 30,
-      memory: 30 + Math.random() * 40,
-      network: Math.random() * 100
-    }));
-    setPerformanceData(mockPerfData);
+export default function App() {
+    const [stats, setStats] = useState(null);
+    const [computers, setComputers] = useState([]);
+    const [loading, setLoading] = useState(true);
+    const [lastUpdated, setLastUpdated] = useState(null);
 
-    // Дистрибуција на настани
-    const mockEventDist = [
-      { name: 'Process Create', value: 45, color: CHART_COLORS.primary },
-      { name: 'Network', value: 25, color: CHART_COLORS.secondary },
-      { name: 'File Create', value: 15, color: CHART_COLORS.accentGreen },
-      { name: 'Registry', value: 10, color: CHART_COLORS.accentOrange },
-      { name: 'Other', value: 5, color: CHART_COLORS.accentRed }
-    ];
-    setEventDistribution(mockEventDist);
+    const [query, setQuery] = useState("");
+    const [status, setStatus] = useState("");
 
-    // Мрежен сообраќај
-    const mockNetworkData = Array.from({ length: 12 }, (_, i) => ({
-      time: `${i * 2}:00`,
-      inbound: 50 + Math.random() * 200,
-      outbound: 30 + Math.random() * 150
-    }));
-    setNetworkTraffic(mockNetworkData);
+    const [selectedComputer, setSelectedComputer] = useState(null);
+    const [aiOpen, setAiOpen] = useState(false);
+    const [aiScope, setAiScope] = useState(null);
+    const [selectedEnv, setSelectedEnv] = useState("default");
 
-    // Топ процеси
-    const mockTopProcesses = [
-      { name: 'chrome.exe', cpu: 25, memory: 1200 },
-      { name: 'python.exe', cpu: 18, memory: 800 },
-      { name: 'explorer.exe', cpu: 12, memory: 300 },
-      { name: 'svchost.exe', cpu: 8, memory: 200 },
-      { name: 'node.exe', cpu: 6, memory: 500 }
-    ];
-    setTopProcesses(mockTopProcesses);
-  };
+    async function refresh() {
+        try {
+            setLoading(true);
+            const [s, c] = await Promise.all([
+                fetch("/api/stats").then((r) => r.json()),
+                fetch("/api/computers", {
+                    headers: {"X-Env": selectedEnv},
+                }).then((r) => r.json()),
+            ]);
+            setStats(s);
+            setComputers(Array.isArray(c) ? c : []);
+            setLastUpdated(new Date().toISOString());
+        } catch (e) {
+            console.error("refresh error", e);
+        } finally {
+            setLoading(false);
+        }
+    }
 
-  useEffect(() => {
-    loadChartData();
-    // Автоматско освежување на графикони
-    const chartInterval = setInterval(loadChartData, 30000);
-    return () => clearInterval(chartInterval);
-  }, []);
-  // Filter state
-  const [filters, setFilters] = useState({
-    status: "all",
-    search: "",
-    os: "all",
-    minCpu: 0,
-    minRam: 0
-  });
+    useEffect(() => {
+        refresh();
+    }, [selectedEnv]);
 
-  // AI chat state
-  const [chatQuestion, setChatQuestion] = useState("");
-  const [chatAnswer, setChatAnswer] = useState("");
-  const [chatLoading, setChatLoading] = useState(false);
-  const [chatComputer, setChatComputer] = useState("");
-  const [chatHistory, setChatHistory] = useState([]);
-  const [isChatOpen, setIsChatOpen] = useState(true);
-  const [showWelcome, setShowWelcome] = useState(true);
+    const filtered = useMemo(() => {
+        const q = query.trim().toLowerCase();
+        return (computers || [])
+            .filter((c) => (status ? c.status === status : true))
+            .filter((c) => {
+                if (!q) return true;
+                const hay = [c.name, c.user, c.ip, c.os, c.status].filter(Boolean).join(" ").toLowerCase();
+                return hay.includes(q);
+            });
+    }, [computers, query, status]);
 
-  // Modal tabs state
-  const [activeTab, setActiveTab] = useState('security');
-  const [sysmonData, setSysmonData] = useState(null);
-  const [networkData, setNetworkData] = useState(null);
-  const [loadingSysmon, setLoadingSysmon] = useState(false);
-  const [loadingNetwork, setLoadingNetwork] = useState(false);
-  const [selectedSysmonProcess, setSelectedSysmonProcess] = useState(null);
-  const [selectedNetworkItem, setSelectedNetworkItem] = useState(null);
+    return (
+        <div className="app-wrap">
+            <TopBar
+                onOpenAI={() => setAiOpen(true)}
+                onRefresh={refresh}
+                lastUpdated={lastUpdated}
+                onEnvChange={(env) => setSelectedEnv(env)}
+                selectedEnv={selectedEnv}
+            />
 
-  // Load main data
-  useEffect(() => {
-    loadComputers();
-    loadStats();
-    const interval = setInterval(() => {
-      loadComputers();
-      loadStats();
-    }, 30000);
-    return () => clearInterval(interval);
-  }, []);
+            {/* STATS */}
+            <div className="stats-grid">
+                <div className="stat-card">
+                    <div className="label">Total Computers</div>
+                    <div className="value">{computers.length}</div>
+                    <div className="sub">Monitored Systems</div>
+                </div>
 
-  // Apply filters
-  useEffect(() => {
-    let result = computers;
-    if (filters.status !== "all") {
-      result = result.filter(c => c.status === filters.status);
-    }
-    if (filters.os !== "all") {
-      result = result.filter(c => c.os && c.os.toLowerCase().includes(filters.os.toLowerCase()));
-    }
-    if (filters.minCpu > 0) {
-      result = result.filter(c => (c.avg_cpu || 0) >= filters.minCpu);
-    }
-    if (filters.minRam > 0) {
-      result = result.filter(c => (c.avg_ram || 0) >= filters.minRam);
-    }
-    if (filters.search.trim()) {
-      const searchTerm = filters.search.toLowerCase();
-      result = result.filter(c =>
-        c.name.toLowerCase().includes(searchTerm) ||
-        (c.user && c.user.toLowerCase().includes(searchTerm)) ||
-        (c.ip && c.ip.includes(searchTerm))
-      );
-    }
-    setFilteredComputers(result);
-  }, [computers, filters]);
+                <div className="stat-card">
+                    <div className="label">Sysmon Events (24h)</div>
+                    <div className="value">{stats?.total_sysmon_events ?? "—"}</div>
+                    <div className="sub">Security Events</div>
+                </div>
 
-  const loadComputers = () => {
-    fetch("/api/computers")
-      .then((r) => r.json())
-      .then(data => setComputers(data))
-      .catch((err) => console.error("API error:", err));
-  };
-
-  const loadStats = () => {
-    fetch("/api/stats")
-      .then((r) => r.json())
-      .then(setStats)
-      .catch((err) => console.error("API error:", err));
-  };
-
-  const openComputer = (name) => {
-    setSelectedComputer(name);
-    setLoadingDetails(true);
-    setComputerDetails(null);
-    setActiveTab('security');
-    setSysmonData(null);
-    setNetworkData(null);
-
-    fetch(`/api/computer/${encodeURIComponent(name)}`)
-      .then((r) => r.json())
-      .then((data) => {
-        setComputerDetails(data);
-        setLoadingDetails(false);
-      })
-      .catch((err) => {
-        console.error("API error:", err);
-        setLoadingDetails(false);
-      });
-  };
-
-  // Load Sysmon processes
-const loadSysmonProcesses = () => {
-  if (!selectedComputer) return;
-  setLoadingSysmon(true);
-  setSelectedSysmonProcess(null);
-
-  // КОРИГИРАЈ ГО ОВА URL
-  fetch(`/api/computer/${encodeURIComponent(selectedComputer)}/sysmon`)
-    .then((r) => {
-      if (!r.ok) throw new Error(`HTTP ${r.status}`);
-      return r.json();
-    })
-    .then((data) => {
-      console.log("Sysmon data received:", data);
-
-      // Ако data.processes е празна, пробај со детален endpoint
-      if (!data.processes || data.processes.length === 0) {
-        return fetch(`/api/computer/${encodeURIComponent(selectedComputer)}/detailed-sysmon`)
-          .then(r => r.json())
-          .then(detailedData => {
-            setSysmonData(detailedData);
-            setLoadingSysmon(false);
-          });
-      }
-
-      setSysmonData(data);
-      setLoadingSysmon(false);
-    })
-    .catch((err) => {
-      console.error("Sysmon API error:", err);
-
-      // Fallback - пробај да земеш Sysmon events од општиот endpoint
-      fetch(`/api/computer/${encodeURIComponent(selectedComputer)}`)
-        .then(r => r.json())
-        .then(fullData => {
-          if (fullData.sysmon_events) {
-            // Конвертирај Sysmon events во процес формат
-            const processes = fullData.sysmon_events.map((ev, idx) => ({
-              process_id: ev.event_id,
-              process_name: ev.event_type,
-              timestamp: ev.timestamp,
-              message: ev.message,
-              details: ev.details || {}
-            }));
-
-            setSysmonData({
-              computer_name: selectedComputer,
-              processes: processes,
-              count: processes.length
-            });
-          }
-          setLoadingSysmon(false);
-        })
-        .catch(() => {
-          setLoadingSysmon(false);
-        });
-    });
-};
-  // Load Network connections
-const loadNetworkConnections = () => {
-  if (!selectedComputer) return;
-  setLoadingNetwork(true);
-  setSelectedNetworkItem(null);
-
-  // КОРИГИРАЈ ГО ОВА URL
-  fetch(`/api/computer/${encodeURIComponent(selectedComputer)}/network`)
-    .then((r) => {
-      if (!r.ok) throw new Error(`HTTP ${r.status}`);
-      return r.json();
-    })
-    .then((data) => {
-      console.log("Network data received:", data);
-
-      setNetworkData(data);
-      setLoadingNetwork(false);
-    })
-    .catch((err) => {
-      console.error("Network API error:", err);
-
-      // Fallback - пробај да земеш network од општиот endpoint
-      fetch(`/api/computer/${encodeURIComponent(selectedComputer)}`)
-        .then(r => r.json())
-        .then(fullData => {
-          if (fullData.network_connections) {
-            const connections = fullData.network_connections.map((conn, idx) => ({
-              pid: conn.pid,
-              process_name: conn.process_name,
-              local_address: conn.local_address,
-              remote_address: conn.remote_address,
-              status: conn.status,
-              timestamp: conn.timestamp,
-              // Додади ги овие полиња за да match-не со очекуваниот формат
-              local_port: conn.local_address?.split(':')?.[1] || '',
-              remote_port: conn.remote_address?.split(':')?.[1] || '',
-              protocol: 'TCP'
-            }));
-
-            setNetworkData({
-              computer_name: selectedComputer,
-              connections: connections,
-              count: connections.length
-            });
-          }
-          setLoadingNetwork(false);
-        })
-        .catch(() => {
-          setLoadingNetwork(false);
-        });
-    });
-};
-  const formatTime = (iso) => {
-    if (!iso) return "-";
-    const d = new Date(iso);
-    return d.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit', second: '2-digit' });
-  };
-
-  const formatDate = (iso) => {
-    if (!iso) return "-";
-    const d = new Date(iso);
-    return d.toLocaleDateString();
-  };
-
-  const askAssistant = async () => {
-    if (!chatQuestion.trim()) return;
-    const question = chatQuestion;
-    setChatLoading(true);
-    setChatQuestion("");
-    setShowWelcome(false);
-
-    const newHistory = [...chatHistory, {
-      type: "question",
-      content: question,
-      computer: chatComputer,
-      timestamp: new Date().toISOString()
-    }];
-    setChatHistory(newHistory);
-
-    try {
-      const res = await fetch("/api/chat", {
-        method: "POST",
-        headers: { "Content-Type": "application/json" },
-        body: JSON.stringify({
-          question: question,
-          computer_name: chatComputer || null,
-        }),
-      });
-
-      const answer = await res.json();
-      const finalAnswer = answer.answer || answer.error || "I couldn't process that request.";
-
-      setChatHistory([...newHistory, {
-        type: "answer",
-        content: finalAnswer,
-        timestamp: new Date().toISOString()
-      }]);
-    } catch (err) {
-      setChatHistory([...newHistory, {
-        type: "answer",
-        content: "⚠️ Connection error. Please check the server.",
-        timestamp: new Date().toISOString()
-      }]);
-    } finally {
-      setChatLoading(false);
-    }
-  };
-
-  const resetFilters = () => {
-    setFilters({
-      status: "all",
-      search: "",
-      os: "all",
-      minCpu: 0,
-      minRam: 0
-    });
-  };
-
-  const clearChat = () => {
-    setChatHistory([]);
-    setChatAnswer("");
-    setShowWelcome(true);
-  };
-
-  const closeModal = () => {
-    setSelectedComputer(null);
-    setComputerDetails(null);
-    setSysmonData(null);
-    setNetworkData(null);
-    setSelectedSysmonProcess(null);
-    setSelectedNetworkItem(null);
-  };
-
-  const quickQuestions = [
-    "Show security alerts from yesterday",
-    "Which devices have high CPU usage?",
-    "List suspicious network connections",
-    "Show recent Sysmon events",
-    "Display offline devices"
-  ];
-
-  return (
-    <div className="app-container">
-      {/* Main Content */}
-      <main className="main-content">
-        {/* Top Navigation */}
-        <nav className="top-nav">
-          <div className="nav-left">
-            <div className="logo">
-              <div className="logo-icon">🛡️</div>
-              <div className="logo-text">
-                <h1>LAN Sentinel</h1>
-                <span className="logo-subtitle">Enterprise Security Dashboard</span>
-              </div>
-            </div>
-          </div>
-
-          <div className="nav-center">
-            <div className="search-bar">
-              <input
-                type="text"
-                placeholder="Search devices..."
-                value={filters.search}
-                onChange={(e) => setFilters({...filters, search: e.target.value})}
-              />
-              <span className="search-icon">🔍</span>
-            </div>
-          </div>
-
-          <div className="nav-right">
-            <button
-              className={`ai-toggle-btn ${isChatOpen ? 'active' : ''}`}
-              onClick={() => setIsChatOpen(!isChatOpen)}
-            >
-              <span className="ai-icon">🤖</span>
-              <span>AI Assistant</span>
-            </button>
-            <button className="refresh-btn" onClick={loadComputers}>
-              <span className="refresh-icon">↻</span>
-              Refresh
-            </button>
-            <div className="user-profile">
-              <div className="profile-avatar">AD</div>
-            </div>
-          </div>
-        </nav>
-
-        {/* Stats Overview */}
-        <section className="stats-overview">
-          <div className="stats-header">
-            <h2>Network Overview</h2>
-            <div className="stats-time">
-              Last updated: {new Date().toLocaleTimeString()}
-            </div>
-          </div>
-
-          <div className="stats-grid">
-            <div className="stat-card">
-              <div className="stat-main">
-                <span className="stat-number">{computers.length}</span>
-                <span className="stat-label">Total Devices</span>
-              </div>
-              <div className="stat-icon">🖥️</div>
+                <div className="stat-card">
+                    <div className="label">Network Connections (24h)</div>
+                    <div className="value">{stats?.total_network_connections ?? "—"}</div>
+                    <div className="sub">Captured Connections</div>
+                </div>
             </div>
 
-            <div className="stat-card online">
-              <div className="stat-main">
-                <span className="stat-number">{computers.filter(c => c.status === 'online').length}</span>
-                <span className="stat-label">Online</span>
-              </div>
-              <div className="stat-trend">
-                <span className="trend-up">↑</span>
-                <span>{computers.length > 0 ? Math.round((computers.filter(c => c.status === 'online').length/computers.length)*100) : 0}%</span>
-              </div>
+            {/* FILTERS */}
+            <div className="panel" style={{marginBottom: 14}}>
+                <div className="panel-head">
+                    <div className="panel-title">Filters</div>
+                    <div style={{color: "var(--dim)", fontSize: 12}}>
+                        {loading ? "Refreshing…" : `${filtered.length} shown`}
+                    </div>
+                </div>
+                <div className="panel-body">
+                    <div className="filters">
+                        <input
+                            className="input"
+                            value={query}
+                            onChange={(e) => setQuery(e.target.value)}
+                            placeholder="Search by name / user / ip / os…"
+                        />
+
+                        <select className="select" value={status} onChange={(e) => setStatus(e.target.value)}>
+                            <option value="">All status</option>
+                            <option value="online">Online</option>
+                            <option value="idle">Idle</option>
+                            <option value="offline">Offline</option>
+                        </select>
+
+                        <button className="btn primary" onClick={refresh}>Refresh</button>
+                    </div>
+                </div>
             </div>
 
-            <div className="stat-card idle">
-              <div className="stat-main">
-                <span className="stat-number">{computers.filter(c => c.status === 'idle').length}</span>
-                <span className="stat-label">Idle</span>
-              </div>
-              <div className="stat-icon">⏸️</div>
+            {/* COMPUTERS */}
+            <div className="panel">
+                <div className="panel-head">
+                    <div className="panel-title">Connected Computers</div>
+                    <div style={{display: "flex", gap: 10, alignItems: "center"}}>
+                        <span className="pill">{filtered.length} computers</span>
+                        <button className="btn" onClick={() => {
+                            setQuery("");
+                            setStatus("");
+                        }}>Reset
+                        </button>
+                    </div>
+                </div>
+                <div className="panel-body">
+                    <div className="computers-grid">
+                        {filtered.map((c) => (
+                            <ComputerCard
+                                key={c.name}
+                                c={c}
+                                onOpen={(pc) => {
+                                    setSelectedComputer(pc);
+                                    setAiScope(pc.name);
+                                }}
+                            />
+                        ))}
+                        {filtered.length === 0 && (
+                            <div style={{color: "var(--dim)"}}>No computers match filter.</div>
+                        )}
+                    </div>
+                </div>
             </div>
 
-            <div className="stat-card offline">
-              <div className="stat-main">
-                <span className="stat-number">{computers.filter(c => c.status === 'offline').length}</span>
-                <span className="stat-label">Offline</span>
-              </div>
-              <div className="stat-icon">🔴</div>
-            </div>
+            {/* DETAILS MODAL */}
+            <ComputerDetailsModal
+                open={!!selectedComputer}
+                computer={selectedComputer}
+                onClose={() => setSelectedComputer(null)}
+                onAskAI={(name) => {
+                    setAiScope(name);
+                    setAiOpen(true);
+                }}
+            />
 
-            <div className="stat-card security">
-              <div className="stat-main">
-                <span className="stat-number">
-                  {stats ? stats.total_sysmon_events.toLocaleString() : "0"}
-                </span>
-                <span className="stat-label">Sysmon Events</span>
-              </div>
-              <div className="stat-badge">24h</div>
-            </div>
-
-            <div className="stat-card alerts">
-              <div className="stat-main">
-                <span className="stat-number">
-                  {stats ? stats.security_alerts || 0 : "0"}
-                </span>
-                <span className="stat-label">Alerts</span>
-              </div>
-              <div className="stat-icon">🚨</div>
-            </div>
-          </div>
-        </section>
-
-        {/* Main Dashboard */}
-        <div className="dashboard-grid">
-          {/* Left Sidebar - Filters */}
-          <aside className="filter-sidebar">
-            <div className="filter-section">
-              <h3>Filters</h3>
-              <div className="filter-group">
-                <label>Status</label>
-                <div className="filter-tags">
-                  {["all", "online", "idle", "offline"].map(status => (
-                    <button
-                      key={status}
-                      className={`filter-tag ${filters.status === status ? 'active' : ''}`}
-                      onClick={() => setFilters({...filters, status})}
-                    >
-                      {status === 'all' ? 'All' : status}
-                    </button>
-                  ))}
-                </div>
-              </div>
-
-              <div className="filter-group">
-                <label>Operating System</label>
-                <select
-                  value={filters.os}
-                  onChange={(e) => setFilters({...filters, os: e.target.value})}
-                  className="filter-select"
-                >
-                  <option value="all">All OS</option>
-                  {[...new Set(computers.map(c => c.os).filter(Boolean))].map(os => (
-                    <option key={os} value={os}>{os}</option>
-                  ))}
-                </select>
-              </div>
-
-              <div className="filter-group">
-                <label>CPU Usage ≥ {filters.minCpu}%</label>
-                <input
-                  type="range"
-                  min="0"
-                  max="100"
-                  value={filters.minCpu}
-                  onChange={(e) => setFilters({...filters, minCpu: parseInt(e.target.value)})}
-                  className="range-slider"
-                />
-              </div>
-
-              <div className="filter-group">
-                <label>RAM Usage ≥ {filters.minRam}%</label>
-                <input
-                  type="range"
-                  min="0"
-                  max="100"
-                  value={filters.minRam}
-                  onChange={(e) => setFilters({...filters, minRam: parseInt(e.target.value)})}
-                  className="range-slider"
-                />
-              </div>
-
-              <button onClick={resetFilters} className="reset-filters-btn">
-                Reset Filters
-              </button>
-            </div>
-
-            <div className="filter-section">
-              <h3>Quick Actions</h3>
-              <button className="action-btn" onClick={loadComputers}>
-                <span className="action-icon">↻</span>
-                Refresh Data
-              </button>
-              <button className="action-btn" onClick={() => setIsChatOpen(true)}>
-                <span className="action-icon">🤖</span>
-                Open AI Assistant
-              </button>
-            </div>
-          </aside>
-
-          {/* Main Content Area */}
-          <div className="content-area">
-            <div className="content-header">
-              <div>
-                <h2>Network Devices</h2>
-                <p className="content-subtitle">{filteredComputers.length} devices found</p>
-              </div>
-              <div className="header-actions">
-                <select className="sort-select">
-                  <option>Last Seen</option>
-                  <option>Name</option>
-                  <option>CPU Usage</option>
-                  <option>Status</option>
-                </select>
-              </div>
-            </div>
-
-            {/* Devices Grid */}
-            <div className="devices-grid">
-              {filteredComputers.map((c) => (
-                <div
-                  key={c.name}
-                  className={`device-card ${c.status}`}
-                  onClick={() => openComputer(c.name)}
-                >
-                  <div className="device-header">
-                    <div className="device-title">
-                      <div className="device-avatar">
-                        {c.os?.includes("Windows") ? "🪟" :
-                         c.os?.includes("Linux") ? "🐧" :
-                         c.os?.includes("Mac") ? "🍎" : "💻"}
-                      </div>
-                      <div>
-                        <h3>{c.name}</h3>
-                        <p className="device-user">{c.user || "Unknown"}</p>
-                      </div>
-                    </div>
-                    <div className={`status-indicator ${c.status}`}>
-                      <div className="status-dot"></div>
-                      {c.status}
-                    </div>
-                  </div>
-
-                  <div className="device-info">
-                    <div className="info-row">
-                      <span className="info-label">IP</span>
-                      <span className="info-value">{c.ip}</span>
-                    </div>
-                    <div className="info-row">
-                      <span className="info-label">OS</span>
-                      <span className="info-value">{c.os}</span>
-                    </div>
-                    <div className="info-row">
-                      <span className="info-label">Last Active</span>
-                      <span className="info-value">{formatTime(c.last_seen)}</span>
-                    </div>
-                  </div>
-
-                  <div className="device-metrics">
-                    <div className="metric">
-                      <div className="metric-header">
-                        <span>CPU</span>
-                        <span className="metric-value">{c.avg_cpu || 0}%</span>
-                      </div>
-                      <div className="progress-bar">
-                        <div
-                          className="progress-fill cpu"
-                          style={{ width: `${Math.min(c.avg_cpu || 0, 100)}%` }}
-                        ></div>
-                      </div>
-                    </div>
-                    <div className="metric">
-                      <div className="metric-header">
-                        <span>Memory</span>
-                        <span className="metric-value">{c.avg_ram || 0}%</span>
-                      </div>
-                      <div className="progress-bar">
-                        <div
-                          className="progress-fill memory"
-                          style={{ width: `${Math.min(c.avg_ram || 0, 100)}%` }}
-                        ></div>
-                      </div>
-                    </div>
-                  </div>
-
-                  <div className="device-footer">
-                    {c.sysmon_available && (
-                      <div className="sysmon-badge">
-                        <span className="sysmon-icon">🛡️</span>
-                        {c.recent_sysmon || 0} events
-                      </div>
-                    )}
-                  </div>
-                </div>
-              ))}
-
-              {filteredComputers.length === 0 && (
-                <div className="empty-state">
-                  <div className="empty-icon">🔍</div>
-                  <h3>No devices match your filters</h3>
-                  <button onClick={resetFilters} className="empty-action-btn">
-                    Reset All Filters
-                  </button>
-                </div>
-              )}
-            </div>
-          </div>
+            {/* AI DRAWER */}
+            <AIAssistantDrawer
+                open={aiOpen}
+                onClose={() => setAiOpen(false)}
+                computers={computers}
+                scope={aiScope}
+                setScope={setAiScope}
+            />
         </div>
-      </main>
-
-      {/* AI Assistant Sidebar */}
-      <div className={`ai-sidebar ${isChatOpen ? 'open' : ''}`}>
-        <div className="ai-header">
-          <div className="ai-title">
-            <div className="ai-avatar">🤖</div>
-            <div>
-              <h3>Security AI Assistant</h3>
-              <p className="ai-subtitle">Powered by LAN Sentinel</p>
-            </div>
-          </div>
-          <button className="close-ai" onClick={() => setIsChatOpen(false)}>
-            ✕
-          </button>
-        </div>
-
-        <div className="ai-content">
-          <div className="chat-container">
-            <div className="chat-history">
-              {showWelcome && (
-                <div className="welcome-message">
-                  <div className="welcome-avatar">🤖</div>
-                  <div className="welcome-content">
-                    <h4>Welcome to Security AI Assistant!</h4>
-                    <p>I can help you analyze security events, monitor network activity, and investigate incidents.</p>
-                    <div className="welcome-questions">
-                      {quickQuestions.map((q, idx) => (
-                        <button
-                          key={idx}
-                          className="quick-question"
-                          onClick={() => {
-                            setChatQuestion(q);
-                            setTimeout(() => askAssistant(), 100);
-                          }}
-                        >
-                          {q}
-                        </button>
-                      ))}
-                    </div>
-                  </div>
-                </div>
-              )}
-
-              {chatHistory.map((msg, idx) => (
-                <div key={idx} className={`chat-message ${msg.type}`}>
-                  <div className="message-avatar">
-                    {msg.type === 'question' ? '👤' : '🤖'}
-                  </div>
-                  <div className="message-content">
-                    <div className="message-header">
-                      <span className="message-sender">
-                        {msg.type === 'question' ? 'You' : 'Security AI'}
-                      </span>
-                      {msg.computer && (
-                        <span className="message-context">
-                          Computer: {msg.computer}
-                        </span>
-                      )}
-                    </div>
-                    <div className="message-text">
-                      {msg.content}
-                    </div>
-                    <div className="message-time">
-                      {new Date(msg.timestamp).toLocaleTimeString([], {
-                        hour: '2-digit',
-                        minute: '2-digit'
-                      })}
-                    </div>
-                  </div>
-                </div>
-              ))}
-
-              {chatLoading && (
-                <div className="chat-message answer">
-                  <div className="message-avatar">🤖</div>
-                  <div className="message-content">
-                    <div className="typing-indicator">
-                      <div></div>
-                      <div></div>
-                      <div></div>
-                    </div>
-                  </div>
-                </div>
-              )}
-            </div>
-
-            <div className="chat-input-area">
-              <select
-                value={chatComputer}
-                onChange={(e) => setChatComputer(e.target.value)}
-                className="chat-select"
-              >
-                <option value="">🌐 All Network</option>
-                {computers.map((c) => (
-                  <option key={c.name} value={c.name}>
-                    {c.name}
-                  </option>
-                ))}
-              </select>
-
-              <div className="input-wrapper">
-                <input
-                  type="text"
-                  placeholder="Ask about security events..."
-                  value={chatQuestion}
-                  onChange={(e) => setChatQuestion(e.target.value)}
-                  onKeyDown={(e) => e.key === 'Enter' && askAssistant()}
-                  className="chat-input"
-                />
-                <button
-                  onClick={askAssistant}
-                  disabled={chatLoading || !chatQuestion.trim()}
-                  className="send-btn"
-                >
-                  {chatLoading ? '...' : '➤'}
-                </button>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-      {/* Enhanced Computer Details Modal */}
-      {selectedComputer && (
-        <div className="modal-overlay" onClick={closeModal}>
-          <div className="modal large" onClick={(e) => e.stopPropagation()}>
-            <div className="modal-header">
-              <div className="modal-title">
-                <h2>{selectedComputer}</h2>
-                <div className="modal-subtitle">
-                  <span className="ip-badge">{computerDetails?.computer?.ip}</span>
-                  <span className="os-badge">{computerDetails?.computer?.os}</span>
-                  <span className={`status-badge ${computerDetails?.computer?.status}`}>
-                    {computerDetails?.computer?.status}
-                  </span>
-                </div>
-              </div>
-              <div className="modal-actions">
-                <button className="modal-btn">
-                  <span className="btn-icon">📊</span>
-                  Report
-                </button>
-                <button className="modal-close" onClick={closeModal}>
-                  ✕
-                </button>
-              </div>
-            </div>
-
-            <div className="modal-content">
-              {loadingDetails ? (
-                <div className="loading-state">
-                  <div className="loader"></div>
-                  <p>Loading device details...</p>
-                </div>
-              ) : (
-                <>
-                  {/* Quick Stats */}
-                  <div className="quick-stats">
-                    <div className="quick-stat">
-                      <div className="stat-icon">⚡</div>
-                      <div className="stat-info">
-                        <div className="stat-value">
-                          {computerDetails?.current_metrics?.cpu_usage || 0}%
-                        </div>
-                        <div className="stat-label">CPU</div>
-                      </div>
-                    </div>
-                    <div className="quick-stat">
-                      <div className="stat-icon">💾</div>
-                      <div className="stat-info">
-                        <div className="stat-value">
-                          {computerDetails?.current_metrics?.ram_usage || 0}%
-                        </div>
-                        <div className="stat-label">RAM</div>
-                      </div>
-                    </div>
-                    <div className="quick-stat">
-                      <div className="stat-icon">📡</div>
-                      <div className="stat-info">
-                        <div className="stat-value">
-                          {computerDetails?.current_metrics?.network_usage || 0}%
-                        </div>
-                        <div className="stat-label">Network</div>
-                      </div>
-                    </div>
-                    <div className="quick-stat">
-                      <div className="stat-icon">🛡️</div>
-                      <div className="stat-info">
-                        <div className="stat-value">
-                          {computerDetails?.recent_sysmon || 0}
-                        </div>
-                        <div className="stat-label">Sysmon Events</div>
-                      </div>
-                    </div>
-                  </div>
-
-                  {/* Tabs */}
-                  <div className="modal-tabs">
-                    <div className="tabs-header">
-                      <button
-                        className={`tab ${activeTab === 'security' ? 'active' : ''}`}
-                        onClick={() => setActiveTab('security')}
-                      >
-                        Security Events
-                      </button>
-                      <button
-                        className={`tab ${activeTab === 'sysmon' ? 'active' : ''}`}
-                        onClick={() => {
-                          setActiveTab('sysmon');
-                          if (!sysmonData) loadSysmonProcesses();
-                        }}
-                      >
-                        Sysmon Processes
-                      </button>
-                      <button
-                        className={`tab ${activeTab === 'network' ? 'active' : ''}`}
-                        onClick={() => {
-                          setActiveTab('network');
-                          if (!networkData) loadNetworkConnections();
-                        }}
-                      >
-                        Network Connections
-                      </button>
-                      <button
-                        className={`tab ${activeTab === 'details' ? 'active' : ''}`}
-                        onClick={() => setActiveTab('details')}
-                      >
-                        System Details
-                      </button>
-                    </div>
-
-                    <div className="tabs-content">
-                      {/* Security Events Tab */}
-                      {activeTab === 'security' && (
-                        <div className="tab-pane active">
-                          <div className="data-table-container">
-                            <table className="data-table">
-                              <thead>
-                                <tr>
-                                  <th>Time</th>
-                                  <th>Event ID</th>
-                                  <th>Type</th>
-                                  <th>Description</th>
-                                </tr>
-                              </thead>
-                              <tbody>
-                                {(computerDetails?.sysmon_events || []).map((ev, idx) => (
-                                  <tr key={idx}>
-                                    <td>{formatTime(ev.timestamp)}</td>
-                                    <td>
-                                      <span className="event-id">#{ev.event_id}</span>
-                                    </td>
-                                    <td>
-                                      <span className={`event-type ${ev.event_type?.toLowerCase()}`}>
-                                        {ev.event_type}
-                                      </span>
-                                    </td>
-                                    <td className="event-desc">
-                                      {ev.message?.slice(0, 100) || 'No description'}
-                                    </td>
-                                  </tr>
-                                ))}
-                              </tbody>
-                            </table>
-                          </div>
-                        </div>
-                      )}
-
-                      {/* Sysmon Processes Tab */}
-                      {activeTab === 'sysmon' && (
-                        <div className="tab-pane active">
-                          <div className="pane-header">
-                            <h3>Sysmon Processes</h3>
-                            <button
-                              onClick={loadSysmonProcesses}
-                              className="refresh-btn-small"
-                              disabled={loadingSysmon}
-                            >
-                              {loadingSysmon ? 'Loading...' : '↻ Refresh'}
-                            </button>
-                          </div>
-
-                          {loadingSysmon ? (
-                            <div className="loading-state">
-                              <div className="loader"></div>
-                              <p>Loading Sysmon processes...</p>
-                            </div>
-                          ) : sysmonData ? (
-                            <div className="data-grid">
-                              <div className="grid-container">
-                                {sysmonData.processes && sysmonData.processes.length > 0 ? (
-                                  <>
-                                    <div className="grid-sidebar">
-                                      <div className="process-list">
-                                        {sysmonData.processes.map((proc, idx) => (
-                                          <div
-                                            key={idx}
-                                            className={`process-item ${selectedSysmonProcess === idx ? 'active' : ''}`}
-                                            onClick={() => setSelectedSysmonProcess(idx)}
-                                          >
-                                            <div className="process-name">
-                                              <strong>{proc.process_name || 'Unknown'}</strong>
-                                            </div>
-                                            <div className="process-pid">
-                                              PID: {proc.process_id}
-                                            </div>
-                                            <div className="process-time">
-                                              {formatTime(proc.timestamp)}
-                                            </div>
-                                          </div>
-                                        ))}
-                                      </div>
-                                    </div>
-                                    <div className="grid-content">
-                                      {selectedSysmonProcess !== null ? (
-                                        <div className="json-viewer">
-                                          <div className="json-header">
-                                            <h4>Process Details (JSON)</h4>
-                                            <button
-                                              className="copy-json"
-                                              onClick={() => navigator.clipboard.writeText(
-                                                JSON.stringify(sysmonData.processes[selectedSysmonProcess], null, 2)
-                                              )}
-                                            >
-                                              📋 Copy JSON
-                                            </button>
-                                          </div>
-                                          <pre className="json-content">
-                                            {JSON.stringify(sysmonData.processes[selectedSysmonProcess], null, 2)}
-                                          </pre>
-                                        </div>
-                                      ) : (
-                                        <div className="select-prompt">
-                                          <div className="prompt-icon">👈</div>
-                                          <p>Select a process from the list to view its JSON data</p>
-                                        </div>
-                                      )}
-                                    </div>
-                                  </>
-                                ) : (
-                                  <div className="empty-data">
-                                    <div className="empty-icon">📄</div>
-                                    <p>No Sysmon processes found</p>
-                                  </div>
-                                )}
-                              </div>
-                            </div>
-                          ) : (
-                            <div className="empty-data">
-                              <p>Click refresh to load Sysmon processes</p>
-                              <button onClick={loadSysmonProcesses} className="load-btn">
-                                Load Sysmon Data
-                              </button>
-                            </div>
-                          )}
-                        </div>
-                      )}
-
-                      {/* Network Connections Tab */}
-                      {activeTab === 'network' && (
-                        <div className="tab-pane active">
-                          <div className="pane-header">
-                            <h3>Network Connections</h3>
-                            <button
-                              onClick={loadNetworkConnections}
-                              className="refresh-btn-small"
-                              disabled={loadingNetwork}
-                            >
-                              {loadingNetwork ? 'Loading...' : '↻ Refresh'}
-                            </button>
-                          </div>
-
-                          {loadingNetwork ? (
-                            <div className="loading-state">
-                              <div className="loader"></div>
-                              <p>Loading network connections...</p>
-                            </div>
-                          ) : networkData ? (
-                            <div className="data-grid">
-                              <div className="grid-container">
-                                {networkData.connections && networkData.connections.length > 0 ? (
-                                  <>
-                                    <div className="grid-sidebar">
-                                      <div className="network-list">
-                                        {networkData.connections.map((conn, idx) => (
-                                          <div
-                                            key={idx}
-                                            className={`network-item ${selectedNetworkItem === idx ? 'active' : ''}`}
-                                            onClick={() => setSelectedNetworkItem(idx)}
-                                          >
-                                            <div className="network-address">
-                                              <strong>{conn.local_address}:{conn.local_port}</strong>
-                                              <div className="arrow">→</div>
-                                              <strong>{conn.remote_address}:{conn.remote_port}</strong>
-                                            </div>
-                                            <div className="network-protocol">
-                                              {conn.protocol} • {conn.state}
-                                            </div>
-                                          </div>
-                                        ))}
-                                      </div>
-                                    </div>
-                                    <div className="grid-content">
-                                      {selectedNetworkItem !== null ? (
-                                        <div className="json-viewer">
-                                          <div className="json-header">
-                                            <h4>Connection Details (JSON)</h4>
-                                            <button
-                                              className="copy-json"
-                                              onClick={() => navigator.clipboard.writeText(
-                                                JSON.stringify(networkData.connections[selectedNetworkItem], null, 2)
-                                              )}
-                                            >
-                                              📋 Copy JSON
-                                            </button>
-                                          </div>
-                                          <pre className="json-content">
-                                            {JSON.stringify(networkData.connections[selectedNetworkItem], null, 2)}
-                                          </pre>
-                                        </div>
-                                      ) : (
-                                        <div className="select-prompt">
-                                          <div className="prompt-icon">👈</div>
-                                          <p>Select a connection to view its JSON data</p>
-                                        </div>
-                                      )}
-                                    </div>
-                                  </>
-                                ) : (
-                                  <div className="empty-data">
-                                    <div className="empty-icon">🌐</div>
-                                    <p>No network connections found</p>
-                                  </div>
-                                )}
-                              </div>
-                            </div>
-                          ) : (
-                            <div className="empty-data">
-                              <p>Click refresh to load network connections</p>
-                              <button onClick={loadNetworkConnections} className="load-btn">
-                                Load Network Data
-                              </button>
-                            </div>
-                          )}
-                        </div>
-                      )}
-
-                      {/* System Details Tab */}
-                      {activeTab === 'details' && computerDetails && (
-                        <div className="tab-pane active">
-                          <div className="details-grid">
-                            <div className="detail-group">
-                              <h4>System Information</h4>
-                              <div className="detail-item">
-                                <span className="detail-label">Hostname:</span>
-                                <span className="detail-value">{computerDetails.computer.name}</span>
-                              </div>
-                              <div className="detail-item">
-                                <span className="detail-label">IP Address:</span>
-                                <span className="detail-value">{computerDetails.computer.ip}</span>
-                              </div>
-                              <div className="detail-item">
-                                <span className="detail-label">OS Version:</span>
-                                <span className="detail-value">{computerDetails.computer.os}</span>
-                              </div>
-                              <div className="detail-item">
-                                <span className="detail-label">Last Seen:</span>
-                                <span className="detail-value">{formatTime(computerDetails.computer.last_seen)}</span>
-                              </div>
-                            </div>
-
-                            <div className="detail-group">
-                              <h4>Current Metrics</h4>
-                              <div className="detail-item">
-                                <span className="detail-label">CPU Usage:</span>
-                                <span className="detail-value">{computerDetails.current_metrics?.cpu_usage || 0}%</span>
-                              </div>
-                              <div className="detail-item">
-                                <span className="detail-label">Memory Usage:</span>
-                                <span className="detail-value">{computerDetails.current_metrics?.ram_usage || 0}%</span>
-                              </div>
-                              <div className="detail-item">
-                                <span className="detail-label">Disk Usage:</span>
-                                <span className="detail-value">{computerDetails.current_metrics?.disk_usage || 0}%</span>
-                              </div>
-                            </div>
-                          </div>
-                        </div>
-                      )}
-                    </div>
-                  </div>
-                </>
-              )}
-            </div>
-          </div>
-        </div>
-      )}
-    </div>
-  );
+    );
 }
-
-export default App;
Index: lan-frontend/src/components/AIAssistantDrawer.jsx
===================================================================
--- lan-frontend/src/components/AIAssistantDrawer.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/components/AIAssistantDrawer.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,101 @@
+import React from "react";
+
+import { useEffect, useRef, useState } from "react";
+
+export default function AIAssistantDrawer({ open, onClose, computers, scope, setScope }) {
+  const [messages, setMessages] = useState([
+    { role: "assistant", text: "Постави прашање за Sysmon, процеси, мрежа. Можеш да избереш компјутер (scope) горе." },
+  ]);
+  const [input, setInput] = useState("");
+  const [sending, setSending] = useState(false);
+  const bottomRef = useRef(null);
+
+  useEffect(() => {
+    if (bottomRef.current) bottomRef.current.scrollIntoView({ behavior: "smooth" });
+  }, [messages, open]);
+
+  async function send() {
+    const q = input.trim();
+    if (!q || sending) return;
+
+    setInput("");
+    setMessages((m) => [...m, { role: "user", text: q }]);
+    setSending(true);
+
+    try {
+      const r = await fetch("/api/chat", {
+        method: "POST",
+        headers: { "Content-Type": "application/json" },
+        body: JSON.stringify({ question: q, computer_name: scope || null }),
+      });
+      const data = await r.json();
+      setMessages((m) => [...m, { role: "assistant", text: data.answer || "(no answer)" }]);
+    } catch (e) {
+      setMessages((m) => [...m, { role: "assistant", text: `Грешка: ${String(e.message || e)}` }]);
+    } finally {
+      setSending(false);
+    }
+  }
+
+  if (!open) return null;
+
+  return (
+    <>
+      <div className="drawer-backdrop" onMouseDown={onClose} />
+      <div className="drawer" onMouseDown={(e) => e.stopPropagation()}>
+        <div className="drawer-head">
+          <div>
+            <div className="drawer-title">🤖 AI Assistant</div>
+            <div className="drawer-sub">Uses /api/chat (RAG over your logs)</div>
+          </div>
+          <button className="btn" onClick={onClose}>Close</button>
+        </div>
+
+        <div style={{ padding: "12px 16px", borderBottom: "1px solid var(--border)" }}>
+          <div className="row">
+            <select className="select" value={scope || ""} onChange={(e) => setScope(e.target.value || null)}>
+              <option value="">All computers</option>
+              {(computers || []).map((c) => (
+                <option key={c.name} value={c.name}>{c.name}</option>
+              ))}
+            </select>
+          </div>
+          <div className="small">Tip: “Top процеси по RAM” или “сомнителни sysmon events”</div>
+        </div>
+
+        <div className="drawer-body">
+          {messages.map((m, i) => (
+            <div key={i} className={`bubble ${m.role === "user" ? "user" : ""}`}>
+              <div style={{ fontSize: 11, color: "var(--dim)", marginBottom: 6 }}>
+                {m.role === "user" ? "You" : "Assistant"}
+              </div>
+              <div style={{ whiteSpace: "pre-wrap" }}>{m.text}</div>
+            </div>
+          ))}
+          <div ref={bottomRef} />
+        </div>
+
+        <div className="drawer-foot">
+          <div className="row">
+            <textarea
+              className="textarea"
+              rows={2}
+              value={input}
+              placeholder="Постави прашање… (Enter = send, Shift+Enter нов ред)"
+              onChange={(e) => setInput(e.target.value)}
+              onKeyDown={(e) => {
+                if (e.key === "Enter" && !e.shiftKey) {
+                  e.preventDefault();
+                  send();
+                }
+              }}
+            />
+            <button className="btn primary" onClick={send} disabled={sending || !input.trim()}>
+              {sending ? "Sending…" : "Send"}
+            </button>
+          </div>
+        </div>
+      </div>
+    </>
+  );
+}
Index: lan-frontend/src/components/ComputerCard.jsx
===================================================================
--- lan-frontend/src/components/ComputerCard.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/components/ComputerCard.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,42 @@
+import React from "react";
+
+function dotClass(status) {
+  if (status === "online") return "dot online";
+  if (status === "idle") return "dot idle";
+  return "dot offline";
+}
+
+export default function ComputerCard({ c, onOpen }) {
+  return (
+    <button className="card" onClick={() => onOpen?.(c)}>
+      <div className="card-head">
+        <div className="card-title">{c.name}</div>
+        <div className={dotClass(c.status)} />
+      </div>
+
+      <div className="meta">
+        <div><span className="dim">🏷 Env:</span> {c.env_name || "default"}</div>
+        <div><span className="dim">👤 User:</span> {c.user || "—"}</div>
+        <div><span className="dim">🌐 IP:</span> {c.ip || "—"}</div>
+        <div><span className="dim">💻 OS:</span> {(c.os || "—").slice(0, 60)}</div>
+        <div><span className="dim">⏰ Last:</span> {c.last_seen ? new Date(c.last_seen).toLocaleTimeString() : "—"}</div>
+        <div><span className="dim">🛡 Sysmon:</span> {c.sysmon_available ? "Yes" : "No"} • {c.recent_sysmon ?? 0} events</div>
+      </div>
+
+      <div className="kpis">
+        <div className="kpi">
+          <div className="k">CPU avg</div>
+          <div className="v">{c.avg_cpu ?? 0}%</div>
+        </div>
+        <div className="kpi">
+          <div className="k">RAM avg</div>
+          <div className="v">{c.avg_ram ?? 0}%</div>
+        </div>
+        <div className="kpi">
+          <div className="k">Logs 24h</div>
+          <div className="v">{c.recent_logs ?? 0}</div>
+        </div>
+      </div>
+    </button>
+  );
+}
Index: lan-frontend/src/components/ComputerDetailsModal.jsx
===================================================================
--- lan-frontend/src/components/ComputerDetailsModal.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/components/ComputerDetailsModal.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,384 @@
+import React, { useEffect, useMemo, useState } from "react";
+
+function severityForEventId(eventId) {
+  const id = parseInt(eventId, 10);
+  const high = new Set([1, 3, 8, 10]);
+  const med = new Set([5, 6, 7, 11, 22]);
+  if (high.has(id)) return "high";
+  if (med.has(id)) return "medium";
+  return "low";
+}
+
+export default function ComputerDetailsModal({ open, computer, onClose, onAskAI }) {
+  const [tab, setTab] = useState("overview");
+  const [loading, setLoading] = useState(false);
+  const [details, setDetails] = useState(null);
+  const [search, setSearch] = useState("");
+
+  // JSON viewer state
+  const [jsonOpen, setJsonOpen] = useState(false);
+  const [jsonTitle, setJsonTitle] = useState("");
+  const [jsonData, setJsonData] = useState(null);
+
+  useEffect(() => {
+    if (!open || !computer?.name) return;
+    let cancelled = false;
+
+    async function load() {
+      try {
+        setLoading(true);
+        const r = await fetch(`/api/computer/${encodeURIComponent(computer.name)}`);
+        const d = await r.json();
+        if (!cancelled) setDetails(d);
+      } catch (e) {
+        console.error("details error", e);
+      } finally {
+        if (!cancelled) setLoading(false);
+      }
+    }
+
+    load();
+    return () => {
+      cancelled = true;
+    };
+  }, [open, computer?.name]);
+
+  const filteredSysmon = useMemo(() => {
+    const list = details?.sysmon_events || [];
+    const q = search.trim().toLowerCase();
+    if (!q) return list;
+    return list.filter((ev) => {
+      const msg = (ev.message || "").toLowerCase();
+      const type = (ev.event_type || "").toLowerCase();
+      const id = String(ev.event_id ?? "");
+      return msg.includes(q) || type.includes(q) || id.includes(q);
+    });
+  }, [details, search]);
+
+  function openJson(ev) {
+    // server ти враќа: { event_id, event_type, message, timestamp, details }
+    setJsonTitle(`Sysmon Event ${ev?.event_id ?? ""} • ${ev?.event_type ?? ""}`);
+    setJsonData(ev?.details ?? ev); // ако нема details, покажи цел event
+    setJsonOpen(true);
+  }
+
+  function closeJson() {
+    setJsonOpen(false);
+    setJsonTitle("");
+    setJsonData(null);
+  }
+
+  if (!open) return null;
+
+  return (
+    <>
+      <div className="backdrop" onMouseDown={onClose}>
+        <div className="modal" onMouseDown={(e) => e.stopPropagation()}>
+          <div className="modal-head">
+            <div>
+              <div className="modal-title">{computer.name}</div>
+              <div className="modal-sub">
+                {computer.ip || "—"} • {computer.user || "—"} • {computer.status || "—"}
+              </div>
+            </div>
+
+            <div style={{ display: "flex", gap: 10, alignItems: "center" }}>
+              <div className="tabs">
+                <button className={`tab ${tab === "overview" ? "active" : ""}`} onClick={() => setTab("overview")}>
+                  Overview
+                </button>
+                <button className={`tab ${tab === "sysmon" ? "active" : ""}`} onClick={() => setTab("sysmon")}>
+                  Sysmon
+                </button>
+                <button className={`tab ${tab === "processes" ? "active" : ""}`} onClick={() => setTab("processes")}>
+                  Processes
+                </button>
+                <button className={`tab ${tab === "network" ? "active" : ""}`} onClick={() => setTab("network")}>
+                  Network
+                </button>
+              </div>
+              <button className="btn" onClick={onClose}>
+                Close
+              </button>
+            </div>
+          </div>
+
+          <div style={{ padding: 16 }}>
+            {loading && <div style={{ color: "#94a3b8" }}>Loading…</div>}
+
+            {!loading && details && tab === "overview" && (
+              <div className="panel">
+                <div className="panel-head">
+                  <div className="panel-title">System Overview</div>
+                  <button className="btn primary" onClick={() => onAskAI(computer.name)}>
+                    Ask AI about this PC
+                  </button>
+                </div>
+                <div className="panel-body" style={{ display: "grid", gap: 10 }}>
+                  <div>
+                    <b>User:</b> {details.computer?.user}
+                  </div>
+                  <div>
+                    <b>IP:</b> {details.computer?.ip}
+                  </div>
+                  <div>
+                    <b>OS:</b> {details.computer?.os}
+                  </div>
+                  <div>
+                    <b>First seen:</b> {details.computer?.first_seen}
+                  </div>
+                  <div>
+                    <b>Last seen:</b> {details.computer?.last_seen}
+                  </div>
+                  <div>
+                    <b>Total logs:</b> {details.computer?.total_logs}
+                  </div>
+                </div>
+              </div>
+            )}
+
+            {!loading && details && tab === "sysmon" && (
+              <div className="panel">
+                <div className="panel-head" style={{ alignItems: "center" }}>
+                  <div className="panel-title">Sysmon Events</div>
+                  <div style={{ display: "flex", gap: 10, alignItems: "center" }}>
+                    <span className="pill">{filteredSysmon.length} events</span>
+                    <input
+                      className="input"
+                      style={{ maxWidth: 380 }}
+                      placeholder="Search by id / type / message…"
+                      value={search}
+                      onChange={(e) => setSearch(e.target.value)}
+                    />
+                  </div>
+                </div>
+
+                <div className="panel-body">
+                  <div className="table-wrap">
+                    <table>
+                      <thead>
+                        <tr>
+                          <th style={{ width: 90 }}>Time</th>
+                          <th style={{ width: 70 }}>ID</th>
+                          <th style={{ width: 170 }}>Type</th>
+                          <th style={{ width: 110 }}>Severity</th>
+                          <th>Message</th>
+                          <th style={{ width: 90 }}>View</th>
+                        </tr>
+                      </thead>
+                      <tbody>
+                        {filteredSysmon.slice(0, 200).map((ev, idx) => {
+                          const sev = severityForEventId(ev.event_id);
+                          return (
+                            <tr key={idx}>
+                              <td>{ev.timestamp ? new Date(ev.timestamp).toLocaleTimeString() : "—"}</td>
+                              <td>
+                                <b>{ev.event_id}</b>
+                              </td>
+                              <td>{ev.event_type}</td>
+                              <td>
+                                <span className={`badge ${sev}`}>{sev.toUpperCase()}</span>
+                              </td>
+                              <td
+                                style={{
+                                  fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
+                                  fontSize: 12,
+                                }}
+                              >
+                                {(ev.message || "").slice(0, 140)}
+                              </td>
+                              <td>
+                                <button className="btn" onClick={() => openJson(ev)}>
+                                  View
+                                </button>
+                              </td>
+                            </tr>
+                          );
+                        })}
+
+                        {filteredSysmon.length === 0 && (
+                          <tr>
+                            <td colSpan="6" style={{ color: "#94a3b8" }}>
+                              No sysmon events.
+                            </td>
+                          </tr>
+                        )}
+                      </tbody>
+                    </table>
+                  </div>
+
+                  {filteredSysmon.length > 200 && (
+                    <div style={{ marginTop: 10, color: "#94a3b8", fontSize: 12 }}>
+                      Showing first 200 (for speed).
+                    </div>
+                  )}
+                </div>
+              </div>
+            )}
+
+            {!loading && details && tab === "processes" && (
+              <div className="panel">
+                <div className="panel-head">
+                  <div className="panel-title">Recent Processes</div>
+                </div>
+                <div className="panel-body">
+                  <div className="table-wrap">
+                    <table>
+                      <thead>
+                        <tr>
+                          <th>Time</th>
+                          <th>PID</th>
+                          <th>Name</th>
+                          <th>User</th>
+                          <th>CPU%</th>
+                          <th>RAM MB</th>
+                          <th>Cmdline</th>
+                        </tr>
+                      </thead>
+                      <tbody>
+                        {(details.recent_processes || []).slice(0, 150).map((p, idx) => (
+                          <tr key={idx}>
+                            <td>{p.timestamp ? new Date(p.timestamp).toLocaleTimeString() : "—"}</td>
+                            <td>
+                              <b>{p.pid}</b>
+                            </td>
+                            <td>{p.name}</td>
+                            <td>{p.username || "—"}</td>
+                            <td>{p.cpu_percent ?? 0}</td>
+                            <td>{p.memory_mb ?? 0}</td>
+                            <td
+                              style={{
+                                fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
+                                fontSize: 12,
+                              }}
+                            >
+                              {(p.cmdline || "").slice(0, 120)}
+                            </td>
+                          </tr>
+                        ))}
+                        {(details.recent_processes || []).length === 0 && (
+                          <tr>
+                            <td colSpan="7" style={{ color: "#94a3b8" }}>
+                              No process data.
+                            </td>
+                          </tr>
+                        )}
+                      </tbody>
+                    </table>
+                  </div>
+                </div>
+              </div>
+            )}
+
+            {!loading && details && tab === "network" && (
+              <div className="panel">
+                <div className="panel-head">
+                  <div className="panel-title">Network Connections</div>
+                </div>
+                <div className="panel-body">
+                  <div className="table-wrap">
+                    <table>
+                      <thead>
+                        <tr>
+                          <th>Time</th>
+                          <th>PID</th>
+                          <th>Process</th>
+                          <th>Local</th>
+                          <th>Remote</th>
+                          <th>Status</th>
+                        </tr>
+                      </thead>
+                      <tbody>
+                        {(details.network_connections || []).slice(0, 150).map((n, idx) => (
+                          <tr key={idx}>
+                            <td>{n.timestamp ? new Date(n.timestamp).toLocaleTimeString() : "—"}</td>
+                            <td>
+                              <b>{n.pid}</b>
+                            </td>
+                            <td>{n.process_name || "—"}</td>
+                            <td
+                              style={{
+                                fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
+                                fontSize: 12,
+                              }}
+                            >
+                              {n.local_address || "—"}
+                            </td>
+                            <td
+                              style={{
+                                fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
+                                fontSize: 12,
+                              }}
+                            >
+                              {n.remote_address || "—"}
+                            </td>
+                            <td>{n.status || "—"}</td>
+                          </tr>
+                        ))}
+                        {(details.network_connections || []).length === 0 && (
+                          <tr>
+                            <td colSpan="6" style={{ color: "#94a3b8" }}>
+                              No network data.
+                            </td>
+                          </tr>
+                        )}
+                      </tbody>
+                    </table>
+                  </div>
+                </div>
+              </div>
+            )}
+
+            {!loading && !details && <div style={{ color: "#94a3b8" }}>No details.</div>}
+          </div>
+        </div>
+      </div>
+
+      {/* JSON VIEWER MODAL */}
+      {jsonOpen && (
+        <div className="backdrop" onMouseDown={closeJson}>
+          <div className="modal" onMouseDown={(e) => e.stopPropagation()} style={{ width: "min(900px, 96vw)" }}>
+            <div className="modal-head">
+              <div>
+                <div className="modal-title">View JSON</div>
+                <div className="modal-sub">{jsonTitle}</div>
+              </div>
+              <div style={{ display: "flex", gap: 10 }}>
+                <button
+                  className="btn"
+                  onClick={() => {
+                    const txt = JSON.stringify(jsonData ?? {}, null, 2);
+                    navigator.clipboard.writeText(txt);
+                  }}
+                >
+                  Copy
+                </button>
+                <button className="btn" onClick={closeJson}>
+                  Close
+                </button>
+              </div>
+            </div>
+            <div style={{ padding: 16 }}>
+              <pre
+                style={{
+                  margin: 0,
+                  maxHeight: "70vh",
+                  overflow: "auto",
+                  padding: 14,
+                  borderRadius: 12,
+                  border: "1px solid rgba(148,163,184,0.25)",
+                  background: "rgba(2,6,23,0.35)",
+                  color: "rgba(226,232,240,0.95)",
+                  fontSize: 12,
+                  lineHeight: 1.5,
+                }}
+              >
+                {JSON.stringify(jsonData ?? {}, null, 2)}
+              </pre>
+            </div>
+          </div>
+        </div>
+      )}
+    </>
+  );
+}
Index: lan-frontend/src/components/TopBar.jsx
===================================================================
--- lan-frontend/src/components/TopBar.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/components/TopBar.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,532 @@
+import React, { useEffect, useMemo, useState } from "react";
+
+export default function TopBar({ onOpenAI, onRefresh, lastUpdated, onEnvChange }) {
+  const [open, setOpen] = useState(false);
+
+  // admin auth
+  const [adminKey, setAdminKey] = useState("");
+  const [adminSession, setAdminSession] = useState("");
+
+  // env + tokens
+  const [envs, setEnvs] = useState(["default"]);
+  const [selectedEnv, setSelectedEnv] = useState("default");
+  const [newEnvName, setNewEnvName] = useState("");
+  const [token, setToken] = useState("");
+
+  const [busy, setBusy] = useState(false);
+  const [error, setError] = useState("");
+
+  // helper: fetch env list after login
+  async function loadEnvironments(session) {
+    const r = await fetch("/api/admin/environments", {
+      headers: { "X-Admin-Session": session },
+    });
+    const data = await r.json();
+    if (!r.ok) throw new Error(data?.error || `HTTP ${r.status}`);
+
+    const list = data.environments?.length ? data.environments : ["default"];
+    setEnvs(list);
+
+    // ако тековниот не постои, стави првиот од листата
+    if (!list.includes(selectedEnv)) {
+      setSelectedEnv(list[0]);
+      onEnvChange?.(list[0]);
+    }
+  }
+
+  async function login() {
+    setError("");
+    setToken("");
+
+    if (!adminKey.trim()) {
+      setError("Внеси admin key.");
+      return;
+    }
+
+    setBusy(true);
+    try {
+      const r = await fetch("/api/admin/login", {
+        method: "POST",
+        headers: { "Content-Type": "application/json" },
+        body: JSON.stringify({ admin_key: adminKey.trim() }),
+      });
+      const data = await r.json();
+      if (!r.ok) throw new Error(data?.error || `HTTP ${r.status}`);
+
+      const session = data.session;
+      setAdminSession(session);
+      await loadEnvironments(session);
+    } catch (e) {
+      setError(String(e.message || e));
+    } finally {
+      setBusy(false);
+    }
+  }
+
+  function logout() {
+    setAdminSession("");
+    setAdminKey("");
+    setToken("");
+    setError("");
+    setEnvs(["default"]);
+    setSelectedEnv("default");
+    onEnvChange?.("default");
+  }
+
+  async function createEnvironment() {
+    setError("");
+    setToken("");
+    if (!newEnvName.trim()) {
+      setError("Внеси име за environment.");
+      return;
+    }
+
+    setBusy(true);
+    try {
+      const r = await fetch("/api/admin/environments", {
+        method: "POST",
+        headers: {
+          "Content-Type": "application/json",
+          "X-Admin-Session": adminSession,
+        },
+        body: JSON.stringify({ name: newEnvName.trim() }),
+      });
+
+      const data = await r.json();
+      if (!r.ok) throw new Error(data?.error || `HTTP ${r.status}`);
+
+      // reload list, select new env
+      await loadEnvironments(adminSession);
+      setSelectedEnv(newEnvName.trim());
+      onEnvChange?.(newEnvName.trim());
+      setNewEnvName("");
+    } catch (e) {
+      setError(String(e.message || e));
+    } finally {
+      setBusy(false);
+    }
+  }
+
+  async function generateToken() {
+    setError("");
+    setToken("");
+    if (!selectedEnv) {
+      setError("Избери environment.");
+      return;
+    }
+
+    setBusy(true);
+    try {
+      const r = await fetch("/api/admin/tokens", {
+        method: "POST",
+        headers: {
+          "Content-Type": "application/json",
+          "X-Admin-Session": adminSession,
+        },
+        body: JSON.stringify({ env: selectedEnv }),
+      });
+
+      const data = await r.json();
+      if (!r.ok) throw new Error(data?.error || `HTTP ${r.status}`);
+
+      setToken(data.token || "");
+    } catch (e) {
+      setError(String(e.message || e));
+    } finally {
+      setBusy(false);
+    }
+  }
+
+  async function copyToken() {
+    if (!token) return;
+    await navigator.clipboard.writeText(token);
+  }
+
+  function changeEnv(val) {
+    setSelectedEnv(val);
+    setToken("");
+    onEnvChange?.(val);
+  }
+
+  const prettyTime = useMemo(() => {
+    if (!lastUpdated) return "Loading…";
+    try {
+      return `Updated ${new Date(lastUpdated).toLocaleTimeString()}`;
+    } catch {
+      return "Updated";
+    }
+  }, [lastUpdated]);
+
+  return (
+    <>
+      <style>{`
+        /* ---- TopBar scoped theme ---- */
+        .tb-wrap{
+          position: sticky;
+          top: 0;
+          z-index: 20;
+          backdrop-filter: blur(10px);
+          background: linear-gradient(180deg, rgba(10,16,32,0.92), rgba(10,16,32,0.75));
+          border-bottom: 1px solid rgba(96,165,250,0.18);
+        }
+        .tb-inner{
+          max-width: 1200px;
+          margin: 0 auto;
+          padding: 14px 18px;
+          display: flex;
+          align-items: center;
+          justify-content: space-between;
+          gap: 14px;
+        }
+
+        .tb-brand{
+          display:flex;
+          align-items:center;
+          gap: 12px;
+          min-width: 260px;
+        }
+        .tb-badge{
+          width: 44px;
+          height: 44px;
+          border-radius: 14px;
+          display:flex;
+          align-items:center;
+          justify-content:center;
+          background:
+            radial-gradient(120px 80px at 30% 20%, rgba(96,165,250,0.55), transparent 60%),
+            linear-gradient(135deg, rgba(30,64,175,0.75), rgba(15,23,42,0.85));
+          border: 1px solid rgba(96,165,250,0.25);
+          box-shadow: 0 10px 25px rgba(0,0,0,0.25);
+        }
+        .tb-title{
+          margin:0;
+          font-size: 16px;
+          font-weight: 900;
+          letter-spacing: 0.4px;
+          color: rgba(255,255,255,0.95);
+          line-height: 1.2;
+        }
+        .tb-sub{
+          margin: 2px 0 0 0;
+          font-size: 12px;
+          color: rgba(191,219,254,0.85);
+        }
+        .tb-sub span{
+          color: rgba(96,165,250,0.95);
+          font-weight: 800;
+        }
+
+        .tb-actions{
+          display:flex;
+          align-items:center;
+          gap: 10px;
+          flex-wrap: wrap;
+          justify-content: flex-end;
+        }
+
+        .tb-pill{
+          display:inline-flex;
+          align-items:center;
+          gap: 8px;
+          padding: 8px 12px;
+          border-radius: 999px;
+          background: rgba(30,41,59,0.65);
+          border: 1px solid rgba(96,165,250,0.22);
+          color: rgba(255,255,255,0.9);
+          font-weight: 800;
+          font-size: 12px;
+          box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
+        }
+        .tb-pill .dot{
+          width: 8px;
+          height: 8px;
+          border-radius: 999px;
+          background: rgba(96,165,250,0.95);
+          box-shadow: 0 0 0 3px rgba(96,165,250,0.15);
+        }
+
+        .tb-btn{
+          appearance: none;
+          border: 1px solid rgba(96,165,250,0.22);
+          background: rgba(15,23,42,0.55);
+          color: rgba(255,255,255,0.9);
+          padding: 9px 12px;
+          border-radius: 12px;
+          font-weight: 800;
+          font-size: 13px;
+          cursor: pointer;
+          transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
+          box-shadow: 0 8px 20px rgba(0,0,0,0.18);
+        }
+        .tb-btn:hover{
+          transform: translateY(-1px);
+          background: rgba(30,41,59,0.65);
+          border-color: rgba(96,165,250,0.38);
+        }
+        .tb-btn:disabled{
+          opacity: .6;
+          cursor: not-allowed;
+          transform: none;
+        }
+        .tb-btn.primary{
+          background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(56,189,248,0.7));
+          border-color: rgba(147,197,253,0.35);
+          color: rgba(5,12,24,0.95);
+        }
+        .tb-btn.primary:hover{
+          background: linear-gradient(135deg, rgba(59,130,246,0.95), rgba(34,211,238,0.75));
+        }
+
+        /* ---- Modal ---- */
+        .tb-backdrop{
+          position: fixed;
+          inset: 0;
+          background: rgba(2,6,23,0.72);
+          backdrop-filter: blur(6px);
+          display:flex;
+          align-items: center;
+          justify-content: center;
+          padding: 20px;
+          z-index: 50;
+        }
+        .tb-modal{
+          width: min(860px, 96vw);
+          border-radius: 18px;
+          background:
+            radial-gradient(900px 420px at 20% 0%, rgba(96,165,250,0.18), transparent 60%),
+            radial-gradient(700px 350px at 80% 10%, rgba(34,211,238,0.10), transparent 55%),
+            rgba(10,16,32,0.92);
+          border: 1px solid rgba(96,165,250,0.22);
+          box-shadow: 0 30px 80px rgba(0,0,0,0.45);
+          overflow: hidden;
+        }
+        .tb-modal-head{
+          padding: 16px 18px;
+          display:flex;
+          align-items: center;
+          justify-content: space-between;
+          gap: 10px;
+          border-bottom: 1px solid rgba(96,165,250,0.18);
+        }
+        .tb-modal-title{
+          color: rgba(255,255,255,0.96);
+          font-weight: 900;
+          letter-spacing: .3px;
+        }
+        .tb-modal-sub{
+          color: rgba(191,219,254,0.8);
+          font-size: 12px;
+          margin-top: 2px;
+        }
+        .tb-grid{
+          padding: 16px;
+          display:grid;
+          gap: 12px;
+        }
+        .tb-card{
+          border-radius: 16px;
+          background: rgba(15,23,42,0.55);
+          border: 1px solid rgba(96,165,250,0.18);
+          padding: 14px;
+        }
+        .tb-card-head{
+          display:flex;
+          align-items:center;
+          justify-content: space-between;
+          margin-bottom: 10px;
+        }
+        .tb-card-title{
+          color: rgba(255,255,255,0.92);
+          font-weight: 900;
+        }
+        .tb-help{
+          color: rgba(148,163,184,0.95);
+          font-size: 12px;
+          margin-top: 8px;
+          line-height: 1.35;
+        }
+        .tb-input, .tb-select{
+          width: 100%;
+          padding: 10px 12px;
+          border-radius: 12px;
+          border: 1px solid rgba(96,165,250,0.18);
+          background: rgba(2,6,23,0.35);
+          color: rgba(255,255,255,0.92);
+          outline: none;
+          font-weight: 700;
+        }
+        .tb-input::placeholder{ color: rgba(148,163,184,0.75); }
+        .tb-row{
+          display:grid;
+          gap: 10px;
+        }
+        .tb-token{
+          display:flex;
+          align-items:center;
+          justify-content: space-between;
+          gap: 10px;
+          padding: 10px 12px;
+          border-radius: 14px;
+          background: rgba(2,6,23,0.38);
+          border: 1px dashed rgba(147,197,253,0.32);
+          color: rgba(255,255,255,0.92);
+        }
+        .tb-mono{
+          font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+          font-weight: 800;
+          color: rgba(191,219,254,0.95);
+        }
+        .tb-error{
+          border-color: rgba(239,68,68,0.45) !important;
+          background: rgba(127,29,29,0.15) !important;
+          color: rgba(254,202,202,0.95);
+        }
+      `}</style>
+
+      {/* TOPBAR */}
+      <div className="tb-wrap">
+        <div className="tb-inner">
+          <div className="tb-brand">
+            <div className="tb-badge">🛡️</div>
+            <div>
+              <h1 className="tb-title">LAN Security Monitor</h1>
+              <p className="tb-sub">
+                Sysmon Edition • <span>{prettyTime}</span>
+              </p>
+            </div>
+          </div>
+
+          <div className="tb-actions">
+            <span className="tb-pill">
+              <span className="dot" />
+              Env: {selectedEnv}
+            </span>
+            <button className="tb-btn" onClick={onRefresh} disabled={busy}>Refresh</button>
+            <button className="tb-btn" onClick={() => setOpen(true)}>Admin</button>
+            <button className="tb-btn primary" onClick={onOpenAI}>AI Assistant</button>
+          </div>
+        </div>
+      </div>
+
+      {/* MODAL */}
+      {open && (
+        <div className="tb-backdrop" onMouseDown={() => setOpen(false)}>
+          <div className="tb-modal" onMouseDown={(e) => e.stopPropagation()}>
+            <div className="tb-modal-head">
+              <div>
+                <div className="tb-modal-title">Admin Panel</div>
+                <div className="tb-modal-sub">Login ➜ Environments ➜ Generate token</div>
+              </div>
+              <button className="tb-btn" onClick={() => setOpen(false)}>Close</button>
+            </div>
+
+            <div className="tb-grid">
+              {/* 1) LOGIN */}
+              {!adminSession ? (
+                <div className="tb-card">
+                  <div className="tb-card-head">
+                    <div className="tb-card-title">Step 1: Admin login</div>
+                  </div>
+
+                  <div className="tb-row">
+                    <input
+                      className="tb-input"
+                      type="password"
+                      value={adminKey}
+                      onChange={(e) => setAdminKey(e.target.value)}
+                      placeholder="Enter admin key"
+                    />
+                    <button className="tb-btn primary" onClick={login} disabled={busy}>
+                      {busy ? "Logging in…" : "Login"}
+                    </button>
+                    <div className="tb-help">
+                      Admin key е само за логирање. После тоа користиме <b>session token</b>.
+                    </div>
+                  </div>
+                </div>
+              ) : (
+                <>
+                  {/* 2) ENV SELECT */}
+                  <div className="tb-card">
+                    <div className="tb-card-head">
+                      <div className="tb-card-title">Step 2: Choose environment</div>
+                      <button className="tb-btn" onClick={logout}>Logout</button>
+                    </div>
+
+                    <div className="tb-row">
+                      <select className="tb-select" value={selectedEnv} onChange={(e) => changeEnv(e.target.value)}>
+                        {envs.map((e) => (
+                          <option key={e} value={e}>{e}</option>
+                        ))}
+                      </select>
+                      <div className="tb-help">
+                        Овој env ќе се користи за dashboard филтрирање + token generation.
+                      </div>
+                    </div>
+                  </div>
+
+                  {/* 3) CREATE ENV */}
+                  <div className="tb-card">
+                    <div className="tb-card-head">
+                      <div className="tb-card-title">Create new environment</div>
+                    </div>
+
+                    <div className="tb-row">
+                      <input
+                        className="tb-input"
+                        value={newEnvName}
+                        onChange={(e) => setNewEnvName(e.target.value)}
+                        placeholder="e.g. school-lab / staging"
+                      />
+                      <button className="tb-btn" onClick={createEnvironment} disabled={busy}>
+                        {busy ? "Creating…" : "Create"}
+                      </button>
+                    </div>
+                  </div>
+
+                  {/* 4) TOKEN */}
+                  <div className="tb-card">
+                    <div className="tb-card-head">
+                      <div className="tb-card-title">Step 3: Generate token (for clients)</div>
+                    </div>
+
+                    <div className="tb-row">
+                      <button className="tb-btn primary" onClick={generateToken} disabled={busy}>
+                        {busy ? "Generating…" : `Generate token for "${selectedEnv}"`}
+                      </button>
+
+                      {token && (
+                        <>
+                          <div className="tb-token">
+                            <div>
+                              <div style={{ fontWeight: 900, color: "rgba(255,255,255,0.92)" }}>Token</div>
+                              <div className="tb-mono">
+                                {token.slice(0, 12)}…{token.slice(-10)}
+                              </div>
+                            </div>
+                            <button className="tb-btn" onClick={copyToken}>Copy</button>
+                          </div>
+
+                          <div className="tb-help">
+                            Клиентот мора да праќа header: <b>X-Env-Token</b> со овој token на <b>/receive</b>.
+                          </div>
+                        </>
+                      )}
+                    </div>
+                  </div>
+                </>
+              )}
+
+              {error && (
+                <div className="tb-card tb-error">
+                  <div style={{ fontWeight: 900 }}>Error</div>
+                  <div style={{ marginTop: 6 }}>{error}</div>
+                </div>
+              )}
+            </div>
+          </div>
+        </div>
+      )}
+    </>
+  );
+}
Index: lan-frontend/src/index.css
===================================================================
--- lan-frontend/src/index.css	(revision 640ed89213ad0086dc8379de00b8d102057ead1f)
+++ lan-frontend/src/index.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -1563,2 +1563,6 @@
   background: var(--secondary-color);
 }
+
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
Index: lan-frontend/src/styles/theme.css
===================================================================
--- lan-frontend/src/styles/theme.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/styles/theme.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,403 @@
+/* =========================
+   LAN Security Monitor Theme
+   Dark Navy + Light Blue
+   ========================= */
+
+:root{
+  --bg0: #070b16;
+  --bg1: #0a1020;
+  --bg2: #0e1730;
+
+  --panel: rgba(15,23,42,0.62);
+  --panel2: rgba(2,6,23,0.35);
+
+  --border: rgba(96,165,250,0.18);
+  --border2: rgba(147,197,253,0.28);
+
+  --text: rgba(255,255,255,0.92);
+  --muted: rgba(191,219,254,0.82);
+  --dim: rgba(148,163,184,0.85);
+
+  --accent: rgba(96,165,250,0.95);   /* light blue */
+  --accent2: rgba(34,211,238,0.80);  /* cyan */
+  --danger: rgba(239,68,68,0.95);
+  --warn: rgba(245,158,11,0.95);
+  --ok: rgba(34,197,94,0.95);
+
+  --shadow: 0 18px 45px rgba(0,0,0,0.32);
+  --shadow2: 0 10px 25px rgba(0,0,0,0.22);
+
+  --r12: 12px;
+  --r16: 16px;
+  --r18: 18px;
+}
+
+*{ box-sizing: border-box; }
+html, body { height: 100%; }
+body{
+  margin:0;
+  color: var(--text);
+  background:
+    radial-gradient(900px 460px at 20% -10%, rgba(96,165,250,0.18), transparent 60%),
+    radial-gradient(800px 420px at 80% 0%, rgba(34,211,238,0.10), transparent 55%),
+    radial-gradient(1000px 700px at 50% 120%, rgba(30,64,175,0.16), transparent 60%),
+    linear-gradient(180deg, var(--bg0), var(--bg1) 45%, #060913 100%);
+  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
+}
+
+/* Layout */
+.app-wrap{
+  max-width: 1200px;
+  margin: 0 auto;
+  padding: 16px 18px 40px;
+}
+
+/* =========================
+   Panels
+   ========================= */
+.panel{
+  background: var(--panel);
+  border: 1px solid var(--border);
+  border-radius: var(--r18);
+  box-shadow: var(--shadow2);
+  overflow: hidden;
+  backdrop-filter: blur(10px);
+}
+.panel-head{
+  display:flex;
+  align-items:center;
+  justify-content: space-between;
+  gap: 12px;
+  padding: 14px 16px;
+  border-bottom: 1px solid rgba(96,165,250,0.14);
+  background: linear-gradient(180deg, rgba(2,6,23,0.32), rgba(2,6,23,0.12));
+}
+.panel-title{
+  font-weight: 900;
+  letter-spacing: 0.3px;
+  color: rgba(255,255,255,0.95);
+}
+.panel-body{
+  padding: 16px;
+}
+
+/* small helpers */
+.pill{
+  display:inline-flex;
+  align-items:center;
+  gap: 10px;
+  padding: 8px 12px;
+  border-radius: 999px;
+  background: rgba(30,41,59,0.60);
+  border: 1px solid rgba(96,165,250,0.22);
+  color: rgba(255,255,255,0.92);
+  font-weight: 800;
+  font-size: 12px;
+  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
+}
+.small{
+  font-size: 12px;
+  color: var(--dim);
+  line-height: 1.35;
+}
+.dim{ color: var(--dim); font-weight: 700; }
+
+/* =========================
+   Inputs / Selects / Buttons
+   ========================= */
+.input, .select{
+  width: 100%;
+  padding: 10px 12px;
+  border-radius: var(--r12);
+  border: 1px solid rgba(96,165,250,0.18);
+  background: rgba(2,6,23,0.35);
+  color: rgba(255,255,255,0.92);
+  outline: none;
+  font-weight: 700;
+  transition: border-color .12s ease, background .12s ease, transform .12s ease;
+}
+.input::placeholder{ color: rgba(148,163,184,0.75); }
+.input:focus, .select:focus{
+  border-color: rgba(96,165,250,0.42);
+  background: rgba(2,6,23,0.46);
+}
+
+.btn{
+  appearance: none;
+  border: 1px solid rgba(96,165,250,0.22);
+  background: rgba(15,23,42,0.55);
+  color: rgba(255,255,255,0.92);
+  padding: 9px 12px;
+  border-radius: var(--r12);
+  font-weight: 900;
+  font-size: 13px;
+  cursor: pointer;
+  transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
+  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
+}
+.btn:hover{
+  transform: translateY(-1px);
+  background: rgba(30,41,59,0.65);
+  border-color: rgba(96,165,250,0.38);
+}
+.btn:disabled{
+  opacity: .6;
+  cursor: not-allowed;
+  transform: none;
+}
+.btn.primary{
+  background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(56,189,248,0.70));
+  border-color: rgba(147,197,253,0.35);
+  color: rgba(5,12,24,0.95);
+}
+.btn.primary:hover{
+  background: linear-gradient(135deg, rgba(59,130,246,0.95), rgba(34,211,238,0.75));
+}
+
+/* Filters row */
+.filters{
+  display:grid;
+  grid-template-columns: 1.6fr 0.6fr auto;
+  gap: 10px;
+}
+@media (max-width: 820px){
+  .filters{ grid-template-columns: 1fr; }
+}
+
+/* =========================
+   Stats grid
+   ========================= */
+.stats-grid{
+  display: grid;
+  grid-template-columns: repeat(3, minmax(0, 1fr));
+  gap: 12px;
+  margin: 14px 0;
+}
+@media (max-width: 900px){
+  .stats-grid{ grid-template-columns: 1fr; }
+}
+
+.stat-card{
+  background:
+    radial-gradient(500px 180px at 20% 0%, rgba(96,165,250,0.16), transparent 55%),
+    rgba(15,23,42,0.58);
+  border: 1px solid rgba(96,165,250,0.18);
+  border-radius: var(--r18);
+  padding: 14px 16px;
+  box-shadow: var(--shadow2);
+  backdrop-filter: blur(10px);
+}
+.stat-card .label{
+  color: var(--dim);
+  font-size: 12px;
+  font-weight: 900;
+  letter-spacing: .8px;
+  text-transform: uppercase;
+}
+.stat-card .value{
+  font-size: 28px;
+  font-weight: 1000;
+  margin: 8px 0 2px;
+  color: rgba(255,255,255,0.95);
+}
+.stat-card .sub{
+  color: var(--muted);
+  font-size: 12px;
+}
+
+/* =========================
+   Computers grid + Card
+   ========================= */
+.computers-grid{
+  display:grid;
+  grid-template-columns: repeat(3, minmax(0, 1fr));
+  gap: 12px;
+}
+@media (max-width: 980px){
+  .computers-grid{ grid-template-columns: 1fr; }
+}
+
+.card{
+  width:100%;
+  text-align:left;
+  border-radius: var(--r18);
+  border: 1px solid rgba(96,165,250,0.18);
+  background:
+    radial-gradient(520px 220px at 20% 0%, rgba(96,165,250,0.14), transparent 55%),
+    rgba(15,23,42,0.54);
+  box-shadow: var(--shadow2);
+  padding: 14px;
+  cursor: pointer;
+  transition: transform .14s ease, border-color .14s ease, background .14s ease;
+  backdrop-filter: blur(10px);
+}
+.card:hover{
+  transform: translateY(-3px);
+  border-color: rgba(96,165,250,0.38);
+  background:
+    radial-gradient(520px 220px at 20% 0%, rgba(34,211,238,0.12), transparent 55%),
+    rgba(15,23,42,0.62);
+}
+.card:active{ transform: translateY(-1px); }
+
+.card-head{
+  display:flex;
+  justify-content: space-between;
+  align-items:center;
+  gap: 10px;
+  margin-bottom: 10px;
+}
+.card-title{
+  font-weight: 1000;
+  color: rgba(255,255,255,0.95);
+  letter-spacing: .2px;
+}
+.dot{
+  width: 10px;
+  height: 10px;
+  border-radius: 999px;
+  box-shadow: 0 0 0 4px rgba(255,255,255,0.04);
+}
+.dot.online{ background: var(--ok); box-shadow: 0 0 0 4px rgba(34,197,94,0.12); }
+.dot.idle{ background: var(--warn); box-shadow: 0 0 0 4px rgba(245,158,11,0.12); }
+.dot.offline{ background: rgba(148,163,184,0.8); box-shadow: 0 0 0 4px rgba(148,163,184,0.10); }
+
+.meta{
+  display:grid;
+  gap: 6px;
+  color: rgba(226,232,240,0.92);
+  font-size: 13px;
+  line-height: 1.25;
+}
+
+.kpis{
+  display:grid;
+  grid-template-columns: repeat(3, minmax(0, 1fr));
+  gap: 10px;
+  margin-top: 12px;
+  padding-top: 12px;
+  border-top: 1px solid rgba(96,165,250,0.14);
+}
+.kpi{
+  border-radius: var(--r16);
+  border: 1px solid rgba(96,165,250,0.14);
+  background: rgba(2,6,23,0.30);
+  padding: 10px 10px;
+}
+.kpi .k{
+  font-size: 11px;
+  color: var(--dim);
+  font-weight: 900;
+  letter-spacing: .6px;
+  text-transform: uppercase;
+}
+.kpi .v{
+  margin-top: 6px;
+  font-size: 18px;
+  font-weight: 1000;
+  color: rgba(255,255,255,0.95);
+}
+
+/* =========================
+   Modal (shared classes)
+   ========================= */
+.backdrop{
+  position: fixed;
+  inset: 0;
+  background: rgba(2,6,23,0.72);
+  backdrop-filter: blur(6px);
+  display:flex;
+  align-items:center;
+  justify-content:center;
+  padding: 20px;
+  z-index: 60;
+}
+.modal{
+  width: min(920px, 96vw);
+  border-radius: var(--r18);
+  background:
+    radial-gradient(900px 420px at 20% 0%, rgba(96,165,250,0.18), transparent 60%),
+    radial-gradient(700px 350px at 80% 10%, rgba(34,211,238,0.10), transparent 55%),
+    rgba(10,16,32,0.92);
+  border: 1px solid rgba(96,165,250,0.22);
+  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
+  overflow: hidden;
+}
+.modal-head{
+  padding: 14px 16px;
+  display:flex;
+  align-items:center;
+  justify-content: space-between;
+  gap: 10px;
+  border-bottom: 1px solid rgba(96,165,250,0.18);
+}
+.modal-title{
+  font-weight: 1000;
+  color: rgba(255,255,255,0.95);
+  letter-spacing: .2px;
+}
+.modal-sub{
+  margin-top: 2px;
+  font-size: 12px;
+  color: var(--muted);
+}
+
+/* If you have drawer classes */
+.ai-drawer{
+  position: fixed;
+  top: 0;
+  right: 0;
+  height: 100vh;
+  width: min(420px, 92vw);
+  background:
+    radial-gradient(700px 400px at 20% 0%, rgba(96,165,250,0.18), transparent 55%),
+    rgba(10,16,32,0.94);
+  border-left: 1px solid rgba(96,165,250,0.20);
+  box-shadow: -20px 0 60px rgba(0,0,0,0.35);
+  z-index: 70;
+  padding: 14px;
+}
+.ai-header{
+  font-weight: 1000;
+  color: rgba(255,255,255,0.95);
+  margin-bottom: 10px;
+}
+.ai-messages{
+  height: calc(100vh - 160px);
+  overflow: auto;
+  border-radius: var(--r16);
+  border: 1px solid rgba(96,165,250,0.14);
+  background: rgba(2,6,23,0.28);
+  padding: 10px;
+}
+.ai-msg{
+  color: rgba(226,232,240,0.92);
+  font-size: 13px;
+  line-height: 1.35;
+  padding: 10px;
+  border-radius: 12px;
+  border: 1px solid rgba(96,165,250,0.12);
+  background: rgba(15,23,42,0.45);
+  margin-bottom: 10px;
+}
+.ai-input{
+  width: 100%;
+  margin-top: 10px;
+  padding: 10px 12px;
+  border-radius: var(--r12);
+  border: 1px solid rgba(96,165,250,0.18);
+  background: rgba(2,6,23,0.35);
+  color: rgba(255,255,255,0.92);
+  outline: none;
+  font-weight: 700;
+}
+.ai-input::placeholder{ color: rgba(148,163,184,0.75); }
+
+/* Scrollbars (nice) */
+*::-webkit-scrollbar{ width: 10px; height: 10px; }
+*::-webkit-scrollbar-thumb{
+  background: rgba(96,165,250,0.20);
+  border: 2px solid rgba(2,6,23,0.35);
+  border-radius: 999px;
+}
+*::-webkit-scrollbar-track{ background: rgba(2,6,23,0.25); }
Index: lan-frontend/tailwind.config.js
===================================================================
--- lan-frontend/tailwind.config.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/tailwind.config.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,11 @@
+/** @type {import('tailwindcss').Config} */
+export default {
+  content: [
+    "./index.html",
+    "./src/**/*.{js,ts,jsx,tsx}",
+  ],
+  theme: {
+    extend: {},
+  },
+  plugins: [],
+}
Index: netintel_agent.json
===================================================================
--- netintel_agent.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ netintel_agent.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,4 @@
+{
+  "agent_id": 1,
+  "agent_key": "f6NKPptEYech1EZzlmCytdBtxt2iwd07zgxYYohDSKQ"
+}
Index: node_modules/.bin/autoprefixer
===================================================================
--- node_modules/.bin/autoprefixer	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/autoprefixer	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,16 @@
+#!/bin/sh
+basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
+
+case `uname` in
+    *CYGWIN*|*MINGW*|*MSYS*)
+        if command -v cygpath > /dev/null 2>&1; then
+            basedir=`cygpath -w "$basedir"`
+        fi
+    ;;
+esac
+
+if [ -x "$basedir/node" ]; then
+  exec "$basedir/node"  "$basedir/../autoprefixer/bin/autoprefixer" "$@"
+else 
+  exec node  "$basedir/../autoprefixer/bin/autoprefixer" "$@"
+fi
Index: node_modules/.bin/autoprefixer.cmd
===================================================================
--- node_modules/.bin/autoprefixer.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/autoprefixer.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+  SET "_prog=%dp0%\node.exe"
+) ELSE (
+  SET "_prog=node"
+  SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%"  "%dp0%\..\autoprefixer\bin\autoprefixer" %*
Index: node_modules/.bin/autoprefixer.ps1
===================================================================
--- node_modules/.bin/autoprefixer.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/autoprefixer.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+  # Fix case when both the Windows and Linux builds of Node
+  # are installed in the same directory
+  $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "$basedir/node$exe"  "$basedir/../autoprefixer/bin/autoprefixer" $args
+  } else {
+    & "$basedir/node$exe"  "$basedir/../autoprefixer/bin/autoprefixer" $args
+  }
+  $ret=$LASTEXITCODE
+} else {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "node$exe"  "$basedir/../autoprefixer/bin/autoprefixer" $args
+  } else {
+    & "node$exe"  "$basedir/../autoprefixer/bin/autoprefixer" $args
+  }
+  $ret=$LASTEXITCODE
+}
+exit $ret
Index: node_modules/.bin/baseline-browser-mapping
===================================================================
--- node_modules/.bin/baseline-browser-mapping	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/baseline-browser-mapping	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,16 @@
+#!/bin/sh
+basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
+
+case `uname` in
+    *CYGWIN*|*MINGW*|*MSYS*)
+        if command -v cygpath > /dev/null 2>&1; then
+            basedir=`cygpath -w "$basedir"`
+        fi
+    ;;
+esac
+
+if [ -x "$basedir/node" ]; then
+  exec "$basedir/node"  "$basedir/../baseline-browser-mapping/dist/cli.js" "$@"
+else 
+  exec node  "$basedir/../baseline-browser-mapping/dist/cli.js" "$@"
+fi
Index: node_modules/.bin/baseline-browser-mapping.cmd
===================================================================
--- node_modules/.bin/baseline-browser-mapping.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/baseline-browser-mapping.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+  SET "_prog=%dp0%\node.exe"
+) ELSE (
+  SET "_prog=node"
+  SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%"  "%dp0%\..\baseline-browser-mapping\dist\cli.js" %*
Index: node_modules/.bin/baseline-browser-mapping.ps1
===================================================================
--- node_modules/.bin/baseline-browser-mapping.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/baseline-browser-mapping.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+  # Fix case when both the Windows and Linux builds of Node
+  # are installed in the same directory
+  $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "$basedir/node$exe"  "$basedir/../baseline-browser-mapping/dist/cli.js" $args
+  } else {
+    & "$basedir/node$exe"  "$basedir/../baseline-browser-mapping/dist/cli.js" $args
+  }
+  $ret=$LASTEXITCODE
+} else {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "node$exe"  "$basedir/../baseline-browser-mapping/dist/cli.js" $args
+  } else {
+    & "node$exe"  "$basedir/../baseline-browser-mapping/dist/cli.js" $args
+  }
+  $ret=$LASTEXITCODE
+}
+exit $ret
Index: node_modules/.bin/browserslist
===================================================================
--- node_modules/.bin/browserslist	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/browserslist	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,16 @@
+#!/bin/sh
+basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
+
+case `uname` in
+    *CYGWIN*|*MINGW*|*MSYS*)
+        if command -v cygpath > /dev/null 2>&1; then
+            basedir=`cygpath -w "$basedir"`
+        fi
+    ;;
+esac
+
+if [ -x "$basedir/node" ]; then
+  exec "$basedir/node"  "$basedir/../browserslist/cli.js" "$@"
+else 
+  exec node  "$basedir/../browserslist/cli.js" "$@"
+fi
Index: node_modules/.bin/browserslist.cmd
===================================================================
--- node_modules/.bin/browserslist.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/browserslist.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+  SET "_prog=%dp0%\node.exe"
+) ELSE (
+  SET "_prog=node"
+  SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%"  "%dp0%\..\browserslist\cli.js" %*
Index: node_modules/.bin/browserslist.ps1
===================================================================
--- node_modules/.bin/browserslist.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/browserslist.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+  # Fix case when both the Windows and Linux builds of Node
+  # are installed in the same directory
+  $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "$basedir/node$exe"  "$basedir/../browserslist/cli.js" $args
+  } else {
+    & "$basedir/node$exe"  "$basedir/../browserslist/cli.js" $args
+  }
+  $ret=$LASTEXITCODE
+} else {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "node$exe"  "$basedir/../browserslist/cli.js" $args
+  } else {
+    & "node$exe"  "$basedir/../browserslist/cli.js" $args
+  }
+  $ret=$LASTEXITCODE
+}
+exit $ret
Index: node_modules/.bin/nanoid
===================================================================
--- node_modules/.bin/nanoid	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/nanoid	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,16 @@
+#!/bin/sh
+basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
+
+case `uname` in
+    *CYGWIN*|*MINGW*|*MSYS*)
+        if command -v cygpath > /dev/null 2>&1; then
+            basedir=`cygpath -w "$basedir"`
+        fi
+    ;;
+esac
+
+if [ -x "$basedir/node" ]; then
+  exec "$basedir/node"  "$basedir/../nanoid/bin/nanoid.cjs" "$@"
+else 
+  exec node  "$basedir/../nanoid/bin/nanoid.cjs" "$@"
+fi
Index: node_modules/.bin/nanoid.cmd
===================================================================
--- node_modules/.bin/nanoid.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/nanoid.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+  SET "_prog=%dp0%\node.exe"
+) ELSE (
+  SET "_prog=node"
+  SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%"  "%dp0%\..\nanoid\bin\nanoid.cjs" %*
Index: node_modules/.bin/nanoid.ps1
===================================================================
--- node_modules/.bin/nanoid.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/nanoid.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+  # Fix case when both the Windows and Linux builds of Node
+  # are installed in the same directory
+  $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "$basedir/node$exe"  "$basedir/../nanoid/bin/nanoid.cjs" $args
+  } else {
+    & "$basedir/node$exe"  "$basedir/../nanoid/bin/nanoid.cjs" $args
+  }
+  $ret=$LASTEXITCODE
+} else {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "node$exe"  "$basedir/../nanoid/bin/nanoid.cjs" $args
+  } else {
+    & "node$exe"  "$basedir/../nanoid/bin/nanoid.cjs" $args
+  }
+  $ret=$LASTEXITCODE
+}
+exit $ret
Index: node_modules/.bin/update-browserslist-db
===================================================================
--- node_modules/.bin/update-browserslist-db	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/update-browserslist-db	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,16 @@
+#!/bin/sh
+basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
+
+case `uname` in
+    *CYGWIN*|*MINGW*|*MSYS*)
+        if command -v cygpath > /dev/null 2>&1; then
+            basedir=`cygpath -w "$basedir"`
+        fi
+    ;;
+esac
+
+if [ -x "$basedir/node" ]; then
+  exec "$basedir/node"  "$basedir/../update-browserslist-db/cli.js" "$@"
+else 
+  exec node  "$basedir/../update-browserslist-db/cli.js" "$@"
+fi
Index: node_modules/.bin/update-browserslist-db.cmd
===================================================================
--- node_modules/.bin/update-browserslist-db.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/update-browserslist-db.cmd	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+  SET "_prog=%dp0%\node.exe"
+) ELSE (
+  SET "_prog=node"
+  SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%"  "%dp0%\..\update-browserslist-db\cli.js" %*
Index: node_modules/.bin/update-browserslist-db.ps1
===================================================================
--- node_modules/.bin/update-browserslist-db.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.bin/update-browserslist-db.ps1	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+  # Fix case when both the Windows and Linux builds of Node
+  # are installed in the same directory
+  $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "$basedir/node$exe"  "$basedir/../update-browserslist-db/cli.js" $args
+  } else {
+    & "$basedir/node$exe"  "$basedir/../update-browserslist-db/cli.js" $args
+  }
+  $ret=$LASTEXITCODE
+} else {
+  # Support pipeline input
+  if ($MyInvocation.ExpectingInput) {
+    $input | & "node$exe"  "$basedir/../update-browserslist-db/cli.js" $args
+  } else {
+    & "node$exe"  "$basedir/../update-browserslist-db/cli.js" $args
+  }
+  $ret=$LASTEXITCODE
+}
+exit $ret
Index: node_modules/.package-lock.json
===================================================================
--- node_modules/.package-lock.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/.package-lock.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,257 @@
+{
+  "name": "Proekt_Wazuh",
+  "lockfileVersion": 3,
+  "requires": true,
+  "packages": {
+    "node_modules/autoprefixer": {
+      "version": "10.4.23",
+      "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.23.tgz",
+      "integrity": "sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/postcss/"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "dependencies": {
+        "browserslist": "^4.28.1",
+        "caniuse-lite": "^1.0.30001760",
+        "fraction.js": "^5.3.4",
+        "picocolors": "^1.1.1",
+        "postcss-value-parser": "^4.2.0"
+      },
+      "bin": {
+        "autoprefixer": "bin/autoprefixer"
+      },
+      "engines": {
+        "node": "^10 || ^12 || >=14"
+      },
+      "peerDependencies": {
+        "postcss": "^8.1.0"
+      }
+    },
+    "node_modules/baseline-browser-mapping": {
+      "version": "2.9.11",
+      "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz",
+      "integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==",
+      "dev": true,
+      "license": "Apache-2.0",
+      "bin": {
+        "baseline-browser-mapping": "dist/cli.js"
+      }
+    },
+    "node_modules/browserslist": {
+      "version": "4.28.1",
+      "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
+      "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/browserslist"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/browserslist"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "dependencies": {
+        "baseline-browser-mapping": "^2.9.0",
+        "caniuse-lite": "^1.0.30001759",
+        "electron-to-chromium": "^1.5.263",
+        "node-releases": "^2.0.27",
+        "update-browserslist-db": "^1.2.0"
+      },
+      "bin": {
+        "browserslist": "cli.js"
+      },
+      "engines": {
+        "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+      }
+    },
+    "node_modules/caniuse-lite": {
+      "version": "1.0.30001761",
+      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001761.tgz",
+      "integrity": "sha512-JF9ptu1vP2coz98+5051jZ4PwQgd2ni8A+gYSN7EA7dPKIMf0pDlSUxhdmVOaV3/fYK5uWBkgSXJaRLr4+3A6g==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/browserslist"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "CC-BY-4.0"
+    },
+    "node_modules/electron-to-chromium": {
+      "version": "1.5.267",
+      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz",
+      "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
+      "dev": true,
+      "license": "ISC"
+    },
+    "node_modules/escalade": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+      "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+      "dev": true,
+      "license": "MIT",
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/fraction.js": {
+      "version": "5.3.4",
+      "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
+      "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
+      "dev": true,
+      "license": "MIT",
+      "engines": {
+        "node": "*"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/rawify"
+      }
+    },
+    "node_modules/nanoid": {
+      "version": "3.3.11",
+      "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+      "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "bin": {
+        "nanoid": "bin/nanoid.cjs"
+      },
+      "engines": {
+        "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+      }
+    },
+    "node_modules/node-releases": {
+      "version": "2.0.27",
+      "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
+      "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
+      "dev": true,
+      "license": "MIT"
+    },
+    "node_modules/picocolors": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+      "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+      "dev": true,
+      "license": "ISC"
+    },
+    "node_modules/postcss": {
+      "version": "8.5.6",
+      "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+      "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/postcss/"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/postcss"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "dependencies": {
+        "nanoid": "^3.3.11",
+        "picocolors": "^1.1.1",
+        "source-map-js": "^1.2.1"
+      },
+      "engines": {
+        "node": "^10 || ^12 || >=14"
+      }
+    },
+    "node_modules/postcss-value-parser": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+      "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
+      "dev": true,
+      "license": "MIT"
+    },
+    "node_modules/source-map-js": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+      "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+      "dev": true,
+      "license": "BSD-3-Clause",
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/tailwindcss": {
+      "version": "4.1.18",
+      "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
+      "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
+      "dev": true,
+      "license": "MIT"
+    },
+    "node_modules/update-browserslist-db": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
+      "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/browserslist"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/browserslist"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "dependencies": {
+        "escalade": "^3.2.0",
+        "picocolors": "^1.1.1"
+      },
+      "bin": {
+        "update-browserslist-db": "cli.js"
+      },
+      "peerDependencies": {
+        "browserslist": ">= 4.21.0"
+      }
+    }
+  }
+}
Index: node_modules/autoprefixer/LICENSE
===================================================================
--- node_modules/autoprefixer/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Index: node_modules/autoprefixer/README.md
===================================================================
--- node_modules/autoprefixer/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,57 @@
+# Autoprefixer [![Cult Of Martians][cult-img]][cult]
+
+<img align="right" width="94" height="71"
+     src="https://postcss.github.io/autoprefixer/logo.svg"
+     title="Autoprefixer logo by Anton Lovchikov">
+
+[PostCSS] plugin to parse CSS and add vendor prefixes to CSS rules using values
+from [Can I Use]. It is recommended by Google and used in Twitter and Alibaba.
+
+Write your CSS rules without vendor prefixes (in fact, forget about them
+entirely):
+
+```css
+::placeholder {
+  color: gray;
+}
+
+.image {
+  width: stretch;
+}
+```
+
+Autoprefixer will use the data based on current browser popularity and property
+support to apply prefixes for you. You can try the [interactive demo]
+of Autoprefixer.
+
+```css
+::-moz-placeholder {
+  color: gray;
+}
+::placeholder {
+  color: gray;
+}
+
+.image {
+  width: -webkit-fill-available;
+  width: -moz-available;
+  width: stretch;
+}
+```
+
+Twitter account for news and releases: [@autoprefixer].
+
+<a href="https://evilmartians.com/?utm_source=autoprefixer">
+<img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54">
+</a>
+
+[interactive demo]: https://autoprefixer.github.io/
+[@autoprefixer]:    https://twitter.com/autoprefixer
+[Can I Use]:        https://caniuse.com/
+[cult-img]:         https://cultofmartians.com/assets/badges/badge.svg
+[PostCSS]:          https://github.com/postcss/postcss
+[cult]:             https://cultofmartians.com/tasks/autoprefixer-grid.html
+
+
+## Docs
+Read full docs **[here](https://github.com/postcss/autoprefixer#readme)**.
Index: node_modules/autoprefixer/bin/autoprefixer
===================================================================
--- node_modules/autoprefixer/bin/autoprefixer	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/bin/autoprefixer	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,22 @@
+#!/usr/bin/env node
+
+let mode = process.argv[2]
+if (mode === '--info') {
+  process.stdout.write(require('../')().info() + '\n')
+} else if (mode === '--version') {
+  process.stdout.write(
+    'autoprefixer ' + require('../package.json').version + '\n'
+  )
+} else {
+  process.stdout.write(
+    'autoprefix\n' +
+      '\n' +
+      'Options:\n' +
+      '  --info    Show target browsers and used prefixes\n' +
+      '  --version Show version number\n' +
+      '  --help    Show help\n' +
+      '\n' +
+      'Usage:\n' +
+      '  autoprefixer --info\n'
+  )
+}
Index: node_modules/autoprefixer/data/prefixes.js
===================================================================
--- node_modules/autoprefixer/data/prefixes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/data/prefixes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1139 @@
+let unpack = require('caniuse-lite/dist/unpacker/feature')
+
+function browsersSort(a, b) {
+  a = a.split(' ')
+  b = b.split(' ')
+  if (a[0] > b[0]) {
+    return 1
+  } else if (a[0] < b[0]) {
+    return -1
+  } else {
+    return Math.sign(parseFloat(a[1]) - parseFloat(b[1]))
+  }
+}
+
+// Convert Can I Use data
+function f(data, opts, callback) {
+  data = unpack(data)
+
+  if (!callback) {
+    ;[callback, opts] = [opts, {}]
+  }
+
+  let match = opts.match || /\sx($|\s)/
+  let need = []
+
+  for (let browser in data.stats) {
+    let versions = data.stats[browser]
+    for (let version in versions) {
+      let support = versions[version]
+      if (support.match(match)) {
+        need.push(browser + ' ' + version)
+      }
+    }
+  }
+
+  callback(need.sort(browsersSort))
+}
+
+// Add data for all properties
+let result = {}
+
+function prefix(names, data) {
+  for (let name of names) {
+    result[name] = Object.assign({}, data)
+  }
+}
+
+function add(names, data) {
+  for (let name of names) {
+    result[name].browsers = result[name].browsers
+      .concat(data.browsers)
+      .sort(browsersSort)
+  }
+}
+
+module.exports = result
+
+// Border Radius
+let prefixBorderRadius = require('caniuse-lite/data/features/border-radius')
+
+f(prefixBorderRadius, browsers =>
+  prefix(
+    [
+      'border-radius',
+      'border-top-left-radius',
+      'border-top-right-radius',
+      'border-bottom-right-radius',
+      'border-bottom-left-radius'
+    ],
+    {
+      browsers,
+      feature: 'border-radius',
+      mistakes: ['-khtml-', '-ms-', '-o-']
+    }
+  )
+)
+
+// Box Shadow
+let prefixBoxshadow = require('caniuse-lite/data/features/css-boxshadow')
+
+f(prefixBoxshadow, browsers =>
+  prefix(['box-shadow'], {
+    browsers,
+    feature: 'css-boxshadow',
+    mistakes: ['-khtml-']
+  })
+)
+
+// Animation
+let prefixAnimation = require('caniuse-lite/data/features/css-animation')
+
+f(prefixAnimation, browsers =>
+  prefix(
+    [
+      'animation',
+      'animation-name',
+      'animation-duration',
+      'animation-delay',
+      'animation-direction',
+      'animation-fill-mode',
+      'animation-iteration-count',
+      'animation-play-state',
+      'animation-timing-function',
+      '@keyframes'
+    ],
+    {
+      browsers,
+      feature: 'css-animation',
+      mistakes: ['-khtml-', '-ms-']
+    }
+  )
+)
+
+// Transition
+let prefixTransition = require('caniuse-lite/data/features/css-transitions')
+
+f(prefixTransition, browsers =>
+  prefix(
+    [
+      'transition',
+      'transition-property',
+      'transition-duration',
+      'transition-delay',
+      'transition-timing-function'
+    ],
+    {
+      browsers,
+      feature: 'css-transitions',
+      mistakes: ['-khtml-', '-ms-']
+    }
+  )
+)
+
+// Transform 2D
+let prefixTransform2d = require('caniuse-lite/data/features/transforms2d')
+
+f(prefixTransform2d, browsers =>
+  prefix(['transform', 'transform-origin'], {
+    browsers,
+    feature: 'transforms2d'
+  })
+)
+
+// Transform 3D
+let prefixTransforms3d = require('caniuse-lite/data/features/transforms3d')
+
+f(prefixTransforms3d, browsers => {
+  prefix(['perspective', 'perspective-origin'], {
+    browsers,
+    feature: 'transforms3d'
+  })
+  return prefix(['transform-style'], {
+    browsers,
+    feature: 'transforms3d',
+    mistakes: ['-ms-', '-o-']
+  })
+})
+
+f(prefixTransforms3d, { match: /y\sx|y\s#2/ }, browsers =>
+  prefix(['backface-visibility'], {
+    browsers,
+    feature: 'transforms3d',
+    mistakes: ['-ms-', '-o-']
+  })
+)
+
+// Gradients
+let prefixGradients = require('caniuse-lite/data/features/css-gradients')
+
+f(prefixGradients, { match: /y\sx/ }, browsers =>
+  prefix(
+    [
+      'linear-gradient',
+      'repeating-linear-gradient',
+      'radial-gradient',
+      'repeating-radial-gradient'
+    ],
+    {
+      browsers,
+      feature: 'css-gradients',
+      mistakes: ['-ms-'],
+      props: [
+        'background',
+        'background-image',
+        'border-image',
+        'mask',
+        'list-style',
+        'list-style-image',
+        'content',
+        'mask-image'
+      ]
+    }
+  )
+)
+
+f(prefixGradients, { match: /a\sx/ }, browsers => {
+  browsers = browsers.map(i => {
+    if (/firefox|op/.test(i)) {
+      return i
+    } else {
+      return `${i} old`
+    }
+  })
+  return add(
+    [
+      'linear-gradient',
+      'repeating-linear-gradient',
+      'radial-gradient',
+      'repeating-radial-gradient'
+    ],
+    {
+      browsers,
+      feature: 'css-gradients'
+    }
+  )
+})
+
+// Box sizing
+let prefixBoxsizing = require('caniuse-lite/data/features/css3-boxsizing')
+
+f(prefixBoxsizing, browsers =>
+  prefix(['box-sizing'], {
+    browsers,
+    feature: 'css3-boxsizing'
+  })
+)
+
+// Filter Effects
+let prefixFilters = require('caniuse-lite/data/features/css-filters')
+
+f(prefixFilters, browsers =>
+  prefix(['filter'], {
+    browsers,
+    feature: 'css-filters'
+  })
+)
+
+// filter() function
+let prefixFilterFunction = require('caniuse-lite/data/features/css-filter-function')
+
+f(prefixFilterFunction, browsers =>
+  prefix(['filter-function'], {
+    browsers,
+    feature: 'css-filter-function',
+    props: [
+      'background',
+      'background-image',
+      'border-image',
+      'mask',
+      'list-style',
+      'list-style-image',
+      'content',
+      'mask-image'
+    ]
+  })
+)
+
+// Backdrop-filter
+let prefixBackdropFilter = require('caniuse-lite/data/features/css-backdrop-filter')
+
+f(prefixBackdropFilter, { match: /y\sx|y\s#2/ }, browsers =>
+  prefix(['backdrop-filter'], {
+    browsers,
+    feature: 'css-backdrop-filter'
+  })
+)
+
+// element() function
+let prefixElementFunction = require('caniuse-lite/data/features/css-element-function')
+
+f(prefixElementFunction, browsers =>
+  prefix(['element'], {
+    browsers,
+    feature: 'css-element-function',
+    props: [
+      'background',
+      'background-image',
+      'border-image',
+      'mask',
+      'list-style',
+      'list-style-image',
+      'content',
+      'mask-image'
+    ]
+  })
+)
+
+// Multicolumns
+let prefixMulticolumns = require('caniuse-lite/data/features/multicolumn')
+
+f(prefixMulticolumns, browsers => {
+  prefix(
+    [
+      'columns',
+      'column-width',
+      'column-gap',
+      'column-rule',
+      'column-rule-color',
+      'column-rule-width',
+      'column-count',
+      'column-rule-style',
+      'column-span',
+      'column-fill'
+    ],
+    {
+      browsers,
+      feature: 'multicolumn'
+    }
+  )
+
+  let noff = browsers.filter(i => !/firefox/.test(i))
+  prefix(['break-before', 'break-after', 'break-inside'], {
+    browsers: noff,
+    feature: 'multicolumn'
+  })
+})
+
+// User select
+let prefixUserSelect = require('caniuse-lite/data/features/user-select-none')
+
+f(prefixUserSelect, browsers =>
+  prefix(['user-select'], {
+    browsers,
+    feature: 'user-select-none',
+    mistakes: ['-khtml-']
+  })
+)
+
+// Flexible Box Layout
+let prefixFlexbox = require('caniuse-lite/data/features/flexbox')
+
+f(prefixFlexbox, { match: /a\sx/ }, browsers => {
+  browsers = browsers.map(i => {
+    if (/ie|firefox/.test(i)) {
+      return i
+    } else {
+      return `${i} 2009`
+    }
+  })
+  prefix(['display-flex', 'inline-flex'], {
+    browsers,
+    feature: 'flexbox',
+    props: ['display']
+  })
+  prefix(['flex', 'flex-grow', 'flex-shrink', 'flex-basis'], {
+    browsers,
+    feature: 'flexbox'
+  })
+  prefix(
+    [
+      'flex-direction',
+      'flex-wrap',
+      'flex-flow',
+      'justify-content',
+      'order',
+      'align-items',
+      'align-self',
+      'align-content'
+    ],
+    {
+      browsers,
+      feature: 'flexbox'
+    }
+  )
+})
+
+f(prefixFlexbox, { match: /y\sx/ }, browsers => {
+  add(['display-flex', 'inline-flex'], {
+    browsers,
+    feature: 'flexbox'
+  })
+  add(['flex', 'flex-grow', 'flex-shrink', 'flex-basis'], {
+    browsers,
+    feature: 'flexbox'
+  })
+  add(
+    [
+      'flex-direction',
+      'flex-wrap',
+      'flex-flow',
+      'justify-content',
+      'order',
+      'align-items',
+      'align-self',
+      'align-content'
+    ],
+    {
+      browsers,
+      feature: 'flexbox'
+    }
+  )
+})
+
+// calc() unit
+let prefixCalc = require('caniuse-lite/data/features/calc')
+
+f(prefixCalc, browsers =>
+  prefix(['calc'], {
+    browsers,
+    feature: 'calc',
+    props: ['*']
+  })
+)
+
+// Background options
+let prefixBackgroundOptions = require('caniuse-lite/data/features/background-img-opts')
+
+f(prefixBackgroundOptions, browsers =>
+  prefix(['background-origin', 'background-size'], {
+    browsers,
+    feature: 'background-img-opts'
+  })
+)
+
+// background-clip: text
+let prefixBackgroundClipText = require('caniuse-lite/data/features/background-clip-text')
+
+f(prefixBackgroundClipText, browsers =>
+  prefix(['background-clip'], {
+    browsers,
+    feature: 'background-clip-text'
+  })
+)
+
+// Font feature settings
+let prefixFontFeature = require('caniuse-lite/data/features/font-feature')
+
+f(prefixFontFeature, browsers =>
+  prefix(
+    [
+      'font-feature-settings',
+      'font-variant-ligatures',
+      'font-language-override'
+    ],
+    {
+      browsers,
+      feature: 'font-feature'
+    }
+  )
+)
+
+// CSS font-kerning property
+let prefixFontKerning = require('caniuse-lite/data/features/font-kerning')
+
+f(prefixFontKerning, browsers =>
+  prefix(['font-kerning'], {
+    browsers,
+    feature: 'font-kerning'
+  })
+)
+
+// Border image
+let prefixBorderImage = require('caniuse-lite/data/features/border-image')
+
+f(prefixBorderImage, browsers =>
+  prefix(['border-image'], {
+    browsers,
+    feature: 'border-image'
+  })
+)
+
+// Selection selector
+let prefixSelection = require('caniuse-lite/data/features/css-selection')
+
+f(prefixSelection, browsers =>
+  prefix(['::selection'], {
+    browsers,
+    feature: 'css-selection',
+    selector: true
+  })
+)
+
+// Placeholder selector
+let prefixPlaceholder = require('caniuse-lite/data/features/css-placeholder')
+
+f(prefixPlaceholder, browsers => {
+  prefix(['::placeholder'], {
+    browsers: browsers.concat(['ie 10 old', 'ie 11 old', 'firefox 18 old']),
+    feature: 'css-placeholder',
+    selector: true
+  })
+})
+
+// Placeholder-shown selector
+let prefixPlaceholderShown = require('caniuse-lite/data/features/css-placeholder-shown')
+
+f(prefixPlaceholderShown, browsers => {
+  prefix([':placeholder-shown'], {
+    browsers,
+    feature: 'css-placeholder-shown',
+    selector: true
+  })
+})
+
+// Hyphenation
+let prefixHyphens = require('caniuse-lite/data/features/css-hyphens')
+
+f(prefixHyphens, browsers =>
+  prefix(['hyphens'], {
+    browsers,
+    feature: 'css-hyphens'
+  })
+)
+
+// Fullscreen selector
+let prefixFullscreen = require('caniuse-lite/data/features/fullscreen')
+
+f(prefixFullscreen, browsers =>
+  prefix([':fullscreen'], {
+    browsers,
+    feature: 'fullscreen',
+    selector: true
+  })
+)
+
+// ::backdrop pseudo-element
+// https://caniuse.com/mdn-css_selectors_backdrop
+let prefixBackdrop = require('caniuse-lite/data/features/mdn-css-backdrop-pseudo-element')
+
+f(prefixBackdrop, browsers =>
+  prefix(['::backdrop'], {
+    browsers,
+    feature: 'backdrop',
+    selector: true
+  })
+)
+
+// File selector button
+let prefixFileSelectorButton = require('caniuse-lite/data/features/css-file-selector-button')
+
+f(prefixFileSelectorButton, browsers =>
+  prefix(['::file-selector-button'], {
+    browsers,
+    feature: 'file-selector-button',
+    selector: true
+  })
+)
+
+// :autofill
+let prefixAutofill = require('caniuse-lite/data/features/css-autofill')
+
+f(prefixAutofill, browsers =>
+  prefix([':autofill'], {
+    browsers,
+    feature: 'css-autofill',
+    selector: true
+  })
+)
+
+// Tab size
+let prefixTabsize = require('caniuse-lite/data/features/css3-tabsize')
+
+f(prefixTabsize, browsers =>
+  prefix(['tab-size'], {
+    browsers,
+    feature: 'css3-tabsize'
+  })
+)
+
+// Intrinsic & extrinsic sizing
+let prefixIntrinsic = require('caniuse-lite/data/features/intrinsic-width')
+
+let sizeProps = [
+  'width',
+  'min-width',
+  'max-width',
+  'height',
+  'min-height',
+  'max-height',
+  'inline-size',
+  'min-inline-size',
+  'max-inline-size',
+  'block-size',
+  'min-block-size',
+  'max-block-size',
+  'grid',
+  'grid-template',
+  'grid-template-rows',
+  'grid-template-columns',
+  'grid-auto-columns',
+  'grid-auto-rows'
+]
+
+f(prefixIntrinsic, browsers =>
+  prefix(['max-content', 'min-content'], {
+    browsers,
+    feature: 'intrinsic-width',
+    props: sizeProps
+  })
+)
+
+f(prefixIntrinsic, { match: /x|\s#4/ }, browsers =>
+  prefix(['fill', 'fill-available'], {
+    browsers,
+    feature: 'intrinsic-width',
+    props: sizeProps
+  })
+)
+
+f(prefixIntrinsic, { match: /x|\s#5/ }, browsers => {
+  let ffFix = browsers.filter(i => {
+    let [name, version] = i.split(' ')
+    if (name === 'firefox' || name === 'and_ff') {
+      return parseInt(version) < 94
+    } else {
+      return true
+    }
+  })
+  return prefix(['fit-content'], {
+    browsers: ffFix,
+    feature: 'intrinsic-width',
+    props: sizeProps
+  })
+})
+
+// Stretch value
+
+let prefixStretch = require('caniuse-lite/data/features/css-width-stretch')
+
+f(prefixStretch, browsers => {
+  f(prefixIntrinsic, { match: /x|\s#2/ }, firefox => {
+    browsers = browsers.concat(firefox)
+  })
+  return prefix(['stretch'], {
+    browsers,
+    feature: 'css-width-stretch',
+    props: sizeProps
+  })
+})
+
+// Zoom cursors
+let prefixCursorsNew = require('caniuse-lite/data/features/css3-cursors-newer')
+
+f(prefixCursorsNew, browsers =>
+  prefix(['zoom-in', 'zoom-out'], {
+    browsers,
+    feature: 'css3-cursors-newer',
+    props: ['cursor']
+  })
+)
+
+// Grab cursors
+let prefixCursorsGrab = require('caniuse-lite/data/features/css3-cursors-grab')
+
+f(prefixCursorsGrab, browsers =>
+  prefix(['grab', 'grabbing'], {
+    browsers,
+    feature: 'css3-cursors-grab',
+    props: ['cursor']
+  })
+)
+
+// Sticky position
+let prefixSticky = require('caniuse-lite/data/features/css-sticky')
+
+f(prefixSticky, browsers =>
+  prefix(['sticky'], {
+    browsers,
+    feature: 'css-sticky',
+    props: ['position']
+  })
+)
+
+// Pointer Events
+let prefixPointer = require('caniuse-lite/data/features/pointer')
+
+f(prefixPointer, browsers =>
+  prefix(['touch-action'], {
+    browsers,
+    feature: 'pointer'
+  })
+)
+
+// Text decoration
+let prefixDecoration = require('caniuse-lite/data/features/text-decoration')
+
+f(prefixDecoration, { match: /x.*#[235]/ }, browsers =>
+  prefix(['text-decoration-skip', 'text-decoration-skip-ink'], {
+    browsers,
+    feature: 'text-decoration'
+  })
+)
+
+let prefixDecorationShorthand = require('caniuse-lite/data/features/mdn-text-decoration-shorthand')
+
+f(prefixDecorationShorthand, browsers =>
+  prefix(['text-decoration'], {
+    browsers,
+    feature: 'text-decoration'
+  })
+)
+
+let prefixDecorationColor = require('caniuse-lite/data/features/mdn-text-decoration-color')
+
+f(prefixDecorationColor, browsers =>
+  prefix(['text-decoration-color'], {
+    browsers,
+    feature: 'text-decoration'
+  })
+)
+
+let prefixDecorationLine = require('caniuse-lite/data/features/mdn-text-decoration-line')
+
+f(prefixDecorationLine, browsers =>
+  prefix(['text-decoration-line'], {
+    browsers,
+    feature: 'text-decoration'
+  })
+)
+
+let prefixDecorationStyle = require('caniuse-lite/data/features/mdn-text-decoration-style')
+
+f(prefixDecorationStyle, browsers =>
+  prefix(['text-decoration-style'], {
+    browsers,
+    feature: 'text-decoration'
+  })
+)
+
+// Text Size Adjust
+let prefixTextSizeAdjust = require('caniuse-lite/data/features/text-size-adjust')
+
+f(prefixTextSizeAdjust, browsers =>
+  prefix(['text-size-adjust'], {
+    browsers,
+    feature: 'text-size-adjust'
+  })
+)
+
+// CSS Masks
+let prefixCssMasks = require('caniuse-lite/data/features/css-masks')
+
+f(prefixCssMasks, browsers => {
+  prefix(
+    [
+      'mask-clip',
+      'mask-composite',
+      'mask-image',
+      'mask-origin',
+      'mask-repeat',
+      'mask-border-repeat',
+      'mask-border-source'
+    ],
+    {
+      browsers,
+      feature: 'css-masks'
+    }
+  )
+  prefix(
+    [
+      'mask',
+      'mask-position',
+      'mask-size',
+      'mask-border',
+      'mask-border-outset',
+      'mask-border-width',
+      'mask-border-slice'
+    ],
+    {
+      browsers,
+      feature: 'css-masks'
+    }
+  )
+})
+
+// CSS clip-path property
+let prefixClipPath = require('caniuse-lite/data/features/css-clip-path')
+
+f(prefixClipPath, browsers =>
+  prefix(['clip-path'], {
+    browsers,
+    feature: 'css-clip-path'
+  })
+)
+
+// Fragmented Borders and Backgrounds
+let prefixBoxdecoration = require('caniuse-lite/data/features/css-boxdecorationbreak')
+
+f(prefixBoxdecoration, browsers =>
+  prefix(['box-decoration-break'], {
+    browsers,
+    feature: 'css-boxdecorationbreak'
+  })
+)
+
+// CSS3 object-fit/object-position
+let prefixObjectFit = require('caniuse-lite/data/features/object-fit')
+
+f(prefixObjectFit, browsers =>
+  prefix(['object-fit', 'object-position'], {
+    browsers,
+    feature: 'object-fit'
+  })
+)
+
+// CSS Shapes
+let prefixShapes = require('caniuse-lite/data/features/css-shapes')
+
+f(prefixShapes, browsers =>
+  prefix(['shape-margin', 'shape-outside', 'shape-image-threshold'], {
+    browsers,
+    feature: 'css-shapes'
+  })
+)
+
+// CSS3 text-overflow
+let prefixTextOverflow = require('caniuse-lite/data/features/text-overflow')
+
+f(prefixTextOverflow, browsers =>
+  prefix(['text-overflow'], {
+    browsers,
+    feature: 'text-overflow'
+  })
+)
+
+// Viewport at-rule
+let prefixDeviceadaptation = require('caniuse-lite/data/features/css-deviceadaptation')
+
+f(prefixDeviceadaptation, browsers =>
+  prefix(['@viewport'], {
+    browsers,
+    feature: 'css-deviceadaptation'
+  })
+)
+
+// Resolution Media Queries
+let prefixResolut = require('caniuse-lite/data/features/css-media-resolution')
+
+f(prefixResolut, { match: /( x($| )|a #2)/ }, browsers =>
+  prefix(['@resolution'], {
+    browsers,
+    feature: 'css-media-resolution'
+  })
+)
+
+// CSS text-align-last
+let prefixTextAlignLast = require('caniuse-lite/data/features/css-text-align-last')
+
+f(prefixTextAlignLast, browsers =>
+  prefix(['text-align-last'], {
+    browsers,
+    feature: 'css-text-align-last'
+  })
+)
+
+// Crisp Edges Image Rendering Algorithm
+let prefixCrispedges = require('caniuse-lite/data/features/css-crisp-edges')
+
+f(prefixCrispedges, { match: /y x|a x #1/ }, browsers =>
+  prefix(['pixelated'], {
+    browsers,
+    feature: 'css-crisp-edges',
+    props: ['image-rendering']
+  })
+)
+
+f(prefixCrispedges, { match: /a x #2/ }, browsers =>
+  prefix(['image-rendering'], {
+    browsers,
+    feature: 'css-crisp-edges'
+  })
+)
+
+// Logical Properties
+let prefixLogicalProps = require('caniuse-lite/data/features/css-logical-props')
+
+f(prefixLogicalProps, browsers =>
+  prefix(
+    [
+      'border-inline-start',
+      'border-inline-end',
+      'margin-inline-start',
+      'margin-inline-end',
+      'padding-inline-start',
+      'padding-inline-end'
+    ],
+    {
+      browsers,
+      feature: 'css-logical-props'
+    }
+  )
+)
+
+f(prefixLogicalProps, { match: /x\s#2/ }, browsers =>
+  prefix(
+    [
+      'border-block-start',
+      'border-block-end',
+      'margin-block-start',
+      'margin-block-end',
+      'padding-block-start',
+      'padding-block-end'
+    ],
+    {
+      browsers,
+      feature: 'css-logical-props'
+    }
+  )
+)
+
+// CSS appearance
+let prefixAppearance = require('caniuse-lite/data/features/css-appearance')
+
+f(prefixAppearance, { match: /#2|x/ }, browsers =>
+  prefix(['appearance'], {
+    browsers,
+    feature: 'css-appearance'
+  })
+)
+
+// CSS Scroll snap points
+let prefixSnappoints = require('caniuse-lite/data/features/css-snappoints')
+
+f(prefixSnappoints, browsers =>
+  prefix(
+    [
+      'scroll-snap-type',
+      'scroll-snap-coordinate',
+      'scroll-snap-destination',
+      'scroll-snap-points-x',
+      'scroll-snap-points-y'
+    ],
+    {
+      browsers,
+      feature: 'css-snappoints'
+    }
+  )
+)
+
+// CSS Regions
+let prefixRegions = require('caniuse-lite/data/features/css-regions')
+
+f(prefixRegions, browsers =>
+  prefix(['flow-into', 'flow-from', 'region-fragment'], {
+    browsers,
+    feature: 'css-regions'
+  })
+)
+
+// CSS image-set
+let prefixImageSet = require('caniuse-lite/data/features/css-image-set')
+
+f(prefixImageSet, browsers =>
+  prefix(['image-set'], {
+    browsers,
+    feature: 'css-image-set',
+    props: [
+      'background',
+      'background-image',
+      'border-image',
+      'cursor',
+      'mask',
+      'mask-image',
+      'list-style',
+      'list-style-image',
+      'content'
+    ]
+  })
+)
+
+// Writing Mode
+let prefixWritingMode = require('caniuse-lite/data/features/css-writing-mode')
+
+f(prefixWritingMode, { match: /a|x/ }, browsers =>
+  prefix(['writing-mode'], {
+    browsers,
+    feature: 'css-writing-mode'
+  })
+)
+
+// Cross-Fade Function
+let prefixCrossFade = require('caniuse-lite/data/features/css-cross-fade')
+
+f(prefixCrossFade, browsers =>
+  prefix(['cross-fade'], {
+    browsers,
+    feature: 'css-cross-fade',
+    props: [
+      'background',
+      'background-image',
+      'border-image',
+      'mask',
+      'list-style',
+      'list-style-image',
+      'content',
+      'mask-image'
+    ]
+  })
+)
+
+// Read Only selector
+let prefixReadOnly = require('caniuse-lite/data/features/css-read-only-write')
+
+f(prefixReadOnly, browsers =>
+  prefix([':read-only', ':read-write'], {
+    browsers,
+    feature: 'css-read-only-write',
+    selector: true
+  })
+)
+
+// Text Emphasize
+let prefixTextEmphasis = require('caniuse-lite/data/features/text-emphasis')
+
+f(prefixTextEmphasis, browsers =>
+  prefix(
+    [
+      'text-emphasis',
+      'text-emphasis-position',
+      'text-emphasis-style',
+      'text-emphasis-color'
+    ],
+    {
+      browsers,
+      feature: 'text-emphasis'
+    }
+  )
+)
+
+// CSS Grid Layout
+let prefixGrid = require('caniuse-lite/data/features/css-grid')
+
+f(prefixGrid, browsers => {
+  prefix(['display-grid', 'inline-grid'], {
+    browsers,
+    feature: 'css-grid',
+    props: ['display']
+  })
+  prefix(
+    [
+      'grid-template-columns',
+      'grid-template-rows',
+      'grid-row-start',
+      'grid-column-start',
+      'grid-row-end',
+      'grid-column-end',
+      'grid-row',
+      'grid-column',
+      'grid-area',
+      'grid-template',
+      'grid-template-areas',
+      'place-self'
+    ],
+    {
+      browsers,
+      feature: 'css-grid'
+    }
+  )
+})
+
+f(prefixGrid, { match: /a x/ }, browsers =>
+  prefix(['grid-column-align', 'grid-row-align'], {
+    browsers,
+    feature: 'css-grid'
+  })
+)
+
+// CSS text-spacing
+let prefixTextSpacing = require('caniuse-lite/data/features/css-text-spacing')
+
+f(prefixTextSpacing, browsers =>
+  prefix(['text-spacing'], {
+    browsers,
+    feature: 'css-text-spacing'
+  })
+)
+
+// :any-link selector
+let prefixAnyLink = require('caniuse-lite/data/features/css-any-link')
+
+f(prefixAnyLink, browsers =>
+  prefix([':any-link'], {
+    browsers,
+    feature: 'css-any-link',
+    selector: true
+  })
+)
+
+// unicode-bidi
+
+let bidiIsolate = require('caniuse-lite/data/features/mdn-css-unicode-bidi-isolate')
+
+f(bidiIsolate, browsers =>
+  prefix(['isolate'], {
+    browsers,
+    feature: 'css-unicode-bidi',
+    props: ['unicode-bidi']
+  })
+)
+
+let bidiPlaintext = require('caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext')
+
+f(bidiPlaintext, browsers =>
+  prefix(['plaintext'], {
+    browsers,
+    feature: 'css-unicode-bidi',
+    props: ['unicode-bidi']
+  })
+)
+
+let bidiOverride = require('caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override')
+
+f(bidiOverride, { match: /y x/ }, browsers =>
+  prefix(['isolate-override'], {
+    browsers,
+    feature: 'css-unicode-bidi',
+    props: ['unicode-bidi']
+  })
+)
+
+// overscroll-behavior selector
+let prefixOverscroll = require('caniuse-lite/data/features/css-overscroll-behavior')
+
+f(prefixOverscroll, { match: /a #1/ }, browsers =>
+  prefix(['overscroll-behavior'], {
+    browsers,
+    feature: 'css-overscroll-behavior'
+  })
+)
+
+// text-orientation
+let prefixTextOrientation = require('caniuse-lite/data/features/css-text-orientation')
+
+f(prefixTextOrientation, browsers =>
+  prefix(['text-orientation'], {
+    browsers,
+    feature: 'css-text-orientation'
+  })
+)
+
+// print-color-adjust
+let prefixPrintAdjust = require('caniuse-lite/data/features/css-print-color-adjust')
+
+f(prefixPrintAdjust, browsers =>
+  prefix(['print-color-adjust', 'color-adjust'], {
+    browsers,
+    feature: 'css-print-color-adjust'
+  })
+)
Index: node_modules/autoprefixer/lib/at-rule.js
===================================================================
--- node_modules/autoprefixer/lib/at-rule.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/at-rule.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,35 @@
+let Prefixer = require('./prefixer')
+
+class AtRule extends Prefixer {
+  /**
+   * Clone and add prefixes for at-rule
+   */
+  add(rule, prefix) {
+    let prefixed = prefix + rule.name
+
+    let already = rule.parent.some(
+      i => i.name === prefixed && i.params === rule.params
+    )
+    if (already) {
+      return undefined
+    }
+
+    let cloned = this.clone(rule, { name: prefixed })
+    return rule.parent.insertBefore(rule, cloned)
+  }
+
+  /**
+   * Clone node with prefixes
+   */
+  process(node) {
+    let parent = this.parentPrefix(node)
+
+    for (let prefix of this.prefixes) {
+      if (!parent || parent === prefix) {
+        this.add(node, prefix)
+      }
+    }
+  }
+}
+
+module.exports = AtRule
Index: node_modules/autoprefixer/lib/autoprefixer.d.ts
===================================================================
--- node_modules/autoprefixer/lib/autoprefixer.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/autoprefixer.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,95 @@
+import { Plugin } from 'postcss'
+import { Stats } from 'browserslist'
+
+declare function autoprefixer<T extends string[]>(
+  ...args: [...T, autoprefixer.Options]
+): Plugin & autoprefixer.ExportedAPI
+
+declare function autoprefixer(
+  browsers: string[],
+  options?: autoprefixer.Options
+): Plugin & autoprefixer.ExportedAPI
+
+declare function autoprefixer(
+  options?: autoprefixer.Options
+): Plugin & autoprefixer.ExportedAPI
+
+declare namespace autoprefixer {
+  type GridValue = 'autoplace' | 'no-autoplace'
+
+  interface Options {
+    /** environment for `Browserslist` */
+    env?: string
+
+    /** should Autoprefixer use Visual Cascade, if CSS is uncompressed */
+    cascade?: boolean
+
+    /** should Autoprefixer add prefixes. */
+    add?: boolean
+
+    /** should Autoprefixer [remove outdated] prefixes */
+    remove?: boolean
+
+    /** should Autoprefixer add prefixes for @supports parameters. */
+    supports?: boolean
+
+    /** should Autoprefixer add prefixes for flexbox properties */
+    flexbox?: boolean | 'no-2009'
+
+    /** should Autoprefixer add IE 10-11 prefixes for Grid Layout properties */
+    grid?: boolean | GridValue
+
+    /** custom usage statistics for > 10% in my stats browsers query */
+    stats?: Stats
+
+    /**
+     * list of queries for target browsers.
+     * Try to not use it.
+     * The best practice is to use `.browserslistrc` config or `browserslist` key in `package.json`
+     * to share target browsers with Babel, ESLint and Stylelint
+     */
+    overrideBrowserslist?: string | string[]
+
+    /** do not raise error on unknown browser version in `Browserslist` config. */
+    ignoreUnknownVersions?: boolean
+  }
+
+  interface ExportedAPI {
+    /** Autoprefixer data */
+    data: {
+      browsers: { [browser: string]: object | undefined }
+      prefixes: { [prefixName: string]: object | undefined }
+    }
+
+    /** Autoprefixer default browsers */
+    defaults: string[]
+
+    /** Inspect with default Autoprefixer */
+    info(options?: { from?: string }): string
+
+    options: Options
+
+    browsers: string | string[]
+  }
+
+  /** Autoprefixer data */
+  let data: ExportedAPI['data']
+
+  /** Autoprefixer default browsers */
+  let defaults: ExportedAPI['defaults']
+
+  /** Inspect with default Autoprefixer */
+  let info: ExportedAPI['info']
+
+  let postcss: true
+}
+
+declare global {
+  namespace NodeJS {
+    interface ProcessEnv {
+      AUTOPREFIXER_GRID?: autoprefixer.GridValue
+    }
+  }
+}
+
+export = autoprefixer
Index: node_modules/autoprefixer/lib/autoprefixer.js
===================================================================
--- node_modules/autoprefixer/lib/autoprefixer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/autoprefixer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,164 @@
+let browserslist = require('browserslist')
+let { agents } = require('caniuse-lite/dist/unpacker/agents')
+let pico = require('picocolors')
+
+let dataPrefixes = require('../data/prefixes')
+let Browsers = require('./browsers')
+let getInfo = require('./info')
+let Prefixes = require('./prefixes')
+
+let autoprefixerData = { browsers: agents, prefixes: dataPrefixes }
+
+const WARNING =
+  '\n' +
+  '  Replace Autoprefixer `browsers` option to Browserslist config.\n' +
+  '  Use `browserslist` key in `package.json` or `.browserslistrc` file.\n' +
+  '\n' +
+  '  Using `browsers` option can cause errors. Browserslist config can\n' +
+  '  be used for Babel, Autoprefixer, postcss-normalize and other tools.\n' +
+  '\n' +
+  '  If you really need to use option, rename it to `overrideBrowserslist`.\n' +
+  '\n' +
+  '  Learn more at:\n' +
+  '  https://github.com/browserslist/browserslist#readme\n' +
+  '  https://twitter.com/browserslist\n' +
+  '\n'
+
+function isPlainObject(obj) {
+  return Object.prototype.toString.apply(obj) === '[object Object]'
+}
+
+let cache = new Map()
+
+function timeCapsule(result, prefixes) {
+  if (prefixes.browsers.selected.length === 0) {
+    return
+  }
+  if (prefixes.add.selectors.length > 0) {
+    return
+  }
+  if (Object.keys(prefixes.add).length > 2) {
+    return
+  }
+  /* c8 ignore next 11 */
+  result.warn(
+    'Autoprefixer target browsers do not need any prefixes.' +
+      'You do not need Autoprefixer anymore.\n' +
+      'Check your Browserslist config to be sure that your targets ' +
+      'are set up correctly.\n' +
+      '\n' +
+      '  Learn more at:\n' +
+      '  https://github.com/postcss/autoprefixer#readme\n' +
+      '  https://github.com/browserslist/browserslist#readme\n' +
+      '\n'
+  )
+}
+
+module.exports = plugin
+
+function plugin(...reqs) {
+  let options
+  if (reqs.length === 1 && isPlainObject(reqs[0])) {
+    options = reqs[0]
+    reqs = undefined
+  } else if (reqs.length === 0 || (reqs.length === 1 && !reqs[0])) {
+    reqs = undefined
+  } else if (reqs.length <= 2 && (Array.isArray(reqs[0]) || !reqs[0])) {
+    options = reqs[1]
+    reqs = reqs[0]
+  } else if (typeof reqs[reqs.length - 1] === 'object') {
+    options = reqs.pop()
+  }
+
+  if (!options) {
+    options = {}
+  }
+
+  if (options.browser) {
+    throw new Error(
+      'Change `browser` option to `overrideBrowserslist` in Autoprefixer'
+    )
+  } else if (options.browserslist) {
+    throw new Error(
+      'Change `browserslist` option to `overrideBrowserslist` in Autoprefixer'
+    )
+  }
+
+  if (options.overrideBrowserslist) {
+    reqs = options.overrideBrowserslist
+  } else if (options.browsers) {
+    if (typeof console !== 'undefined' && console.warn) {
+      console.warn(
+        pico.red(WARNING.replace(/`[^`]+`/g, i => pico.yellow(i.slice(1, -1))))
+      )
+    }
+    reqs = options.browsers
+  }
+
+  let brwlstOpts = {
+    env: options.env,
+    ignoreUnknownVersions: options.ignoreUnknownVersions,
+    stats: options.stats
+  }
+
+  function loadPrefixes(opts) {
+    let d = autoprefixerData
+    let browsers = new Browsers(d.browsers, reqs, opts, brwlstOpts)
+    let key = browsers.selected.join(', ') + JSON.stringify(options)
+
+    if (!cache.has(key)) {
+      cache.set(key, new Prefixes(d.prefixes, browsers, options))
+    }
+
+    return cache.get(key)
+  }
+
+  return {
+    browsers: reqs,
+
+    info(opts) {
+      opts = opts || {}
+      opts.from = opts.from || process.cwd()
+      return getInfo(loadPrefixes(opts))
+    },
+
+    options,
+
+    postcssPlugin: 'autoprefixer',
+    prepare(result) {
+      let prefixes = loadPrefixes({
+        env: options.env,
+        from: result.opts.from
+      })
+
+      return {
+        OnceExit(root) {
+          timeCapsule(result, prefixes)
+          if (options.remove !== false) {
+            prefixes.processor.remove(root, result)
+          }
+          if (options.add !== false) {
+            prefixes.processor.add(root, result)
+          }
+        }
+      }
+    }
+  }
+}
+
+plugin.postcss = true
+
+/**
+ * Autoprefixer data
+ */
+plugin.data = autoprefixerData
+
+/**
+ * Autoprefixer default browsers
+ */
+plugin.defaults = browserslist.defaults
+
+/**
+ * Inspect with default Autoprefixer
+ */
+plugin.info = () => plugin().info()
Index: node_modules/autoprefixer/lib/brackets.js
===================================================================
--- node_modules/autoprefixer/lib/brackets.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/brackets.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,51 @@
+function last(array) {
+  return array[array.length - 1]
+}
+
+let brackets = {
+  /**
+   * Parse string to nodes tree
+   */
+  parse(str) {
+    let current = ['']
+    let stack = [current]
+
+    for (let sym of str) {
+      if (sym === '(') {
+        current = ['']
+        last(stack).push(current)
+        stack.push(current)
+        continue
+      }
+
+      if (sym === ')') {
+        stack.pop()
+        current = last(stack)
+        current.push('')
+        continue
+      }
+
+      current[current.length - 1] += sym
+    }
+
+    return stack[0]
+  },
+
+  /**
+   * Generate output string by nodes tree
+   */
+  stringify(ast) {
+    let result = ''
+    for (let i of ast) {
+      if (typeof i === 'object') {
+        result += `(${brackets.stringify(i)})`
+        continue
+      }
+
+      result += i
+    }
+    return result
+  }
+}
+
+module.exports = brackets
Index: node_modules/autoprefixer/lib/browsers.js
===================================================================
--- node_modules/autoprefixer/lib/browsers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/browsers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,79 @@
+let browserslist = require('browserslist')
+let { agents } = require('caniuse-lite/dist/unpacker/agents')
+
+let utils = require('./utils')
+
+class Browsers {
+  constructor(data, requirements, options, browserslistOpts) {
+    this.data = data
+    this.options = options || {}
+    this.browserslistOpts = browserslistOpts || {}
+    this.selected = this.parse(requirements)
+  }
+
+  /**
+   * Return all prefixes for default browser data
+   */
+  static prefixes() {
+    if (this.prefixesCache) {
+      return this.prefixesCache
+    }
+
+    this.prefixesCache = []
+    for (let name in agents) {
+      this.prefixesCache.push(`-${agents[name].prefix}-`)
+    }
+
+    this.prefixesCache = utils
+      .uniq(this.prefixesCache)
+      .sort((a, b) => b.length - a.length)
+
+    return this.prefixesCache
+  }
+
+  /**
+   * Check is value contain any possible prefix
+   */
+  static withPrefix(value) {
+    if (!this.prefixesRegexp) {
+      this.prefixesRegexp = new RegExp(this.prefixes().join('|'))
+    }
+
+    return this.prefixesRegexp.test(value)
+  }
+
+  /**
+   * Is browser is selected by requirements
+   */
+  isSelected(browser) {
+    return this.selected.includes(browser)
+  }
+
+  /**
+   * Return browsers selected by requirements
+   */
+  parse(requirements) {
+    let opts = {}
+    for (let i in this.browserslistOpts) {
+      opts[i] = this.browserslistOpts[i]
+    }
+    opts.path = this.options.from
+    return browserslist(requirements, opts)
+  }
+
+  /**
+   * Return prefix for selected browser
+   */
+  prefix(browser) {
+    let [name, version] = browser.split(' ')
+    let data = this.data[name]
+
+    let prefix = data.prefix_exceptions && data.prefix_exceptions[version]
+    if (!prefix) {
+      prefix = data.prefix
+    }
+    return `-${prefix}-`
+  }
+}
+
+module.exports = Browsers
Index: node_modules/autoprefixer/lib/declaration.js
===================================================================
--- node_modules/autoprefixer/lib/declaration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/declaration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,187 @@
+let Browsers = require('./browsers')
+let Prefixer = require('./prefixer')
+let utils = require('./utils')
+
+class Declaration extends Prefixer {
+  /**
+   * Clone and add prefixes for declaration
+   */
+  add(decl, prefix, prefixes, result) {
+    let prefixed = this.prefixed(decl.prop, prefix)
+    if (
+      this.isAlready(decl, prefixed) ||
+      this.otherPrefixes(decl.value, prefix)
+    ) {
+      return undefined
+    }
+    return this.insert(decl, prefix, prefixes, result)
+  }
+
+  /**
+   * Calculate indentation to create visual cascade
+   */
+  calcBefore(prefixes, decl, prefix = '') {
+    let max = this.maxPrefixed(prefixes, decl)
+    let diff = max - utils.removeNote(prefix).length
+
+    let before = decl.raw('before')
+    if (diff > 0) {
+      before += Array(diff).fill(' ').join('')
+    }
+
+    return before
+  }
+
+  /**
+   * Always true, because we already get prefixer by property name
+   */
+  check(/* decl */) {
+    return true
+  }
+
+  /**
+   * Clone and insert new declaration
+   */
+  insert(decl, prefix, prefixes) {
+    let cloned = this.set(this.clone(decl), prefix)
+    if (!cloned) return undefined
+
+    let already = decl.parent.some(
+      i => i.prop === cloned.prop && i.value === cloned.value
+    )
+    if (already) {
+      return undefined
+    }
+
+    if (this.needCascade(decl)) {
+      cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+    }
+    return decl.parent.insertBefore(decl, cloned)
+  }
+
+  /**
+   * Did this declaration has this prefix above
+   */
+  isAlready(decl, prefixed) {
+    let already = this.all.group(decl).up(i => i.prop === prefixed)
+    if (!already) {
+      already = this.all.group(decl).down(i => i.prop === prefixed)
+    }
+    return already
+  }
+
+  /**
+   * Return maximum length of possible prefixed property
+   */
+  maxPrefixed(prefixes, decl) {
+    if (decl._autoprefixerMax) {
+      return decl._autoprefixerMax
+    }
+
+    let max = 0
+    for (let prefix of prefixes) {
+      prefix = utils.removeNote(prefix)
+      if (prefix.length > max) {
+        max = prefix.length
+      }
+    }
+    decl._autoprefixerMax = max
+
+    return decl._autoprefixerMax
+  }
+
+  /**
+   * Should we use visual cascade for prefixes
+   */
+  needCascade(decl) {
+    if (!decl._autoprefixerCascade) {
+      decl._autoprefixerCascade =
+        this.all.options.cascade !== false && decl.raw('before').includes('\n')
+    }
+    return decl._autoprefixerCascade
+  }
+
+  /**
+   * Return unprefixed version of property
+   */
+  normalize(prop) {
+    return prop
+  }
+
+  /**
+   * Return list of prefixed properties to clean old prefixes
+   */
+  old(prop, prefix) {
+    return [this.prefixed(prop, prefix)]
+  }
+
+  /**
+   * Check `value`, that it contain other prefixes, rather than `prefix`
+   */
+  otherPrefixes(value, prefix) {
+    for (let other of Browsers.prefixes()) {
+      if (other === prefix) {
+        continue
+      }
+      if (value.includes(other)) {
+        return value.replace(/var\([^)]+\)/, '').includes(other)
+      }
+    }
+    return false
+  }
+
+  /**
+   * Return prefixed version of property
+   */
+  prefixed(prop, prefix) {
+    return prefix + prop
+  }
+
+  /**
+   * Add spaces for visual cascade
+   */
+  process(decl, result) {
+    if (!this.needCascade(decl)) {
+      super.process(decl, result)
+      return
+    }
+
+    let prefixes = super.process(decl, result)
+
+    if (!prefixes || !prefixes.length) {
+      return
+    }
+
+    this.restoreBefore(decl)
+    decl.raws.before = this.calcBefore(prefixes, decl)
+  }
+
+  /**
+   * Remove visual cascade
+   */
+  restoreBefore(decl) {
+    let lines = decl.raw('before').split('\n')
+    let min = lines[lines.length - 1]
+
+    this.all.group(decl).up(prefixed => {
+      let array = prefixed.raw('before').split('\n')
+      let last = array[array.length - 1]
+      if (last.length < min.length) {
+        min = last
+      }
+    })
+
+    lines[lines.length - 1] = min
+    decl.raws.before = lines.join('\n')
+  }
+
+  /**
+   * Set prefix to declaration
+   */
+  set(decl, prefix) {
+    decl.prop = this.prefixed(decl.prop, prefix)
+    return decl
+  }
+}
+
+module.exports = Declaration
Index: node_modules/autoprefixer/lib/hacks/align-content.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/align-content.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/align-content.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,49 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class AlignContent extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'align-content'
+  }
+
+  /**
+   * Change property name for 2012 spec
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2012) {
+      return prefix + 'flex-line-pack'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Change value for 2012 spec and ignore prefix for 2009
+   */
+  set(decl, prefix) {
+    let spec = flexSpec(prefix)[0]
+    if (spec === 2012) {
+      decl.value = AlignContent.oldValues[decl.value] || decl.value
+      return super.set(decl, prefix)
+    }
+    if (spec === 'final') {
+      return super.set(decl, prefix)
+    }
+    return undefined
+  }
+}
+
+AlignContent.names = ['align-content', 'flex-line-pack']
+
+AlignContent.oldValues = {
+  'flex-end': 'end',
+  'flex-start': 'start',
+  'space-around': 'distribute',
+  'space-between': 'justify'
+}
+
+module.exports = AlignContent
Index: node_modules/autoprefixer/lib/hacks/align-items.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/align-items.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/align-items.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,46 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class AlignItems extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'align-items'
+  }
+
+  /**
+   * Change property name for 2009 and 2012 specs
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2009) {
+      return prefix + 'box-align'
+    }
+    if (spec === 2012) {
+      return prefix + 'flex-align'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Change value for 2009 and 2012 specs
+   */
+  set(decl, prefix) {
+    let spec = flexSpec(prefix)[0]
+    if (spec === 2009 || spec === 2012) {
+      decl.value = AlignItems.oldValues[decl.value] || decl.value
+    }
+    return super.set(decl, prefix)
+  }
+}
+
+AlignItems.names = ['align-items', 'flex-align', 'box-align']
+
+AlignItems.oldValues = {
+  'flex-end': 'end',
+  'flex-start': 'start'
+}
+
+module.exports = AlignItems
Index: node_modules/autoprefixer/lib/hacks/align-self.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/align-self.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/align-self.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,56 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class AlignSelf extends Declaration {
+  check(decl) {
+    return (
+      decl.parent &&
+      !decl.parent.some(i => {
+        return i.prop && i.prop.startsWith('grid-')
+      })
+    )
+  }
+
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'align-self'
+  }
+
+  /**
+   * Change property name for 2012 specs
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2012) {
+      return prefix + 'flex-item-align'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Change value for 2012 spec and ignore prefix for 2009
+   */
+  set(decl, prefix) {
+    let spec = flexSpec(prefix)[0]
+    if (spec === 2012) {
+      decl.value = AlignSelf.oldValues[decl.value] || decl.value
+      return super.set(decl, prefix)
+    }
+    if (spec === 'final') {
+      return super.set(decl, prefix)
+    }
+    return undefined
+  }
+}
+
+AlignSelf.names = ['align-self', 'flex-item-align']
+
+AlignSelf.oldValues = {
+  'flex-end': 'end',
+  'flex-start': 'start'
+}
+
+module.exports = AlignSelf
Index: node_modules/autoprefixer/lib/hacks/animation.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/animation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/animation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,17 @@
+let Declaration = require('../declaration')
+
+class Animation extends Declaration {
+  /**
+   * Don’t add prefixes for modern values.
+   */
+  check(decl) {
+    return !decl.value.split(/\s+/).some(i => {
+      let lower = i.toLowerCase()
+      return lower === 'reverse' || lower === 'alternate-reverse'
+    })
+  }
+}
+
+Animation.names = ['animation', 'animation-direction']
+
+module.exports = Animation
Index: node_modules/autoprefixer/lib/hacks/appearance.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/appearance.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/appearance.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,23 @@
+let Declaration = require('../declaration')
+let utils = require('../utils')
+
+class Appearance extends Declaration {
+  constructor(name, prefixes, all) {
+    super(name, prefixes, all)
+
+    if (this.prefixes) {
+      this.prefixes = utils.uniq(
+        this.prefixes.map(i => {
+          if (i === '-ms-') {
+            return '-webkit-'
+          }
+          return i
+        })
+      )
+    }
+  }
+}
+
+Appearance.names = ['appearance']
+
+module.exports = Appearance
Index: node_modules/autoprefixer/lib/hacks/autofill.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/autofill.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/autofill.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,26 @@
+let Selector = require('../selector')
+let utils = require('../utils')
+
+class Autofill extends Selector {
+  constructor(name, prefixes, all) {
+    super(name, prefixes, all)
+
+    if (this.prefixes) {
+      this.prefixes = utils.uniq(this.prefixes.map(() => '-webkit-'))
+    }
+  }
+
+  /**
+   * Return different selectors depend on prefix
+   */
+  prefixed(prefix) {
+    if (prefix === '-webkit-') {
+      return ':-webkit-autofill'
+    }
+    return `:${prefix}autofill`
+  }
+}
+
+Autofill.names = [':autofill']
+
+module.exports = Autofill
Index: node_modules/autoprefixer/lib/hacks/backdrop-filter.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/backdrop-filter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/backdrop-filter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,20 @@
+let Declaration = require('../declaration')
+let utils = require('../utils')
+
+class BackdropFilter extends Declaration {
+  constructor(name, prefixes, all) {
+    super(name, prefixes, all)
+
+    if (this.prefixes) {
+      this.prefixes = utils.uniq(
+        this.prefixes.map(i => {
+          return i === '-ms-' ? '-webkit-' : i
+        })
+      )
+    }
+  }
+}
+
+BackdropFilter.names = ['backdrop-filter']
+
+module.exports = BackdropFilter
Index: node_modules/autoprefixer/lib/hacks/background-clip.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/background-clip.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/background-clip.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,24 @@
+let Declaration = require('../declaration')
+let utils = require('../utils')
+
+class BackgroundClip extends Declaration {
+  constructor(name, prefixes, all) {
+    super(name, prefixes, all)
+
+    if (this.prefixes) {
+      this.prefixes = utils.uniq(
+        this.prefixes.map(i => {
+          return i === '-ms-' ? '-webkit-' : i
+        })
+      )
+    }
+  }
+
+  check(decl) {
+    return decl.value.toLowerCase() === 'text'
+  }
+}
+
+BackgroundClip.names = ['background-clip']
+
+module.exports = BackgroundClip
Index: node_modules/autoprefixer/lib/hacks/background-size.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/background-size.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/background-size.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,23 @@
+let Declaration = require('../declaration')
+
+class BackgroundSize extends Declaration {
+  /**
+   * Duplication parameter for -webkit- browsers
+   */
+  set(decl, prefix) {
+    let value = decl.value.toLowerCase()
+    if (
+      prefix === '-webkit-' &&
+      !value.includes(' ') &&
+      value !== 'contain' &&
+      value !== 'cover'
+    ) {
+      decl.value = decl.value + ' ' + decl.value
+    }
+    return super.set(decl, prefix)
+  }
+}
+
+BackgroundSize.names = ['background-size']
+
+module.exports = BackgroundSize
Index: node_modules/autoprefixer/lib/hacks/block-logical.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/block-logical.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/block-logical.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,40 @@
+let Declaration = require('../declaration')
+
+class BlockLogical extends Declaration {
+  /**
+   * Return property name by spec
+   */
+  normalize(prop) {
+    if (prop.includes('-before')) {
+      return prop.replace('-before', '-block-start')
+    }
+    return prop.replace('-after', '-block-end')
+  }
+
+  /**
+   * Use old syntax for -moz- and -webkit-
+   */
+  prefixed(prop, prefix) {
+    if (prop.includes('-start')) {
+      return prefix + prop.replace('-block-start', '-before')
+    }
+    return prefix + prop.replace('-block-end', '-after')
+  }
+}
+
+BlockLogical.names = [
+  'border-block-start',
+  'border-block-end',
+  'margin-block-start',
+  'margin-block-end',
+  'padding-block-start',
+  'padding-block-end',
+  'border-before',
+  'border-after',
+  'margin-before',
+  'margin-after',
+  'padding-before',
+  'padding-after'
+]
+
+module.exports = BlockLogical
Index: node_modules/autoprefixer/lib/hacks/border-image.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/border-image.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/border-image.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,15 @@
+let Declaration = require('../declaration')
+
+class BorderImage extends Declaration {
+  /**
+   * Remove fill parameter for prefixed declarations
+   */
+  set(decl, prefix) {
+    decl.value = decl.value.replace(/\s+fill(\s)/, '$1')
+    return super.set(decl, prefix)
+  }
+}
+
+BorderImage.names = ['border-image']
+
+module.exports = BorderImage
Index: node_modules/autoprefixer/lib/hacks/border-radius.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/border-radius.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/border-radius.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,40 @@
+let Declaration = require('../declaration')
+
+class BorderRadius extends Declaration {
+  /**
+   * Return unprefixed version of property
+   */
+  normalize(prop) {
+    return BorderRadius.toNormal[prop] || prop
+  }
+
+  /**
+   * Change syntax, when add Mozilla prefix
+   */
+  prefixed(prop, prefix) {
+    if (prefix === '-moz-') {
+      return prefix + (BorderRadius.toMozilla[prop] || prop)
+    }
+    return super.prefixed(prop, prefix)
+  }
+}
+
+BorderRadius.names = ['border-radius']
+
+BorderRadius.toMozilla = {}
+BorderRadius.toNormal = {}
+
+for (let ver of ['top', 'bottom']) {
+  for (let hor of ['left', 'right']) {
+    let normal = `border-${ver}-${hor}-radius`
+    let mozilla = `border-radius-${ver}${hor}`
+
+    BorderRadius.names.push(normal)
+    BorderRadius.names.push(mozilla)
+
+    BorderRadius.toMozilla[normal] = mozilla
+    BorderRadius.toNormal[mozilla] = normal
+  }
+}
+
+module.exports = BorderRadius
Index: node_modules/autoprefixer/lib/hacks/break-props.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/break-props.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/break-props.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,63 @@
+let Declaration = require('../declaration')
+
+class BreakProps extends Declaration {
+  /**
+   * Don’t prefix some values
+   */
+  insert(decl, prefix, prefixes) {
+    if (decl.prop !== 'break-inside') {
+      return super.insert(decl, prefix, prefixes)
+    }
+    if (/region/i.test(decl.value) || /page/i.test(decl.value)) {
+      return undefined
+    }
+    return super.insert(decl, prefix, prefixes)
+  }
+
+  /**
+   * Return property name by final spec
+   */
+  normalize(prop) {
+    if (prop.includes('inside')) {
+      return 'break-inside'
+    }
+    if (prop.includes('before')) {
+      return 'break-before'
+    }
+    return 'break-after'
+  }
+
+  /**
+   * Change name for -webkit- and -moz- prefix
+   */
+  prefixed(prop, prefix) {
+    return `${prefix}column-${prop}`
+  }
+
+  /**
+   * Change prefixed value for avoid-column and avoid-page
+   */
+  set(decl, prefix) {
+    if (
+      (decl.prop === 'break-inside' && decl.value === 'avoid-column') ||
+      decl.value === 'avoid-page'
+    ) {
+      decl.value = 'avoid'
+    }
+    return super.set(decl, prefix)
+  }
+}
+
+BreakProps.names = [
+  'break-inside',
+  'page-break-inside',
+  'column-break-inside',
+  'break-before',
+  'page-break-before',
+  'column-break-before',
+  'break-after',
+  'page-break-after',
+  'column-break-after'
+]
+
+module.exports = BreakProps
Index: node_modules/autoprefixer/lib/hacks/cross-fade.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/cross-fade.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/cross-fade.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,35 @@
+let list = require('postcss').list
+
+let Value = require('../value')
+
+class CrossFade extends Value {
+  replace(string, prefix) {
+    return list
+      .space(string)
+      .map(value => {
+        if (value.slice(0, +this.name.length + 1) !== this.name + '(') {
+          return value
+        }
+
+        let close = value.lastIndexOf(')')
+        let after = value.slice(close + 1)
+        let args = value.slice(this.name.length + 1, close)
+
+        if (prefix === '-webkit-') {
+          let match = args.match(/\d*.?\d+%?/)
+          if (match) {
+            args = args.slice(match[0].length).trim()
+            args += `, ${match[0]}`
+          } else {
+            args += ', 0.5'
+          }
+        }
+        return prefix + this.name + '(' + args + ')' + after
+      })
+      .join(' ')
+  }
+}
+
+CrossFade.names = ['cross-fade']
+
+module.exports = CrossFade
Index: node_modules/autoprefixer/lib/hacks/display-flex.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/display-flex.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/display-flex.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,65 @@
+let OldValue = require('../old-value')
+let Value = require('../value')
+let flexSpec = require('./flex-spec')
+
+class DisplayFlex extends Value {
+  constructor(name, prefixes) {
+    super(name, prefixes)
+    if (name === 'display-flex') {
+      this.name = 'flex'
+    }
+  }
+
+  /**
+   * Faster check for flex value
+   */
+  check(decl) {
+    return decl.prop === 'display' && decl.value === this.name
+  }
+
+  /**
+   * Change value for old specs
+   */
+  old(prefix) {
+    let prefixed = this.prefixed(prefix)
+    if (!prefixed) return undefined
+    return new OldValue(this.name, prefixed)
+  }
+
+  /**
+   * Return value by spec
+   */
+  prefixed(prefix) {
+    let spec, value
+    ;[spec, prefix] = flexSpec(prefix)
+
+    if (spec === 2009) {
+      if (this.name === 'flex') {
+        value = 'box'
+      } else {
+        value = 'inline-box'
+      }
+    } else if (spec === 2012) {
+      if (this.name === 'flex') {
+        value = 'flexbox'
+      } else {
+        value = 'inline-flexbox'
+      }
+    } else if (spec === 'final') {
+      value = this.name
+    }
+
+    return prefix + value
+  }
+
+  /**
+   * Add prefix to value depend on flebox spec version
+   */
+  replace(string, prefix) {
+    return this.prefixed(prefix)
+  }
+}
+
+DisplayFlex.names = ['display-flex', 'inline-flex']
+
+module.exports = DisplayFlex
Index: node_modules/autoprefixer/lib/hacks/display-grid.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/display-grid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/display-grid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,21 @@
+let Value = require('../value')
+
+class DisplayGrid extends Value {
+  constructor(name, prefixes) {
+    super(name, prefixes)
+    if (name === 'display-grid') {
+      this.name = 'grid'
+    }
+  }
+
+  /**
+   * Faster check for flex value
+   */
+  check(decl) {
+    return decl.prop === 'display' && decl.value === this.name
+  }
+}
+
+DisplayGrid.names = ['display-grid', 'inline-grid']
+
+module.exports = DisplayGrid
Index: node_modules/autoprefixer/lib/hacks/file-selector-button.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/file-selector-button.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/file-selector-button.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,26 @@
+let Selector = require('../selector')
+let utils = require('../utils')
+
+class FileSelectorButton extends Selector {
+  constructor(name, prefixes, all) {
+    super(name, prefixes, all)
+
+    if (this.prefixes) {
+      this.prefixes = utils.uniq(this.prefixes.map(() => '-webkit-'))
+    }
+  }
+
+  /**
+   * Return different selectors depend on prefix
+   */
+  prefixed(prefix) {
+    if (prefix === '-webkit-') {
+      return '::-webkit-file-upload-button'
+    }
+    return `::${prefix}file-selector-button`
+  }
+}
+
+FileSelectorButton.names = ['::file-selector-button']
+
+module.exports = FileSelectorButton
Index: node_modules/autoprefixer/lib/hacks/filter-value.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/filter-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/filter-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,14 @@
+let Value = require('../value')
+
+class FilterValue extends Value {
+  constructor(name, prefixes) {
+    super(name, prefixes)
+    if (name === 'filter-function') {
+      this.name = 'filter'
+    }
+  }
+}
+
+FilterValue.names = ['filter', 'filter-function']
+
+module.exports = FilterValue
Index: node_modules/autoprefixer/lib/hacks/filter.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/filter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/filter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,19 @@
+let Declaration = require('../declaration')
+
+class Filter extends Declaration {
+  /**
+   * Check is it Internet Explorer filter
+   */
+  check(decl) {
+    let v = decl.value
+    return (
+      !v.toLowerCase().includes('alpha(') &&
+      !v.includes('DXImageTransform.Microsoft') &&
+      !v.includes('data:image/svg+xml')
+    )
+  }
+}
+
+Filter.names = ['filter']
+
+module.exports = Filter
Index: node_modules/autoprefixer/lib/hacks/flex-basis.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/flex-basis.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/flex-basis.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,39 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class FlexBasis extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'flex-basis'
+  }
+
+  /**
+   * Return flex property for 2012 spec
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2012) {
+      return prefix + 'flex-preferred-size'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Ignore 2009 spec and use flex property for 2012
+   */
+  set(decl, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2012 || spec === 'final') {
+      return super.set(decl, prefix)
+    }
+    return undefined
+  }
+}
+
+FlexBasis.names = ['flex-basis', 'flex-preferred-size']
+
+module.exports = FlexBasis
Index: node_modules/autoprefixer/lib/hacks/flex-direction.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/flex-direction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/flex-direction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,72 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class FlexDirection extends Declaration {
+  /**
+   * Use two properties for 2009 spec
+   */
+  insert(decl, prefix, prefixes) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec !== 2009) {
+      return super.insert(decl, prefix, prefixes)
+    }
+    let already = decl.parent.some(
+      i =>
+        i.prop === prefix + 'box-orient' || i.prop === prefix + 'box-direction'
+    )
+    if (already) {
+      return undefined
+    }
+
+    let v = decl.value
+    let dir, orient
+    if (v === 'inherit' || v === 'initial' || v === 'unset') {
+      orient = v
+      dir = v
+    } else {
+      orient = v.includes('row') ? 'horizontal' : 'vertical'
+      dir = v.includes('reverse') ? 'reverse' : 'normal'
+    }
+
+    let cloned = this.clone(decl)
+    cloned.prop = prefix + 'box-orient'
+    cloned.value = orient
+    if (this.needCascade(decl)) {
+      cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+    }
+    decl.parent.insertBefore(decl, cloned)
+
+    cloned = this.clone(decl)
+    cloned.prop = prefix + 'box-direction'
+    cloned.value = dir
+    if (this.needCascade(decl)) {
+      cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+    }
+    return decl.parent.insertBefore(decl, cloned)
+  }
+
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'flex-direction'
+  }
+
+  /**
+   * Clean two properties for 2009 spec
+   */
+  old(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2009) {
+      return [prefix + 'box-orient', prefix + 'box-direction']
+    } else {
+      return super.old(prop, prefix)
+    }
+  }
+}
+
+FlexDirection.names = ['flex-direction', 'box-direction', 'box-orient']
+
+module.exports = FlexDirection
Index: node_modules/autoprefixer/lib/hacks/flex-flow.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/flex-flow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/flex-flow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,53 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class FlexFlow extends Declaration {
+  /**
+   * Use two properties for 2009 spec
+   */
+  insert(decl, prefix, prefixes) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec !== 2009) {
+      return super.insert(decl, prefix, prefixes)
+    }
+    let values = decl.value
+      .split(/\s+/)
+      .filter(i => i !== 'wrap' && i !== 'nowrap' && 'wrap-reverse')
+    if (values.length === 0) {
+      return undefined
+    }
+
+    let already = decl.parent.some(
+      i =>
+        i.prop === prefix + 'box-orient' || i.prop === prefix + 'box-direction'
+    )
+    if (already) {
+      return undefined
+    }
+
+    let value = values[0]
+    let orient = value.includes('row') ? 'horizontal' : 'vertical'
+    let dir = value.includes('reverse') ? 'reverse' : 'normal'
+
+    let cloned = this.clone(decl)
+    cloned.prop = prefix + 'box-orient'
+    cloned.value = orient
+    if (this.needCascade(decl)) {
+      cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+    }
+    decl.parent.insertBefore(decl, cloned)
+
+    cloned = this.clone(decl)
+    cloned.prop = prefix + 'box-direction'
+    cloned.value = dir
+    if (this.needCascade(decl)) {
+      cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+    }
+    return decl.parent.insertBefore(decl, cloned)
+  }
+}
+
+FlexFlow.names = ['flex-flow', 'box-direction', 'box-orient']
+
+module.exports = FlexFlow
Index: node_modules/autoprefixer/lib/hacks/flex-grow.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/flex-grow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/flex-grow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,30 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class Flex extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'flex'
+  }
+
+  /**
+   * Return flex property for 2009 and 2012 specs
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2009) {
+      return prefix + 'box-flex'
+    }
+    if (spec === 2012) {
+      return prefix + 'flex-positive'
+    }
+    return super.prefixed(prop, prefix)
+  }
+}
+
+Flex.names = ['flex-grow', 'flex-positive']
+
+module.exports = Flex
Index: node_modules/autoprefixer/lib/hacks/flex-shrink.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/flex-shrink.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/flex-shrink.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,39 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class FlexShrink extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'flex-shrink'
+  }
+
+  /**
+   * Return flex property for 2012 spec
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2012) {
+      return prefix + 'flex-negative'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Ignore 2009 spec and use flex property for 2012
+   */
+  set(decl, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2012 || spec === 'final') {
+      return super.set(decl, prefix)
+    }
+    return undefined
+  }
+}
+
+FlexShrink.names = ['flex-shrink', 'flex-negative']
+
+module.exports = FlexShrink
Index: node_modules/autoprefixer/lib/hacks/flex-spec.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/flex-spec.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/flex-spec.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,19 @@
+/**
+ * Return flexbox spec versions by prefix
+ */
+module.exports = function (prefix) {
+  let spec
+  if (prefix === '-webkit- 2009' || prefix === '-moz-') {
+    spec = 2009
+  } else if (prefix === '-ms-') {
+    spec = 2012
+  } else if (prefix === '-webkit-') {
+    spec = 'final'
+  }
+
+  if (prefix === '-webkit- 2009') {
+    prefix = '-webkit-'
+  }
+
+  return [spec, prefix]
+}
Index: node_modules/autoprefixer/lib/hacks/flex-wrap.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/flex-wrap.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/flex-wrap.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,19 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class FlexWrap extends Declaration {
+  /**
+   * Don't add prefix for 2009 spec
+   */
+  set(decl, prefix) {
+    let spec = flexSpec(prefix)[0]
+    if (spec !== 2009) {
+      return super.set(decl, prefix)
+    }
+    return undefined
+  }
+}
+
+FlexWrap.names = ['flex-wrap']
+
+module.exports = FlexWrap
Index: node_modules/autoprefixer/lib/hacks/flex.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/flex.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/flex.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,54 @@
+let list = require('postcss').list
+
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class Flex extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'flex'
+  }
+
+  /**
+   * Change property name for 2009 spec
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2009) {
+      return prefix + 'box-flex'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Spec 2009 supports only first argument
+   * Spec 2012 disallows unitless basis
+   */
+  set(decl, prefix) {
+    let spec = flexSpec(prefix)[0]
+    if (spec === 2009) {
+      decl.value = list.space(decl.value)[0]
+      decl.value = Flex.oldValues[decl.value] || decl.value
+      return super.set(decl, prefix)
+    }
+    if (spec === 2012) {
+      let components = list.space(decl.value)
+      if (components.length === 3 && components[2] === '0') {
+        decl.value = components.slice(0, 2).concat('0px').join(' ')
+      }
+    }
+    return super.set(decl, prefix)
+  }
+}
+
+Flex.names = ['flex', 'box-flex']
+
+Flex.oldValues = {
+  auto: '1',
+  none: '0'
+}
+
+module.exports = Flex
Index: node_modules/autoprefixer/lib/hacks/fullscreen.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/fullscreen.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/fullscreen.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,20 @@
+let Selector = require('../selector')
+
+class Fullscreen extends Selector {
+  /**
+   * Return different selectors depend on prefix
+   */
+  prefixed(prefix) {
+    if (prefix === '-webkit-') {
+      return ':-webkit-full-screen'
+    }
+    if (prefix === '-moz-') {
+      return ':-moz-full-screen'
+    }
+    return `:${prefix}fullscreen`
+  }
+}
+
+Fullscreen.names = [':fullscreen']
+
+module.exports = Fullscreen
Index: node_modules/autoprefixer/lib/hacks/gradient.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/gradient.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/gradient.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,447 @@
+let parser = require('postcss-value-parser')
+
+let OldValue = require('../old-value')
+let utils = require('../utils')
+let Value = require('../value')
+
+let IS_DIRECTION = /top|left|right|bottom/gi
+
+class Gradient extends Value {
+  /**
+   * Do not add non-webkit prefixes for list-style and object
+   */
+  add(decl, prefix) {
+    let p = decl.prop
+    if (p.includes('mask')) {
+      if (prefix === '-webkit-' || prefix === '-webkit- old') {
+        return super.add(decl, prefix)
+      }
+    } else if (
+      p === 'list-style' ||
+      p === 'list-style-image' ||
+      p === 'content'
+    ) {
+      if (prefix === '-webkit-' || prefix === '-webkit- old') {
+        return super.add(decl, prefix)
+      }
+    } else {
+      return super.add(decl, prefix)
+    }
+    return undefined
+  }
+
+  /**
+   * Get div token from exists parameters
+   */
+  cloneDiv(params) {
+    for (let i of params) {
+      if (i.type === 'div' && i.value === ',') {
+        return i
+      }
+    }
+    return { after: ' ', type: 'div', value: ',' }
+  }
+
+  /**
+   * Change colors syntax to old webkit
+   */
+  colorStops(params) {
+    let result = []
+    for (let i = 0; i < params.length; i++) {
+      let pos
+      let param = params[i]
+      let item
+      if (i === 0) {
+        continue
+      }
+
+      let color = parser.stringify(param[0])
+      if (param[1] && param[1].type === 'word') {
+        pos = param[1].value
+      } else if (param[2] && param[2].type === 'word') {
+        pos = param[2].value
+      }
+
+      let stop
+      if (i === 1 && (!pos || pos === '0%')) {
+        stop = `from(${color})`
+      } else if (i === params.length - 1 && (!pos || pos === '100%')) {
+        stop = `to(${color})`
+      } else if (pos) {
+        stop = `color-stop(${pos}, ${color})`
+      } else {
+        stop = `color-stop(${color})`
+      }
+
+      let div = param[param.length - 1]
+      params[i] = [{ type: 'word', value: stop }]
+      if (div.type === 'div' && div.value === ',') {
+        item = params[i].push(div)
+      }
+      result.push(item)
+    }
+    return result
+  }
+
+  /**
+   * Change new direction to old
+   */
+  convertDirection(params) {
+    if (params.length > 0) {
+      if (params[0].value === 'to') {
+        this.fixDirection(params)
+      } else if (params[0].value.includes('deg')) {
+        this.fixAngle(params)
+      } else if (this.isRadial(params)) {
+        this.fixRadial(params)
+      }
+    }
+    return params
+  }
+
+  /**
+   * Add 90 degrees
+   */
+  fixAngle(params) {
+    let first = params[0].value
+    first = parseFloat(first)
+    first = Math.abs(450 - first) % 360
+    first = this.roundFloat(first, 3)
+    params[0].value = `${first}deg`
+  }
+
+  /**
+   * Replace `to top left` to `bottom right`
+   */
+  fixDirection(params) {
+    params.splice(0, 2)
+
+    for (let param of params) {
+      if (param.type === 'div') {
+        break
+      }
+      if (param.type === 'word') {
+        param.value = this.revertDirection(param.value)
+      }
+    }
+  }
+
+  /**
+   * Fix radial direction syntax
+   */
+  fixRadial(params) {
+    let first = []
+    let second = []
+    let a, b, c, i, next
+
+    for (i = 0; i < params.length - 2; i++) {
+      a = params[i]
+      b = params[i + 1]
+      c = params[i + 2]
+      if (a.type === 'space' && b.value === 'at' && c.type === 'space') {
+        next = i + 3
+        break
+      } else {
+        first.push(a)
+      }
+    }
+
+    let div
+    for (i = next; i < params.length; i++) {
+      if (params[i].type === 'div') {
+        div = params[i]
+        break
+      } else {
+        second.push(params[i])
+      }
+    }
+
+    params.splice(0, i, ...second, div, ...first)
+  }
+
+  /**
+   * Look for at word
+   */
+  isRadial(params) {
+    let state = 'before'
+    for (let param of params) {
+      if (state === 'before' && param.type === 'space') {
+        state = 'at'
+      } else if (state === 'at' && param.value === 'at') {
+        state = 'after'
+      } else if (state === 'after' && param.type === 'space') {
+        return true
+      } else if (param.type === 'div') {
+        break
+      } else {
+        state = 'before'
+      }
+    }
+    return false
+  }
+
+  /**
+   * Replace old direction to new
+   */
+  newDirection(params) {
+    if (params[0].value === 'to') {
+      return params
+    }
+    IS_DIRECTION.lastIndex = 0 // reset search index of global regexp
+    if (!IS_DIRECTION.test(params[0].value)) {
+      return params
+    }
+
+    params.unshift(
+      {
+        type: 'word',
+        value: 'to'
+      },
+      {
+        type: 'space',
+        value: ' '
+      }
+    )
+
+    for (let i = 2; i < params.length; i++) {
+      if (params[i].type === 'div') {
+        break
+      }
+      if (params[i].type === 'word') {
+        params[i].value = this.revertDirection(params[i].value)
+      }
+    }
+
+    return params
+  }
+
+  /**
+   * Normalize angle
+   */
+  normalize(nodes, gradientName) {
+    if (!nodes[0]) return nodes
+
+    if (/-?\d+(.\d+)?grad/.test(nodes[0].value)) {
+      nodes[0].value = this.normalizeUnit(nodes[0].value, 400)
+    } else if (/-?\d+(.\d+)?rad/.test(nodes[0].value)) {
+      nodes[0].value = this.normalizeUnit(nodes[0].value, 2 * Math.PI)
+    } else if (/-?\d+(.\d+)?turn/.test(nodes[0].value)) {
+      nodes[0].value = this.normalizeUnit(nodes[0].value, 1)
+    } else if (nodes[0].value.includes('deg')) {
+      let num = parseFloat(nodes[0].value)
+      num = (num % 360 + 360) % 360
+      nodes[0].value = `${num}deg`
+    }
+
+    if (
+      gradientName === 'linear-gradient' ||
+      gradientName === 'repeating-linear-gradient'
+    ) {
+      let direction = nodes[0].value
+
+      // Unitless zero for `<angle>` values are allowed in CSS gradients and transforms.
+      // Spec: https://github.com/w3c/csswg-drafts/commit/602789171429b2231223ab1e5acf8f7f11652eb3
+      if (direction === '0deg' || direction === '0') {
+        nodes = this.replaceFirst(nodes, 'to', ' ', 'top')
+      } else if (direction === '90deg') {
+        nodes = this.replaceFirst(nodes, 'to', ' ', 'right')
+      } else if (direction === '180deg') {
+        nodes = this.replaceFirst(nodes, 'to', ' ', 'bottom') // default value
+      } else if (direction === '270deg') {
+        nodes = this.replaceFirst(nodes, 'to', ' ', 'left')
+      }
+    }
+
+    return nodes
+  }
+
+  /**
+   * Convert angle unit to deg
+   */
+  normalizeUnit(str, full) {
+    let num = parseFloat(str)
+    let deg = (num / full) * 360
+    return `${deg}deg`
+  }
+
+  /**
+   * Remove old WebKit gradient too
+   */
+  old(prefix) {
+    if (prefix === '-webkit-') {
+      let type
+      if (this.name === 'linear-gradient') {
+        type = 'linear'
+      } else if (this.name === 'repeating-linear-gradient') {
+        type = 'repeating-linear'
+      } else if (this.name === 'repeating-radial-gradient') {
+        type = 'repeating-radial'
+      } else {
+        type = 'radial'
+      }
+      let string = '-gradient'
+      let regexp = utils.regexp(
+        `-webkit-(${type}-gradient|gradient\\(\\s*${type})`,
+        false
+      )
+
+      return new OldValue(this.name, prefix + this.name, string, regexp)
+    } else {
+      return super.old(prefix)
+    }
+  }
+
+  /**
+   * Change direction syntax to old webkit
+   */
+  oldDirection(params) {
+    let div = this.cloneDiv(params[0])
+
+    if (params[0][0].value !== 'to') {
+      return params.unshift([
+        { type: 'word', value: Gradient.oldDirections.bottom },
+        div
+      ])
+    } else {
+      let words = []
+      for (let node of params[0].slice(2)) {
+        if (node.type === 'word') {
+          words.push(node.value.toLowerCase())
+        }
+      }
+
+      words = words.join(' ')
+      let old = Gradient.oldDirections[words] || words
+
+      params[0] = [{ type: 'word', value: old }, div]
+      return params[0]
+    }
+  }
+
+  /**
+   * Convert to old webkit syntax
+   */
+  oldWebkit(node) {
+    let { nodes } = node
+    let string = parser.stringify(node.nodes)
+
+    if (this.name !== 'linear-gradient') {
+      return false
+    }
+    if (nodes[0] && nodes[0].value.includes('deg')) {
+      return false
+    }
+    if (
+      string.includes('px') ||
+      string.includes('-corner') ||
+      string.includes('-side')
+    ) {
+      return false
+    }
+
+    let params = [[]]
+    for (let i of nodes) {
+      params[params.length - 1].push(i)
+      if (i.type === 'div' && i.value === ',') {
+        params.push([])
+      }
+    }
+
+    this.oldDirection(params)
+    this.colorStops(params)
+
+    node.nodes = []
+    for (let param of params) {
+      node.nodes = node.nodes.concat(param)
+    }
+
+    node.nodes.unshift(
+      { type: 'word', value: 'linear' },
+      this.cloneDiv(node.nodes)
+    )
+    node.value = '-webkit-gradient'
+
+    return true
+  }
+
+  /**
+   * Change degrees for webkit prefix
+   */
+  replace(string, prefix) {
+    let ast = parser(string)
+    for (let node of ast.nodes) {
+      let gradientName = this.name // gradient name
+      if (node.type === 'function' && node.value === gradientName) {
+        node.nodes = this.newDirection(node.nodes)
+        node.nodes = this.normalize(node.nodes, gradientName)
+        if (prefix === '-webkit- old') {
+          let changes = this.oldWebkit(node)
+          if (!changes) {
+            return false
+          }
+        } else {
+          node.nodes = this.convertDirection(node.nodes)
+          node.value = prefix + node.value
+        }
+      }
+    }
+    return ast.toString()
+  }
+
+  /**
+   * Replace first token
+   */
+  replaceFirst(params, ...words) {
+    let prefix = words.map(i => {
+      if (i === ' ') {
+        return { type: 'space', value: i }
+      }
+      return { type: 'word', value: i }
+    })
+    return prefix.concat(params.slice(1))
+  }
+
+  revertDirection(word) {
+    return Gradient.directions[word.toLowerCase()] || word
+  }
+
+  /**
+   * Round float and save digits under dot
+   */
+  roundFloat(float, digits) {
+    return parseFloat(float.toFixed(digits))
+  }
+}
+
+Gradient.names = [
+  'linear-gradient',
+  'repeating-linear-gradient',
+  'radial-gradient',
+  'repeating-radial-gradient'
+]
+
+Gradient.directions = {
+  bottom: 'top',
+  left: 'right',
+  right: 'left',
+  top: 'bottom' // default value
+}
+
+// Direction to replace
+Gradient.oldDirections = {
+  'bottom': 'left top, left bottom',
+  'bottom left': 'right top, left bottom',
+  'bottom right': 'left top, right bottom',
+  'left': 'right top, left top',
+
+  'left bottom': 'right top, left bottom',
+  'left top': 'right bottom, left top',
+  'right': 'left top, right top',
+  'right bottom': 'left top, right bottom',
+  'right top': 'left bottom, right top',
+  'top': 'left bottom, left top',
+  'top left': 'right bottom, left top',
+  'top right': 'left bottom, right top'
+}
+
+module.exports = Gradient
Index: node_modules/autoprefixer/lib/hacks/grid-area.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-area.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-area.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,34 @@
+let Declaration = require('../declaration')
+let utils = require('./grid-utils')
+
+class GridArea extends Declaration {
+  /**
+   * Translate grid-area to separate -ms- prefixed properties
+   */
+  insert(decl, prefix, prefixes, result) {
+    if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+    let values = utils.parse(decl)
+
+    let [rowStart, rowSpan] = utils.translate(values, 0, 2)
+    let [columnStart, columnSpan] = utils.translate(values, 1, 3)
+
+    ;[
+      ['grid-row', rowStart],
+      ['grid-row-span', rowSpan],
+      ['grid-column', columnStart],
+      ['grid-column-span', columnSpan]
+    ].forEach(([prop, value]) => {
+      utils.insertDecl(decl, prop, value)
+    })
+
+    utils.warnTemplateSelectorNotFound(decl, result)
+    utils.warnIfGridRowColumnExists(decl, result)
+
+    return undefined
+  }
+}
+
+GridArea.names = ['grid-area']
+
+module.exports = GridArea
Index: node_modules/autoprefixer/lib/hacks/grid-column-align.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-column-align.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-column-align.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+let Declaration = require('../declaration')
+
+class GridColumnAlign extends Declaration {
+  /**
+   * Do not prefix flexbox values
+   */
+  check(decl) {
+    return !decl.value.includes('flex-') && decl.value !== 'baseline'
+  }
+
+  /**
+   * Change IE property back
+   */
+  normalize() {
+    return 'justify-self'
+  }
+
+  /**
+   * Change property name for IE
+   */
+  prefixed(prop, prefix) {
+    return prefix + 'grid-column-align'
+  }
+}
+
+GridColumnAlign.names = ['grid-column-align']
+
+module.exports = GridColumnAlign
Index: node_modules/autoprefixer/lib/hacks/grid-end.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-end.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-end.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,52 @@
+let Declaration = require('../declaration')
+let { isPureNumber } = require('../utils')
+
+class GridEnd extends Declaration {
+  /**
+   * Change repeating syntax for IE
+   */
+  insert(decl, prefix, prefixes, result) {
+    if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+    let clonedDecl = this.clone(decl)
+
+    let startProp = decl.prop.replace(/end$/, 'start')
+    let spanProp = prefix + decl.prop.replace(/end$/, 'span')
+
+    if (decl.parent.some(i => i.prop === spanProp)) {
+      return undefined
+    }
+
+    clonedDecl.prop = spanProp
+
+    if (decl.value.includes('span')) {
+      clonedDecl.value = decl.value.replace(/span\s/i, '')
+    } else {
+      let startDecl
+      decl.parent.walkDecls(startProp, d => {
+        startDecl = d
+      })
+      if (startDecl) {
+        if (isPureNumber(startDecl.value)) {
+          let value = Number(decl.value) - Number(startDecl.value) + ''
+          clonedDecl.value = value
+        } else {
+          return undefined
+        }
+      } else {
+        decl.warn(
+          result,
+          `Can not prefix ${decl.prop} (${startProp} is not found)`
+        )
+      }
+    }
+
+    decl.cloneBefore(clonedDecl)
+
+    return undefined
+  }
+}
+
+GridEnd.names = ['grid-row-end', 'grid-column-end']
+
+module.exports = GridEnd
Index: node_modules/autoprefixer/lib/hacks/grid-row-align.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-row-align.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-row-align.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+let Declaration = require('../declaration')
+
+class GridRowAlign extends Declaration {
+  /**
+   * Do not prefix flexbox values
+   */
+  check(decl) {
+    return !decl.value.includes('flex-') && decl.value !== 'baseline'
+  }
+
+  /**
+   * Change IE property back
+   */
+  normalize() {
+    return 'align-self'
+  }
+
+  /**
+   * Change property name for IE
+   */
+  prefixed(prop, prefix) {
+    return prefix + 'grid-row-align'
+  }
+}
+
+GridRowAlign.names = ['grid-row-align']
+
+module.exports = GridRowAlign
Index: node_modules/autoprefixer/lib/hacks/grid-row-column.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-row-column.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-row-column.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,33 @@
+let Declaration = require('../declaration')
+let utils = require('./grid-utils')
+
+class GridRowColumn extends Declaration {
+  /**
+   * Translate grid-row / grid-column to separate -ms- prefixed properties
+   */
+  insert(decl, prefix, prefixes) {
+    if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+    let values = utils.parse(decl)
+    let [start, span] = utils.translate(values, 0, 1)
+
+    let hasStartValueSpan = values[0] && values[0].includes('span')
+
+    if (hasStartValueSpan) {
+      span = values[0].join('').replace(/\D/g, '')
+    }
+
+    ;[
+      [decl.prop, start],
+      [`${decl.prop}-span`, span]
+    ].forEach(([prop, value]) => {
+      utils.insertDecl(decl, prop, value)
+    })
+
+    return undefined
+  }
+}
+
+GridRowColumn.names = ['grid-row', 'grid-column']
+
+module.exports = GridRowColumn
Index: node_modules/autoprefixer/lib/hacks/grid-rows-columns.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-rows-columns.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-rows-columns.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,125 @@
+let Declaration = require('../declaration')
+let Processor = require('../processor')
+let {
+  autoplaceGridItems,
+  getGridGap,
+  inheritGridGap,
+  prefixTrackProp,
+  prefixTrackValue
+} = require('./grid-utils')
+
+class GridRowsColumns extends Declaration {
+  insert(decl, prefix, prefixes, result) {
+    if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+    let { parent, prop, value } = decl
+    let isRowProp = prop.includes('rows')
+    let isColumnProp = prop.includes('columns')
+
+    let hasGridTemplate = parent.some(
+      i => i.prop === 'grid-template' || i.prop === 'grid-template-areas'
+    )
+
+    /**
+     * Not to prefix rows declaration if grid-template(-areas) is present
+     */
+    if (hasGridTemplate && isRowProp) {
+      return false
+    }
+
+    let processor = new Processor({ options: {} })
+    let status = processor.gridStatus(parent, result)
+    let gap = getGridGap(decl)
+    gap = inheritGridGap(decl, gap) || gap
+
+    let gapValue = isRowProp ? gap.row : gap.column
+
+    if ((status === 'no-autoplace' || status === true) && !hasGridTemplate) {
+      gapValue = null
+    }
+
+    let prefixValue = prefixTrackValue({
+      gap: gapValue,
+      value
+    })
+
+    /**
+     * Insert prefixes
+     */
+    decl.cloneBefore({
+      prop: prefixTrackProp({ prefix, prop }),
+      value: prefixValue
+    })
+
+    let autoflow = parent.nodes.find(i => i.prop === 'grid-auto-flow')
+    let autoflowValue = 'row'
+
+    if (autoflow && !processor.disabled(autoflow, result)) {
+      autoflowValue = autoflow.value.trim()
+    }
+    if (status === 'autoplace') {
+      /**
+       * Show warning if grid-template-rows decl is not found
+       */
+      let rowDecl = parent.nodes.find(i => i.prop === 'grid-template-rows')
+
+      if (!rowDecl && hasGridTemplate) {
+        return undefined
+      } else if (!rowDecl && !hasGridTemplate) {
+        decl.warn(
+          result,
+          'Autoplacement does not work without grid-template-rows property'
+        )
+        return undefined
+      }
+
+      /**
+       * Show warning if grid-template-columns decl is not found
+       */
+      let columnDecl = parent.nodes.find(i => {
+        return i.prop === 'grid-template-columns'
+      })
+      if (!columnDecl && !hasGridTemplate) {
+        decl.warn(
+          result,
+          'Autoplacement does not work without grid-template-columns property'
+        )
+      }
+
+      /**
+       * Autoplace grid items
+       */
+      if (isColumnProp && !hasGridTemplate) {
+        autoplaceGridItems(decl, result, gap, autoflowValue)
+      }
+    }
+
+    return undefined
+  }
+
+  /**
+   * Change IE property back
+   */
+  normalize(prop) {
+    return prop.replace(/^grid-(rows|columns)/, 'grid-template-$1')
+  }
+
+  /**
+   * Change property name for IE
+   */
+  prefixed(prop, prefix) {
+    if (prefix === '-ms-') {
+      return prefixTrackProp({ prefix, prop })
+    }
+    return super.prefixed(prop, prefix)
+  }
+}
+
+GridRowsColumns.names = [
+  'grid-template-rows',
+  'grid-template-columns',
+  'grid-rows',
+  'grid-columns'
+]
+
+module.exports = GridRowsColumns
Index: node_modules/autoprefixer/lib/hacks/grid-start.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-start.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-start.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,33 @@
+let Declaration = require('../declaration')
+
+class GridStart extends Declaration {
+  /**
+   * Do not add prefix for unsupported value in IE
+   */
+  check(decl) {
+    let value = decl.value
+    return !value.includes('/') && !value.includes('span')
+  }
+
+  /**
+   * Return a final spec property
+   */
+  normalize(prop) {
+    return prop.replace('-start', '')
+  }
+
+  /**
+   * Change property name for IE
+   */
+  prefixed(prop, prefix) {
+    let result = super.prefixed(prop, prefix)
+    if (prefix === '-ms-') {
+      result = result.replace('-start', '')
+    }
+    return result
+  }
+}
+
+GridStart.names = ['grid-row-start', 'grid-column-start']
+
+module.exports = GridStart
Index: node_modules/autoprefixer/lib/hacks/grid-template-areas.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-template-areas.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-template-areas.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,84 @@
+let Declaration = require('../declaration')
+let {
+  getGridGap,
+  inheritGridGap,
+  parseGridAreas,
+  prefixTrackProp,
+  prefixTrackValue,
+  warnGridGap,
+  warnMissedAreas
+} = require('./grid-utils')
+
+function getGridRows(tpl) {
+  return tpl
+    .trim()
+    .slice(1, -1)
+    .split(/["']\s*["']?/g)
+}
+
+class GridTemplateAreas extends Declaration {
+  /**
+   * Translate grid-template-areas to separate -ms- prefixed properties
+   */
+  insert(decl, prefix, prefixes, result) {
+    if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+    let hasColumns = false
+    let hasRows = false
+    let parent = decl.parent
+    let gap = getGridGap(decl)
+    gap = inheritGridGap(decl, gap) || gap
+
+    // remove already prefixed rows
+    // to prevent doubling prefixes
+    parent.walkDecls(/-ms-grid-rows/, i => i.remove())
+
+    // add empty tracks to rows
+    parent.walkDecls(/grid-template-(rows|columns)/, trackDecl => {
+      if (trackDecl.prop === 'grid-template-rows') {
+        hasRows = true
+        let { prop, value } = trackDecl
+        trackDecl.cloneBefore({
+          prop: prefixTrackProp({ prefix, prop }),
+          value: prefixTrackValue({ gap: gap.row, value })
+        })
+      } else {
+        hasColumns = true
+      }
+    })
+
+    let gridRows = getGridRows(decl.value)
+
+    if (hasColumns && !hasRows && gap.row && gridRows.length > 1) {
+      decl.cloneBefore({
+        prop: '-ms-grid-rows',
+        raws: {},
+        value: prefixTrackValue({
+          gap: gap.row,
+          value: `repeat(${gridRows.length}, auto)`
+        })
+      })
+    }
+
+    // warnings
+    warnGridGap({
+      decl,
+      gap,
+      hasColumns,
+      result
+    })
+
+    let areas = parseGridAreas({
+      gap,
+      rows: gridRows
+    })
+
+    warnMissedAreas(areas, decl, result)
+
+    return decl
+  }
+}
+
+GridTemplateAreas.names = ['grid-template-areas']
+
+module.exports = GridTemplateAreas
Index: node_modules/autoprefixer/lib/hacks/grid-template.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-template.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-template.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,69 @@
+let Declaration = require('../declaration')
+let {
+  getGridGap,
+  inheritGridGap,
+  parseTemplate,
+  warnGridGap,
+  warnMissedAreas
+} = require('./grid-utils')
+
+class GridTemplate extends Declaration {
+  /**
+   * Translate grid-template to separate -ms- prefixed properties
+   */
+  insert(decl, prefix, prefixes, result) {
+    if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+    if (decl.parent.some(i => i.prop === '-ms-grid-rows')) {
+      return undefined
+    }
+
+    let gap = getGridGap(decl)
+
+    /**
+     * we must insert inherited gap values in some cases:
+     * if we are inside media query && if we have no grid-gap value
+     */
+    let inheritedGap = inheritGridGap(decl, gap)
+
+    let { areas, columns, rows } = parseTemplate({
+      decl,
+      gap: inheritedGap || gap
+    })
+
+    let hasAreas = Object.keys(areas).length > 0
+    let hasRows = Boolean(rows)
+    let hasColumns = Boolean(columns)
+
+    warnGridGap({
+      decl,
+      gap,
+      hasColumns,
+      result
+    })
+
+    warnMissedAreas(areas, decl, result)
+
+    if ((hasRows && hasColumns) || hasAreas) {
+      decl.cloneBefore({
+        prop: '-ms-grid-rows',
+        raws: {},
+        value: rows
+      })
+    }
+
+    if (hasColumns) {
+      decl.cloneBefore({
+        prop: '-ms-grid-columns',
+        raws: {},
+        value: columns
+      })
+    }
+
+    return decl
+  }
+}
+
+GridTemplate.names = ['grid-template']
+
+module.exports = GridTemplate
Index: node_modules/autoprefixer/lib/hacks/grid-utils.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/grid-utils.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/grid-utils.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1113 @@
+let parser = require('postcss-value-parser')
+let list = require('postcss').list
+
+let uniq = require('../utils').uniq
+let escapeRegexp = require('../utils').escapeRegexp
+let splitSelector = require('../utils').splitSelector
+
+function convert(value) {
+  if (
+    value &&
+    value.length === 2 &&
+    value[0] === 'span' &&
+    parseInt(value[1], 10) > 0
+  ) {
+    return [false, parseInt(value[1], 10)]
+  }
+
+  if (value && value.length === 1 && parseInt(value[0], 10) > 0) {
+    return [parseInt(value[0], 10), false]
+  }
+
+  return [false, false]
+}
+
+exports.translate = translate
+
+function translate(values, startIndex, endIndex) {
+  let startValue = values[startIndex]
+  let endValue = values[endIndex]
+
+  if (!startValue) {
+    return [false, false]
+  }
+
+  let [start, spanStart] = convert(startValue)
+  let [end, spanEnd] = convert(endValue)
+
+  if (start && !endValue) {
+    return [start, false]
+  }
+
+  if (spanStart && end) {
+    return [end - spanStart, spanStart]
+  }
+
+  if (start && spanEnd) {
+    return [start, spanEnd]
+  }
+
+  if (start && end) {
+    return [start, end - start]
+  }
+
+  return [false, false]
+}
+
+exports.parse = parse
+
+function parse(decl) {
+  let node = parser(decl.value)
+
+  let values = []
+  let current = 0
+  values[current] = []
+
+  for (let i of node.nodes) {
+    if (i.type === 'div') {
+      current += 1
+      values[current] = []
+    } else if (i.type === 'word') {
+      values[current].push(i.value)
+    }
+  }
+
+  return values
+}
+
+exports.insertDecl = insertDecl
+
+function insertDecl(decl, prop, value) {
+  if (value && !decl.parent.some(i => i.prop === `-ms-${prop}`)) {
+    decl.cloneBefore({
+      prop: `-ms-${prop}`,
+      value: value.toString()
+    })
+  }
+}
+
+// Track transforms
+
+exports.prefixTrackProp = prefixTrackProp
+
+function prefixTrackProp({ prefix, prop }) {
+  return prefix + prop.replace('template-', '')
+}
+
+function transformRepeat({ nodes }, { gap }) {
+  let { count, size } = nodes.reduce(
+    (result, node) => {
+      if (node.type === 'div' && node.value === ',') {
+        result.key = 'size'
+      } else {
+        result[result.key].push(parser.stringify(node))
+      }
+      return result
+    },
+    {
+      count: [],
+      key: 'count',
+      size: []
+    }
+  )
+
+  // insert gap values
+  if (gap) {
+    size = size.filter(i => i.trim())
+    let val = []
+    for (let i = 1; i <= count; i++) {
+      size.forEach((item, index) => {
+        if (index > 0 || i > 1) {
+          val.push(gap)
+        }
+        val.push(item)
+      })
+    }
+
+    return val.join(' ')
+  }
+
+  return `(${size.join('')})[${count.join('')}]`
+}
+
+exports.prefixTrackValue = prefixTrackValue
+
+function prefixTrackValue({ gap, value }) {
+  let result = parser(value).nodes.reduce((nodes, node) => {
+    if (node.type === 'function' && node.value === 'repeat') {
+      return nodes.concat({
+        type: 'word',
+        value: transformRepeat(node, { gap })
+      })
+    }
+    if (gap && node.type === 'space') {
+      return nodes.concat(
+        {
+          type: 'space',
+          value: ' '
+        },
+        {
+          type: 'word',
+          value: gap
+        },
+        node
+      )
+    }
+    return nodes.concat(node)
+  }, [])
+
+  return parser.stringify(result)
+}
+
+// Parse grid-template-areas
+
+let DOTS = /^\.+$/
+
+function track(start, end) {
+  return { end, span: end - start, start }
+}
+
+function getColumns(line) {
+  return line.trim().split(/\s+/g)
+}
+
+exports.parseGridAreas = parseGridAreas
+
+function parseGridAreas({ gap, rows }) {
+  return rows.reduce((areas, line, rowIndex) => {
+    if (gap.row) rowIndex *= 2
+
+    if (line.trim() === '') return areas
+
+    getColumns(line).forEach((area, columnIndex) => {
+      if (DOTS.test(area)) return
+
+      if (gap.column) columnIndex *= 2
+
+      if (typeof areas[area] === 'undefined') {
+        areas[area] = {
+          column: track(columnIndex + 1, columnIndex + 2),
+          row: track(rowIndex + 1, rowIndex + 2)
+        }
+      } else {
+        let { column, row } = areas[area]
+
+        column.start = Math.min(column.start, columnIndex + 1)
+        column.end = Math.max(column.end, columnIndex + 2)
+        column.span = column.end - column.start
+
+        row.start = Math.min(row.start, rowIndex + 1)
+        row.end = Math.max(row.end, rowIndex + 2)
+        row.span = row.end - row.start
+      }
+    })
+
+    return areas
+  }, {})
+}
+
+// Parse grid-template
+
+function testTrack(node) {
+  return node.type === 'word' && /^\[.+]$/.test(node.value)
+}
+
+function verifyRowSize(result) {
+  if (result.areas.length > result.rows.length) {
+    result.rows.push('auto')
+  }
+  return result
+}
+
+exports.parseTemplate = parseTemplate
+
+function parseTemplate({ decl, gap }) {
+  let gridTemplate = parser(decl.value).nodes.reduce(
+    (result, node) => {
+      let { type, value } = node
+
+      if (testTrack(node) || type === 'space') return result
+
+      // area
+      if (type === 'string') {
+        result = verifyRowSize(result)
+        result.areas.push(value)
+      }
+
+      // values and function
+      if (type === 'word' || type === 'function') {
+        result[result.key].push(parser.stringify(node))
+      }
+
+      // divider(/)
+      if (type === 'div' && value === '/') {
+        result.key = 'columns'
+        result = verifyRowSize(result)
+      }
+
+      return result
+    },
+    {
+      areas: [],
+      columns: [],
+      key: 'rows',
+      rows: []
+    }
+  )
+
+  return {
+    areas: parseGridAreas({
+      gap,
+      rows: gridTemplate.areas
+    }),
+    columns: prefixTrackValue({
+      gap: gap.column,
+      value: gridTemplate.columns.join(' ')
+    }),
+    rows: prefixTrackValue({
+      gap: gap.row,
+      value: gridTemplate.rows.join(' ')
+    })
+  }
+}
+
+// Insert parsed grid areas
+
+/**
+ * Get an array of -ms- prefixed props and values
+ * @param  {Object} [area] area object with column and row data
+ * @param  {Boolean} [addRowSpan] should we add grid-column-row value?
+ * @param  {Boolean} [addColumnSpan] should we add grid-column-span value?
+ * @return {Array<Object>}
+ */
+function getMSDecls(area, addRowSpan = false, addColumnSpan = false) {
+  let result = [
+    {
+      prop: '-ms-grid-row',
+      value: String(area.row.start)
+    }
+  ]
+  if (area.row.span > 1 || addRowSpan) {
+    result.push({
+      prop: '-ms-grid-row-span',
+      value: String(area.row.span)
+    })
+  }
+  result.push({
+    prop: '-ms-grid-column',
+    value: String(area.column.start)
+  })
+  if (area.column.span > 1 || addColumnSpan) {
+    result.push({
+      prop: '-ms-grid-column-span',
+      value: String(area.column.span)
+    })
+  }
+  return result
+}
+
+function getParentMedia(parent) {
+  if (parent.type === 'atrule' && parent.name === 'media') {
+    return parent
+  }
+  if (!parent.parent) {
+    return false
+  }
+  return getParentMedia(parent.parent)
+}
+
+/**
+ * change selectors for rules with duplicate grid-areas.
+ * @param  {Array<Rule>} rules
+ * @param  {Array<String>} templateSelectors
+ * @return {Array<Rule>} rules with changed selectors
+ */
+function changeDuplicateAreaSelectors(ruleSelectors, templateSelectors) {
+  ruleSelectors = ruleSelectors.map(selector => {
+    let selectorBySpace = list.space(selector)
+    let selectorByComma = list.comma(selector)
+
+    if (selectorBySpace.length > selectorByComma.length) {
+      selector = selectorBySpace.slice(-1).join('')
+    }
+    return selector
+  })
+
+  return ruleSelectors.map(ruleSelector => {
+    let newSelector = templateSelectors.map((tplSelector, index) => {
+      let space = index === 0 ? '' : ' '
+      return `${space}${tplSelector} > ${ruleSelector}`
+    })
+
+    return newSelector
+  })
+}
+
+/**
+ * check if selector of rules are equal
+ * @param  {Rule} ruleA
+ * @param  {Rule} ruleB
+ * @return {Boolean}
+ */
+function selectorsEqual(ruleA, ruleB) {
+  return ruleA.selectors.some(sel => {
+    return ruleB.selectors.includes(sel)
+  })
+}
+
+/**
+ * Parse data from all grid-template(-areas) declarations
+ * @param  {Root} css css root
+ * @return {Object} parsed data
+ */
+function parseGridTemplatesData(css) {
+  let parsed = []
+
+  // we walk through every grid-template(-areas) declaration and store
+  // data with the same area names inside the item
+  css.walkDecls(/grid-template(-areas)?$/, d => {
+    let rule = d.parent
+    let media = getParentMedia(rule)
+    let gap = getGridGap(d)
+    let inheritedGap = inheritGridGap(d, gap)
+    let { areas } = parseTemplate({ decl: d, gap: inheritedGap || gap })
+    let areaNames = Object.keys(areas)
+
+    // skip node if it doesn't have areas
+    if (areaNames.length === 0) {
+      return true
+    }
+
+    // check parsed array for item that include the same area names
+    // return index of that item
+    let index = parsed.reduce((acc, { allAreas }, idx) => {
+      let hasAreas = allAreas && areaNames.some(area => allAreas.includes(area))
+      return hasAreas ? idx : acc
+    }, null)
+
+    if (index !== null) {
+      // index is found, add the grid-template data to that item
+      let { allAreas, rules } = parsed[index]
+
+      // check if rule has no duplicate area names
+      let hasNoDuplicates = rules.some(r => {
+        return r.hasDuplicates === false && selectorsEqual(r, rule)
+      })
+
+      let duplicatesFound = false
+
+      // check need to gather all duplicate area names
+      let duplicateAreaNames = rules.reduce((acc, r) => {
+        if (!r.params && selectorsEqual(r, rule)) {
+          duplicatesFound = true
+          return r.duplicateAreaNames
+        }
+        if (!duplicatesFound) {
+          areaNames.forEach(name => {
+            if (r.areas[name]) {
+              acc.push(name)
+            }
+          })
+        }
+        return uniq(acc)
+      }, [])
+
+      // update grid-row/column-span values for areas with duplicate
+      // area names. @see #1084 and #1146
+      rules.forEach(r => {
+        areaNames.forEach(name => {
+          let area = r.areas[name]
+          if (area && area.row.span !== areas[name].row.span) {
+            areas[name].row.updateSpan = true
+          }
+
+          if (area && area.column.span !== areas[name].column.span) {
+            areas[name].column.updateSpan = true
+          }
+        })
+      })
+
+      parsed[index].allAreas = uniq([...allAreas, ...areaNames])
+      parsed[index].rules.push({
+        areas,
+        duplicateAreaNames,
+        hasDuplicates: !hasNoDuplicates,
+        node: rule,
+        params: media.params,
+        selectors: rule.selectors
+      })
+    } else {
+      // index is NOT found, push the new item to the parsed array
+      parsed.push({
+        allAreas: areaNames,
+        areasCount: 0,
+        rules: [
+          {
+            areas,
+            duplicateAreaNames: [],
+            duplicateRules: [],
+            hasDuplicates: false,
+            node: rule,
+            params: media.params,
+            selectors: rule.selectors
+          }
+        ]
+      })
+    }
+
+    return undefined
+  })
+
+  return parsed
+}
+
+/**
+ * insert prefixed grid-area declarations
+ * @param  {Root}  css css root
+ * @param  {Function} isDisabled check if the rule is disabled
+ * @return {void}
+ */
+exports.insertAreas = insertAreas
+
+function insertAreas(css, isDisabled) {
+  // parse grid-template declarations
+  let gridTemplatesData = parseGridTemplatesData(css)
+
+  // return undefined if no declarations found
+  if (gridTemplatesData.length === 0) {
+    return undefined
+  }
+
+  // we need to store the rules that we will insert later
+  let rulesToInsert = {}
+
+  css.walkDecls('grid-area', gridArea => {
+    let gridAreaRule = gridArea.parent
+    let hasPrefixedRow = gridAreaRule.first.prop === '-ms-grid-row'
+    let gridAreaMedia = getParentMedia(gridAreaRule)
+
+    if (isDisabled(gridArea)) {
+      return undefined
+    }
+
+    let gridAreaRuleIndex = css.index(gridAreaMedia || gridAreaRule)
+
+    let value = gridArea.value
+    // found the data that matches grid-area identifier
+    let data = gridTemplatesData.filter(d => d.allAreas.includes(value))[0]
+
+    if (!data) {
+      return true
+    }
+
+    let lastArea = data.allAreas[data.allAreas.length - 1]
+    let selectorBySpace = list.space(gridAreaRule.selector)
+    let selectorByComma = list.comma(gridAreaRule.selector)
+    let selectorIsComplex =
+      selectorBySpace.length > 1 &&
+      selectorBySpace.length > selectorByComma.length
+
+    // prevent doubling of prefixes
+    if (hasPrefixedRow) {
+      return false
+    }
+
+    // create the empty object with the key as the last area name
+    // e.g if we have templates with "a b c" values, "c" will be the last area
+    if (!rulesToInsert[lastArea]) {
+      rulesToInsert[lastArea] = {}
+    }
+
+    let lastRuleIsSet = false
+
+    // walk through every grid-template rule data
+    for (let rule of data.rules) {
+      let area = rule.areas[value]
+      let hasDuplicateName = rule.duplicateAreaNames.includes(value)
+
+      // if we can't find the area name, update lastRule and continue
+      if (!area) {
+        let lastRule = rulesToInsert[lastArea].lastRule
+        let lastRuleIndex
+        if (lastRule) {
+          lastRuleIndex = css.index(lastRule)
+        } else {
+          /* c8 ignore next 2 */
+          lastRuleIndex = -1
+        }
+
+        if (gridAreaRuleIndex > lastRuleIndex) {
+          rulesToInsert[lastArea].lastRule = gridAreaMedia || gridAreaRule
+        }
+        continue
+      }
+
+      // for grid-templates inside media rule we need to create empty
+      // array to push prefixed grid-area rules later
+      if (rule.params && !rulesToInsert[lastArea][rule.params]) {
+        rulesToInsert[lastArea][rule.params] = []
+      }
+
+      if ((!rule.hasDuplicates || !hasDuplicateName) && !rule.params) {
+        // grid-template has no duplicates and not inside media rule
+
+        getMSDecls(area, false, false)
+          .reverse()
+          .forEach(i =>
+            gridAreaRule.prepend(
+              Object.assign(i, {
+                raws: {
+                  between: gridArea.raws.between
+                }
+              })
+            )
+          )
+
+        rulesToInsert[lastArea].lastRule = gridAreaRule
+        lastRuleIsSet = true
+      } else if (rule.hasDuplicates && !rule.params && !selectorIsComplex) {
+        // grid-template has duplicates and not inside media rule
+        let cloned = gridAreaRule.clone()
+        cloned.removeAll()
+
+        getMSDecls(area, area.row.updateSpan, area.column.updateSpan)
+          .reverse()
+          .forEach(i =>
+            cloned.prepend(
+              Object.assign(i, {
+                raws: {
+                  between: gridArea.raws.between
+                }
+              })
+            )
+          )
+
+        cloned.selectors = changeDuplicateAreaSelectors(
+          cloned.selectors,
+          rule.selectors
+        )
+
+        if (rulesToInsert[lastArea].lastRule) {
+          rulesToInsert[lastArea].lastRule.after(cloned)
+        }
+        rulesToInsert[lastArea].lastRule = cloned
+        lastRuleIsSet = true
+      } else if (
+        rule.hasDuplicates &&
+        !rule.params &&
+        selectorIsComplex &&
+        gridAreaRule.selector.includes(rule.selectors[0])
+      ) {
+        // grid-template has duplicates and not inside media rule
+        // and the selector is complex
+        gridAreaRule.walkDecls(/-ms-grid-(row|column)/, d => d.remove())
+        getMSDecls(area, area.row.updateSpan, area.column.updateSpan)
+          .reverse()
+          .forEach(i =>
+            gridAreaRule.prepend(
+              Object.assign(i, {
+                raws: {
+                  between: gridArea.raws.between
+                }
+              })
+            )
+          )
+      } else if (rule.params) {
+        // grid-template is inside media rule
+        // if we're inside media rule, we need to store prefixed rules
+        // inside rulesToInsert object to be able to preserve the order of media
+        // rules and merge them easily
+        let cloned = gridAreaRule.clone()
+        cloned.removeAll()
+
+        getMSDecls(area, area.row.updateSpan, area.column.updateSpan)
+          .reverse()
+          .forEach(i =>
+            cloned.prepend(
+              Object.assign(i, {
+                raws: {
+                  between: gridArea.raws.between
+                }
+              })
+            )
+          )
+
+        if (rule.hasDuplicates && hasDuplicateName) {
+          cloned.selectors = changeDuplicateAreaSelectors(
+            cloned.selectors,
+            rule.selectors
+          )
+        }
+
+        cloned.raws = rule.node.raws
+
+        if (css.index(rule.node.parent) > gridAreaRuleIndex) {
+          // append the prefixed rules right inside media rule
+          // with grid-template
+          rule.node.parent.append(cloned)
+        } else {
+          // store the rule to insert later
+          rulesToInsert[lastArea][rule.params].push(cloned)
+        }
+
+        // set new rule as last rule ONLY if we didn't set lastRule for
+        // this grid-area before
+        if (!lastRuleIsSet) {
+          rulesToInsert[lastArea].lastRule = gridAreaMedia || gridAreaRule
+        }
+      }
+    }
+
+    return undefined
+  })
+
+  // append stored rules inside the media rules
+  Object.keys(rulesToInsert).forEach(area => {
+    let data = rulesToInsert[area]
+    let lastRule = data.lastRule
+    Object.keys(data)
+      .reverse()
+      .filter(p => p !== 'lastRule')
+      .forEach(params => {
+        if (data[params].length > 0 && lastRule) {
+          lastRule.after({ name: 'media', params })
+          lastRule.next().append(data[params])
+        }
+      })
+  })
+
+  return undefined
+}
+
+/**
+ * Warn user if grid area identifiers are not found
+ * @param  {Object} areas
+ * @param  {Declaration} decl
+ * @param  {Result} result
+ * @return {void}
+ */
+exports.warnMissedAreas = warnMissedAreas
+
+function warnMissedAreas(areas, decl, result) {
+  let missed = Object.keys(areas)
+
+  decl.root().walkDecls('grid-area', gridArea => {
+    missed = missed.filter(e => e !== gridArea.value)
+  })
+
+  if (missed.length > 0) {
+    decl.warn(result, 'Can not find grid areas: ' + missed.join(', '))
+  }
+
+  return undefined
+}
+
+/**
+ * compare selectors with grid-area rule and grid-template rule
+ * show warning if grid-template selector is not found
+ * (this function used for grid-area rule)
+ * @param  {Declaration} decl
+ * @param  {Result} result
+ * @return {void}
+ */
+exports.warnTemplateSelectorNotFound = warnTemplateSelectorNotFound
+
+function warnTemplateSelectorNotFound(decl, result) {
+  let rule = decl.parent
+  let root = decl.root()
+  let duplicatesFound = false
+
+  // slice selector array. Remove the last part (for comparison)
+  let slicedSelectorArr = list
+    .space(rule.selector)
+    .filter(str => str !== '>')
+    .slice(0, -1)
+
+  // we need to compare only if selector is complex.
+  // e.g '.grid-cell' is simple, but '.parent > .grid-cell' is complex
+  if (slicedSelectorArr.length > 0) {
+    let gridTemplateFound = false
+    let foundAreaSelector = null
+
+    root.walkDecls(/grid-template(-areas)?$/, d => {
+      let parent = d.parent
+      let templateSelectors = parent.selectors
+
+      let { areas } = parseTemplate({ decl: d, gap: getGridGap(d) })
+      let hasArea = areas[decl.value]
+
+      // find the the matching selectors
+      for (let tplSelector of templateSelectors) {
+        if (gridTemplateFound) {
+          break
+        }
+        let tplSelectorArr = list.space(tplSelector).filter(str => str !== '>')
+
+        gridTemplateFound = tplSelectorArr.every(
+          (item, idx) => item === slicedSelectorArr[idx]
+        )
+      }
+
+      if (gridTemplateFound || !hasArea) {
+        return true
+      }
+
+      if (!foundAreaSelector) {
+        foundAreaSelector = parent.selector
+      }
+
+      // if we found the duplicate area with different selector
+      if (foundAreaSelector && foundAreaSelector !== parent.selector) {
+        duplicatesFound = true
+      }
+
+      return undefined
+    })
+
+    // warn user if we didn't find template
+    if (!gridTemplateFound && duplicatesFound) {
+      decl.warn(
+        result,
+        'Autoprefixer cannot find a grid-template ' +
+          `containing the duplicate grid-area "${decl.value}" ` +
+          `with full selector matching: ${slicedSelectorArr.join(' ')}`
+      )
+    }
+  }
+}
+
+/**
+ * warn user if both grid-area and grid-(row|column)
+ * declarations are present in the same rule
+ * @param  {Declaration} decl
+ * @param  {Result} result
+ * @return {void}
+ */
+exports.warnIfGridRowColumnExists = warnIfGridRowColumnExists
+
+function warnIfGridRowColumnExists(decl, result) {
+  let rule = decl.parent
+  let decls = []
+  rule.walkDecls(/^grid-(row|column)/, d => {
+    if (
+      !d.prop.endsWith('-end') &&
+      !d.value.startsWith('span') &&
+      !d.prop.endsWith('-gap')
+    ) {
+      decls.push(d)
+    }
+  })
+  if (decls.length > 0) {
+    decls.forEach(d => {
+      d.warn(
+        result,
+        'You already have a grid-area declaration present in the rule. ' +
+          `You should use either grid-area or ${d.prop}, not both`
+      )
+    })
+  }
+
+  return undefined
+}
+
+// Gap utils
+
+exports.getGridGap = getGridGap
+
+function getGridGap(decl) {
+  let gap = {}
+
+  // try to find gap
+  let testGap = /^(grid-)?((row|column)-)?gap$/
+  decl.parent.walkDecls(testGap, ({ prop, value }) => {
+    if (/^(grid-)?gap$/.test(prop)) {
+      let [row, , column] = parser(value).nodes
+
+      gap.row = row && parser.stringify(row)
+      gap.column = column ? parser.stringify(column) : gap.row
+    }
+    if (/^(grid-)?row-gap$/.test(prop)) gap.row = value
+    if (/^(grid-)?column-gap$/.test(prop)) gap.column = value
+  })
+
+  return gap
+}
+
+/**
+ * parse media parameters (for example 'min-width: 500px')
+ * @param  {String} params parameter to parse
+ * @return {}
+ */
+function parseMediaParams(params) {
+  if (!params) {
+    return []
+  }
+  let parsed = parser(params)
+  let prop
+  let value
+
+  parsed.walk(node => {
+    if (node.type === 'word' && /min|max/g.test(node.value)) {
+      prop = node.value
+    } else if (node.value.includes('px')) {
+      value = parseInt(node.value.replace(/\D/g, ''))
+    }
+  })
+
+  return [prop, value]
+}
+
+/**
+ * Compare the selectors and decide if we
+ * need to inherit gap from compared selector or not.
+ * @type {String} selA
+ * @type {String} selB
+ * @return {Boolean}
+ */
+function shouldInheritGap(selA, selB) {
+  let result
+
+  // get arrays of selector split in 3-deep array
+  let splitSelectorArrA = splitSelector(selA)
+  let splitSelectorArrB = splitSelector(selB)
+
+  if (splitSelectorArrA[0].length < splitSelectorArrB[0].length) {
+    // abort if selectorA has lower descendant specificity then selectorB
+    // (e.g '.grid' and '.hello .world .grid')
+    return false
+  } else if (splitSelectorArrA[0].length > splitSelectorArrB[0].length) {
+    // if selectorA has higher descendant specificity then selectorB
+    // (e.g '.foo .bar .grid' and '.grid')
+
+    let idx = splitSelectorArrA[0].reduce((res, [item], index) => {
+      let firstSelectorPart = splitSelectorArrB[0][0][0]
+      if (item === firstSelectorPart) {
+        return index
+      }
+      return false
+    }, false)
+
+    if (idx) {
+      result = splitSelectorArrB[0].every((arr, index) => {
+        return arr.every(
+          (part, innerIndex) =>
+            // because selectorA has more space elements, we need to slice
+            // selectorA array by 'idx' number to compare them
+            splitSelectorArrA[0].slice(idx)[index][innerIndex] === part
+        )
+      })
+    }
+  } else {
+    // if selectorA has the same descendant specificity as selectorB
+    // this condition covers cases such as: '.grid.foo.bar' and '.grid'
+    result = splitSelectorArrB.some(byCommaArr => {
+      return byCommaArr.every((bySpaceArr, index) => {
+        return bySpaceArr.every(
+          (part, innerIndex) => splitSelectorArrA[0][index][innerIndex] === part
+        )
+      })
+    })
+  }
+
+  return result
+}
+/**
+ * inherit grid gap values from the closest rule above
+ * with the same selector
+ * @param  {Declaration} decl
+ * @param  {Object} gap gap values
+ * @return {Object | Boolean} return gap values or false (if not found)
+ */
+exports.inheritGridGap = inheritGridGap
+
+function inheritGridGap(decl, gap) {
+  let rule = decl.parent
+  let mediaRule = getParentMedia(rule)
+  let root = rule.root()
+
+  // get an array of selector split in 3-deep array
+  let splitSelectorArr = splitSelector(rule.selector)
+
+  // abort if the rule already has gaps
+  if (Object.keys(gap).length > 0) {
+    return false
+  }
+
+  // e.g ['min-width']
+  let [prop] = parseMediaParams(mediaRule.params)
+
+  let lastBySpace = splitSelectorArr[0]
+
+  // get escaped value from the selector
+  // if we have '.grid-2.foo.bar' selector, will be '\.grid\-2'
+  let escaped = escapeRegexp(lastBySpace[lastBySpace.length - 1][0])
+
+  let regexp = new RegExp(`(${escaped}$)|(${escaped}[,.])`)
+
+  // find the closest rule with the same selector
+  let closestRuleGap
+  root.walkRules(regexp, r => {
+    let gridGap
+
+    // abort if are checking the same rule
+    if (rule.toString() === r.toString()) {
+      return false
+    }
+
+    // find grid-gap values
+    r.walkDecls('grid-gap', d => (gridGap = getGridGap(d)))
+
+    // skip rule without gaps
+    if (!gridGap || Object.keys(gridGap).length === 0) {
+      return true
+    }
+
+    // skip rules that should not be inherited from
+    if (!shouldInheritGap(rule.selector, r.selector)) {
+      return true
+    }
+
+    let media = getParentMedia(r)
+    if (media) {
+      // if we are inside media, we need to check that media props match
+      // e.g ('min-width' === 'min-width')
+      let propToCompare = parseMediaParams(media.params)[0]
+      if (propToCompare === prop) {
+        closestRuleGap = gridGap
+        return true
+      }
+    } else {
+      closestRuleGap = gridGap
+      return true
+    }
+
+    return undefined
+  })
+
+  // if we find the closest gap object
+  if (closestRuleGap && Object.keys(closestRuleGap).length > 0) {
+    return closestRuleGap
+  }
+  return false
+}
+
+exports.warnGridGap = warnGridGap
+
+function warnGridGap({ decl, gap, hasColumns, result }) {
+  let hasBothGaps = gap.row && gap.column
+  if (!hasColumns && (hasBothGaps || (gap.column && !gap.row))) {
+    delete gap.column
+    decl.warn(
+      result,
+      'Can not implement grid-gap without grid-template-columns'
+    )
+  }
+}
+
+/**
+ * normalize the grid-template-rows/columns values
+ * @param  {String} str grid-template-rows/columns value
+ * @return {Array} normalized array with values
+ * @example
+ * let normalized = normalizeRowColumn('1fr repeat(2, 20px 50px) 1fr')
+ * normalized // <= ['1fr', '20px', '50px', '20px', '50px', '1fr']
+ */
+function normalizeRowColumn(str) {
+  let normalized = parser(str).nodes.reduce((result, node) => {
+    if (node.type === 'function' && node.value === 'repeat') {
+      let key = 'count'
+
+      let [count, value] = node.nodes.reduce(
+        (acc, n) => {
+          if (n.type === 'word' && key === 'count') {
+            acc[0] = Math.abs(parseInt(n.value))
+            return acc
+          }
+          if (n.type === 'div' && n.value === ',') {
+            key = 'value'
+            return acc
+          }
+          if (key === 'value') {
+            acc[1] += parser.stringify(n)
+          }
+          return acc
+        },
+        [0, '']
+      )
+
+      if (count) {
+        for (let i = 0; i < count; i++) {
+          result.push(value)
+        }
+      }
+
+      return result
+    }
+    if (node.type === 'space') {
+      return result
+    }
+    return result.concat(parser.stringify(node))
+  }, [])
+
+  return normalized
+}
+
+exports.autoplaceGridItems = autoplaceGridItems
+
+/**
+ * Autoplace grid items
+ * @param {Declaration} decl
+ * @param {Result} result
+ * @param {Object} gap gap values
+ * @param {String} autoflowValue grid-auto-flow value
+ * @return {void}
+ * @see https://github.com/postcss/autoprefixer/issues/1148
+ */
+function autoplaceGridItems(decl, result, gap, autoflowValue = 'row') {
+  let { parent } = decl
+
+  let rowDecl = parent.nodes.find(i => i.prop === 'grid-template-rows')
+  let rows = normalizeRowColumn(rowDecl.value)
+  let columns = normalizeRowColumn(decl.value)
+
+  // Build array of area names with dummy values. If we have 3 columns and
+  // 2 rows, filledRows will be equal to ['1 2 3', '4 5 6']
+  let filledRows = rows.map((_, rowIndex) => {
+    return Array.from(
+      { length: columns.length },
+      (v, k) => k + rowIndex * columns.length + 1
+    ).join(' ')
+  })
+
+  let areas = parseGridAreas({ gap, rows: filledRows })
+  let keys = Object.keys(areas)
+  let items = keys.map(i => areas[i])
+
+  // Change the order of cells if grid-auto-flow value is 'column'
+  if (autoflowValue.includes('column')) {
+    items = items.sort((a, b) => a.column.start - b.column.start)
+  }
+
+  // Insert new rules
+  items.reverse().forEach((item, index) => {
+    let { column, row } = item
+    let nodeSelector = parent.selectors
+      .map(sel => sel + ` > *:nth-child(${keys.length - index})`)
+      .join(', ')
+
+    // create new rule
+    let node = parent.clone().removeAll()
+
+    // change rule selector
+    node.selector = nodeSelector
+
+    // insert prefixed row/column values
+    node.append({ prop: '-ms-grid-row', value: row.start })
+    node.append({ prop: '-ms-grid-column', value: column.start })
+
+    // insert rule
+    parent.after(node)
+  })
+
+  return undefined
+}
Index: node_modules/autoprefixer/lib/hacks/image-rendering.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/image-rendering.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/image-rendering.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,48 @@
+let Declaration = require('../declaration')
+
+class ImageRendering extends Declaration {
+  /**
+   * Add hack only for crisp-edges
+   */
+  check(decl) {
+    return decl.value === 'pixelated'
+  }
+
+  /**
+   * Return property name by spec
+   */
+  normalize() {
+    return 'image-rendering'
+  }
+
+  /**
+   * Change property name for IE
+   */
+  prefixed(prop, prefix) {
+    if (prefix === '-ms-') {
+      return '-ms-interpolation-mode'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Warn on old value
+   */
+  process(node, result) {
+    return super.process(node, result)
+  }
+
+  /**
+   * Change property and value for IE
+   */
+  set(decl, prefix) {
+    if (prefix !== '-ms-') return super.set(decl, prefix)
+    decl.prop = '-ms-interpolation-mode'
+    decl.value = 'nearest-neighbor'
+    return decl
+  }
+}
+
+ImageRendering.names = ['image-rendering', 'interpolation-mode']
+
+module.exports = ImageRendering
Index: node_modules/autoprefixer/lib/hacks/image-set.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/image-set.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/image-set.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,18 @@
+let Value = require('../value')
+
+class ImageSet extends Value {
+  /**
+   * Use non-standard name for WebKit and Firefox
+   */
+  replace(string, prefix) {
+    let fixed = super.replace(string, prefix)
+    if (prefix === '-webkit-') {
+      fixed = fixed.replace(/("[^"]+"|'[^']+')(\s+\d+\w)/gi, 'url($1)$2')
+    }
+    return fixed
+  }
+}
+
+ImageSet.names = ['image-set']
+
+module.exports = ImageSet
Index: node_modules/autoprefixer/lib/hacks/inline-logical.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/inline-logical.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/inline-logical.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,34 @@
+let Declaration = require('../declaration')
+
+class InlineLogical extends Declaration {
+  /**
+   * Return property name by spec
+   */
+  normalize(prop) {
+    return prop.replace(/(margin|padding|border)-(start|end)/, '$1-inline-$2')
+  }
+
+  /**
+   * Use old syntax for -moz- and -webkit-
+   */
+  prefixed(prop, prefix) {
+    return prefix + prop.replace('-inline', '')
+  }
+}
+
+InlineLogical.names = [
+  'border-inline-start',
+  'border-inline-end',
+  'margin-inline-start',
+  'margin-inline-end',
+  'padding-inline-start',
+  'padding-inline-end',
+  'border-start',
+  'border-end',
+  'margin-start',
+  'margin-end',
+  'padding-start',
+  'padding-end'
+]
+
+module.exports = InlineLogical
Index: node_modules/autoprefixer/lib/hacks/intrinsic.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/intrinsic.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/intrinsic.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,61 @@
+let OldValue = require('../old-value')
+let Value = require('../value')
+
+function regexp(name) {
+  return new RegExp(`(^|[\\s,(])(${name}($|[\\s),]))`, 'gi')
+}
+
+class Intrinsic extends Value {
+  add(decl, prefix) {
+    if (decl.prop.includes('grid') && prefix !== '-webkit-') {
+      return undefined
+    }
+    return super.add(decl, prefix)
+  }
+
+  isStretch() {
+    return (
+      this.name === 'stretch' ||
+      this.name === 'fill' ||
+      this.name === 'fill-available'
+    )
+  }
+
+  old(prefix) {
+    let prefixed = prefix + this.name
+    if (this.isStretch()) {
+      if (prefix === '-moz-') {
+        prefixed = '-moz-available'
+      } else if (prefix === '-webkit-') {
+        prefixed = '-webkit-fill-available'
+      }
+    }
+    return new OldValue(this.name, prefixed, prefixed, regexp(prefixed))
+  }
+
+  regexp() {
+    if (!this.regexpCache) this.regexpCache = regexp(this.name)
+    return this.regexpCache
+  }
+
+  replace(string, prefix) {
+    if (prefix === '-moz-' && this.isStretch()) {
+      return string.replace(this.regexp(), '$1-moz-available$3')
+    }
+    if (prefix === '-webkit-' && this.isStretch()) {
+      return string.replace(this.regexp(), '$1-webkit-fill-available$3')
+    }
+    return super.replace(string, prefix)
+  }
+}
+
+Intrinsic.names = [
+  'max-content',
+  'min-content',
+  'fit-content',
+  'fill',
+  'fill-available',
+  'stretch'
+]
+
+module.exports = Intrinsic
Index: node_modules/autoprefixer/lib/hacks/justify-content.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/justify-content.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/justify-content.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,54 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class JustifyContent extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'justify-content'
+  }
+
+  /**
+   * Change property name for 2009 and 2012 specs
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2009) {
+      return prefix + 'box-pack'
+    }
+    if (spec === 2012) {
+      return prefix + 'flex-pack'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Change value for 2009 and 2012 specs
+   */
+  set(decl, prefix) {
+    let spec = flexSpec(prefix)[0]
+    if (spec === 2009 || spec === 2012) {
+      let value = JustifyContent.oldValues[decl.value] || decl.value
+      decl.value = value
+      if (spec !== 2009 || value !== 'distribute') {
+        return super.set(decl, prefix)
+      }
+    } else if (spec === 'final') {
+      return super.set(decl, prefix)
+    }
+    return undefined
+  }
+}
+
+JustifyContent.names = ['justify-content', 'flex-pack', 'box-pack']
+
+JustifyContent.oldValues = {
+  'flex-end': 'end',
+  'flex-start': 'start',
+  'space-around': 'distribute',
+  'space-between': 'justify'
+}
+
+module.exports = JustifyContent
Index: node_modules/autoprefixer/lib/hacks/mask-border.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/mask-border.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/mask-border.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,38 @@
+let Declaration = require('../declaration')
+
+class MaskBorder extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return this.name.replace('box-image', 'border')
+  }
+
+  /**
+   * Return flex property for 2012 spec
+   */
+  prefixed(prop, prefix) {
+    let result = super.prefixed(prop, prefix)
+    if (prefix === '-webkit-') {
+      result = result.replace('border', 'box-image')
+    }
+    return result
+  }
+}
+
+MaskBorder.names = [
+  'mask-border',
+  'mask-border-source',
+  'mask-border-slice',
+  'mask-border-width',
+  'mask-border-outset',
+  'mask-border-repeat',
+  'mask-box-image',
+  'mask-box-image-source',
+  'mask-box-image-slice',
+  'mask-box-image-width',
+  'mask-box-image-outset',
+  'mask-box-image-repeat'
+]
+
+module.exports = MaskBorder
Index: node_modules/autoprefixer/lib/hacks/mask-composite.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/mask-composite.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/mask-composite.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,88 @@
+let Declaration = require('../declaration')
+
+class MaskComposite extends Declaration {
+  /**
+   * Prefix mask-composite for webkit
+   */
+  insert(decl, prefix, prefixes) {
+    let isCompositeProp = decl.prop === 'mask-composite'
+
+    let compositeValues
+
+    if (isCompositeProp) {
+      compositeValues = decl.value.split(',')
+    } else {
+      compositeValues = decl.value.match(MaskComposite.regexp) || []
+    }
+
+    compositeValues = compositeValues.map(el => el.trim()).filter(el => el)
+    let hasCompositeValues = compositeValues.length
+
+    let compositeDecl
+
+    if (hasCompositeValues) {
+      compositeDecl = this.clone(decl)
+      compositeDecl.value = compositeValues
+        .map(value => MaskComposite.oldValues[value] || value)
+        .join(', ')
+
+      if (compositeValues.includes('intersect')) {
+        compositeDecl.value += ', xor'
+      }
+
+      compositeDecl.prop = prefix + 'mask-composite'
+    }
+
+    if (isCompositeProp) {
+      if (!hasCompositeValues) {
+        return undefined
+      }
+
+      if (this.needCascade(decl)) {
+        compositeDecl.raws.before = this.calcBefore(prefixes, decl, prefix)
+      }
+
+      return decl.parent.insertBefore(decl, compositeDecl)
+    }
+
+    let cloned = this.clone(decl)
+    cloned.prop = prefix + cloned.prop
+
+    if (hasCompositeValues) {
+      cloned.value = cloned.value.replace(MaskComposite.regexp, '')
+    }
+
+    if (this.needCascade(decl)) {
+      cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+    }
+
+    decl.parent.insertBefore(decl, cloned)
+
+    if (!hasCompositeValues) {
+      return decl
+    }
+
+    if (this.needCascade(decl)) {
+      compositeDecl.raws.before = this.calcBefore(prefixes, decl, prefix)
+    }
+    return decl.parent.insertBefore(decl, compositeDecl)
+  }
+}
+
+MaskComposite.names = ['mask', 'mask-composite']
+
+MaskComposite.oldValues = {
+  add: 'source-over',
+  exclude: 'xor',
+  intersect: 'source-in',
+  subtract: 'source-out'
+}
+
+MaskComposite.regexp = new RegExp(
+  `\\s+(${Object.keys(MaskComposite.oldValues).join(
+    '|'
+  )})\\b(?!\\))\\s*(?=[,])`,
+  'ig'
+)
+
+module.exports = MaskComposite
Index: node_modules/autoprefixer/lib/hacks/order.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/order.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/order.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,42 @@
+let Declaration = require('../declaration')
+let flexSpec = require('./flex-spec')
+
+class Order extends Declaration {
+  /**
+   * Return property name by final spec
+   */
+  normalize() {
+    return 'order'
+  }
+
+  /**
+   * Change property name for 2009 and 2012 specs
+   */
+  prefixed(prop, prefix) {
+    let spec
+    ;[spec, prefix] = flexSpec(prefix)
+    if (spec === 2009) {
+      return prefix + 'box-ordinal-group'
+    }
+    if (spec === 2012) {
+      return prefix + 'flex-order'
+    }
+    return super.prefixed(prop, prefix)
+  }
+
+  /**
+   * Fix value for 2009 spec
+   */
+  set(decl, prefix) {
+    let spec = flexSpec(prefix)[0]
+    if (spec === 2009 && /\d/.test(decl.value)) {
+      decl.value = (parseInt(decl.value) + 1).toString()
+      return super.set(decl, prefix)
+    }
+    return super.set(decl, prefix)
+  }
+}
+
+Order.names = ['order', 'flex-order', 'box-ordinal-group']
+
+module.exports = Order
Index: node_modules/autoprefixer/lib/hacks/overscroll-behavior.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/overscroll-behavior.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/overscroll-behavior.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,33 @@
+let Declaration = require('../declaration')
+
+class OverscrollBehavior extends Declaration {
+  /**
+   * Return property name by spec
+   */
+  normalize() {
+    return 'overscroll-behavior'
+  }
+
+  /**
+   * Change property name for IE
+   */
+  prefixed(prop, prefix) {
+    return prefix + 'scroll-chaining'
+  }
+
+  /**
+   * Change value for IE
+   */
+  set(decl, prefix) {
+    if (decl.value === 'auto') {
+      decl.value = 'chained'
+    } else if (decl.value === 'none' || decl.value === 'contain') {
+      decl.value = 'none'
+    }
+    return super.set(decl, prefix)
+  }
+}
+
+OverscrollBehavior.names = ['overscroll-behavior', 'scroll-chaining']
+
+module.exports = OverscrollBehavior
Index: node_modules/autoprefixer/lib/hacks/pixelated.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/pixelated.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/pixelated.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,34 @@
+let OldValue = require('../old-value')
+let Value = require('../value')
+
+class Pixelated extends Value {
+  /**
+   * Different name for WebKit and Firefox
+   */
+  old(prefix) {
+    if (prefix === '-webkit-') {
+      return new OldValue(this.name, '-webkit-optimize-contrast')
+    }
+    if (prefix === '-moz-') {
+      return new OldValue(this.name, '-moz-crisp-edges')
+    }
+    return super.old(prefix)
+  }
+
+  /**
+   * Use non-standard name for WebKit and Firefox
+   */
+  replace(string, prefix) {
+    if (prefix === '-webkit-') {
+      return string.replace(this.regexp(), '$1-webkit-optimize-contrast')
+    }
+    if (prefix === '-moz-') {
+      return string.replace(this.regexp(), '$1-moz-crisp-edges')
+    }
+    return super.replace(string, prefix)
+  }
+}
+
+Pixelated.names = ['pixelated']
+
+module.exports = Pixelated
Index: node_modules/autoprefixer/lib/hacks/place-self.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/place-self.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/place-self.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,32 @@
+let Declaration = require('../declaration')
+let utils = require('./grid-utils')
+
+class PlaceSelf extends Declaration {
+  /**
+   * Translate place-self to separate -ms- prefixed properties
+   */
+  insert(decl, prefix, prefixes) {
+    if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+    // prevent doubling of prefixes
+    if (decl.parent.some(i => i.prop === '-ms-grid-row-align')) {
+      return undefined
+    }
+
+    let [[first, second]] = utils.parse(decl)
+
+    if (second) {
+      utils.insertDecl(decl, 'grid-row-align', first)
+      utils.insertDecl(decl, 'grid-column-align', second)
+    } else {
+      utils.insertDecl(decl, 'grid-row-align', first)
+      utils.insertDecl(decl, 'grid-column-align', first)
+    }
+
+    return undefined
+  }
+}
+
+PlaceSelf.names = ['place-self']
+
+module.exports = PlaceSelf
Index: node_modules/autoprefixer/lib/hacks/placeholder-shown.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/placeholder-shown.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/placeholder-shown.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,19 @@
+let Selector = require('../selector')
+
+class PlaceholderShown extends Selector {
+  /**
+   * Return different selectors depend on prefix
+   */
+  prefixed(prefix) {
+    if (prefix === '-moz-') {
+      return ':-moz-placeholder'
+    } else if (prefix === '-ms-') {
+      return ':-ms-input-placeholder'
+    }
+    return `:${prefix}placeholder-shown`
+  }
+}
+
+PlaceholderShown.names = [':placeholder-shown']
+
+module.exports = PlaceholderShown
Index: node_modules/autoprefixer/lib/hacks/placeholder.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/placeholder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/placeholder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,33 @@
+let Selector = require('../selector')
+
+class Placeholder extends Selector {
+  /**
+   * Add old mozilla to possible prefixes
+   */
+  possible() {
+    return super.possible().concat(['-moz- old', '-ms- old'])
+  }
+
+  /**
+   * Return different selectors depend on prefix
+   */
+  prefixed(prefix) {
+    if (prefix === '-webkit-') {
+      return '::-webkit-input-placeholder'
+    }
+    if (prefix === '-ms-') {
+      return '::-ms-input-placeholder'
+    }
+    if (prefix === '-ms- old') {
+      return ':-ms-input-placeholder'
+    }
+    if (prefix === '-moz- old') {
+      return ':-moz-placeholder'
+    }
+    return `::${prefix}placeholder`
+  }
+}
+
+Placeholder.names = ['::placeholder']
+
+module.exports = Placeholder
Index: node_modules/autoprefixer/lib/hacks/print-color-adjust.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/print-color-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/print-color-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,25 @@
+let Declaration = require('../declaration')
+
+class PrintColorAdjust extends Declaration {
+  /**
+   * Return property name by spec
+   */
+  normalize() {
+    return 'print-color-adjust'
+  }
+
+  /**
+   * Change property name for WebKit-based browsers
+   */
+  prefixed(prop, prefix) {
+    if (prefix === '-moz-') {
+      return 'color-adjust'
+    } else {
+      return prefix + 'print-color-adjust'
+    }
+  }
+}
+
+PrintColorAdjust.names = ['print-color-adjust', 'color-adjust']
+
+module.exports = PrintColorAdjust
Index: node_modules/autoprefixer/lib/hacks/text-decoration-skip-ink.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/text-decoration-skip-ink.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/text-decoration-skip-ink.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,23 @@
+let Declaration = require('../declaration')
+
+class TextDecorationSkipInk extends Declaration {
+  /**
+   * Change prefix for ink value
+   */
+  set(decl, prefix) {
+    if (decl.prop === 'text-decoration-skip-ink' && decl.value === 'auto') {
+      decl.prop = prefix + 'text-decoration-skip'
+      decl.value = 'ink'
+      return decl
+    } else {
+      return super.set(decl, prefix)
+    }
+  }
+}
+
+TextDecorationSkipInk.names = [
+  'text-decoration-skip-ink',
+  'text-decoration-skip'
+]
+
+module.exports = TextDecorationSkipInk
Index: node_modules/autoprefixer/lib/hacks/text-decoration.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/text-decoration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/text-decoration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,25 @@
+let Declaration = require('../declaration')
+
+const BASIC = [
+  'none',
+  'underline',
+  'overline',
+  'line-through',
+  'blink',
+  'inherit',
+  'initial',
+  'unset'
+]
+
+class TextDecoration extends Declaration {
+  /**
+   * Do not add prefixes for basic values.
+   */
+  check(decl) {
+    return decl.value.split(/\s+/).some(i => !BASIC.includes(i))
+  }
+}
+
+TextDecoration.names = ['text-decoration']
+
+module.exports = TextDecoration
Index: node_modules/autoprefixer/lib/hacks/text-emphasis-position.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/text-emphasis-position.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/text-emphasis-position.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,14 @@
+let Declaration = require('../declaration')
+
+class TextEmphasisPosition extends Declaration {
+  set(decl, prefix) {
+    if (prefix === '-webkit-') {
+      decl.value = decl.value.replace(/\s*(right|left)\s*/i, '')
+    }
+    return super.set(decl, prefix)
+  }
+}
+
+TextEmphasisPosition.names = ['text-emphasis-position']
+
+module.exports = TextEmphasisPosition
Index: node_modules/autoprefixer/lib/hacks/transform-decl.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/transform-decl.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/transform-decl.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,79 @@
+let Declaration = require('../declaration')
+
+class TransformDecl extends Declaration {
+  /**
+   * Is transform contain 3D commands
+   */
+  contain3d(decl) {
+    if (decl.prop === 'transform-origin') {
+      return false
+    }
+
+    for (let func of TransformDecl.functions3d) {
+      if (decl.value.includes(`${func}(`)) {
+        return true
+      }
+    }
+
+    return false
+  }
+
+  /**
+   * Don't add prefix for IE in keyframes
+   */
+  insert(decl, prefix, prefixes) {
+    if (prefix === '-ms-') {
+      if (!this.contain3d(decl) && !this.keyframeParents(decl)) {
+        return super.insert(decl, prefix, prefixes)
+      }
+    } else if (prefix === '-o-') {
+      if (!this.contain3d(decl)) {
+        return super.insert(decl, prefix, prefixes)
+      }
+    } else {
+      return super.insert(decl, prefix, prefixes)
+    }
+    return undefined
+  }
+
+  /**
+   * Recursively check all parents for @keyframes
+   */
+  keyframeParents(decl) {
+    let { parent } = decl
+    while (parent) {
+      if (parent.type === 'atrule' && parent.name === 'keyframes') {
+        return true
+      }
+      ;({ parent } = parent)
+    }
+    return false
+  }
+
+  /**
+   * Replace rotateZ to rotate for IE 9
+   */
+  set(decl, prefix) {
+    decl = super.set(decl, prefix)
+    if (prefix === '-ms-') {
+      decl.value = decl.value.replace(/rotatez/gi, 'rotate')
+    }
+    return decl
+  }
+}
+
+TransformDecl.names = ['transform', 'transform-origin']
+
+TransformDecl.functions3d = [
+  'matrix3d',
+  'translate3d',
+  'translateZ',
+  'scale3d',
+  'scaleZ',
+  'rotate3d',
+  'rotateX',
+  'rotateY',
+  'perspective'
+]
+
+module.exports = TransformDecl
Index: node_modules/autoprefixer/lib/hacks/user-select.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/user-select.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/user-select.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,33 @@
+let Declaration = require('../declaration')
+
+class UserSelect extends Declaration {
+  /**
+   * Avoid prefixing all in IE
+   */
+  insert(decl, prefix, prefixes) {
+    if (decl.value === 'all' && prefix === '-ms-') {
+      return undefined
+    } else if (
+      decl.value === 'contain' &&
+      (prefix === '-moz-' || prefix === '-webkit-')
+    ) {
+      return undefined
+    } else {
+      return super.insert(decl, prefix, prefixes)
+    }
+  }
+
+  /**
+   * Change prefixed value for IE
+   */
+  set(decl, prefix) {
+    if (prefix === '-ms-' && decl.value === 'contain') {
+      decl.value = 'element'
+    }
+    return super.set(decl, prefix)
+  }
+}
+
+UserSelect.names = ['user-select']
+
+module.exports = UserSelect
Index: node_modules/autoprefixer/lib/hacks/writing-mode.js
===================================================================
--- node_modules/autoprefixer/lib/hacks/writing-mode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/hacks/writing-mode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,42 @@
+let Declaration = require('../declaration')
+
+class WritingMode extends Declaration {
+  insert(decl, prefix, prefixes) {
+    if (prefix === '-ms-') {
+      let cloned = this.set(this.clone(decl), prefix)
+
+      if (this.needCascade(decl)) {
+        cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+      }
+      let direction = 'ltr'
+
+      decl.parent.nodes.forEach(i => {
+        if (i.prop === 'direction') {
+          if (i.value === 'rtl' || i.value === 'ltr') direction = i.value
+        }
+      })
+
+      cloned.value = WritingMode.msValues[direction][decl.value] || decl.value
+      return decl.parent.insertBefore(decl, cloned)
+    }
+
+    return super.insert(decl, prefix, prefixes)
+  }
+}
+
+WritingMode.names = ['writing-mode']
+
+WritingMode.msValues = {
+  ltr: {
+    'horizontal-tb': 'lr-tb',
+    'vertical-lr': 'tb-lr',
+    'vertical-rl': 'tb-rl'
+  },
+  rtl: {
+    'horizontal-tb': 'rl-tb',
+    'vertical-lr': 'bt-lr',
+    'vertical-rl': 'bt-rl'
+  }
+}
+
+module.exports = WritingMode
Index: node_modules/autoprefixer/lib/info.js
===================================================================
--- node_modules/autoprefixer/lib/info.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/info.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,123 @@
+let browserslist = require('browserslist')
+
+function capitalize(str) {
+  return str.slice(0, 1).toUpperCase() + str.slice(1)
+}
+
+const NAMES = {
+  and_chr: 'Chrome for Android',
+  and_ff: 'Firefox for Android',
+  and_qq: 'QQ Browser',
+  and_uc: 'UC for Android',
+  baidu: 'Baidu Browser',
+  ie: 'IE',
+  ie_mob: 'IE Mobile',
+  ios_saf: 'iOS Safari',
+  kaios: 'KaiOS Browser',
+  op_mini: 'Opera Mini',
+  op_mob: 'Opera Mobile',
+  samsung: 'Samsung Internet'
+}
+
+function prefix(name, prefixes, note) {
+  let out = `  ${name}`
+  if (note) out += ' *'
+  out += ': '
+  out += prefixes.map(i => i.replace(/^-(.*)-$/g, '$1')).join(', ')
+  out += '\n'
+  return out
+}
+
+module.exports = function (prefixes) {
+  if (prefixes.browsers.selected.length === 0) {
+    return 'No browsers selected'
+  }
+
+  let versions = {}
+  for (let browser of prefixes.browsers.selected) {
+    let parts = browser.split(' ')
+    let name = parts[0]
+    let version = parts[1]
+
+    name = NAMES[name] || capitalize(name)
+    if (versions[name]) {
+      versions[name].push(version)
+    } else {
+      versions[name] = [version]
+    }
+  }
+
+  let out = 'Browsers:\n'
+  for (let browser in versions) {
+    let list = versions[browser]
+    list = list.sort((a, b) => parseFloat(b) - parseFloat(a))
+    out += `  ${browser}: ${list.join(', ')}\n`
+  }
+
+  let coverage = browserslist.coverage(prefixes.browsers.selected)
+  let round = Math.round(coverage * 100) / 100.0
+  out += `\nThese browsers account for ${round}% of all users globally\n`
+
+  let atrules = []
+  for (let name in prefixes.add) {
+    let data = prefixes.add[name]
+    if (name[0] === '@' && data.prefixes) {
+      atrules.push(prefix(name, data.prefixes))
+    }
+  }
+  if (atrules.length > 0) {
+    out += `\nAt-Rules:\n${atrules.sort().join('')}`
+  }
+
+  let selectors = []
+  for (let selector of prefixes.add.selectors) {
+    if (selector.prefixes) {
+      selectors.push(prefix(selector.name, selector.prefixes))
+    }
+  }
+  if (selectors.length > 0) {
+    out += `\nSelectors:\n${selectors.sort().join('')}`
+  }
+
+  let values = []
+  let props = []
+  let hadGrid = false
+  for (let name in prefixes.add) {
+    let data = prefixes.add[name]
+    if (name[0] !== '@' && data.prefixes) {
+      let grid = name.indexOf('grid-') === 0
+      if (grid) hadGrid = true
+      props.push(prefix(name, data.prefixes, grid))
+    }
+
+    if (!Array.isArray(data.values)) {
+      continue
+    }
+    for (let value of data.values) {
+      let grid = value.name.includes('grid')
+      if (grid) hadGrid = true
+      let string = prefix(value.name, value.prefixes, grid)
+      if (!values.includes(string)) {
+        values.push(string)
+      }
+    }
+  }
+
+  if (props.length > 0) {
+    out += `\nProperties:\n${props.sort().join('')}`
+  }
+  if (values.length > 0) {
+    out += `\nValues:\n${values.sort().join('')}`
+  }
+  if (hadGrid) {
+    out += '\n* - Prefixes will be added only on grid: true option.\n'
+  }
+
+  if (!atrules.length && !selectors.length && !props.length && !values.length) {
+    out +=
+      "\nAwesome! Your browsers don't require any vendor prefixes." +
+      '\nNow you can remove Autoprefixer from build steps.'
+  }
+
+  return out
+}
Index: node_modules/autoprefixer/lib/old-selector.js
===================================================================
--- node_modules/autoprefixer/lib/old-selector.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/old-selector.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,67 @@
+class OldSelector {
+  constructor(selector, prefix) {
+    this.prefix = prefix
+    this.prefixed = selector.prefixed(this.prefix)
+    this.regexp = selector.regexp(this.prefix)
+
+    this.prefixeds = selector
+      .possible()
+      .map(x => [selector.prefixed(x), selector.regexp(x)])
+
+    this.unprefixed = selector.name
+    this.nameRegexp = selector.regexp()
+  }
+
+  /**
+   * Does rule contain an unnecessary prefixed selector
+   */
+  check(rule) {
+    if (!rule.selector.includes(this.prefixed)) {
+      return false
+    }
+    if (!rule.selector.match(this.regexp)) {
+      return false
+    }
+    if (this.isHack(rule)) {
+      return false
+    }
+    return true
+  }
+
+  /**
+   * Is rule a hack without unprefixed version bottom
+   */
+  isHack(rule) {
+    let index = rule.parent.index(rule) + 1
+    let rules = rule.parent.nodes
+
+    while (index < rules.length) {
+      let before = rules[index].selector
+      if (!before) {
+        return true
+      }
+
+      if (before.includes(this.unprefixed) && before.match(this.nameRegexp)) {
+        return false
+      }
+
+      let some = false
+      for (let [string, regexp] of this.prefixeds) {
+        if (before.includes(string) && before.match(regexp)) {
+          some = true
+          break
+        }
+      }
+
+      if (!some) {
+        return true
+      }
+
+      index += 1
+    }
+
+    return true
+  }
+}
+
+module.exports = OldSelector
Index: node_modules/autoprefixer/lib/old-value.js
===================================================================
--- node_modules/autoprefixer/lib/old-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/old-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,22 @@
+let utils = require('./utils')
+
+class OldValue {
+  constructor(unprefixed, prefixed, string, regexp) {
+    this.unprefixed = unprefixed
+    this.prefixed = prefixed
+    this.string = string || prefixed
+    this.regexp = regexp || utils.regexp(prefixed)
+  }
+
+  /**
+   * Check, that value contain old value
+   */
+  check(value) {
+    if (value.includes(this.string)) {
+      return !!value.match(this.regexp)
+    }
+    return false
+  }
+}
+
+module.exports = OldValue
Index: node_modules/autoprefixer/lib/prefixer.js
===================================================================
--- node_modules/autoprefixer/lib/prefixer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/prefixer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,144 @@
+let Browsers = require('./browsers')
+let utils = require('./utils')
+let vendor = require('./vendor')
+
+/**
+ * Recursively clone objects
+ */
+function clone(obj, parent) {
+  let cloned = new obj.constructor()
+
+  for (let i of Object.keys(obj || {})) {
+    let value = obj[i]
+    if (i === 'parent' && typeof value === 'object') {
+      if (parent) {
+        cloned[i] = parent
+      }
+    } else if (i === 'source' || i === null) {
+      cloned[i] = value
+    } else if (Array.isArray(value)) {
+      cloned[i] = value.map(x => clone(x, cloned))
+    } else if (
+      i !== '_autoprefixerPrefix' &&
+      i !== '_autoprefixerValues' &&
+      i !== 'proxyCache'
+    ) {
+      if (typeof value === 'object' && value !== null) {
+        value = clone(value, cloned)
+      }
+      cloned[i] = value
+    }
+  }
+
+  return cloned
+}
+
+class Prefixer {
+  constructor(name, prefixes, all) {
+    this.prefixes = prefixes
+    this.name = name
+    this.all = all
+  }
+
+  /**
+   * Clone node and clean autprefixer custom caches
+   */
+  static clone(node, overrides) {
+    let cloned = clone(node)
+    for (let name in overrides) {
+      cloned[name] = overrides[name]
+    }
+    return cloned
+  }
+
+  /**
+   * Add hack to selected names
+   */
+  static hack(klass) {
+    if (!this.hacks) {
+      this.hacks = {}
+    }
+    return klass.names.map(name => {
+      this.hacks[name] = klass
+      return this.hacks[name]
+    })
+  }
+
+  /**
+   * Load hacks for some names
+   */
+  static load(name, prefixes, all) {
+    let Klass = this.hacks && this.hacks[name]
+    if (Klass) {
+      return new Klass(name, prefixes, all)
+    } else {
+      return new this(name, prefixes, all)
+    }
+  }
+
+  /**
+   * Shortcut for Prefixer.clone
+   */
+  clone(node, overrides) {
+    return Prefixer.clone(node, overrides)
+  }
+
+  /**
+   * Find prefix in node parents
+   */
+  parentPrefix(node) {
+    let prefix
+
+    if (typeof node._autoprefixerPrefix !== 'undefined') {
+      prefix = node._autoprefixerPrefix
+    } else if (node.type === 'decl' && node.prop[0] === '-') {
+      prefix = vendor.prefix(node.prop)
+    } else if (node.type === 'root') {
+      prefix = false
+    } else if (
+      node.type === 'rule' &&
+      node.selector.includes(':-') &&
+      /:(-\w+-)/.test(node.selector)
+    ) {
+      prefix = node.selector.match(/:(-\w+-)/)[1]
+    } else if (node.type === 'atrule' && node.name[0] === '-') {
+      prefix = vendor.prefix(node.name)
+    } else {
+      prefix = this.parentPrefix(node.parent)
+    }
+
+    if (!Browsers.prefixes().includes(prefix)) {
+      prefix = false
+    }
+
+    node._autoprefixerPrefix = prefix
+
+    return node._autoprefixerPrefix
+  }
+
+  /**
+   * Clone node with prefixes
+   */
+  process(node, result) {
+    if (!this.check(node)) {
+      return undefined
+    }
+
+    let parent = this.parentPrefix(node)
+
+    let prefixes = this.prefixes.filter(
+      prefix => !parent || parent === utils.removeNote(prefix)
+    )
+
+    let added = []
+    for (let prefix of prefixes) {
+      if (this.add(node, prefix, added.concat([prefix]), result)) {
+        added.push(prefix)
+      }
+    }
+
+    return added
+  }
+}
+
+module.exports = Prefixer
Index: node_modules/autoprefixer/lib/prefixes.js
===================================================================
--- node_modules/autoprefixer/lib/prefixes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/prefixes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,428 @@
+let AtRule = require('./at-rule')
+let Browsers = require('./browsers')
+let Declaration = require('./declaration')
+let hackAlignContent = require('./hacks/align-content')
+let hackAlignItems = require('./hacks/align-items')
+let hackAlignSelf = require('./hacks/align-self')
+let hackAnimation = require('./hacks/animation')
+let hackAppearance = require('./hacks/appearance')
+let hackAutofill = require('./hacks/autofill')
+let hackBackdropFilter = require('./hacks/backdrop-filter')
+let hackBackgroundClip = require('./hacks/background-clip')
+let hackBackgroundSize = require('./hacks/background-size')
+let hackBlockLogical = require('./hacks/block-logical')
+let hackBorderImage = require('./hacks/border-image')
+let hackBorderRadius = require('./hacks/border-radius')
+let hackBreakProps = require('./hacks/break-props')
+let hackCrossFade = require('./hacks/cross-fade')
+let hackDisplayFlex = require('./hacks/display-flex')
+let hackDisplayGrid = require('./hacks/display-grid')
+let hackFileSelectorButton = require('./hacks/file-selector-button')
+let hackFilter = require('./hacks/filter')
+let hackFilterValue = require('./hacks/filter-value')
+let hackFlex = require('./hacks/flex')
+let hackFlexBasis = require('./hacks/flex-basis')
+let hackFlexDirection = require('./hacks/flex-direction')
+let hackFlexFlow = require('./hacks/flex-flow')
+let hackFlexGrow = require('./hacks/flex-grow')
+let hackFlexShrink = require('./hacks/flex-shrink')
+let hackFlexWrap = require('./hacks/flex-wrap')
+let hackFullscreen = require('./hacks/fullscreen')
+let hackGradient = require('./hacks/gradient')
+let hackGridArea = require('./hacks/grid-area')
+let hackGridColumnAlign = require('./hacks/grid-column-align')
+let hackGridEnd = require('./hacks/grid-end')
+let hackGridRowAlign = require('./hacks/grid-row-align')
+let hackGridRowColumn = require('./hacks/grid-row-column')
+let hackGridRowsColumns = require('./hacks/grid-rows-columns')
+let hackGridStart = require('./hacks/grid-start')
+let hackGridTemplate = require('./hacks/grid-template')
+let hackGridTemplateAreas = require('./hacks/grid-template-areas')
+let hackImageRendering = require('./hacks/image-rendering')
+let hackImageSet = require('./hacks/image-set')
+let hackInlineLogical = require('./hacks/inline-logical')
+let hackIntrinsic = require('./hacks/intrinsic')
+let hackJustifyContent = require('./hacks/justify-content')
+let hackMaskBorder = require('./hacks/mask-border')
+let hackMaskComposite = require('./hacks/mask-composite')
+let hackOrder = require('./hacks/order')
+let hackOverscrollBehavior = require('./hacks/overscroll-behavior')
+let hackPixelated = require('./hacks/pixelated')
+let hackPlaceSelf = require('./hacks/place-self')
+let hackPlaceholder = require('./hacks/placeholder')
+let hackPlaceholderShown = require('./hacks/placeholder-shown')
+let hackPrintColorAdjust = require('./hacks/print-color-adjust')
+let hackTextDecoration = require('./hacks/text-decoration')
+let hackTextDecorationSkipInk = require('./hacks/text-decoration-skip-ink')
+let hackTextEmphasisPosition = require('./hacks/text-emphasis-position')
+let hackTransformDecl = require('./hacks/transform-decl')
+let hackUserSelect = require('./hacks/user-select')
+let hackWritingMode = require('./hacks/writing-mode')
+let Processor = require('./processor')
+let Resolution = require('./resolution')
+let Selector = require('./selector')
+let Supports = require('./supports')
+let Transition = require('./transition')
+let utils = require('./utils')
+let Value = require('./value')
+let vendor = require('./vendor')
+
+Selector.hack(hackAutofill)
+Selector.hack(hackFullscreen)
+Selector.hack(hackPlaceholder)
+Selector.hack(hackPlaceholderShown)
+Selector.hack(hackFileSelectorButton)
+Declaration.hack(hackFlex)
+Declaration.hack(hackOrder)
+Declaration.hack(hackFilter)
+Declaration.hack(hackGridEnd)
+Declaration.hack(hackAnimation)
+Declaration.hack(hackFlexFlow)
+Declaration.hack(hackFlexGrow)
+Declaration.hack(hackFlexWrap)
+Declaration.hack(hackGridArea)
+Declaration.hack(hackPlaceSelf)
+Declaration.hack(hackGridStart)
+Declaration.hack(hackAlignSelf)
+Declaration.hack(hackAppearance)
+Declaration.hack(hackFlexBasis)
+Declaration.hack(hackMaskBorder)
+Declaration.hack(hackMaskComposite)
+Declaration.hack(hackAlignItems)
+Declaration.hack(hackUserSelect)
+Declaration.hack(hackFlexShrink)
+Declaration.hack(hackBreakProps)
+Declaration.hack(hackWritingMode)
+Declaration.hack(hackBorderImage)
+Declaration.hack(hackAlignContent)
+Declaration.hack(hackBorderRadius)
+Declaration.hack(hackBlockLogical)
+Declaration.hack(hackGridTemplate)
+Declaration.hack(hackInlineLogical)
+Declaration.hack(hackGridRowAlign)
+Declaration.hack(hackTransformDecl)
+Declaration.hack(hackFlexDirection)
+Declaration.hack(hackImageRendering)
+Declaration.hack(hackBackdropFilter)
+Declaration.hack(hackBackgroundClip)
+Declaration.hack(hackTextDecoration)
+Declaration.hack(hackJustifyContent)
+Declaration.hack(hackBackgroundSize)
+Declaration.hack(hackGridRowColumn)
+Declaration.hack(hackGridRowsColumns)
+Declaration.hack(hackGridColumnAlign)
+Declaration.hack(hackOverscrollBehavior)
+Declaration.hack(hackGridTemplateAreas)
+Declaration.hack(hackPrintColorAdjust)
+Declaration.hack(hackTextEmphasisPosition)
+Declaration.hack(hackTextDecorationSkipInk)
+Value.hack(hackGradient)
+Value.hack(hackIntrinsic)
+Value.hack(hackPixelated)
+Value.hack(hackImageSet)
+Value.hack(hackCrossFade)
+Value.hack(hackDisplayFlex)
+Value.hack(hackDisplayGrid)
+Value.hack(hackFilterValue)
+
+let declsCache = new Map()
+
+class Prefixes {
+  constructor(data, browsers, options = {}) {
+    this.data = data
+    this.browsers = browsers
+    this.options = options
+    ;[this.add, this.remove] = this.preprocess(this.select(this.data))
+    this.transition = new Transition(this)
+    this.processor = new Processor(this)
+  }
+
+  /**
+   * Return clone instance to remove all prefixes
+   */
+  cleaner() {
+    if (this.cleanerCache) {
+      return this.cleanerCache
+    }
+
+    if (this.browsers.selected.length) {
+      let empty = new Browsers(this.browsers.data, [])
+      this.cleanerCache = new Prefixes(this.data, empty, this.options)
+    } else {
+      return this
+    }
+
+    return this.cleanerCache
+  }
+
+  /**
+   * Declaration loader with caching
+   */
+  decl(prop) {
+    if (!declsCache.has(prop)) {
+      declsCache.set(prop, Declaration.load(prop))
+    }
+
+    return declsCache.get(prop)
+  }
+
+  /**
+   * Group declaration by unprefixed property to check them
+   */
+  group(decl) {
+    let rule = decl.parent
+    let index = rule.index(decl)
+    let { length } = rule.nodes
+    let unprefixed = this.unprefixed(decl.prop)
+
+    let checker = (step, callback) => {
+      index += step
+      while (index >= 0 && index < length) {
+        let other = rule.nodes[index]
+        if (other.type === 'decl') {
+          if (step === -1 && other.prop === unprefixed) {
+            if (!Browsers.withPrefix(other.value)) {
+              break
+            }
+          }
+
+          if (this.unprefixed(other.prop) !== unprefixed) {
+            break
+          } else if (callback(other) === true) {
+            return true
+          }
+
+          if (step === +1 && other.prop === unprefixed) {
+            if (!Browsers.withPrefix(other.value)) {
+              break
+            }
+          }
+        }
+
+        index += step
+      }
+      return false
+    }
+
+    return {
+      down(callback) {
+        return checker(+1, callback)
+      },
+      up(callback) {
+        return checker(-1, callback)
+      }
+    }
+  }
+
+  /**
+   * Normalize prefix for remover
+   */
+  normalize(prop) {
+    return this.decl(prop).normalize(prop)
+  }
+
+  /**
+   * Return prefixed version of property
+   */
+  prefixed(prop, prefix) {
+    prop = vendor.unprefixed(prop)
+    return this.decl(prop).prefixed(prop, prefix)
+  }
+
+  /**
+   * Cache prefixes data to fast CSS processing
+   */
+  preprocess(selected) {
+    let add = {
+      '@supports': new Supports(Prefixes, this),
+      'selectors': []
+    }
+    for (let name in selected.add) {
+      let prefixes = selected.add[name]
+      if (name === '@keyframes' || name === '@viewport') {
+        add[name] = new AtRule(name, prefixes, this)
+      } else if (name === '@resolution') {
+        add[name] = new Resolution(name, prefixes, this)
+      } else if (this.data[name].selector) {
+        add.selectors.push(Selector.load(name, prefixes, this))
+      } else {
+        let props = this.data[name].props
+
+        if (props) {
+          let value = Value.load(name, prefixes, this)
+          for (let prop of props) {
+            if (!add[prop]) {
+              add[prop] = { values: [] }
+            }
+            add[prop].values.push(value)
+          }
+        } else {
+          let values = (add[name] && add[name].values) || []
+          add[name] = Declaration.load(name, prefixes, this)
+          add[name].values = values
+        }
+      }
+    }
+
+    let remove = { selectors: [] }
+    for (let name in selected.remove) {
+      let prefixes = selected.remove[name]
+      if (this.data[name].selector) {
+        let selector = Selector.load(name, prefixes)
+        for (let prefix of prefixes) {
+          remove.selectors.push(selector.old(prefix))
+        }
+      } else if (name === '@keyframes' || name === '@viewport') {
+        for (let prefix of prefixes) {
+          let prefixed = `@${prefix}${name.slice(1)}`
+          remove[prefixed] = { remove: true }
+        }
+      } else if (name === '@resolution') {
+        remove[name] = new Resolution(name, prefixes, this)
+      } else {
+        let props = this.data[name].props
+        if (props) {
+          let value = Value.load(name, [], this)
+          for (let prefix of prefixes) {
+            let old = value.old(prefix)
+            if (old) {
+              for (let prop of props) {
+                if (!remove[prop]) {
+                  remove[prop] = {}
+                }
+                if (!remove[prop].values) {
+                  remove[prop].values = []
+                }
+                remove[prop].values.push(old)
+              }
+            }
+          }
+        } else {
+          for (let p of prefixes) {
+            let olds = this.decl(name).old(name, p)
+            if (name === 'align-self') {
+              let a = add[name] && add[name].prefixes
+              if (a) {
+                if (p === '-webkit- 2009' && a.includes('-webkit-')) {
+                  continue
+                } else if (p === '-webkit-' && a.includes('-webkit- 2009')) {
+                  continue
+                }
+              }
+            }
+            for (let prefixed of olds) {
+              if (!remove[prefixed]) {
+                remove[prefixed] = {}
+              }
+              remove[prefixed].remove = true
+            }
+          }
+        }
+      }
+    }
+
+    return [add, remove]
+  }
+
+  /**
+   * Select prefixes from data, which is necessary for selected browsers
+   */
+  select(list) {
+    let selected = { add: {}, remove: {} }
+
+    for (let name in list) {
+      let data = list[name]
+      let add = data.browsers.map(i => {
+        let params = i.split(' ')
+        return {
+          browser: `${params[0]} ${params[1]}`,
+          note: params[2]
+        }
+      })
+
+      let notes = add
+        .filter(i => i.note)
+        .map(i => `${this.browsers.prefix(i.browser)} ${i.note}`)
+      notes = utils.uniq(notes)
+
+      add = add
+        .filter(i => this.browsers.isSelected(i.browser))
+        .map(i => {
+          let prefix = this.browsers.prefix(i.browser)
+          if (i.note) {
+            return `${prefix} ${i.note}`
+          } else {
+            return prefix
+          }
+        })
+      add = this.sort(utils.uniq(add))
+
+      if (this.options.flexbox === 'no-2009') {
+        add = add.filter(i => !i.includes('2009'))
+      }
+
+      let all = data.browsers.map(i => this.browsers.prefix(i))
+      if (data.mistakes) {
+        all = all.concat(data.mistakes)
+      }
+      all = all.concat(notes)
+      all = utils.uniq(all)
+
+      if (add.length) {
+        selected.add[name] = add
+        if (add.length < all.length) {
+          selected.remove[name] = all.filter(i => !add.includes(i))
+        }
+      } else {
+        selected.remove[name] = all
+      }
+    }
+
+    return selected
+  }
+
+  /**
+   * Sort vendor prefixes
+   */
+  sort(prefixes) {
+    return prefixes.sort((a, b) => {
+      let aLength = utils.removeNote(a).length
+      let bLength = utils.removeNote(b).length
+
+      if (aLength === bLength) {
+        return b.length - a.length
+      } else {
+        return bLength - aLength
+      }
+    })
+  }
+
+  /**
+   * Return unprefixed version of property
+   */
+  unprefixed(prop) {
+    let value = this.normalize(vendor.unprefixed(prop))
+    if (value === 'flex-direction') {
+      value = 'flex-flow'
+    }
+    return value
+  }
+
+  /**
+   * Return values, which must be prefixed in selected property
+   */
+  values(type, prop) {
+    let data = this[type]
+
+    let global = data['*'] && data['*'].values
+    let values = data[prop] && data[prop].values
+
+    if (global && values) {
+      return utils.uniq(global.concat(values))
+    } else {
+      return global || values || []
+    }
+  }
+}
+
+module.exports = Prefixes
Index: node_modules/autoprefixer/lib/processor.js
===================================================================
--- node_modules/autoprefixer/lib/processor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/processor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,709 @@
+let parser = require('postcss-value-parser')
+
+let Value = require('./value')
+let insertAreas = require('./hacks/grid-utils').insertAreas
+
+const OLD_LINEAR = /(^|[^-])linear-gradient\(\s*(top|left|right|bottom)/i
+const OLD_RADIAL = /(^|[^-])radial-gradient\(\s*\d+(\w*|%)\s+\d+(\w*|%)\s*,/i
+const IGNORE_NEXT = /(!\s*)?autoprefixer:\s*ignore\s+next/i
+const GRID_REGEX = /(!\s*)?autoprefixer\s*grid:\s*(on|off|(no-)?autoplace)/i
+
+const SIZES = [
+  'width',
+  'height',
+  'min-width',
+  'max-width',
+  'min-height',
+  'max-height',
+  'inline-size',
+  'min-inline-size',
+  'max-inline-size',
+  'block-size',
+  'min-block-size',
+  'max-block-size'
+]
+
+function hasGridTemplate(decl) {
+  return decl.parent.some(
+    i => i.prop === 'grid-template' || i.prop === 'grid-template-areas'
+  )
+}
+
+function hasRowsAndColumns(decl) {
+  let hasRows = decl.parent.some(i => i.prop === 'grid-template-rows')
+  let hasColumns = decl.parent.some(i => i.prop === 'grid-template-columns')
+  return hasRows && hasColumns
+}
+
+class Processor {
+  constructor(prefixes) {
+    this.prefixes = prefixes
+  }
+
+  /**
+   * Add necessary prefixes
+   */
+  add(css, result) {
+    // At-rules
+    let resolution = this.prefixes.add['@resolution']
+    let keyframes = this.prefixes.add['@keyframes']
+    let viewport = this.prefixes.add['@viewport']
+    let supports = this.prefixes.add['@supports']
+
+    css.walkAtRules(rule => {
+      if (rule.name === 'keyframes') {
+        if (!this.disabled(rule, result)) {
+          return keyframes && keyframes.process(rule)
+        }
+      } else if (rule.name === 'viewport') {
+        if (!this.disabled(rule, result)) {
+          return viewport && viewport.process(rule)
+        }
+      } else if (rule.name === 'supports') {
+        if (
+          this.prefixes.options.supports !== false &&
+          !this.disabled(rule, result)
+        ) {
+          return supports.process(rule)
+        }
+      } else if (rule.name === 'media' && rule.params.includes('-resolution')) {
+        if (!this.disabled(rule, result)) {
+          return resolution && resolution.process(rule)
+        }
+      }
+
+      return undefined
+    })
+
+    // Selectors
+    css.walkRules(rule => {
+      if (this.disabled(rule, result)) return undefined
+
+      return this.prefixes.add.selectors.map(selector => {
+        return selector.process(rule, result)
+      })
+    })
+
+    function insideGrid(decl) {
+      return decl.parent.nodes.some(node => {
+        if (node.type !== 'decl') return false
+        let displayGrid =
+          node.prop === 'display' && /(inline-)?grid/.test(node.value)
+        let gridTemplate = node.prop.startsWith('grid-template')
+        let gridGap = /^grid-([A-z]+-)?gap/.test(node.prop)
+        return displayGrid || gridTemplate || gridGap
+      })
+    }
+
+    let gridPrefixes =
+      this.gridStatus(css, result) &&
+      this.prefixes.add['grid-area'] &&
+      this.prefixes.add['grid-area'].prefixes
+
+    css.walkDecls(decl => {
+      if (this.disabledDecl(decl, result)) return undefined
+
+      let parent = decl.parent
+      let prop = decl.prop
+      let value = decl.value
+
+      if (prop === 'color-adjust') {
+        if (parent.every(i => i.prop !== 'print-color-adjust')) {
+          result.warn(
+            'Replace color-adjust to print-color-adjust. ' +
+              'The color-adjust shorthand is currently deprecated.',
+            { node: decl }
+          )
+        }
+      } else if (prop === 'grid-row-span') {
+        result.warn(
+          'grid-row-span is not part of final Grid Layout. Use grid-row.',
+          { node: decl }
+        )
+        return undefined
+      } else if (prop === 'grid-column-span') {
+        result.warn(
+          'grid-column-span is not part of final Grid Layout. Use grid-column.',
+          { node: decl }
+        )
+        return undefined
+      } else if (prop === 'display' && value === 'box') {
+        result.warn(
+          'You should write display: flex by final spec ' +
+            'instead of display: box',
+          { node: decl }
+        )
+        return undefined
+      } else if (prop === 'text-emphasis-position') {
+        if (value === 'under' || value === 'over') {
+          result.warn(
+            'You should use 2 values for text-emphasis-position ' +
+              'For example, `under left` instead of just `under`.',
+            { node: decl }
+          )
+        }
+      } else if (prop === 'text-decoration-skip' && value === 'ink') {
+        result.warn(
+          'Replace text-decoration-skip: ink to ' +
+            'text-decoration-skip-ink: auto, because spec had been changed',
+          { node: decl }
+        )
+      } else {
+        if (gridPrefixes && this.gridStatus(decl, result)) {
+          if (decl.value === 'subgrid') {
+            result.warn('IE does not support subgrid', { node: decl })
+          }
+          if (/^(align|justify|place)-items$/.test(prop) && insideGrid(decl)) {
+            let fixed = prop.replace('-items', '-self')
+            result.warn(
+              `IE does not support ${prop} on grid containers. ` +
+                `Try using ${fixed} on child elements instead: ` +
+                `${decl.parent.selector} > * { ${fixed}: ${decl.value} }`,
+              { node: decl }
+            )
+          } else if (
+            /^(align|justify|place)-content$/.test(prop) &&
+            insideGrid(decl)
+          ) {
+            result.warn(`IE does not support ${decl.prop} on grid containers`, {
+              node: decl
+            })
+          } else if (prop === 'display' && decl.value === 'contents') {
+            result.warn(
+              'Please do not use display: contents; ' +
+                'if you have grid setting enabled',
+              { node: decl }
+            )
+            return undefined
+          } else if (decl.prop === 'grid-gap') {
+            let status = this.gridStatus(decl, result)
+            if (
+              status === 'autoplace' &&
+              !hasRowsAndColumns(decl) &&
+              !hasGridTemplate(decl)
+            ) {
+              result.warn(
+                'grid-gap only works if grid-template(-areas) is being ' +
+                  'used or both rows and columns have been declared ' +
+                  'and cells have not been manually ' +
+                  'placed inside the explicit grid',
+                { node: decl }
+              )
+            } else if (
+              (status === true || status === 'no-autoplace') &&
+              !hasGridTemplate(decl)
+            ) {
+              result.warn(
+                'grid-gap only works if grid-template(-areas) is being used',
+                { node: decl }
+              )
+            }
+          } else if (prop === 'grid-auto-columns') {
+            result.warn('grid-auto-columns is not supported by IE', {
+              node: decl
+            })
+            return undefined
+          } else if (prop === 'grid-auto-rows') {
+            result.warn('grid-auto-rows is not supported by IE', { node: decl })
+            return undefined
+          } else if (prop === 'grid-auto-flow') {
+            let hasRows = parent.some(i => i.prop === 'grid-template-rows')
+            let hasCols = parent.some(i => i.prop === 'grid-template-columns')
+
+            if (hasGridTemplate(decl)) {
+              result.warn('grid-auto-flow is not supported by IE', {
+                node: decl
+              })
+            } else if (value.includes('dense')) {
+              result.warn('grid-auto-flow: dense is not supported by IE', {
+                node: decl
+              })
+            } else if (!hasRows && !hasCols) {
+              result.warn(
+                'grid-auto-flow works only if grid-template-rows and ' +
+                  'grid-template-columns are present in the same rule',
+                { node: decl }
+              )
+            }
+            return undefined
+          } else if (value.includes('auto-fit')) {
+            result.warn('auto-fit value is not supported by IE', {
+              node: decl,
+              word: 'auto-fit'
+            })
+            return undefined
+          } else if (value.includes('auto-fill')) {
+            result.warn('auto-fill value is not supported by IE', {
+              node: decl,
+              word: 'auto-fill'
+            })
+            return undefined
+          } else if (prop.startsWith('grid-template') && value.includes('[')) {
+            result.warn(
+              'Autoprefixer currently does not support line names. ' +
+                'Try using grid-template-areas instead.',
+              { node: decl, word: '[' }
+            )
+          }
+        }
+        if (value.includes('radial-gradient')) {
+          if (OLD_RADIAL.test(decl.value)) {
+            result.warn(
+              'Gradient has outdated direction syntax. ' +
+                'New syntax is like `closest-side at 0 0` ' +
+                'instead of `0 0, closest-side`.',
+              { node: decl }
+            )
+          } else {
+            let ast = parser(value)
+
+            for (let i of ast.nodes) {
+              if (i.type === 'function' && i.value === 'radial-gradient') {
+                for (let word of i.nodes) {
+                  if (word.type === 'word') {
+                    if (word.value === 'cover') {
+                      result.warn(
+                        'Gradient has outdated direction syntax. ' +
+                          'Replace `cover` to `farthest-corner`.',
+                        { node: decl }
+                      )
+                    } else if (word.value === 'contain') {
+                      result.warn(
+                        'Gradient has outdated direction syntax. ' +
+                          'Replace `contain` to `closest-side`.',
+                        { node: decl }
+                      )
+                    }
+                  }
+                }
+              }
+            }
+          }
+        }
+        if (value.includes('linear-gradient')) {
+          if (OLD_LINEAR.test(value)) {
+            result.warn(
+              'Gradient has outdated direction syntax. ' +
+                'New syntax is like `to left` instead of `right`.',
+              { node: decl }
+            )
+          }
+        }
+      }
+
+      if (SIZES.includes(decl.prop)) {
+        if (!decl.value.includes('-fill-available')) {
+          if (decl.value.includes('fill-available')) {
+            result.warn(
+              'Replace fill-available to stretch, ' +
+                'because spec had been changed',
+              { node: decl }
+            )
+          } else if (decl.value.includes('fill')) {
+            let ast = parser(value)
+            if (ast.nodes.some(i => i.type === 'word' && i.value === 'fill')) {
+              result.warn(
+                'Replace fill to stretch, because spec had been changed',
+                { node: decl }
+              )
+            }
+          }
+        }
+      }
+
+      let prefixer
+
+      if (decl.prop === 'transition' || decl.prop === 'transition-property') {
+        // Transition
+        return this.prefixes.transition.add(decl, result)
+      } else if (decl.prop === 'align-self') {
+        // align-self flexbox or grid
+        let display = this.displayType(decl)
+        if (display !== 'grid' && this.prefixes.options.flexbox !== false) {
+          prefixer = this.prefixes.add['align-self']
+          if (prefixer && prefixer.prefixes) {
+            prefixer.process(decl)
+          }
+        }
+        if (this.gridStatus(decl, result) !== false) {
+          prefixer = this.prefixes.add['grid-row-align']
+          if (prefixer && prefixer.prefixes) {
+            return prefixer.process(decl, result)
+          }
+        }
+      } else if (decl.prop === 'justify-self') {
+        // justify-self flexbox or grid
+        if (this.gridStatus(decl, result) !== false) {
+          prefixer = this.prefixes.add['grid-column-align']
+          if (prefixer && prefixer.prefixes) {
+            return prefixer.process(decl, result)
+          }
+        }
+      } else if (decl.prop === 'place-self') {
+        prefixer = this.prefixes.add['place-self']
+        if (
+          prefixer &&
+          prefixer.prefixes &&
+          this.gridStatus(decl, result) !== false
+        ) {
+          return prefixer.process(decl, result)
+        }
+      } else {
+        // Properties
+        prefixer = this.prefixes.add[decl.prop]
+        if (prefixer && prefixer.prefixes) {
+          return prefixer.process(decl, result)
+        }
+      }
+
+      return undefined
+    })
+
+    // Insert grid-area prefixes. We need to be able to store the different
+    // rules as a data and hack API is not enough for this
+    if (this.gridStatus(css, result)) {
+      insertAreas(css, this.disabled)
+    }
+
+    // Values
+    return css.walkDecls(decl => {
+      if (this.disabledValue(decl, result)) return
+
+      let unprefixed = this.prefixes.unprefixed(decl.prop)
+      let list = this.prefixes.values('add', unprefixed)
+      if (Array.isArray(list)) {
+        for (let value of list) {
+          if (value.process) value.process(decl, result)
+        }
+      }
+      Value.save(this.prefixes, decl)
+    })
+  }
+
+  /**
+   * Check for control comment and global options
+   */
+  disabled(node, result) {
+    if (!node) return false
+
+    if (node._autoprefixerDisabled !== undefined) {
+      return node._autoprefixerDisabled
+    }
+
+    if (node.parent) {
+      let p = node.prev()
+      if (p && p.type === 'comment' && IGNORE_NEXT.test(p.text)) {
+        node._autoprefixerDisabled = true
+        node._autoprefixerSelfDisabled = true
+        return true
+      }
+    }
+
+    let value = null
+    if (node.nodes) {
+      let status
+      node.each(i => {
+        if (i.type !== 'comment') return
+        if (/(!\s*)?autoprefixer:\s*(off|on)/i.test(i.text)) {
+          if (typeof status !== 'undefined') {
+            result.warn(
+              'Second Autoprefixer control comment ' +
+                'was ignored. Autoprefixer applies control ' +
+                'comment to whole block, not to next rules.',
+              { node: i }
+            )
+          } else {
+            status = /on/i.test(i.text)
+          }
+        }
+      })
+
+      if (status !== undefined) {
+        value = !status
+      }
+    }
+    if (!node.nodes || value === null) {
+      if (node.parent) {
+        let isParentDisabled = this.disabled(node.parent, result)
+        if (node.parent._autoprefixerSelfDisabled === true) {
+          value = false
+        } else {
+          value = isParentDisabled
+        }
+      } else {
+        value = false
+      }
+    }
+    node._autoprefixerDisabled = value
+    return value
+  }
+
+  /**
+   * Check for grid/flexbox options.
+   */
+  disabledDecl(node, result) {
+    if (node.type === 'decl' && this.gridStatus(node, result) === false) {
+      if (node.prop.includes('grid') || node.prop === 'justify-items') {
+        return true
+      }
+    }
+    if (node.type === 'decl' && this.prefixes.options.flexbox === false) {
+      let other = ['order', 'justify-content', 'align-items', 'align-content']
+      if (node.prop.includes('flex') || other.includes(node.prop)) {
+        return true
+      }
+    }
+
+    return this.disabled(node, result)
+  }
+
+  /**
+   * Check for grid/flexbox options.
+   */
+  disabledValue(node, result) {
+    if (this.gridStatus(node, result) === false && node.type === 'decl') {
+      if (node.prop === 'display' && node.value.includes('grid')) {
+        return true
+      }
+    }
+    if (this.prefixes.options.flexbox === false && node.type === 'decl') {
+      if (node.prop === 'display' && node.value.includes('flex')) {
+        return true
+      }
+    }
+    if (node.type === 'decl' && node.prop === 'content') {
+      return true
+    }
+
+    return this.disabled(node, result)
+  }
+
+  /**
+   * Is it flebox or grid rule
+   */
+  displayType(decl) {
+    for (let i of decl.parent.nodes) {
+      if (i.prop !== 'display') {
+        continue
+      }
+
+      if (i.value.includes('flex')) {
+        return 'flex'
+      }
+
+      if (i.value.includes('grid')) {
+        return 'grid'
+      }
+    }
+
+    return false
+  }
+
+  /**
+   * Set grid option via control comment
+   */
+  gridStatus(node, result) {
+    if (!node) return false
+
+    if (node._autoprefixerGridStatus !== undefined) {
+      return node._autoprefixerGridStatus
+    }
+
+    let value = null
+    if (node.nodes) {
+      let status
+      node.each(i => {
+        if (i.type !== 'comment') return
+        if (GRID_REGEX.test(i.text)) {
+          let hasAutoplace = /:\s*autoplace/i.test(i.text)
+          let noAutoplace = /no-autoplace/i.test(i.text)
+          if (typeof status !== 'undefined') {
+            result.warn(
+              'Second Autoprefixer grid control comment was ' +
+                'ignored. Autoprefixer applies control comments to the whole ' +
+                'block, not to the next rules.',
+              { node: i }
+            )
+          } else if (hasAutoplace) {
+            status = 'autoplace'
+          } else if (noAutoplace) {
+            status = true
+          } else {
+            status = /on/i.test(i.text)
+          }
+        }
+      })
+
+      if (status !== undefined) {
+        value = status
+      }
+    }
+
+    if (node.type === 'atrule' && node.name === 'supports') {
+      let params = node.params
+      if (params.includes('grid') && params.includes('auto')) {
+        value = false
+      }
+    }
+
+    if (!node.nodes || value === null) {
+      if (node.parent) {
+        let isParentGrid = this.gridStatus(node.parent, result)
+        if (node.parent._autoprefixerSelfDisabled === true) {
+          value = false
+        } else {
+          value = isParentGrid
+        }
+      } else if (typeof this.prefixes.options.grid !== 'undefined') {
+        value = this.prefixes.options.grid
+      } else if (typeof process.env.AUTOPREFIXER_GRID !== 'undefined') {
+        if (process.env.AUTOPREFIXER_GRID === 'autoplace') {
+          value = 'autoplace'
+        } else {
+          value = true
+        }
+      } else {
+        value = false
+      }
+    }
+
+    node._autoprefixerGridStatus = value
+    return value
+  }
+
+  /**
+   * Normalize spaces in cascade declaration group
+   */
+  reduceSpaces(decl) {
+    let stop = false
+    this.prefixes.group(decl).up(() => {
+      stop = true
+      return true
+    })
+    if (stop) {
+      return
+    }
+
+    let parts = decl.raw('before').split('\n')
+    let prevMin = parts[parts.length - 1].length
+    let diff = false
+
+    this.prefixes.group(decl).down(other => {
+      parts = other.raw('before').split('\n')
+      let last = parts.length - 1
+
+      if (parts[last].length > prevMin) {
+        if (diff === false) {
+          diff = parts[last].length - prevMin
+        }
+
+        parts[last] = parts[last].slice(0, -diff)
+        other.raws.before = parts.join('\n')
+      }
+    })
+  }
+
+  /**
+   * Remove unnecessary pefixes
+   */
+  remove(css, result) {
+    // At-rules
+    let resolution = this.prefixes.remove['@resolution']
+
+    css.walkAtRules((rule, i) => {
+      if (this.prefixes.remove[`@${rule.name}`]) {
+        if (!this.disabled(rule, result)) {
+          rule.parent.removeChild(i)
+        }
+      } else if (
+        rule.name === 'media' &&
+        rule.params.includes('-resolution') &&
+        resolution
+      ) {
+        resolution.clean(rule)
+      }
+    })
+
+    // Selectors
+    css.walkRules((rule, i) => {
+      if (this.disabled(rule, result)) return
+
+      for (let checker of this.prefixes.remove.selectors) {
+        if (checker.check(rule)) {
+          rule.parent.removeChild(i)
+          return
+        }
+      }
+    })
+
+    return css.walkDecls((decl, i) => {
+      if (this.disabled(decl, result)) return
+
+      let rule = decl.parent
+      let unprefixed = this.prefixes.unprefixed(decl.prop)
+
+      // Transition
+      if (decl.prop === 'transition' || decl.prop === 'transition-property') {
+        this.prefixes.transition.remove(decl)
+      }
+
+      // Properties
+      if (
+        this.prefixes.remove[decl.prop] &&
+        this.prefixes.remove[decl.prop].remove
+      ) {
+        let notHack = this.prefixes.group(decl).down(other => {
+          return this.prefixes.normalize(other.prop) === unprefixed
+        })
+
+        if (unprefixed === 'flex-flow') {
+          notHack = true
+        }
+
+        if (decl.prop === '-webkit-box-orient') {
+          let hacks = { 'flex-direction': true, 'flex-flow': true }
+          if (!decl.parent.some(j => hacks[j.prop])) return
+        }
+
+        if (notHack && !this.withHackValue(decl)) {
+          if (decl.raw('before').includes('\n')) {
+            this.reduceSpaces(decl)
+          }
+          rule.removeChild(i)
+          return
+        }
+      }
+
+      // Values
+      for (let checker of this.prefixes.values('remove', unprefixed)) {
+        if (!checker.check) continue
+        if (!checker.check(decl.value)) continue
+
+        unprefixed = checker.unprefixed
+        let notHack = this.prefixes.group(decl).down(other => {
+          return other.value.includes(unprefixed)
+        })
+
+        if (notHack) {
+          rule.removeChild(i)
+          return
+        }
+      }
+    })
+  }
+
+  /**
+   * Some rare old values, which is not in standard
+   */
+  withHackValue(decl) {
+    return (
+      (decl.prop === '-webkit-background-clip' && decl.value === 'text') ||
+      // Do not remove -webkit-box-orient when -webkit-line-clamp is present.
+      // https://github.com/postcss/autoprefixer/issues/1510
+      (decl.prop === '-webkit-box-orient' &&
+        decl.parent.some(d => d.prop === '-webkit-line-clamp'))
+    )
+  }
+}
+
+module.exports = Processor
Index: node_modules/autoprefixer/lib/resolution.js
===================================================================
--- node_modules/autoprefixer/lib/resolution.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/resolution.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,97 @@
+let FractionJs = require('fraction.js')
+
+let Prefixer = require('./prefixer')
+let utils = require('./utils')
+
+const REGEXP = /(min|max)-resolution\s*:\s*\d*\.?\d+(dppx|dpcm|dpi|x)/gi
+const SPLIT = /(min|max)-resolution(\s*:\s*)(\d*\.?\d+)(dppx|dpcm|dpi|x)/i
+
+class Resolution extends Prefixer {
+  /**
+   * Remove prefixed queries
+   */
+  clean(rule) {
+    if (!this.bad) {
+      this.bad = []
+      for (let prefix of this.prefixes) {
+        this.bad.push(this.prefixName(prefix, 'min'))
+        this.bad.push(this.prefixName(prefix, 'max'))
+      }
+    }
+
+    rule.params = utils.editList(rule.params, queries => {
+      return queries.filter(query => this.bad.every(i => !query.includes(i)))
+    })
+  }
+
+  /**
+   * Return prefixed query name
+   */
+  prefixName(prefix, name) {
+    if (prefix === '-moz-') {
+      return name + '--moz-device-pixel-ratio'
+    } else {
+      return prefix + name + '-device-pixel-ratio'
+    }
+  }
+
+  /**
+   * Return prefixed query
+   */
+  prefixQuery(prefix, name, colon, value, units) {
+    value = new FractionJs(value)
+
+    // 1dpcm = 2.54dpi
+    // 1dppx = 96dpi
+    if (units === 'dpi') {
+      value = value.div(96)
+    } else if (units === 'dpcm') {
+      value = value.mul(2.54).div(96)
+    }
+    value = value.simplify()
+
+    if (prefix === '-o-') {
+      value = value.n + '/' + value.d
+    }
+    return this.prefixName(prefix, name) + colon + value
+  }
+
+  /**
+   * Add prefixed queries
+   */
+  process(rule) {
+    let parent = this.parentPrefix(rule)
+    let prefixes = parent ? [parent] : this.prefixes
+
+    rule.params = utils.editList(rule.params, (origin, prefixed) => {
+      for (let query of origin) {
+        if (
+          !query.includes('min-resolution') &&
+          !query.includes('max-resolution')
+        ) {
+          prefixed.push(query)
+          continue
+        }
+
+        for (let prefix of prefixes) {
+          let processed = query.replace(REGEXP, str => {
+            let parts = str.match(SPLIT)
+            return this.prefixQuery(
+              prefix,
+              parts[1],
+              parts[2],
+              parts[3],
+              parts[4]
+            )
+          })
+          prefixed.push(processed)
+        }
+        prefixed.push(query)
+      }
+
+      return utils.uniq(prefixed)
+    })
+  }
+}
+
+module.exports = Resolution
Index: node_modules/autoprefixer/lib/selector.js
===================================================================
--- node_modules/autoprefixer/lib/selector.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/selector.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,150 @@
+let { list } = require('postcss')
+
+let Browsers = require('./browsers')
+let OldSelector = require('./old-selector')
+let Prefixer = require('./prefixer')
+let utils = require('./utils')
+
+class Selector extends Prefixer {
+  constructor(name, prefixes, all) {
+    super(name, prefixes, all)
+    this.regexpCache = new Map()
+  }
+
+  /**
+   * Clone and add prefixes for at-rule
+   */
+  add(rule, prefix) {
+    let prefixeds = this.prefixeds(rule)
+
+    if (this.already(rule, prefixeds, prefix)) {
+      return
+    }
+
+    let cloned = this.clone(rule, { selector: prefixeds[this.name][prefix] })
+    rule.parent.insertBefore(rule, cloned)
+  }
+
+  /**
+   * Is rule already prefixed before
+   */
+  already(rule, prefixeds, prefix) {
+    let index = rule.parent.index(rule) - 1
+
+    while (index >= 0) {
+      let before = rule.parent.nodes[index]
+
+      if (before.type !== 'rule') {
+        return false
+      }
+
+      let some = false
+      for (let key in prefixeds[this.name]) {
+        let prefixed = prefixeds[this.name][key]
+        if (before.selector === prefixed) {
+          if (prefix === key) {
+            return true
+          } else {
+            some = true
+            break
+          }
+        }
+      }
+      if (!some) {
+        return false
+      }
+
+      index -= 1
+    }
+
+    return false
+  }
+
+  /**
+   * Is rule selectors need to be prefixed
+   */
+  check(rule) {
+    if (rule.selector.includes(this.name)) {
+      return !!rule.selector.match(this.regexp())
+    }
+
+    return false
+  }
+
+  /**
+   * Return function to fast find prefixed selector
+   */
+  old(prefix) {
+    return new OldSelector(this, prefix)
+  }
+
+  /**
+   * All possible prefixes
+   */
+  possible() {
+    return Browsers.prefixes()
+  }
+
+  /**
+   * Return prefixed version of selector
+   */
+  prefixed(prefix) {
+    return this.name.replace(/^(\W*)/, `$1${prefix}`)
+  }
+
+  /**
+   * Return all possible selector prefixes
+   */
+  prefixeds(rule) {
+    if (rule._autoprefixerPrefixeds) {
+      if (rule._autoprefixerPrefixeds[this.name]) {
+        return rule._autoprefixerPrefixeds
+      }
+    } else {
+      rule._autoprefixerPrefixeds = {}
+    }
+
+    let prefixeds = {}
+    if (rule.selector.includes(',')) {
+      let ruleParts = list.comma(rule.selector)
+      let toProcess = ruleParts.filter(el => el.includes(this.name))
+
+      for (let prefix of this.possible()) {
+        prefixeds[prefix] = toProcess
+          .map(el => this.replace(el, prefix))
+          .join(', ')
+      }
+    } else {
+      for (let prefix of this.possible()) {
+        prefixeds[prefix] = this.replace(rule.selector, prefix)
+      }
+    }
+
+    rule._autoprefixerPrefixeds[this.name] = prefixeds
+    return rule._autoprefixerPrefixeds
+  }
+
+  /**
+   * Lazy loadRegExp for name
+   */
+  regexp(prefix) {
+    if (!this.regexpCache.has(prefix)) {
+      let name = prefix ? this.prefixed(prefix) : this.name
+      this.regexpCache.set(
+        prefix,
+        new RegExp(`(^|[^:"'=])${utils.escapeRegexp(name)}`, 'gi')
+      )
+    }
+
+    return this.regexpCache.get(prefix)
+  }
+
+  /**
+   * Replace selectors by prefixed one
+   */
+  replace(selector, prefix) {
+    return selector.replace(this.regexp(), `$1${this.prefixed(prefix)}`)
+  }
+}
+
+module.exports = Selector
Index: node_modules/autoprefixer/lib/supports.js
===================================================================
--- node_modules/autoprefixer/lib/supports.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/supports.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,302 @@
+let featureQueries = require('caniuse-lite/data/features/css-featurequeries.js')
+let feature = require('caniuse-lite/dist/unpacker/feature')
+let { parse } = require('postcss')
+
+let brackets = require('./brackets')
+let Browsers = require('./browsers')
+let utils = require('./utils')
+let Value = require('./value')
+
+let data = feature(featureQueries)
+
+let supported = []
+for (let browser in data.stats) {
+  let versions = data.stats[browser]
+  for (let version in versions) {
+    let support = versions[version]
+    if (/y/.test(support)) {
+      supported.push(browser + ' ' + version)
+    }
+  }
+}
+
+class Supports {
+  constructor(Prefixes, all) {
+    this.Prefixes = Prefixes
+    this.all = all
+  }
+
+  /**
+   * Add prefixes
+   */
+  add(nodes, all) {
+    return nodes.map(i => {
+      if (this.isProp(i)) {
+        let prefixed = this.prefixed(i[0])
+        if (prefixed.length > 1) {
+          return this.convert(prefixed)
+        }
+
+        return i
+      }
+
+      if (typeof i === 'object') {
+        return this.add(i, all)
+      }
+
+      return i
+    })
+  }
+
+  /**
+   * Clean brackets with one child
+   */
+  cleanBrackets(nodes) {
+    return nodes.map(i => {
+      if (typeof i !== 'object') {
+        return i
+      }
+
+      if (i.length === 1 && typeof i[0] === 'object') {
+        return this.cleanBrackets(i[0])
+      }
+
+      return this.cleanBrackets(i)
+    })
+  }
+
+  /**
+   * Add " or " between properties and convert it to brackets format
+   */
+  convert(progress) {
+    let result = ['']
+    for (let i of progress) {
+      result.push([`${i.prop}: ${i.value}`])
+      result.push(' or ')
+    }
+    result[result.length - 1] = ''
+    return result
+  }
+
+  /**
+   * Check global options
+   */
+  disabled(node) {
+    if (!this.all.options.grid) {
+      if (node.prop === 'display' && node.value.includes('grid')) {
+        return true
+      }
+      if (node.prop.includes('grid') || node.prop === 'justify-items') {
+        return true
+      }
+    }
+
+    if (this.all.options.flexbox === false) {
+      if (node.prop === 'display' && node.value.includes('flex')) {
+        return true
+      }
+      let other = ['order', 'justify-content', 'align-items', 'align-content']
+      if (node.prop.includes('flex') || other.includes(node.prop)) {
+        return true
+      }
+    }
+
+    return false
+  }
+
+  /**
+   * Return true if prefixed property has no unprefixed
+   */
+  isHack(all, unprefixed) {
+    let check = new RegExp(`(\\(|\\s)${utils.escapeRegexp(unprefixed)}:`)
+    return !check.test(all)
+  }
+
+  /**
+   * Return true if brackets node is "not" word
+   */
+  isNot(node) {
+    return typeof node === 'string' && /not\s*/i.test(node)
+  }
+
+  /**
+   * Return true if brackets node is "or" word
+   */
+  isOr(node) {
+    return typeof node === 'string' && /\s*or\s*/i.test(node)
+  }
+
+  /**
+   * Return true if brackets node is (prop: value)
+   */
+  isProp(node) {
+    return (
+      typeof node === 'object' &&
+      node.length === 1 &&
+      typeof node[0] === 'string'
+    )
+  }
+
+  /**
+   * Compress value functions into a string nodes
+   */
+  normalize(nodes) {
+    if (typeof nodes !== 'object') {
+      return nodes
+    }
+
+    nodes = nodes.filter(i => i !== '')
+
+    if (typeof nodes[0] === 'string') {
+      let firstNode = nodes[0].trim()
+
+      if (
+        firstNode.includes(':') ||
+        firstNode === 'selector' ||
+        firstNode === 'not selector'
+      ) {
+        return [brackets.stringify(nodes)]
+      }
+    }
+    return nodes.map(i => this.normalize(i))
+  }
+
+  /**
+   * Parse string into declaration property and value
+   */
+  parse(str) {
+    let parts = str.split(':')
+    let prop = parts[0]
+    let value = parts[1]
+    if (!value) value = ''
+    return [prop.trim(), value.trim()]
+  }
+
+  /**
+   * Return array of Declaration with all necessary prefixes
+   */
+  prefixed(str) {
+    let rule = this.virtual(str)
+    if (this.disabled(rule.first)) {
+      return rule.nodes
+    }
+
+    let result = { warn: () => null }
+
+    let prefixer = this.prefixer().add[rule.first.prop]
+    prefixer && prefixer.process && prefixer.process(rule.first, result)
+
+    for (let decl of rule.nodes) {
+      for (let value of this.prefixer().values('add', rule.first.prop)) {
+        value.process(decl)
+      }
+      Value.save(this.all, decl)
+    }
+
+    return rule.nodes
+  }
+
+  /**
+   * Return prefixer only with @supports supported browsers
+   */
+  prefixer() {
+    if (this.prefixerCache) {
+      return this.prefixerCache
+    }
+
+    let filtered = this.all.browsers.selected.filter(i => {
+      return supported.includes(i)
+    })
+
+    let browsers = new Browsers(
+      this.all.browsers.data,
+      filtered,
+      this.all.options
+    )
+    this.prefixerCache = new this.Prefixes(
+      this.all.data,
+      browsers,
+      this.all.options
+    )
+    return this.prefixerCache
+  }
+
+  /**
+   * Add prefixed declaration
+   */
+  process(rule) {
+    let ast = brackets.parse(rule.params)
+    ast = this.normalize(ast)
+    ast = this.remove(ast, rule.params)
+    ast = this.add(ast, rule.params)
+    ast = this.cleanBrackets(ast)
+    rule.params = brackets.stringify(ast)
+  }
+
+  /**
+   * Remove all unnecessary prefixes
+   */
+  remove(nodes, all) {
+    let i = 0
+    while (i < nodes.length) {
+      if (
+        !this.isNot(nodes[i - 1]) &&
+        this.isProp(nodes[i]) &&
+        this.isOr(nodes[i + 1])
+      ) {
+        if (this.toRemove(nodes[i][0], all)) {
+          nodes.splice(i, 2)
+          continue
+        }
+
+        i += 2
+        continue
+      }
+
+      if (typeof nodes[i] === 'object') {
+        nodes[i] = this.remove(nodes[i], all)
+      }
+
+      i += 1
+    }
+    return nodes
+  }
+
+  /**
+   * Return true if we need to remove node
+   */
+  toRemove(str, all) {
+    let [prop, value] = this.parse(str)
+    let unprefixed = this.all.unprefixed(prop)
+
+    let cleaner = this.all.cleaner()
+
+    if (
+      cleaner.remove[prop] &&
+      cleaner.remove[prop].remove &&
+      !this.isHack(all, unprefixed)
+    ) {
+      return true
+    }
+
+    for (let checker of cleaner.values('remove', unprefixed)) {
+      if (checker.check(value)) {
+        return true
+      }
+    }
+
+    return false
+  }
+
+  /**
+   * Create virtual rule to process it by prefixer
+   */
+  virtual(str) {
+    let [prop, value] = this.parse(str)
+    let rule = parse('a{}').first
+    rule.append({ prop, raws: { before: '' }, value })
+    return rule
+  }
+}
+
+module.exports = Supports
Index: node_modules/autoprefixer/lib/transition.js
===================================================================
--- node_modules/autoprefixer/lib/transition.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/transition.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,329 @@
+let { list } = require('postcss')
+let parser = require('postcss-value-parser')
+
+let Browsers = require('./browsers')
+let vendor = require('./vendor')
+
+class Transition {
+  constructor(prefixes) {
+    this.props = ['transition', 'transition-property']
+    this.prefixes = prefixes
+  }
+
+  /**
+   * Process transition and add prefixes for all necessary properties
+   */
+  add(decl, result) {
+    let prefix, prop
+    let add = this.prefixes.add[decl.prop]
+    let vendorPrefixes = this.ruleVendorPrefixes(decl)
+    let declPrefixes = vendorPrefixes || (add && add.prefixes) || []
+
+    let params = this.parse(decl.value)
+    let names = params.map(i => this.findProp(i))
+    let added = []
+
+    if (names.some(i => i[0] === '-')) {
+      return
+    }
+
+    for (let param of params) {
+      prop = this.findProp(param)
+      if (prop[0] === '-') continue
+
+      let prefixer = this.prefixes.add[prop]
+      if (!prefixer || !prefixer.prefixes) continue
+
+      for (prefix of prefixer.prefixes) {
+        if (vendorPrefixes && !vendorPrefixes.some(p => prefix.includes(p))) {
+          continue
+        }
+
+        let prefixed = this.prefixes.prefixed(prop, prefix)
+        if (prefixed !== '-ms-transform' && !names.includes(prefixed)) {
+          if (!this.disabled(prop, prefix)) {
+            added.push(this.clone(prop, prefixed, param))
+          }
+        }
+      }
+    }
+
+    params = params.concat(added)
+    let value = this.stringify(params)
+
+    let webkitClean = this.stringify(
+      this.cleanFromUnprefixed(params, '-webkit-')
+    )
+    if (declPrefixes.includes('-webkit-')) {
+      this.cloneBefore(decl, `-webkit-${decl.prop}`, webkitClean)
+    }
+    this.cloneBefore(decl, decl.prop, webkitClean)
+    if (declPrefixes.includes('-o-')) {
+      let operaClean = this.stringify(this.cleanFromUnprefixed(params, '-o-'))
+      this.cloneBefore(decl, `-o-${decl.prop}`, operaClean)
+    }
+
+    for (prefix of declPrefixes) {
+      if (prefix !== '-webkit-' && prefix !== '-o-') {
+        let prefixValue = this.stringify(
+          this.cleanOtherPrefixes(params, prefix)
+        )
+        this.cloneBefore(decl, prefix + decl.prop, prefixValue)
+      }
+    }
+
+    if (value !== decl.value && !this.already(decl, decl.prop, value)) {
+      this.checkForWarning(result, decl)
+      decl.cloneBefore()
+      decl.value = value
+    }
+  }
+
+  /**
+   * Does we already have this declaration
+   */
+  already(decl, prop, value) {
+    return decl.parent.some(i => i.prop === prop && i.value === value)
+  }
+
+  /**
+   * Show transition-property warning
+   */
+  checkForWarning(result, decl) {
+    if (decl.prop !== 'transition-property') {
+      return
+    }
+
+    let isPrefixed = false
+    let hasAssociatedProp = false
+
+    decl.parent.each(i => {
+      if (i.type !== 'decl') {
+        return undefined
+      }
+      if (i.prop.indexOf('transition-') !== 0) {
+        return undefined
+      }
+      let values = list.comma(i.value)
+      // check if current Rule's transition-property comma separated value list needs prefixes
+      if (i.prop === 'transition-property') {
+        values.forEach(value => {
+          let lookup = this.prefixes.add[value]
+          if (lookup && lookup.prefixes && lookup.prefixes.length > 0) {
+            isPrefixed = true
+          }
+        })
+        return undefined
+      }
+      // check if another transition-* prop in current Rule has comma separated value list
+      hasAssociatedProp = hasAssociatedProp || values.length > 1
+      return false
+    })
+
+    if (isPrefixed && hasAssociatedProp) {
+      decl.warn(
+        result,
+        'Replace transition-property to transition, ' +
+          'because Autoprefixer could not support ' +
+          'any cases of transition-property ' +
+          'and other transition-*'
+      )
+    }
+  }
+
+  /**
+   * Remove all non-webkit prefixes and unprefixed params if we have prefixed
+   */
+  cleanFromUnprefixed(params, prefix) {
+    let remove = params
+      .map(i => this.findProp(i))
+      .filter(i => i.slice(0, prefix.length) === prefix)
+      .map(i => this.prefixes.unprefixed(i))
+
+    let result = []
+    for (let param of params) {
+      let prop = this.findProp(param)
+      let p = vendor.prefix(prop)
+      if (!remove.includes(prop) && (p === prefix || p === '')) {
+        result.push(param)
+      }
+    }
+    return result
+  }
+
+  cleanOtherPrefixes(params, prefix) {
+    return params.filter(param => {
+      let current = vendor.prefix(this.findProp(param))
+      return current === '' || current === prefix
+    })
+  }
+
+  /**
+   * Return new param array with different name
+   */
+  clone(origin, name, param) {
+    let result = []
+    let changed = false
+    for (let i of param) {
+      if (!changed && i.type === 'word' && i.value === origin) {
+        result.push({ type: 'word', value: name })
+        changed = true
+      } else {
+        result.push(i)
+      }
+    }
+    return result
+  }
+
+  /**
+   * Add declaration if it is not exist
+   */
+  cloneBefore(decl, prop, value) {
+    if (!this.already(decl, prop, value)) {
+      decl.cloneBefore({ prop, value })
+    }
+  }
+
+  /**
+   * Check property for disabled by option
+   */
+  disabled(prop, prefix) {
+    let other = ['order', 'justify-content', 'align-self', 'align-content']
+    if (prop.includes('flex') || other.includes(prop)) {
+      if (this.prefixes.options.flexbox === false) {
+        return true
+      }
+
+      if (this.prefixes.options.flexbox === 'no-2009') {
+        return prefix.includes('2009')
+      }
+    }
+    return undefined
+  }
+
+  /**
+   * Find or create separator
+   */
+  div(params) {
+    for (let param of params) {
+      for (let node of param) {
+        if (node.type === 'div' && node.value === ',') {
+          return node
+        }
+      }
+    }
+    return { after: ' ', type: 'div', value: ',' }
+  }
+
+  /**
+   * Find property name
+   */
+  findProp(param) {
+    let prop = param[0].value
+    if (/^\d/.test(prop)) {
+      for (let [i, token] of param.entries()) {
+        if (i !== 0 && token.type === 'word') {
+          return token.value
+        }
+      }
+    }
+    return prop
+  }
+
+  /**
+   * Parse properties list to array
+   */
+  parse(value) {
+    let ast = parser(value)
+    let result = []
+    let param = []
+    for (let node of ast.nodes) {
+      param.push(node)
+      if (node.type === 'div' && node.value === ',') {
+        result.push(param)
+        param = []
+      }
+    }
+    result.push(param)
+    return result.filter(i => i.length > 0)
+  }
+
+  /**
+   * Process transition and remove all unnecessary properties
+   */
+  remove(decl) {
+    let params = this.parse(decl.value)
+    params = params.filter(i => {
+      let prop = this.prefixes.remove[this.findProp(i)]
+      return !prop || !prop.remove
+    })
+    let value = this.stringify(params)
+
+    if (decl.value === value) {
+      return
+    }
+
+    if (params.length === 0) {
+      decl.remove()
+      return
+    }
+
+    let double = decl.parent.some(i => {
+      return i.prop === decl.prop && i.value === value
+    })
+    let smaller = decl.parent.some(i => {
+      return i !== decl && i.prop === decl.prop && i.value.length > value.length
+    })
+
+    if (double || smaller) {
+      decl.remove()
+      return
+    }
+
+    decl.value = value
+  }
+
+  /**
+   * Check if transition prop is inside vendor specific rule
+   */
+  ruleVendorPrefixes(decl) {
+    let { parent } = decl
+
+    if (parent.type !== 'rule') {
+      return false
+    } else if (!parent.selector.includes(':-')) {
+      return false
+    }
+
+    let selectors = Browsers.prefixes().filter(s =>
+      parent.selector.includes(':' + s)
+    )
+
+    return selectors.length > 0 ? selectors : false
+  }
+
+  /**
+   * Return properties string from array
+   */
+  stringify(params) {
+    if (params.length === 0) {
+      return ''
+    }
+    let nodes = []
+    for (let param of params) {
+      if (param[param.length - 1].type !== 'div') {
+        param.push(this.div(params))
+      }
+      nodes = nodes.concat(param)
+    }
+    if (nodes[0].type === 'div') {
+      nodes = nodes.slice(1)
+    }
+    if (nodes[nodes.length - 1].type === 'div') {
+      nodes = nodes.slice(0, +-2 + 1 || undefined)
+    }
+    return parser.stringify({ nodes })
+  }
+}
+
+module.exports = Transition
Index: node_modules/autoprefixer/lib/utils.js
===================================================================
--- node_modules/autoprefixer/lib/utils.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/utils.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,93 @@
+let { list } = require('postcss')
+
+/**
+ * Throw special error, to tell beniary,
+ * that this error is from Autoprefixer.
+ */
+module.exports.error = function (text) {
+  let err = new Error(text)
+  err.autoprefixer = true
+  throw err
+}
+
+/**
+ * Return array, that doesn’t contain duplicates.
+ */
+module.exports.uniq = function (array) {
+  return [...new Set(array)]
+}
+
+/**
+ * Return "-webkit-" on "-webkit- old"
+ */
+module.exports.removeNote = function (string) {
+  if (!string.includes(' ')) {
+    return string
+  }
+
+  return string.split(' ')[0]
+}
+
+/**
+ * Escape RegExp symbols
+ */
+module.exports.escapeRegexp = function (string) {
+  return string.replace(/[$()*+-.?[\\\]^{|}]/g, '\\$&')
+}
+
+/**
+ * Return regexp to check, that CSS string contain word
+ */
+module.exports.regexp = function (word, escape = true) {
+  if (escape) {
+    word = this.escapeRegexp(word)
+  }
+  return new RegExp(`(^|[\\s,(])(${word}($|[\\s(,]))`, 'gi')
+}
+
+/**
+ * Change comma list
+ */
+module.exports.editList = function (value, callback) {
+  let origin = list.comma(value)
+  let changed = callback(origin, [])
+
+  if (origin === changed) {
+    return value
+  }
+
+  let join = value.match(/,\s*/)
+  join = join ? join[0] : ', '
+  return changed.join(join)
+}
+
+/**
+ * Split the selector into parts.
+ * It returns 3 level deep array because selectors can be comma
+ * separated (1), space separated (2), and combined (3)
+ * @param {String} selector selector string
+ * @return {Array<Array<Array>>} 3 level deep array of split selector
+ * @see utils.test.js for examples
+ */
+module.exports.splitSelector = function (selector) {
+  return list.comma(selector).map(i => {
+    return list.space(i).map(k => {
+      return k.split(/(?=\.|#)/g)
+    })
+  })
+}
+
+/**
+ * Return true if a given value only contains numbers.
+ * @param {*} value
+ * @returns {boolean}
+ */
+module.exports.isPureNumber = function (value) {
+  if (typeof value === 'number') {
+    return true
+  }
+  if (typeof value === 'string') {
+    return /^[0-9]+$/.test(value)
+  }
+  return false
+}
Index: node_modules/autoprefixer/lib/value.js
===================================================================
--- node_modules/autoprefixer/lib/value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,125 @@
+let OldValue = require('./old-value')
+let Prefixer = require('./prefixer')
+let utils = require('./utils')
+let vendor = require('./vendor')
+
+class Value extends Prefixer {
+  /**
+   * Clone decl for each prefixed values
+   */
+  static save(prefixes, decl) {
+    let prop = decl.prop
+    let result = []
+
+    for (let prefix in decl._autoprefixerValues) {
+      let value = decl._autoprefixerValues[prefix]
+
+      if (value === decl.value) {
+        continue
+      }
+
+      let item
+      let propPrefix = vendor.prefix(prop)
+
+      if (propPrefix === '-pie-') {
+        continue
+      }
+
+      if (propPrefix === prefix) {
+        item = decl.value = value
+        result.push(item)
+        continue
+      }
+
+      let prefixed = prefixes.prefixed(prop, prefix)
+      let rule = decl.parent
+
+      if (!rule.every(i => i.prop !== prefixed)) {
+        result.push(item)
+        continue
+      }
+
+      let trimmed = value.replace(/\s+/, ' ')
+      let already = rule.some(
+        i => i.prop === decl.prop && i.value.replace(/\s+/, ' ') === trimmed
+      )
+
+      if (already) {
+        result.push(item)
+        continue
+      }
+
+      let cloned = this.clone(decl, { value })
+      item = decl.parent.insertBefore(decl, cloned)
+
+      result.push(item)
+    }
+
+    return result
+  }
+
+  /**
+   * Save values with next prefixed token
+   */
+  add(decl, prefix) {
+    if (!decl._autoprefixerValues) {
+      decl._autoprefixerValues = {}
+    }
+    let value = decl._autoprefixerValues[prefix] || this.value(decl)
+
+    let before
+    do {
+      before = value
+      value = this.replace(value, prefix)
+      if (value === false) return
+    } while (value !== before)
+
+    decl._autoprefixerValues[prefix] = value
+  }
+
+  /**
+   * Is declaration need to be prefixed
+   */
+  check(decl) {
+    let value = decl.value
+    if (!value.includes(this.name)) {
+      return false
+    }
+
+    return !!value.match(this.regexp())
+  }
+
+  /**
+   * Return function to fast find prefixed value
+   */
+  old(prefix) {
+    return new OldValue(this.name, prefix + this.name)
+  }
+
+  /**
+   * Lazy regexp loading
+   */
+  regexp() {
+    return this.regexpCache || (this.regexpCache = utils.regexp(this.name))
+  }
+
+  /**
+   * Add prefix to values in string
+   */
+  replace(string, prefix) {
+    return string.replace(this.regexp(), `$1${prefix}$2`)
+  }
+
+  /**
+   * Get value with comments if it was not changed
+   */
+  value(decl) {
+    if (decl.raws.value && decl.raws.value.value === decl.value) {
+      return decl.raws.value.raw
+    } else {
+      return decl.value
+    }
+  }
+}
+
+module.exports = Value
Index: node_modules/autoprefixer/lib/vendor.js
===================================================================
--- node_modules/autoprefixer/lib/vendor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/lib/vendor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,14 @@
+module.exports = {
+  prefix(prop) {
+    let match = prop.match(/^(-\w+-)/)
+    if (match) {
+      return match[0]
+    }
+
+    return ''
+  },
+
+  unprefixed(prop) {
+    return prop.replace(/^-\w+-/, '')
+  }
+}
Index: node_modules/autoprefixer/package.json
===================================================================
--- node_modules/autoprefixer/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/autoprefixer/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,48 @@
+{
+  "name": "autoprefixer",
+  "version": "10.4.23",
+  "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
+  "engines": {
+    "node": "^10 || ^12 || >=14"
+  },
+  "keywords": [
+    "autoprefixer",
+    "css",
+    "prefix",
+    "postcss",
+    "postcss-plugin"
+  ],
+  "main": "lib/autoprefixer.js",
+  "bin": "bin/autoprefixer",
+  "types": "lib/autoprefixer.d.ts",
+  "funding": [
+    {
+      "type": "opencollective",
+      "url": "https://opencollective.com/postcss/"
+    },
+    {
+      "type": "tidelift",
+      "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+    },
+    {
+      "type": "github",
+      "url": "https://github.com/sponsors/ai"
+    }
+  ],
+  "author": "Andrey Sitnik <andrey@sitnik.ru>",
+  "license": "MIT",
+  "repository": "postcss/autoprefixer",
+  "bugs": {
+    "url": "https://github.com/postcss/autoprefixer/issues"
+  },
+  "peerDependencies": {
+    "postcss": "^8.1.0"
+  },
+  "dependencies": {
+    "browserslist": "^4.28.1",
+    "caniuse-lite": "^1.0.30001760",
+    "fraction.js": "^5.3.4",
+    "picocolors": "^1.1.1",
+    "postcss-value-parser": "^4.2.0"
+  }
+}
Index: node_modules/baseline-browser-mapping/LICENSE.txt
===================================================================
--- node_modules/baseline-browser-mapping/LICENSE.txt	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/baseline-browser-mapping/LICENSE.txt	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,201 @@
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
Index: node_modules/baseline-browser-mapping/README.md
===================================================================
--- node_modules/baseline-browser-mapping/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/baseline-browser-mapping/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,463 @@
+# [`baseline-browser-mapping`](https://github.com/web-platform-dx/web-features/packages/baseline-browser-mapping)
+
+By the [W3C WebDX Community Group](https://www.w3.org/community/webdx/) and contributors.
+
+`baseline-browser-mapping` provides:
+
+- An `Array` of browsers compatible with Baseline Widely available and Baseline year feature sets via the [`getCompatibleVersions()` function](#get-baseline-widely-available-browser-versions-or-baseline-year-browser-versions).
+- An `Array`, `Object` or `CSV` as a string describing the Baseline feature set support of all browser versions included in the module's data set via the [`getAllVersions()` function](#get-data-for-all-browser-versions).
+
+You can use `baseline-browser-mapping` to help you determine minimum browser version support for your chosen Baseline feature set; or to analyse the level of support for different Baseline feature sets in your site's traffic by joining the data with your analytics data.
+
+## Install for local development
+
+To install the package, run:
+
+`npm install --save-dev baseline-browser-mapping`
+
+`baseline-browser-mapping` depends on `web-features` and `@mdn/browser-compat-data` for core browser version selection, but the data is pre-packaged and minified. This package checks for updates to those modules and the supported [downstream browsers](#downstream-browsers) on a daily basis and is updated frequently. Consider adding a script to your `package.json` to update `baseline-browser-mapping` and using it as part of your build process to ensure your data is as up to date as possible:
+
+```javascript
+"scripts": [
+  "refresh-baseline-browser-mapping": "npm i --save-dev baseline-browser-mapping@latest"
+]
+```
+
+The minimum supported NodeJS version for `baseline-browser-mapping` is v8 in alignment with `browserslist`. For NodeJS versions earlier than v13.2, the [`require('baseline-browser-mapping')`](https://nodejs.org/api/modules.html#requireid) syntax should be used to import the module.
+
+## Keeping `baseline-browser-mapping` up to date
+
+If you are only using this module to generate minimum browser versions for Baseline Widely available or Baseline year feature sets, you don't need to update this module frequently, as the backward looking data is reasonably stable.
+
+However, if you are targeting Newly available, using the [`getAllVersions()`](#get-data-for-all-browser-versions) function or heavily relying on the data for downstream browsers, you should update this module more frequently. If you target a feature cut off date within the last two months and your installed version of `baseline-browser-mapping` has data that is more than 2 months old, you will receive a console warning advising you to update to the latest version when you call `getCompatibleVersions()` or `getAllVersions()`.
+
+If you want to suppress these warnings you can use the `suppressWarnings: true` option in the configuration object passed to `getCompatibleVersions()` or `getAllVersions()`. Alternatively, you can use the `BASELINE_BROWSER_MAPPING_IGNORE_OLD_DATA=true` environment variable when running your build process. This module also respects the `BROWSERSLIST_IGNORE_OLD_DATA=true` environment variable. Environment variables can also be provided in a `.env` file from Node 20 onwards; however, this module does not load .env files automatically to avoid conflicts with other libraries with different requirements. You will need to use `process.loadEnvFile()` or a library like `dotenv` to load .env files before `baseline-browser-mapping` is called.
+
+If you want to ensure [reproducible builds](https://www.wikiwand.com/en/articles/Reproducible_builds), we strongly recommend using the `widelyAvailableOnDate` option to fix the Widely available date on a per build basis to ensure dependent tools provide the same output and you do not produce data staleness warnings. If you are using [`browserslist`](https://github.com/browserslist/browserslist) to target Baseline Widely available, consider automatically updating your `browserslist` configuration in `package.json` or `.browserslistrc` to `baseline widely available on {YYYY-MM-DD}` as part of your build process to ensure the same or sufficiently similar list of minimum browsers is reproduced for historical builds.
+
+## Importing `baseline-browser-mapping`
+
+This module exposes two functions: `getCompatibleVersions()` and `getAllVersions()`, both which can be imported directly from `baseline-browser-mapping`:
+
+```javascript
+import {
+  getCompatibleVersions,
+  getAllVersions,
+} from "baseline-browser-mapping";
+```
+
+If you want to load the script and data directly in a web page without hosting it yourself, consider using a CDN:
+
+```html
+<script type="module">
+  import {
+    getCompatibleVersions,
+    getAllVersions,
+  } from "https://cdn.jsdelivr.net/npm/baseline-browser-mapping";
+</script>
+```
+
+## Get Baseline Widely available browser versions or Baseline year browser versions
+
+To get the current list of minimum browser versions compatible with Baseline Widely available features from the core browser set, call the `getCompatibleVersions()` function:
+
+```javascript
+getCompatibleVersions();
+```
+
+Executed on 7th March 2025, the above code returns the following browser versions:
+
+```javascript
+[
+  { browser: "chrome", version: "105", release_date: "2022-09-02" },
+  {
+    browser: "chrome_android",
+    version: "105",
+    release_date: "2022-09-02",
+  },
+  { browser: "edge", version: "105", release_date: "2022-09-02" },
+  { browser: "firefox", version: "104", release_date: "2022-08-23" },
+  {
+    browser: "firefox_android",
+    version: "104",
+    release_date: "2022-08-23",
+  },
+  { browser: "safari", version: "15.6", release_date: "2022-09-02" },
+  {
+    browser: "safari_ios",
+    version: "15.6",
+    release_date: "2022-09-02",
+  },
+];
+```
+
+> [!NOTE]
+> The minimum versions of each browser are not necessarily the final release before the Widely available cutoff date of `TODAY - 30 MONTHS`. Some earlier versions will have supported the full Widely available feature set.
+
+### `getCompatibleVersions()` configuration options
+
+`getCompatibleVersions()` accepts an `Object` as an argument with configuration options. The defaults are as follows:
+
+```javascript
+{
+  targetYear: undefined,
+  widelyAvailableOnDate: undefined,
+  includeDownstreamBrowsers: false,
+  listAllCompatibleVersions: false,
+  suppressWarnings: false
+}
+```
+
+#### `targetYear`
+
+The `targetYear` option returns the minimum browser versions compatible with all **Baseline Newly available** features at the end of the specified calendar year. For example, calling:
+
+```javascript
+getCompatibleVersions({
+  targetYear: 2020,
+});
+```
+
+Returns the following versions:
+
+```javascript
+[
+  { browser: "chrome", version: "87", release_date: "2020-11-19" },
+  {
+    browser: "chrome_android",
+    version: "87",
+    release_date: "2020-11-19",
+  },
+  { browser: "edge", version: "87", release_date: "2020-11-19" },
+  { browser: "firefox", version: "83", release_date: "2020-11-17" },
+  {
+    browser: "firefox_android",
+    version: "83",
+    release_date: "2020-11-17",
+  },
+  { browser: "safari", version: "14", release_date: "2020-09-16" },
+  { browser: "safari_ios", version: "14", release_date: "2020-09-16" },
+];
+```
+
+> [!NOTE]
+> The minimum version of each browser is not necessarily the final version released in that calendar year. In the above example, Firefox 84 was the final version released in 2020; however Firefox 83 supported all of the features that were interoperable at the end of 2020.
+> [!WARNING]
+> You cannot use `targetYear` and `widelyAavailableDate` together. Please only use one of these options at a time.
+
+#### `widelyAvailableOnDate`
+
+The `widelyAvailableOnDate` option returns the minimum versions compatible with Baseline Widely available on a specified date in the format `YYYY-MM-DD`:
+
+```javascript
+getCompatibleVersions({
+  widelyAvailableOnDate: `2023-04-05`,
+});
+```
+
+> [!TIP]
+> This option is useful if you provide a versioned library that targets Baseline Widely available on each version's release date and you need to provide a statement on minimum supported browser versions in your documentation.
+
+#### `includeDownstreamBrowsers`
+
+Setting `includeDownstreamBrowsers` to `true` will include browsers outside of the Baseline core browser set where it is possible to map those browsers to an upstream Chromium or Gecko version:
+
+```javascript
+getCompatibleVersions({
+  includeDownstreamBrowsers: true,
+});
+```
+
+For more information on downstream browsers, see [the section on downstream browsers](#downstream-browsers) below.
+
+#### `includeKaiOS`
+
+KaiOS is an operating system and app framework based on the Gecko engine from Firefox. KaiOS is based on the Gecko engine and feature support can be derived from the upstream Gecko version that each KaiOS version implements. However KaiOS requires other considerations beyond feature compatibility to ensure a good user experience as it runs on device types that do not have either mouse and keyboard or touch screen input in the way that all the other browsers supported by this module do.
+
+```javascript
+getCompatibleVersions({
+  includeDownstreamBrowsers: true,
+  includeKaiOS: true,
+});
+```
+
+> [!NOTE]
+> Including KaiOS requires you to include all downstream browsers using the `includeDownstreamBrowsers` option.
+
+#### `listAllCompatibleVersions`
+
+Setting `listAllCompatibleVersions` to true will include the minimum versions of each compatible browser, and all the subsequent versions:
+
+```javascript
+getCompatibleVersions({
+  listAllCompatibleVersions: true,
+});
+```
+
+#### `suppressWarnings`
+
+Setting `suppressWarnings` to `true` will suppress the console warning about old data:
+
+```javascript
+getCompatibleVersions({
+  suppressWarnings: true,
+});
+```
+
+## Get data for all browser versions
+
+You may want to obtain data on all the browser versions available in this module for use in an analytics solution or dashboard. To get details of each browser version's level of Baseline support, call the `getAllVersions()` function:
+
+```javascript
+import { getAllVersions } from "baseline-browser-mapping";
+
+getAllVersions();
+```
+
+By default, this function returns an `Array` of `Objects` and excludes downstream browsers:
+
+```javascript
+[
+  ...
+  {
+    browser: "firefox_android", // Browser name
+    version: "125", // Browser version
+    release_date: "2024-04-16", // Release date
+    year: 2023, // Baseline year feature set the version supports
+    wa_compatible: true // Whether the browser version supports Widely available
+  },
+  ...
+]
+```
+
+For browser versions in `@mdn/browser-compat-data` that were released before Baseline can be defined, i.e. Baseline 2015, the `year` property is always the string: `"pre_baseline"`.
+
+### Understanding which browsers support Newly available features
+
+You may want to understand which recent browser versions support all Newly available features. You can replace the `wa_compatible` property with a `supports` property using the `useSupport` option:
+
+```javascript
+getAllVersions({
+  useSupports: true,
+});
+```
+
+The `supports` property is optional and has two possible values:
+
+- `widely` for browser versions that support all Widely available features.
+- `newly` for browser versions that support all Newly available features.
+
+Browser versions that do not support Widely or Newly available will not include the `support` property in the `array` or `object` outputs, and in the CSV output, the `support` column will contain an empty string. Browser versions that support all Newly available features also support all Widely available features.
+
+### `getAllVersions()` Configuration options
+
+`getAllVersions()` accepts an `Object` as an argument with configuration options. The defaults are as follows:
+
+```javascript
+{
+  includeDownstreamBrowsers: false,
+  outputFormat: "array",
+  suppressWarnings: false
+}
+```
+
+#### `includeDownstreamBrowsers` (in `getAllVersions()` output)
+
+As with `getCompatibleVersions()`, you can set `includeDownstreamBrowsers` to `true` to include the Chromium and Gecko downstream browsers [listed below](#list-of-downstream-browsers).
+
+```javascript
+getAllVersions({
+  includeDownstreamBrowsers: true,
+});
+```
+
+Downstream browsers include the same properties as core browsers, as well as the `engine`they use and `engine_version`, for example:
+
+```javascript
+[
+  ...
+  {
+    browser: "samsunginternet_android",
+    version: "27.0",
+    release_date: "2024-11-06",
+    engine: "Blink",
+    engine_version: "125",
+    year: 2023,
+    supports: "widely"
+  },
+  ...
+]
+```
+
+#### `includeKaiOS` (in `getAllVersions()` output)
+
+As with `getCompatibleVersions()` you can include KaiOS in your output. The same requirement to have `includeDownstreamBrowsers: true` applies.
+
+```javascript
+getAllVersions({
+  includeDownstreamBrowsers: true,
+  includeKaiOS: true,
+});
+```
+
+#### `suppressWarnings` (in `getAllVersions()` output)
+
+As with `getCompatibleVersions()`, you can set `suppressWarnings` to `true` to suppress the console warning about old data:
+
+```javascript
+getAllVersions({
+  suppressWarnings: true,
+});
+```
+
+#### `outputFormat`
+
+By default, this function returns an `Array` of `Objects` which can be manipulated in Javascript or output to JSON.
+
+To return an `Object` that nests keys , set `outputFormat` to `object`:
+
+```javascript
+getAllVersions({
+  outputFormat: "object",
+});
+```
+
+In thise case, `getAllVersions()` returns a nested object with the browser [IDs listed below](#list-of-downstream-browsers) as keys, and versions as keys within them:
+
+```javascript
+{
+  "chrome": {
+    "53": {
+      "year": 2016,
+      "release_date": "2016-09-07"
+    },
+    ...
+}
+```
+
+Downstream browsers will include extra fields for `engine` and `engine_versions`
+
+```javascript
+{
+  ...
+  "webview_android": {
+    "53": {
+      "year": 2016,
+      "release_date": "2016-09-07",
+      "engine": "Blink",
+      "engine_version": "53"
+    },
+  ...
+}
+```
+
+To return a `String` in CSV format, set `outputFormat` to `csv`:
+
+```javascript
+getAllVersions({
+  outputFormat: "csv",
+});
+```
+
+`getAllVersions` returns a `String` with a header row and comma-separated values for each browser version that you can write to a file or pass to another service. Core browsers will have "NULL" as the value for their `engine` and `engine_version`:
+
+```csv
+"browser","version","year","supports","release_date","engine","engine_version"
+...
+"chrome","24","pre_baseline","","2013-01-10","NULL","NULL"
+...
+"chrome","53","2016","","2016-09-07","NULL","NULL"
+...
+"firefox","135","2024","widely","2025-02-04","NULL","NULL"
+"firefox","136","2024","newly","2025-03-04","NULL","NULL"
+...
+"ya_android","20.12","2020","year_only","2020-12-20","Blink","87"
+...
+```
+
+> [!NOTE]
+> The above example uses `"includeDownstreamBrowsers": true`
+
+### Static resources
+
+The outputs of `getAllVersions()` are available as JSON or CSV files generated on a daily basis and hosted on GitHub pages:
+
+- Core browsers only
+  - [Array](https://web-platform-dx.github.io/baseline-browser-mapping/all_versions_array.json)
+  - [Object](https://web-platform-dx.github.io/baseline-browser-mapping/all_versions_object.json)
+  - [CSV](https://web-platform-dx.github.io/baseline-browser-mapping/all_versions.csv)
+- Core browsers only, with `supports` property
+  - [Array](https://web-platform-dx.github.io/baseline-browser-mapping/all_versions_array_with_supports.json)
+  - [Object](https://web-platform-dx.github.io/baseline-browser-mapping/all_versions_object_with_supports.json)
+  - [CSV](https://web-platform-dx.github.io/baseline-browser-mapping/all_versions_with_supports.csv)
+- Including downstream browsers
+  - [Array](https://web-platform-dx.github.io/baseline-browser-mapping/with_downstream/all_versions_array.json)
+  - [Object](https://web-platform-dx.github.io/baseline-browser-mapping/with_downstream/all_versions_object.json)
+  - [CSV](https://web-platform-dx.github.io/baseline-browser-mapping/with_downstream/all_versions.csv)
+- Including downstream browsers with `supports` property
+  - [Array](https://web-platform-dx.github.io/baseline-browser-mapping/with_downstream/all_versions_array_with_supports.json)
+  - [Object](https://web-platform-dx.github.io/baseline-browser-mapping/with_downstream/all_versions_object_with_supports.json)
+  - [CSV](https://web-platform-dx.github.io/baseline-browser-mapping/with_downstream/all_versions_with_supports.csv)
+
+These files are updated on a daily basis.
+
+## CLI
+
+`baseline-browser-mapping` includes a command line interface that exposes the same data and options as the `getCompatibleVersions()` function. To learn more about using the CLI, run:
+
+```sh
+npx baseline-browser-mapping --help
+```
+
+## Downstream browsers
+
+### Limitations
+
+The browser versions in this module come from two different sources:
+
+- MDN's `browser-compat-data` module.
+- Parsed user agent strings provided by [useragents.io](https://useragents.io/)
+
+MDN `browser-compat-data` is an authoritative source of information for the browsers it contains. The release dates for the Baseline core browser set and the mapping of downstream browsers to Chromium versions should be considered accurate.
+
+Browser mappings from useragents.io are provided on a best effort basis. They assume that browser vendors are accurately stating the Chromium version they have implemented. The initial set of version mappings was derived from a bulk export in November 2024. This version was iterated over with a Regex match looking for a major Chrome version and a corresponding version of the browser in question, e.g.:
+
+`Mozilla/5.0 (Linux; U; Android 10; en-US; STK-L21 Build/HUAWEISTK-L21) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/100.0.4896.58 UCBrowser/13.8.2.1324 Mobile Safari/537.36`
+
+Shows UC Browser Mobile 13.8 implementing Chromium 100, and:
+
+`Mozilla/5.0 (Linux; arm_64; Android 11; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.123 YaBrowser/24.10.2.123.00 SA/3 Mobile Safari/537.36`
+
+Shows Yandex Browser Mobile 24.10 implementing Chromium 128. The Chromium version from this string is mapped to the corresponding Chrome version from MDN `browser-compat-data`.
+
+> [!NOTE]
+> Where possible, approximate release dates have been included based on useragents.io "first seen" data. useragents.io does not have "first seen" dates prior to June 2020. However, these browsers' Baseline compatibility is determined by their Chromium or Gecko version, so their release dates are more informative than critical.
+
+This data is updated on a daily basis using a [script](https://github.com/web-platform-dx/web-features/tree/main/scripts/refresh-downstream.ts) triggered by a GitHub [action](https://github.com/web-platform-dx/web-features/tree/main/.github/workflows/refresh_downstream.yml). Useragents.io provides a private API for this module which exposes the last 7 days of newly seen user agents for the currently tracked browsers. If a new major version of one of the tracked browsers is encountered with a Chromium version that meets or exceeds the previous latest version of that browser, it is added to the [src/data/downstream-browsers.json](src/data/downstream-browsers.json) file with the date it was first seen by useragents.io as its release date.
+
+KaiOS is an exception - its upstream version mappings are handled separately from the other browsers because they happen very infrequently.
+
+### List of downstream browsers
+
+| Browser               | ID                        | Core    | Source                    |
+| --------------------- | ------------------------- | ------- | ------------------------- |
+| Chrome                | `chrome`                  | `true`  | MDN `browser-compat-data` |
+| Chrome for Android    | `chrome_android`          | `true`  | MDN `browser-compat-data` |
+| Edge                  | `edge`                    | `true`  | MDN `browser-compat-data` |
+| Firefox               | `firefox`                 | `true`  | MDN `browser-compat-data` |
+| Firefox for Android   | `firefox_android`         | `true`  | MDN `browser-compat-data` |
+| Safari                | `safari`                  | `true`  | MDN `browser-compat-data` |
+| Safari on iOS         | `safari_ios`              | `true`  | MDN `browser-compat-data` |
+| Opera                 | `opera`                   | `false` | MDN `browser-compat-data` |
+| Opera Android         | `opera_android`           | `false` | MDN `browser-compat-data` |
+| Samsung Internet      | `samsunginternet_android` | `false` | MDN `browser-compat-data` |
+| WebView Android       | `webview_android`         | `false` | MDN `browser-compat-data` |
+| QQ Browser Mobile     | `qq_android`              | `false` | useragents.io             |
+| UC Browser Mobile     | `uc_android`              | `false` | useragents.io             |
+| Yandex Browser Mobile | `ya_android`              | `false` | useragents.io             |
+| KaiOS                 | `kai_os`                  | `false` | Manual                    |
+| Facebook for Android  | `facebook_android`        | `false` | useragents.io             |
+| Instagram for Android | `instagram_android`       | `false` | useragents.io             |
+
+> [!NOTE]
+> All the non-core browsers currently included implement Chromium or Gecko. Their inclusion in any of the above methods is based on the Baseline feature set supported by the Chromium or Gecko version they implement, not their release date.
Index: node_modules/baseline-browser-mapping/dist/cli.js
===================================================================
--- node_modules/baseline-browser-mapping/dist/cli.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/baseline-browser-mapping/dist/cli.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,2 @@
+#!/usr/bin/env node
+import{parseArgs as e}from"node:util";import{exit as s}from"node:process";import{getCompatibleVersions as a}from"./index.js";const r=process.argv.slice(2),{values:n}=e({args:r,options:{"target-year":{type:"string"},"widely-available-on-date":{type:"string"},"include-downstream-browsers":{type:"boolean"},"list-all-compatible-versions":{type:"boolean"},"include-kaios":{type:"boolean"},"suppress-warnings":{type:"boolean"},"override-last-updated":{type:"string"},help:{type:"boolean",short:"h"}},strict:!0});n.help&&(console.log("\nGet Baseline Widely available browser versions or Baseline year browser versions.\n\nUsage: baseline-browser-mapping [options]\n\nOptions:\n      --target-year                   Pass a year between 2015 and the current year to get browser versions compatible \n                                      with all Newly Available features as of the end of the year specified.\n      --widely-available-on-date      Pass a date in the format 'YYYY-MM-DD' to get versions compatible with Widely \n                                      available on the specified date.\n      --include-downstream-browsers   Whether to include browsers that use the same engines as a core Baseline browser.\n      --include-kaios                 Whether to include KaiOS in downstream browsers.  Requires --include-downstream-browsers.\n      --list-all-compatible-versions  Whether to include only the minimum compatible browser versions or all compatible versions.\n      --suppress-warnings             Supress potential warnings about data staleness when using a very recent feature cut off date.\n      --override-last-updated         Override the last updated date for the baseline data for debugging purposes.\n  -h, --help                          Show help\n\nExamples:\n  npx baseline-browser-mapping --target-year 2020\n  npx baseline-browser-mapping --widely-available-on-date 2023-04-05\n  npx baseline-browser-mapping --include-downstream-browsers\n  npx baseline-browser-mapping --list-all-compatible-versions\n".trim()),s(0)),console.log(a({targetYear:n["target-year"]?Number.parseInt(n["target-year"]):void 0,widelyAvailableOnDate:n["widely-available-on-date"],includeDownstreamBrowsers:n["include-downstream-browsers"],listAllCompatibleVersions:n["list-all-compatible-versions"],includeKaiOS:n["include-kaios"],suppressWarnings:n["suppress-warnings"],overrideLastUpdated:n["override-last-updated"]?Number.parseInt(n["override-last-updated"]):void 0}));
Index: node_modules/baseline-browser-mapping/dist/index.cjs
===================================================================
--- node_modules/baseline-browser-mapping/dist/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/baseline-browser-mapping/dist/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+"use strict";const s={chrome:{releases:[["1","2008-12-11","r","w","528"],["2","2009-05-21","r","w","530"],["3","2009-09-15","r","w","532"],["4","2010-01-25","r","w","532.5"],["5","2010-05-25","r","w","533"],["6","2010-09-02","r","w","534.3"],["7","2010-10-19","r","w","534.7"],["8","2010-12-02","r","w","534.10"],["9","2011-02-03","r","w","534.13"],["10","2011-03-08","r","w","534.16"],["11","2011-04-27","r","w","534.24"],["12","2011-06-07","r","w","534.30"],["13","2011-08-02","r","w","535.1"],["14","2011-09-16","r","w","535.1"],["15","2011-10-25","r","w","535.2"],["16","2011-12-13","r","w","535.7"],["17","2012-02-08","r","w","535.11"],["18","2012-03-28","r","w","535.19"],["19","2012-05-15","r","w","536.5"],["20","2012-06-26","r","w","536.10"],["21","2012-07-31","r","w","537.1"],["22","2012-09-25","r","w","537.4"],["23","2012-11-06","r","w","537.11"],["24","2013-01-10","r","w","537.17"],["25","2013-02-21","r","w","537.22"],["26","2013-03-26","r","w","537.31"],["27","2013-05-21","r","w","537.36"],["28","2013-07-09","r","b","28"],["29","2013-08-20","r","b","29"],["30","2013-10-01","r","b","30"],["31","2013-11-12","r","b","31"],["32","2014-01-14","r","b","32"],["33","2014-02-20","r","b","33"],["34","2014-04-08","r","b","34"],["35","2014-05-20","r","b","35"],["36","2014-07-16","r","b","36"],["37","2014-08-26","r","b","37"],["38","2014-10-07","r","b","38"],["39","2014-11-18","r","b","39"],["40","2015-01-21","r","b","40"],["41","2015-03-03","r","b","41"],["42","2015-04-14","r","b","42"],["43","2015-05-19","r","b","43"],["44","2015-07-21","r","b","44"],["45","2015-09-01","r","b","45"],["46","2015-10-13","r","b","46"],["47","2015-12-01","r","b","47"],["48","2016-01-20","r","b","48"],["49","2016-03-02","r","b","49"],["50","2016-04-13","r","b","50"],["51","2016-05-25","r","b","51"],["52","2016-07-20","r","b","52"],["53","2016-08-31","r","b","53"],["54","2016-10-12","r","b","54"],["55","2016-12-01","r","b","55"],["56","2017-01-25","r","b","56"],["57","2017-03-09","r","b","57"],["58","2017-04-19","r","b","58"],["59","2017-06-05","r","b","59"],["60","2017-07-25","r","b","60"],["61","2017-09-05","r","b","61"],["62","2017-10-17","r","b","62"],["63","2017-12-06","r","b","63"],["64","2018-01-23","r","b","64"],["65","2018-03-06","r","b","65"],["66","2018-04-17","r","b","66"],["67","2018-05-29","r","b","67"],["68","2018-07-24","r","b","68"],["69","2018-09-04","r","b","69"],["70","2018-10-16","r","b","70"],["71","2018-12-04","r","b","71"],["72","2019-01-29","r","b","72"],["73","2019-03-12","r","b","73"],["74","2019-04-23","r","b","74"],["75","2019-06-04","r","b","75"],["76","2019-07-30","r","b","76"],["77","2019-09-10","r","b","77"],["78","2019-10-22","r","b","78"],["79","2019-12-10","r","b","79"],["80","2020-02-04","r","b","80"],["81","2020-04-07","r","b","81"],["83","2020-05-19","r","b","83"],["84","2020-07-27","r","b","84"],["85","2020-08-25","r","b","85"],["86","2020-10-20","r","b","86"],["87","2020-11-17","r","b","87"],["88","2021-01-19","r","b","88"],["89","2021-03-02","r","b","89"],["90","2021-04-13","r","b","90"],["91","2021-05-25","r","b","91"],["92","2021-07-20","r","b","92"],["93","2021-08-31","r","b","93"],["94","2021-09-21","r","b","94"],["95","2021-10-19","r","b","95"],["96","2021-11-15","r","b","96"],["97","2022-01-04","r","b","97"],["98","2022-02-01","r","b","98"],["99","2022-03-01","r","b","99"],["100","2022-03-29","r","b","100"],["101","2022-04-26","r","b","101"],["102","2022-05-24","r","b","102"],["103","2022-06-21","r","b","103"],["104","2022-08-02","r","b","104"],["105","2022-09-02","r","b","105"],["106","2022-09-27","r","b","106"],["107","2022-10-25","r","b","107"],["108","2022-11-29","r","b","108"],["109","2023-01-10","r","b","109"],["110","2023-02-07","r","b","110"],["111","2023-03-07","r","b","111"],["112","2023-04-04","r","b","112"],["113","2023-05-02","r","b","113"],["114","2023-05-30","r","b","114"],["115","2023-07-18","r","b","115"],["116","2023-08-15","r","b","116"],["117","2023-09-12","r","b","117"],["118","2023-10-10","r","b","118"],["119","2023-10-31","r","b","119"],["120","2023-12-05","r","b","120"],["121","2024-01-23","r","b","121"],["122","2024-02-20","r","b","122"],["123","2024-03-19","r","b","123"],["124","2024-04-16","r","b","124"],["125","2024-05-14","r","b","125"],["126","2024-06-11","r","b","126"],["127","2024-07-23","r","b","127"],["128","2024-08-20","r","b","128"],["129","2024-09-17","r","b","129"],["130","2024-10-15","r","b","130"],["131","2024-11-12","r","b","131"],["132","2025-01-14","r","b","132"],["133","2025-02-04","r","b","133"],["134","2025-03-04","r","b","134"],["135","2025-04-01","r","b","135"],["136","2025-04-29","r","b","136"],["137","2025-05-27","r","b","137"],["138","2025-06-24","r","b","138"],["139","2025-08-05","r","b","139"],["140","2025-09-02","r","b","140"],["141","2025-09-30","r","b","141"],["142","2025-10-28","r","b","142"],["143","2025-12-02","c","b","143"],["144","2026-01-13","b","b","144"],["145","2026-02-10","n","b","145"],["146",null,"p","b","146"]]},chrome_android:{releases:[["18","2012-06-27","r","w","535.19"],["25","2013-02-27","r","w","537.22"],["26","2013-04-03","r","w","537.31"],["27","2013-05-22","r","w","537.36"],["28","2013-07-10","r","b","28"],["29","2013-08-21","r","b","29"],["30","2013-10-02","r","b","30"],["31","2013-11-14","r","b","31"],["32","2014-01-15","r","b","32"],["33","2014-02-26","r","b","33"],["34","2014-04-02","r","b","34"],["35","2014-05-20","r","b","35"],["36","2014-07-16","r","b","36"],["37","2014-09-03","r","b","37"],["38","2014-10-08","r","b","38"],["39","2014-11-12","r","b","39"],["40","2015-01-21","r","b","40"],["41","2015-03-11","r","b","41"],["42","2015-04-15","r","b","42"],["43","2015-05-27","r","b","43"],["44","2015-07-29","r","b","44"],["45","2015-09-01","r","b","45"],["46","2015-10-14","r","b","46"],["47","2015-12-02","r","b","47"],["48","2016-01-26","r","b","48"],["49","2016-03-09","r","b","49"],["50","2016-04-13","r","b","50"],["51","2016-06-08","r","b","51"],["52","2016-07-27","r","b","52"],["53","2016-09-07","r","b","53"],["54","2016-10-19","r","b","54"],["55","2016-12-06","r","b","55"],["56","2017-02-01","r","b","56"],["57","2017-03-16","r","b","57"],["58","2017-04-25","r","b","58"],["59","2017-06-06","r","b","59"],["60","2017-08-01","r","b","60"],["61","2017-09-05","r","b","61"],["62","2017-10-24","r","b","62"],["63","2017-12-05","r","b","63"],["64","2018-01-23","r","b","64"],["65","2018-03-06","r","b","65"],["66","2018-04-17","r","b","66"],["67","2018-05-31","r","b","67"],["68","2018-07-24","r","b","68"],["69","2018-09-04","r","b","69"],["70","2018-10-17","r","b","70"],["71","2018-12-04","r","b","71"],["72","2019-01-29","r","b","72"],["73","2019-03-12","r","b","73"],["74","2019-04-24","r","b","74"],["75","2019-06-04","r","b","75"],["76","2019-07-30","r","b","76"],["77","2019-09-10","r","b","77"],["78","2019-10-22","r","b","78"],["79","2019-12-17","r","b","79"],["80","2020-02-04","r","b","80"],["81","2020-04-07","r","b","81"],["83","2020-05-19","r","b","83"],["84","2020-07-27","r","b","84"],["85","2020-08-25","r","b","85"],["86","2020-10-20","r","b","86"],["87","2020-11-17","r","b","87"],["88","2021-01-19","r","b","88"],["89","2021-03-02","r","b","89"],["90","2021-04-13","r","b","90"],["91","2021-05-25","r","b","91"],["92","2021-07-20","r","b","92"],["93","2021-08-31","r","b","93"],["94","2021-09-21","r","b","94"],["95","2021-10-19","r","b","95"],["96","2021-11-15","r","b","96"],["97","2022-01-04","r","b","97"],["98","2022-02-01","r","b","98"],["99","2022-03-01","r","b","99"],["100","2022-03-29","r","b","100"],["101","2022-04-26","r","b","101"],["102","2022-05-24","r","b","102"],["103","2022-06-21","r","b","103"],["104","2022-08-02","r","b","104"],["105","2022-09-02","r","b","105"],["106","2022-09-27","r","b","106"],["107","2022-10-25","r","b","107"],["108","2022-11-29","r","b","108"],["109","2023-01-10","r","b","109"],["110","2023-02-07","r","b","110"],["111","2023-03-07","r","b","111"],["112","2023-04-04","r","b","112"],["113","2023-05-02","r","b","113"],["114","2023-05-30","r","b","114"],["115","2023-07-21","r","b","115"],["116","2023-08-15","r","b","116"],["117","2023-09-12","r","b","117"],["118","2023-10-10","r","b","118"],["119","2023-10-31","r","b","119"],["120","2023-12-05","r","b","120"],["121","2024-01-23","r","b","121"],["122","2024-02-20","r","b","122"],["123","2024-03-19","r","b","123"],["124","2024-04-16","r","b","124"],["125","2024-05-14","r","b","125"],["126","2024-06-11","r","b","126"],["127","2024-07-23","r","b","127"],["128","2024-08-20","r","b","128"],["129","2024-09-17","r","b","129"],["130","2024-10-15","r","b","130"],["131","2024-11-12","r","b","131"],["132","2025-01-14","r","b","132"],["133","2025-02-04","r","b","133"],["134","2025-03-04","r","b","134"],["135","2025-04-01","r","b","135"],["136","2025-04-29","r","b","136"],["137","2025-05-27","r","b","137"],["138","2025-06-24","r","b","138"],["139","2025-08-05","r","b","139"],["140","2025-09-02","r","b","140"],["141","2025-09-30","r","b","141"],["142","2025-10-28","r","b","142"],["143","2025-12-02","c","b","143"],["144","2026-01-13","b","b","144"],["145","2026-02-10","n","b","145"],["146",null,"p","b","146"]]},edge:{releases:[["12","2015-07-29","r",null,"12"],["13","2015-11-12","r",null,"13"],["14","2016-08-02","r",null,"14"],["15","2017-04-05","r",null,"15"],["16","2017-10-17","r",null,"16"],["17","2018-04-30","r",null,"17"],["18","2018-10-02","r",null,"18"],["79","2020-01-15","r","b","79"],["80","2020-02-07","r","b","80"],["81","2020-04-13","r","b","81"],["83","2020-05-21","r","b","83"],["84","2020-07-16","r","b","84"],["85","2020-08-27","r","b","85"],["86","2020-10-09","r","b","86"],["87","2020-11-19","r","b","87"],["88","2021-01-21","r","b","88"],["89","2021-03-04","r","b","89"],["90","2021-04-15","r","b","90"],["91","2021-05-27","r","b","91"],["92","2021-07-22","r","b","92"],["93","2021-09-02","r","b","93"],["94","2021-09-24","r","b","94"],["95","2021-10-21","r","b","95"],["96","2021-11-19","r","b","96"],["97","2022-01-06","r","b","97"],["98","2022-02-03","r","b","98"],["99","2022-03-03","r","b","99"],["100","2022-04-01","r","b","100"],["101","2022-04-28","r","b","101"],["102","2022-05-31","r","b","102"],["103","2022-06-23","r","b","103"],["104","2022-08-05","r","b","104"],["105","2022-09-01","r","b","105"],["106","2022-10-03","r","b","106"],["107","2022-10-27","r","b","107"],["108","2022-12-05","r","b","108"],["109","2023-01-12","r","b","109"],["110","2023-02-09","r","b","110"],["111","2023-03-13","r","b","111"],["112","2023-04-06","r","b","112"],["113","2023-05-05","r","b","113"],["114","2023-06-02","r","b","114"],["115","2023-07-21","r","b","115"],["116","2023-08-21","r","b","116"],["117","2023-09-15","r","b","117"],["118","2023-10-13","r","b","118"],["119","2023-11-02","r","b","119"],["120","2023-12-07","r","b","120"],["121","2024-01-25","r","b","121"],["122","2024-02-23","r","b","122"],["123","2024-03-22","r","b","123"],["124","2024-04-18","r","b","124"],["125","2024-05-17","r","b","125"],["126","2024-06-13","r","b","126"],["127","2024-07-25","r","b","127"],["128","2024-08-22","r","b","128"],["129","2024-09-19","r","b","129"],["130","2024-10-17","r","b","130"],["131","2024-11-14","r","b","131"],["132","2025-01-17","r","b","132"],["133","2025-02-06","r","b","133"],["134","2025-03-06","r","b","134"],["135","2025-04-04","r","b","135"],["136","2025-05-01","r","b","136"],["137","2025-05-29","r","b","137"],["138","2025-06-26","r","b","138"],["139","2025-08-07","r","b","139"],["140","2025-09-05","r","b","140"],["141","2025-10-03","r","b","141"],["142","2025-10-31","r","b","142"],["143","2025-12-05","c","b","143"],["144","2026-01-15","b","b","144"],["145","2026-02-12","n","b","145"],["146","2026-03-12","p","b","146"]]},firefox:{releases:[["1","2004-11-09","r","g","1.7"],["2","2006-10-24","r","g","1.8.1"],["3","2008-06-17","r","g","1.9"],["4","2011-03-22","r","g","2"],["5","2011-06-21","r","g","5"],["6","2011-08-16","r","g","6"],["7","2011-09-27","r","g","7"],["8","2011-11-08","r","g","8"],["9","2011-12-20","r","g","9"],["10","2012-01-31","r","g","10"],["11","2012-03-13","r","g","11"],["12","2012-04-24","r","g","12"],["13","2012-06-05","r","g","13"],["14","2012-07-17","r","g","14"],["15","2012-08-28","r","g","15"],["16","2012-10-09","r","g","16"],["17","2012-11-20","r","g","17"],["18","2013-01-08","r","g","18"],["19","2013-02-19","r","g","19"],["20","2013-04-02","r","g","20"],["21","2013-05-14","r","g","21"],["22","2013-06-25","r","g","22"],["23","2013-08-06","r","g","23"],["24","2013-09-17","r","g","24"],["25","2013-10-29","r","g","25"],["26","2013-12-10","r","g","26"],["27","2014-02-04","r","g","27"],["28","2014-03-18","r","g","28"],["29","2014-04-29","r","g","29"],["30","2014-06-10","r","g","30"],["31","2014-07-22","r","g","31"],["32","2014-09-02","r","g","32"],["33","2014-10-14","r","g","33"],["34","2014-12-01","r","g","34"],["35","2015-01-13","r","g","35"],["36","2015-02-24","r","g","36"],["37","2015-03-31","r","g","37"],["38","2015-05-12","r","g","38"],["39","2015-07-02","r","g","39"],["40","2015-08-11","r","g","40"],["41","2015-09-22","r","g","41"],["42","2015-11-03","r","g","42"],["43","2015-12-15","r","g","43"],["44","2016-01-26","r","g","44"],["45","2016-03-08","r","g","45"],["46","2016-04-26","r","g","46"],["47","2016-06-07","r","g","47"],["48","2016-08-02","r","g","48"],["49","2016-09-20","r","g","49"],["50","2016-11-15","r","g","50"],["51","2017-01-24","r","g","51"],["52","2017-03-07","r","g","52"],["53","2017-04-19","r","g","53"],["54","2017-06-13","r","g","54"],["55","2017-08-08","r","g","55"],["56","2017-09-28","r","g","56"],["57","2017-11-14","r","g","57"],["58","2018-01-23","r","g","58"],["59","2018-03-13","r","g","59"],["60","2018-05-09","r","g","60"],["61","2018-06-26","r","g","61"],["62","2018-09-05","r","g","62"],["63","2018-10-23","r","g","63"],["64","2018-12-11","r","g","64"],["65","2019-01-29","r","g","65"],["66","2019-03-19","r","g","66"],["67","2019-05-21","r","g","67"],["68","2019-07-09","r","g","68"],["69","2019-09-03","r","g","69"],["70","2019-10-22","r","g","70"],["71","2019-12-10","r","g","71"],["72","2020-01-07","r","g","72"],["73","2020-02-11","r","g","73"],["74","2020-03-10","r","g","74"],["75","2020-04-07","r","g","75"],["76","2020-05-05","r","g","76"],["77","2020-06-02","r","g","77"],["78","2020-06-30","r","g","78"],["79","2020-07-28","r","g","79"],["80","2020-08-25","r","g","80"],["81","2020-09-22","r","g","81"],["82","2020-10-20","r","g","82"],["83","2020-11-17","r","g","83"],["84","2020-12-15","r","g","84"],["85","2021-01-26","r","g","85"],["86","2021-02-23","r","g","86"],["87","2021-03-23","r","g","87"],["88","2021-04-19","r","g","88"],["89","2021-06-01","r","g","89"],["90","2021-07-13","r","g","90"],["91","2021-08-10","r","g","91"],["92","2021-09-07","r","g","92"],["93","2021-10-05","r","g","93"],["94","2021-11-02","r","g","94"],["95","2021-12-07","r","g","95"],["96","2022-01-11","r","g","96"],["97","2022-02-08","r","g","97"],["98","2022-03-08","r","g","98"],["99","2022-04-05","r","g","99"],["100","2022-05-03","r","g","100"],["101","2022-05-31","r","g","101"],["102","2022-06-28","r","g","102"],["103","2022-07-26","r","g","103"],["104","2022-08-23","r","g","104"],["105","2022-09-20","r","g","105"],["106","2022-10-18","r","g","106"],["107","2022-11-15","r","g","107"],["108","2022-12-13","r","g","108"],["109","2023-01-17","r","g","109"],["110","2023-02-14","r","g","110"],["111","2023-03-14","r","g","111"],["112","2023-04-11","r","g","112"],["113","2023-05-09","r","g","113"],["114","2023-06-06","r","g","114"],["115","2023-07-04","r","g","115"],["116","2023-08-01","r","g","116"],["117","2023-08-29","r","g","117"],["118","2023-09-26","r","g","118"],["119","2023-10-24","r","g","119"],["120","2023-11-21","r","g","120"],["121","2023-12-19","r","g","121"],["122","2024-01-23","r","g","122"],["123","2024-02-20","r","g","123"],["124","2024-03-19","r","g","124"],["125","2024-04-16","r","g","125"],["126","2024-05-14","r","g","126"],["127","2024-06-11","r","g","127"],["128","2024-07-09","r","g","128"],["129","2024-08-06","r","g","129"],["130","2024-09-03","r","g","130"],["131","2024-10-01","r","g","131"],["132","2024-10-29","r","g","132"],["133","2024-11-26","r","g","133"],["134","2025-01-07","r","g","134"],["135","2025-02-04","r","g","135"],["136","2025-03-04","r","g","136"],["137","2025-04-01","r","g","137"],["138","2025-04-29","r","g","138"],["139","2025-05-27","r","g","139"],["140","2025-06-24","e","g","140"],["141","2025-07-22","r","g","141"],["142","2025-08-19","r","g","142"],["143","2025-09-16","r","g","143"],["144","2025-10-14","r","g","144"],["145","2025-11-11","r","g","145"],["146","2025-12-09","c","g","146"],["147","2026-01-13","b","g","147"],["148","2026-02-24","n","g","148"],["149","2026-03-24","p","g","149"],["1.5","2005-11-29","r","g","1.8"],["3.5","2009-06-30","r","g","1.9.1"],["3.6","2010-01-21","r","g","1.9.2"]]},firefox_android:{releases:[["4","2011-03-29","r","g","2"],["5","2011-06-21","r","g","5"],["6","2011-08-16","r","g","6"],["7","2011-09-27","r","g","7"],["8","2011-11-08","r","g","8"],["9","2011-12-21","r","g","9"],["10","2012-01-31","r","g","10"],["14","2012-06-26","r","g","14"],["15","2012-08-28","r","g","15"],["16","2012-10-09","r","g","16"],["17","2012-11-20","r","g","17"],["18","2013-01-08","r","g","18"],["19","2013-02-19","r","g","19"],["20","2013-04-02","r","g","20"],["21","2013-05-14","r","g","21"],["22","2013-06-25","r","g","22"],["23","2013-08-06","r","g","23"],["24","2013-09-17","r","g","24"],["25","2013-10-29","r","g","25"],["26","2013-12-10","r","g","26"],["27","2014-02-04","r","g","27"],["28","2014-03-18","r","g","28"],["29","2014-04-29","r","g","29"],["30","2014-06-10","r","g","30"],["31","2014-07-22","r","g","31"],["32","2014-09-02","r","g","32"],["33","2014-10-14","r","g","33"],["34","2014-12-01","r","g","34"],["35","2015-01-13","r","g","35"],["36","2015-02-27","r","g","36"],["37","2015-03-31","r","g","37"],["38","2015-05-12","r","g","38"],["39","2015-07-02","r","g","39"],["40","2015-08-11","r","g","40"],["41","2015-09-22","r","g","41"],["42","2015-11-03","r","g","42"],["43","2015-12-15","r","g","43"],["44","2016-01-26","r","g","44"],["45","2016-03-08","r","g","45"],["46","2016-04-26","r","g","46"],["47","2016-06-07","r","g","47"],["48","2016-08-02","r","g","48"],["49","2016-09-20","r","g","49"],["50","2016-11-15","r","g","50"],["51","2017-01-24","r","g","51"],["52","2017-03-07","r","g","52"],["53","2017-04-19","r","g","53"],["54","2017-06-13","r","g","54"],["55","2017-08-08","r","g","55"],["56","2017-09-28","r","g","56"],["57","2017-11-28","r","g","57"],["58","2018-01-22","r","g","58"],["59","2018-03-13","r","g","59"],["60","2018-05-09","r","g","60"],["61","2018-06-26","r","g","61"],["62","2018-09-05","r","g","62"],["63","2018-10-23","r","g","63"],["64","2018-12-11","r","g","64"],["65","2019-01-29","r","g","65"],["66","2019-03-19","r","g","66"],["67","2019-05-21","r","g","67"],["68","2019-07-09","r","g","68"],["79","2020-07-28","r","g","79"],["80","2020-08-31","r","g","80"],["81","2020-09-22","r","g","81"],["82","2020-10-20","r","g","82"],["83","2020-11-17","r","g","83"],["84","2020-12-15","r","g","84"],["85","2021-01-26","r","g","85"],["86","2021-02-23","r","g","86"],["87","2021-03-23","r","g","87"],["88","2021-04-19","r","g","88"],["89","2021-06-01","r","g","89"],["90","2021-07-13","r","g","90"],["91","2021-08-10","r","g","91"],["92","2021-09-07","r","g","92"],["93","2021-10-05","r","g","93"],["94","2021-11-02","r","g","94"],["95","2021-12-07","r","g","95"],["96","2022-01-11","r","g","96"],["97","2022-02-08","r","g","97"],["98","2022-03-08","r","g","98"],["99","2022-04-05","r","g","99"],["100","2022-05-03","r","g","100"],["101","2022-05-31","r","g","101"],["102","2022-06-28","r","g","102"],["103","2022-07-26","r","g","103"],["104","2022-08-23","r","g","104"],["105","2022-09-20","r","g","105"],["106","2022-10-18","r","g","106"],["107","2022-11-15","r","g","107"],["108","2022-12-13","r","g","108"],["109","2023-01-17","r","g","109"],["110","2023-02-14","r","g","110"],["111","2023-03-14","r","g","111"],["112","2023-04-11","r","g","112"],["113","2023-05-09","r","g","113"],["114","2023-06-06","r","g","114"],["115","2023-07-04","r","g","115"],["116","2023-08-01","r","g","116"],["117","2023-08-29","r","g","117"],["118","2023-09-26","r","g","118"],["119","2023-10-24","r","g","119"],["120","2023-11-21","r","g","120"],["121","2023-12-19","r","g","121"],["122","2024-01-23","r","g","122"],["123","2024-02-20","r","g","123"],["124","2024-03-19","r","g","124"],["125","2024-04-16","r","g","125"],["126","2024-05-14","r","g","126"],["127","2024-06-11","r","g","127"],["128","2024-07-09","r","g","128"],["129","2024-08-06","r","g","129"],["130","2024-09-03","r","g","130"],["131","2024-10-01","r","g","131"],["132","2024-10-29","r","g","132"],["133","2024-11-26","r","g","133"],["134","2025-01-07","r","g","134"],["135","2025-02-04","r","g","135"],["136","2025-03-04","r","g","136"],["137","2025-04-01","r","g","137"],["138","2025-04-29","r","g","138"],["139","2025-05-27","r","g","139"],["140","2025-06-24","e","g","140"],["141","2025-07-22","r","g","141"],["142","2025-08-19","r","g","142"],["143","2025-09-16","r","g","143"],["144","2025-10-14","r","g","144"],["145","2025-11-11","r","g","145"],["146","2025-12-09","c","g","146"],["147","2026-01-13","b","g","147"],["148","2026-02-24","n","g","148"],["149","2026-03-24","p","g","149"]]},opera:{releases:[["2","1996-07-14","r",null,null],["3","1997-12-01","r",null,null],["4","2000-06-28","r",null,null],["5","2000-12-06","r",null,null],["6","2001-12-18","r",null,null],["7","2003-01-28","r","p","1"],["8","2005-04-19","r","p","1"],["9","2006-06-20","r","p","2"],["10","2009-09-01","r","p","2.2"],["11","2010-12-16","r","p","2.7"],["12","2012-06-14","r","p","2.10"],["15","2013-07-02","r","b","28"],["16","2013-08-27","r","b","29"],["17","2013-10-08","r","b","30"],["18","2013-11-19","r","b","31"],["19","2014-01-28","r","b","32"],["20","2014-03-04","r","b","33"],["21","2014-05-06","r","b","34"],["22","2014-06-03","r","b","35"],["23","2014-07-22","r","b","36"],["24","2014-09-02","r","b","37"],["25","2014-10-15","r","b","38"],["26","2014-12-03","r","b","39"],["27","2015-01-27","r","b","40"],["28","2015-03-10","r","b","41"],["29","2015-04-28","r","b","42"],["30","2015-06-09","r","b","43"],["31","2015-08-04","r","b","44"],["32","2015-09-15","r","b","45"],["33","2015-10-27","r","b","46"],["34","2015-12-08","r","b","47"],["35","2016-02-02","r","b","48"],["36","2016-03-15","r","b","49"],["37","2016-05-04","r","b","50"],["38","2016-06-08","r","b","51"],["39","2016-08-02","r","b","52"],["40","2016-09-20","r","b","53"],["41","2016-10-25","r","b","54"],["42","2016-12-13","r","b","55"],["43","2017-02-07","r","b","56"],["44","2017-03-21","r","b","57"],["45","2017-05-10","r","b","58"],["46","2017-06-22","r","b","59"],["47","2017-08-09","r","b","60"],["48","2017-09-27","r","b","61"],["49","2017-11-08","r","b","62"],["50","2018-01-04","r","b","63"],["51","2018-02-07","r","b","64"],["52","2018-03-22","r","b","65"],["53","2018-05-10","r","b","66"],["54","2018-06-28","r","b","67"],["55","2018-08-16","r","b","68"],["56","2018-09-25","r","b","69"],["57","2018-11-28","r","b","70"],["58","2019-01-23","r","b","71"],["60","2019-04-09","r","b","73"],["62","2019-06-27","r","b","75"],["63","2019-08-20","r","b","76"],["64","2019-10-07","r","b","77"],["65","2019-11-13","r","b","78"],["66","2020-01-07","r","b","79"],["67","2020-03-03","r","b","80"],["68","2020-04-22","r","b","81"],["69","2020-06-24","r","b","83"],["70","2020-07-27","r","b","84"],["71","2020-09-15","r","b","85"],["72","2020-10-21","r","b","86"],["73","2020-12-09","r","b","87"],["74","2021-02-02","r","b","88"],["75","2021-03-24","r","b","89"],["76","2021-04-28","r","b","90"],["77","2021-06-09","r","b","91"],["78","2021-08-03","r","b","92"],["79","2021-09-14","r","b","93"],["80","2021-10-05","r","b","94"],["81","2021-11-04","r","b","95"],["82","2021-12-02","r","b","96"],["83","2022-01-19","r","b","97"],["84","2022-02-16","r","b","98"],["85","2022-03-23","r","b","99"],["86","2022-04-20","r","b","100"],["87","2022-05-17","r","b","101"],["88","2022-06-08","r","b","102"],["89","2022-07-07","r","b","103"],["90","2022-08-18","r","b","104"],["91","2022-09-14","r","b","105"],["92","2022-10-19","r","b","106"],["93","2022-11-17","r","b","107"],["94","2022-12-15","r","b","108"],["95","2023-02-01","r","b","109"],["96","2023-02-22","r","b","110"],["97","2023-03-22","r","b","111"],["98","2023-04-20","r","b","112"],["99","2023-05-16","r","b","113"],["100","2023-06-29","r","b","114"],["101","2023-07-26","r","b","115"],["102","2023-08-23","r","b","116"],["103","2023-10-03","r","b","117"],["104","2023-10-23","r","b","118"],["105","2023-11-14","r","b","119"],["106","2023-12-19","r","b","120"],["107","2024-02-07","r","b","121"],["108","2024-03-05","r","b","122"],["109","2024-03-27","r","b","123"],["110","2024-05-14","r","b","124"],["111","2024-06-12","r","b","125"],["112","2024-07-11","r","b","126"],["113","2024-08-22","r","b","127"],["114","2024-09-25","r","b","128"],["115","2024-11-27","r","b","130"],["116","2025-01-08","r","b","131"],["117","2025-02-13","r","b","132"],["118","2025-04-15","r","b","133"],["119","2025-05-13","r","b","134"],["120","2025-07-02","r","b","135"],["121","2025-08-27","r","b","137"],["122","2025-09-11","r","b","138"],["123","2025-10-28","c","b","139"],["124",null,"b","b","140"],["125",null,"n","b","141"],["10.1","2009-11-23","r","p","2.2"],["10.5","2010-03-02","r","p","2.5"],["10.6","2010-07-01","r","p","2.6"],["11.1","2011-04-12","r","p","2.8"],["11.5","2011-06-28","r","p","2.9"],["11.6","2011-12-06","r","p","2.10"],["12.1","2012-11-20","r","p","2.12"],["3.5","1998-11-18","r",null,null],["3.6","1999-05-06","r",null,null],["5.1","2001-04-10","r",null,null],["7.1","2003-04-11","r","p","1"],["7.2","2003-09-23","r","p","1"],["7.5","2004-05-12","r","p","1"],["8.5","2005-09-20","r","p","1"],["9.1","2006-12-18","r","p","2"],["9.2","2007-04-11","r","p","2"],["9.5","2008-06-12","r","p","2.1"],["9.6","2008-10-08","r","p","2.1"]]},opera_android:{releases:[["11","2011-03-22","r","p","2.7"],["12","2012-02-25","r","p","2.10"],["14","2013-05-21","r","w","537.31"],["15","2013-07-08","r","b","28"],["16","2013-09-18","r","b","29"],["18","2013-11-20","r","b","31"],["19","2014-01-28","r","b","32"],["20","2014-03-06","r","b","33"],["21","2014-04-22","r","b","34"],["22","2014-06-17","r","b","35"],["24","2014-09-10","r","b","37"],["25","2014-10-16","r","b","38"],["26","2014-12-02","r","b","39"],["27","2015-01-29","r","b","40"],["28","2015-03-10","r","b","41"],["29","2015-04-28","r","b","42"],["30","2015-06-10","r","b","43"],["32","2015-09-23","r","b","45"],["33","2015-11-03","r","b","46"],["34","2015-12-16","r","b","47"],["35","2016-02-04","r","b","48"],["36","2016-03-31","r","b","49"],["37","2016-06-16","r","b","50"],["41","2016-10-25","r","b","54"],["42","2017-01-21","r","b","55"],["43","2017-09-27","r","b","59"],["44","2017-12-11","r","b","60"],["45","2018-02-15","r","b","61"],["46","2018-05-14","r","b","63"],["47","2018-07-23","r","b","66"],["48","2018-11-08","r","b","69"],["49","2018-12-07","r","b","70"],["50","2019-02-18","r","b","71"],["51","2019-03-21","r","b","72"],["52","2019-05-17","r","b","73"],["53","2019-07-11","r","b","74"],["54","2019-10-18","r","b","76"],["55","2019-12-03","r","b","77"],["56","2020-02-06","r","b","78"],["57","2020-03-30","r","b","80"],["58","2020-05-13","r","b","81"],["59","2020-06-30","r","b","83"],["60","2020-09-23","r","b","85"],["61","2020-12-07","r","b","86"],["62","2021-02-16","r","b","87"],["63","2021-04-16","r","b","89"],["64","2021-05-25","r","b","91"],["65","2021-10-20","r","b","92"],["66","2021-12-15","r","b","94"],["67","2022-01-31","r","b","96"],["68","2022-03-30","r","b","99"],["69","2022-05-09","r","b","100"],["70","2022-06-29","r","b","102"],["71","2022-09-16","r","b","104"],["72","2022-10-21","r","b","106"],["73","2023-01-17","r","b","108"],["74","2023-03-13","r","b","110"],["75","2023-05-17","r","b","112"],["76","2023-06-26","r","b","114"],["77","2023-08-31","r","b","115"],["78","2023-10-23","r","b","117"],["79","2023-12-06","r","b","119"],["80","2024-01-25","r","b","120"],["81","2024-03-14","r","b","122"],["82","2024-05-02","r","b","124"],["83","2024-06-25","r","b","126"],["84","2024-08-26","r","b","127"],["85","2024-10-29","r","b","128"],["86","2024-12-02","r","b","130"],["87","2025-01-22","r","b","132"],["88","2025-03-19","r","b","134"],["89","2025-04-29","r","b","135"],["90","2025-06-18","r","b","137"],["91","2025-08-19","r","b","139"],["92","2025-10-08","r","b","140"],["93","2025-11-25","c","b","142"],["10.1","2010-11-09","r","p","2.5"],["11.1","2011-06-30","r","p","2.8"],["11.5","2011-10-12","r","p","2.9"],["12.1","2012-10-09","r","p","2.11"]]},safari:{releases:[["1","2003-06-23","r","w","85"],["2","2005-04-29","r","w","412"],["3","2007-10-26","r","w","523.10"],["4","2009-06-08","r","w","530.17"],["5","2010-06-07","r","w","533.16"],["6","2012-07-25","r","w","536.25"],["7","2013-10-22","r","w","537.71"],["8","2014-10-16","r","w","538.35"],["9","2015-09-30","r","w","601.1.56"],["10","2016-09-20","r","w","602.1.50"],["11","2017-09-19","r","w","604.2.4"],["12","2018-09-17","r","w","606.1.36"],["13","2019-09-19","r","w","608.2.11"],["14","2020-09-16","r","w","610.1.28"],["15","2021-09-20","r","w","612.1.27"],["16","2022-09-12","r","w","614.1.25"],["17","2023-09-18","r","w","616.1.27"],["18","2024-09-16","r","w","619.1.26"],["26","2025-09-15","r","w","622.1.22"],["1.1","2003-10-24","r","w","100"],["1.2","2004-02-02","r","w","125"],["1.3","2005-04-15","r","w","312"],["10.1","2017-03-27","r","w","603.2.1"],["11.1","2018-04-12","r","w","605.1.33"],["12.1","2019-03-25","r","w","607.1.40"],["13.1","2020-03-24","r","w","609.1.20"],["14.1","2021-04-26","r","w","611.1.21"],["15.1","2021-10-25","r","w","612.2.9"],["15.2","2021-12-13","r","w","612.3.6"],["15.3","2022-01-26","r","w","612.4.9"],["15.4","2022-03-14","r","w","613.1.17"],["15.5","2022-05-16","r","w","613.2.7"],["15.6","2022-07-20","r","w","613.3.9"],["16.1","2022-10-24","r","w","614.2.9"],["16.2","2022-12-13","r","w","614.3.7"],["16.3","2023-01-23","r","w","614.4.6"],["16.4","2023-03-27","r","w","615.1.26"],["16.5","2023-05-18","r","w","615.2.9"],["16.6","2023-07-24","r","w","615.3.12"],["17.1","2023-10-25","r","w","616.2.9"],["17.2","2023-12-11","r","w","617.1.17"],["17.3","2024-01-22","r","w","617.2.4"],["17.4","2024-03-05","r","w","618.1.15"],["17.5","2024-05-13","r","w","618.2.12"],["17.6","2024-07-29","r","w","618.3.11"],["18.1","2024-10-28","r","w","619.2.8"],["18.2","2024-12-11","r","w","620.1.16"],["18.3","2025-01-27","r","w","620.2.4"],["18.4","2025-03-31","r","w","621.1.15"],["18.5","2025-05-12","r","w","621.2.5"],["18.6","2025-07-29","r","w","621.3.11"],["26.1","2025-11-03","r","w","622.2.11"],["26.2","2025-12-12","r","w","623.1.14"],["26.3","2025-12-15","c","w","623.2.2"],["3.1","2008-03-18","r","w","525.13"],["5.1","2011-07-20","r","w","534.48"],["9.1","2016-03-21","r","w","601.5.17"]]},safari_ios:{releases:[["1","2007-06-29","r","w","522.11"],["2","2008-07-11","r","w","525.18"],["3","2009-06-17","r","w","528.18"],["4","2010-06-21","r","w","532.9"],["5","2011-10-12","r","w","534.46"],["6","2012-09-10","r","w","536.26"],["7","2013-09-18","r","w","537.51"],["8","2014-09-17","r","w","600.1.4"],["9","2015-09-16","r","w","601.1.56"],["10","2016-09-13","r","w","602.1.50"],["11","2017-09-19","r","w","604.2.4"],["12","2018-09-17","r","w","606.1.36"],["13","2019-09-19","r","w","608.2.11"],["14","2020-09-16","r","w","610.1.28"],["15","2021-09-20","r","w","612.1.27"],["16","2022-09-12","r","w","614.1.25"],["17","2023-09-18","r","w","616.1.27"],["18","2024-09-16","r","w","619.1.26"],["26","2025-09-15","r","w","622.1.22"],["10.3","2017-03-27","r","w","603.2.1"],["11.3","2018-03-29","r","w","605.1.33"],["12.2","2019-03-25","r","w","607.1.40"],["13.4","2020-03-24","r","w","609.1.20"],["14.5","2021-04-26","r","w","611.1.21"],["15.1","2021-10-25","r","w","612.2.9"],["15.2","2021-12-13","r","w","612.3.6"],["15.3","2022-01-26","r","w","612.4.9"],["15.4","2022-03-14","r","w","613.1.17"],["15.5","2022-05-16","r","w","613.2.7"],["15.6","2022-07-20","r","w","613.3.9"],["16.1","2022-10-24","r","w","614.2.9"],["16.2","2022-12-13","r","w","614.3.7"],["16.3","2023-01-23","r","w","614.4.6"],["16.4","2023-03-27","r","w","615.1.26"],["16.5","2023-05-18","r","w","615.2.9"],["16.6","2023-07-24","r","w","615.3.12"],["17.1","2023-10-25","r","w","616.2.9"],["17.2","2023-12-11","r","w","617.1.17"],["17.3","2024-01-22","r","w","617.2.4"],["17.4","2024-03-05","r","w","618.1.15"],["17.5","2024-05-13","r","w","618.2.12"],["17.6","2024-07-29","r","w","618.3.11"],["18.1","2024-10-28","r","w","619.2.8"],["18.2","2024-12-11","r","w","620.1.16"],["18.3","2025-01-27","r","w","620.2.4"],["18.4","2025-03-31","r","w","621.1.15"],["18.5","2025-05-12","r","w","621.2.5"],["18.6","2025-07-29","r","w","621.3.11"],["26.1","2025-11-03","r","w","622.2.11"],["26.2","2025-12-12","r","w","623.1.14"],["26.3","2025-12-15","c","w","623.2.2"],["3.2","2010-04-03","r","w","531.21"],["4.2","2010-11-22","r","w","533.17"],["9.3","2016-03-21","r","w","601.5.17"]]},samsunginternet_android:{releases:[["1.0","2013-04-27","r","w","535.19"],["1.5","2013-09-25","r","b","28"],["1.6","2014-04-11","r","b","28"],["10.0","2019-08-22","r","b","71"],["10.2","2019-10-09","r","b","71"],["11.0","2019-12-05","r","b","75"],["11.2","2020-03-22","r","b","75"],["12.0","2020-06-19","r","b","79"],["12.1","2020-07-07","r","b","79"],["13.0","2020-12-02","r","b","83"],["13.2","2021-01-20","r","b","83"],["14.0","2021-04-17","r","b","87"],["14.2","2021-06-25","r","b","87"],["15.0","2021-08-13","r","b","90"],["16.0","2021-11-25","r","b","92"],["16.2","2022-03-06","r","b","92"],["17.0","2022-05-04","r","b","96"],["18.0","2022-08-08","r","b","99"],["18.1","2022-09-09","r","b","99"],["19.0","2022-11-01","r","b","102"],["19.1","2022-11-08","r","b","102"],["2.0","2014-10-17","r","b","34"],["2.1","2015-01-07","r","b","34"],["20.0","2023-02-10","r","b","106"],["21.0","2023-05-19","r","b","110"],["22.0","2023-07-14","r","b","111"],["23.0","2023-10-18","r","b","115"],["24.0","2024-01-25","r","b","117"],["25.0","2024-04-24","r","b","121"],["26.0","2024-06-07","r","b","122"],["27.0","2024-11-06","r","b","125"],["28.0","2025-04-02","r","b","130"],["29.0","2025-10-25","c","b","136"],["3.0","2015-04-10","r","b","38"],["3.2","2015-08-24","r","b","38"],["4.0","2016-03-11","r","b","44"],["4.2","2016-08-02","r","b","44"],["5.0","2016-12-15","r","b","51"],["5.2","2017-04-21","r","b","51"],["5.4","2017-05-17","r","b","51"],["6.0","2017-08-23","r","b","56"],["6.2","2017-10-26","r","b","56"],["6.4","2018-02-19","r","b","56"],["7.0","2018-03-16","r","b","59"],["7.2","2018-06-20","r","b","59"],["7.4","2018-09-12","r","b","59"],["8.0","2018-07-18","r","b","63"],["8.2","2018-12-21","r","b","63"],["9.0","2018-09-15","r","b","67"],["9.2","2019-04-02","r","b","67"],["9.4","2019-07-25","r","b","67"]]},webview_android:{releases:[["1","2008-09-23","r","w","523.12"],["2","2009-10-26","r","w","530.17"],["3","2011-02-22","r","w","534.13"],["4","2011-10-18","r","w","534.30"],["37","2014-09-03","r","b","37"],["38","2014-10-08","r","b","38"],["39","2014-11-12","r","b","39"],["40","2015-01-21","r","b","40"],["41","2015-03-11","r","b","41"],["42","2015-04-15","r","b","42"],["43","2015-05-27","r","b","43"],["44","2015-07-29","r","b","44"],["45","2015-09-01","r","b","45"],["46","2015-10-14","r","b","46"],["47","2015-12-02","r","b","47"],["48","2016-01-26","r","b","48"],["49","2016-03-09","r","b","49"],["50","2016-04-13","r","b","50"],["51","2016-06-08","r","b","51"],["52","2016-07-27","r","b","52"],["53","2016-09-07","r","b","53"],["54","2016-10-19","r","b","54"],["55","2016-12-06","r","b","55"],["56","2017-02-01","r","b","56"],["57","2017-03-16","r","b","57"],["58","2017-04-25","r","b","58"],["59","2017-06-06","r","b","59"],["60","2017-08-01","r","b","60"],["61","2017-09-05","r","b","61"],["62","2017-10-24","r","b","62"],["63","2017-12-05","r","b","63"],["64","2018-01-23","r","b","64"],["65","2018-03-06","r","b","65"],["66","2018-04-17","r","b","66"],["67","2018-05-31","r","b","67"],["68","2018-07-24","r","b","68"],["69","2018-09-04","r","b","69"],["70","2018-10-17","r","b","70"],["71","2018-12-04","r","b","71"],["72","2019-01-29","r","b","72"],["73","2019-03-12","r","b","73"],["74","2019-04-24","r","b","74"],["75","2019-06-04","r","b","75"],["76","2019-07-30","r","b","76"],["77","2019-09-10","r","b","77"],["78","2019-10-22","r","b","78"],["79","2019-12-17","r","b","79"],["80","2020-02-04","r","b","80"],["81","2020-04-07","r","b","81"],["83","2020-05-19","r","b","83"],["84","2020-07-27","r","b","84"],["85","2020-08-25","r","b","85"],["86","2020-10-20","r","b","86"],["87","2020-11-17","r","b","87"],["88","2021-01-19","r","b","88"],["89","2021-03-02","r","b","89"],["90","2021-04-13","r","b","90"],["91","2021-05-25","r","b","91"],["92","2021-07-20","r","b","92"],["93","2021-08-31","r","b","93"],["94","2021-09-21","r","b","94"],["95","2021-10-19","r","b","95"],["96","2021-11-15","r","b","96"],["97","2022-01-04","r","b","97"],["98","2022-02-01","r","b","98"],["99","2022-03-01","r","b","99"],["100","2022-03-29","r","b","100"],["101","2022-04-26","r","b","101"],["102","2022-05-24","r","b","102"],["103","2022-06-21","r","b","103"],["104","2022-08-02","r","b","104"],["105","2022-09-02","r","b","105"],["106","2022-09-27","r","b","106"],["107","2022-10-25","r","b","107"],["108","2022-11-29","r","b","108"],["109","2023-01-10","r","b","109"],["110","2023-02-07","r","b","110"],["111","2023-03-01","r","b","111"],["112","2023-04-04","r","b","112"],["113","2023-05-02","r","b","113"],["114","2023-05-30","r","b","114"],["115","2023-07-21","r","b","115"],["116","2023-08-15","r","b","116"],["117","2023-09-12","r","b","117"],["118","2023-10-10","r","b","118"],["119","2023-10-31","r","b","119"],["120","2023-12-05","r","b","120"],["121","2024-01-23","r","b","121"],["122","2024-02-20","r","b","122"],["123","2024-03-19","r","b","123"],["124","2024-04-16","r","b","124"],["125","2024-05-14","r","b","125"],["126","2024-06-11","r","b","126"],["127","2024-07-23","r","b","127"],["128","2024-08-20","r","b","128"],["129","2024-09-17","r","b","129"],["130","2024-10-15","r","b","130"],["131","2024-11-12","r","b","131"],["132","2025-01-14","r","b","132"],["133","2025-02-04","r","b","133"],["134","2025-03-04","r","b","134"],["135","2025-04-01","r","b","135"],["136","2025-04-29","r","b","136"],["137","2025-05-27","r","b","137"],["138","2025-06-24","r","b","138"],["139","2025-08-05","r","b","139"],["140","2025-09-02","r","b","140"],["141","2025-09-30","r","b","141"],["142","2025-10-28","r","b","142"],["143","2025-12-02","c","b","143"],["144","2026-01-13","b","b","144"],["145","2026-02-10","n","b","145"],["146",null,"p","b","146"],["1.5","2009-04-27","r","w","525.20"],["2.2","2010-05-20","r","w","533.1"],["4.4","2013-12-09","r","b","30"],["4.4.3","2014-06-02","r","b","33"]]}},a={ya_android:{releases:[["1.0","u","u","b","25"],["1.5","u","u","b","22"],["1.6","u","u","b","25"],["1.7","u","u","b","25"],["1.20","u","u","b","25"],["2.5","u","u","b","25"],["3.2","u","u","b","25"],["4.6","u","u","b","25"],["5.3","u","u","b","25"],["5.4","u","u","b","25"],["7.4","u","u","b","25"],["9.6","u","u","b","25"],["10.5","u","u","b","25"],["11.4","u","u","b","25"],["11.5","u","u","b","25"],["12.7","u","u","b","25"],["13.9","u","u","b","28"],["13.10","u","u","b","28"],["13.11","u","u","b","28"],["13.12","u","u","b","30"],["14.2","u","u","b","32"],["14.4","u","u","b","33"],["14.5","u","u","b","34"],["14.7","u","u","b","35"],["14.8","u","u","b","36"],["14.10","u","u","b","37"],["14.12","u","u","b","38"],["15.2","u","u","b","40"],["15.4","u","u","b","41"],["15.6","u","u","b","42"],["15.7","u","u","b","43"],["15.9","u","u","b","44"],["15.10","u","u","b","45"],["15.12","u","u","b","46"],["16.2","u","u","b","47"],["16.3","u","u","b","47"],["16.4","u","u","b","49"],["16.6","u","u","b","50"],["16.7","u","u","b","51"],["16.9","u","u","b","52"],["16.10","u","u","b","53"],["16.11","u","u","b","54"],["17.1","u","u","b","55"],["17.3","u","u","b","56"],["17.4","u","u","b","57"],["17.6","u","u","b","58"],["17.7","u","u","b","59"],["17.9","u","u","b","60"],["17.10","u","u","b","61"],["17.11","u","u","b","62"],["18.1","u","u","b","63"],["18.2","u","u","b","63"],["18.3","u","u","b","64"],["18.4","u","u","b","65"],["18.6","u","u","b","66"],["18.7","u","u","b","67"],["18.9","u","u","b","68"],["18.10","u","u","b","69"],["18.11","u","u","b","70"],["19.1","u","u","b","71"],["19.3","u","u","b","72"],["19.4","u","u","b","73"],["19.5","u","u","b","75"],["19.6","u","u","b","75"],["19.7","u","u","b","75"],["19.9","u","u","b","76"],["19.10","u","u","b","77"],["19.11","u","u","b","78"],["19.12","u","u","b","78"],["20.2","u","u","b","79"],["20.3","u","u","b","80"],["20.4","u","u","b","81"],["20.6","u","u","b","81"],["20.7","u","u","b","83"],["20.8","2020-09-02","u","b","84"],["20.9","2020-09-27","u","b","85"],["20.11","2020-11-11","u","b","86"],["20.12","2020-12-20","u","b","87"],["21.1","2021-12-31","u","b","88"],["21.2","u","u","b","88"],["21.3","2021-04-04","u","b","89"],["21.5","u","u","b","90"],["21.6","2021-09-28","u","b","91"],["21.8","2021-09-28","u","b","92"],["21.9","2021-09-29","u","b","93"],["21.11","2021-10-29","u","b","94"],["22.1","2021-12-31","u","b","96"],["22.3","2022-03-25","u","b","98"],["22.4","u","u","b","92"],["22.5","2022-05-20","u","b","100"],["22.7","2022-07-07","u","b","102"],["22.8","u","u","b","104"],["22.9","2022-08-27","u","b","104"],["22.11","2022-11-11","u","b","106"],["23.1","2023-01-10","u","b","108"],["23.3","2023-03-26","u","b","110"],["23.5","2023-05-19","u","b","112"],["23.7","2023-07-06","u","b","114"],["23.9","2023-09-13","u","b","116"],["23.11","2023-11-15","u","b","118"],["24.1","2024-01-18","u","b","120"],["24.2","2024-03-25","u","b","120"],["24.4","2024-03-27","u","b","122"],["24.6","2024-06-04","u","b","124"],["24.7","2024-07-18","u","b","126"],["24.9","2024-10-01","u","b","126"],["24.10","2024-10-11","u","b","128"],["24.12","2024-11-30","u","b","130"],["25.2","2025-04-24","u","b","132"],["25.3","2025-04-23","u","b","132"],["25.4","2025-04-23","u","b","134"],["25.6","2025-09-04","u","b","136"],["25.8","2025-08-30","u","b","138"],["25.10","2025-10-09","u","b","140"],["25.12","2025-12-07","u","b","142"]]},uc_android:{releases:[["10.5","u","u","b","31"],["10.7","u","u","b","31"],["10.8","u","u","b","31"],["10.10","u","u","b","31"],["11.0","u","u","b","31"],["11.1","u","u","b","40"],["11.2","u","u","b","40"],["11.3","u","u","b","40"],["11.4","u","u","b","40"],["11.5","u","u","b","40"],["11.6","u","u","b","57"],["11.8","u","u","b","57"],["11.9","u","u","b","57"],["12.0","u","u","b","57"],["12.1","u","u","b","57"],["12.2","u","u","b","57"],["12.3","u","u","b","57"],["12.4","u","u","b","57"],["12.5","u","u","b","57"],["12.6","u","u","b","57"],["12.7","u","u","b","57"],["12.8","u","u","b","57"],["12.9","u","u","b","57"],["12.10","u","u","b","57"],["12.11","u","u","b","57"],["12.12","u","u","b","57"],["12.13","u","u","b","57"],["12.14","u","u","b","57"],["13.0","u","u","b","57"],["13.1","u","u","b","57"],["13.2","u","u","b","57"],["13.3","2020-09-09","u","b","78"],["13.4","2021-09-28","u","b","78"],["13.5","2023-08-25","u","b","78"],["13.6","2023-12-17","u","b","78"],["13.7","2023-06-24","u","b","78"],["13.8","2022-04-30","u","b","78"],["13.9","2022-05-18","u","b","78"],["15.0","2022-08-24","u","b","78"],["15.1","2022-11-11","u","b","78"],["15.2","2023-04-23","u","b","78"],["15.3","2023-03-17","u","b","100"],["15.4","2023-10-25","u","b","100"],["15.5","2023-08-22","u","b","100"],["16.0","2023-08-24","u","b","100"],["16.1","2023-10-15","u","b","100"],["16.2","2023-12-09","u","b","100"],["16.3","2024-03-08","u","b","100"],["16.4","2024-10-03","u","b","100"],["16.5","2024-05-30","u","b","100"],["16.6","2024-07-23","u","b","100"],["17.0","2024-08-24","u","b","100"],["17.1","2024-09-26","u","b","100"],["17.2","2024-11-29","u","b","100"],["17.3","2025-01-07","u","b","100"],["17.4","2025-02-26","u","b","100"],["17.5","2025-04-08","u","b","100"],["17.6","2025-05-15","u","b","123"],["17.7","2025-06-11","u","b","123"],["17.8","2025-07-30","u","b","123"],["18.0","2025-08-17","u","b","123"],["18.1","2025-10-04","u","b","123"],["18.2","2025-11-04","u","b","123"],["18.3","2025-12-12","u","b","123"]]},qq_android:{releases:[["6.0","u","u","b","37"],["6.1","u","u","b","37"],["6.2","u","u","b","37"],["6.3","u","u","b","37"],["6.4","u","u","b","37"],["6.6","u","u","b","37"],["6.7","u","u","b","37"],["6.8","u","u","b","37"],["6.9","u","u","b","37"],["7.0","u","u","b","37"],["7.1","u","u","b","37"],["7.2","u","u","b","37"],["7.3","u","u","b","37"],["7.4","u","u","b","37"],["7.5","u","u","b","37"],["7.6","u","u","b","37"],["7.7","u","u","b","37"],["7.8","u","u","b","37"],["7.9","u","u","b","37"],["8.0","u","u","b","37"],["8.1","u","u","b","57"],["8.2","u","u","b","57"],["8.3","u","u","b","57"],["8.4","u","u","b","57"],["8.5","u","u","b","57"],["8.6","u","u","b","57"],["8.7","u","u","b","57"],["8.8","u","u","b","57"],["8.9","u","u","b","57"],["9.1","u","u","b","57"],["9.6","u","u","b","66"],["9.7","u","u","b","66"],["9.8","u","u","b","66"],["10.0","u","u","b","66"],["10.1","u","u","b","66"],["10.2","u","u","b","66"],["10.3","u","u","b","66"],["10.4","u","u","b","66"],["10.5","u","u","b","66"],["10.7","2020-09-09","u","b","66"],["10.9","2020-11-22","u","b","77"],["11.0","u","u","b","77"],["11.2","2021-01-30","u","b","77"],["11.3","2021-03-31","u","b","77"],["11.7","2021-11-02","u","b","89"],["11.9","u","u","b","89"],["12.0","2021-11-04","u","b","89"],["12.1","2021-11-05","u","b","89"],["12.2","2021-12-07","u","b","89"],["12.5","2022-04-07","u","b","89"],["12.7","2022-05-21","u","b","89"],["12.8","2022-06-30","u","b","89"],["12.9","2022-07-26","u","b","89"],["13.0","2022-08-15","u","b","89"],["13.1","2022-09-10","u","b","89"],["13.2","2022-10-26","u","b","89"],["13.3","2022-11-09","u","b","89"],["13.4","2023-04-26","u","b","98"],["13.5","2023-02-06","u","b","98"],["13.6","2023-02-09","u","b","98"],["13.7","2023-04-21","u","b","98"],["13.8","2023-04-21","u","b","98"],["14.0","2023-12-12","u","b","98"],["14.1","2023-07-16","u","b","98"],["14.2","2023-10-14","u","b","109"],["14.3","2023-09-13","u","b","109"],["14.4","2023-10-31","u","b","109"],["14.5","2023-11-12","u","b","109"],["14.6","2023-12-24","u","b","109"],["14.7","2024-01-18","u","b","109"],["14.8","2024-03-04","u","b","109"],["14.9","2024-04-09","u","b","109"],["15.0","2024-04-17","u","b","109"],["15.1","2024-05-18","u","b","109"],["15.2","2024-10-24","u","b","109"],["15.3","2024-07-28","u","b","109"],["15.4","2024-09-07","u","b","109"],["15.5","2024-09-24","u","b","109"],["15.6","2024-10-24","u","b","109"],["15.7","2024-12-03","u","b","109"],["15.8","2024-12-11","u","b","109"],["15.9","2025-02-01","u","b","109"],["19.1","2025-07-08","u","b","121"],["19.2","2025-07-15","u","b","121"],["19.3","2025-08-31","u","b","121"],["19.4","2025-09-20","u","b","121"],["19.5","2025-10-23","u","b","121"],["19.6","2025-11-17","u","b","121"],["19.7","2025-12-18","u","b","121"]]},kai_os:{releases:[["1.0","2017-03-01","u","g","37"],["2.0","2017-07-01","u","g","48"],["2.5","2017-07-01","u","g","48"],["3.0","2021-09-01","u","g","84"],["3.1","2022-03-01","u","g","84"],["4.0","2025-05-01","u","g","123"]]},facebook_android:{releases:[["66","u","u","b","48"],["68","u","u","b","48"],["74","u","u","b","50"],["75","u","u","b","50"],["76","u","u","b","50"],["77","u","u","b","50"],["78","u","u","b","50"],["79","u","u","b","50"],["80","u","u","b","51"],["81","u","u","b","51"],["82","u","u","b","51"],["83","u","u","b","51"],["84","u","u","b","51"],["86","u","u","b","51"],["87","u","u","b","52"],["88","u","u","b","52"],["89","u","u","b","52"],["90","u","u","b","52"],["91","u","u","b","52"],["92","u","u","b","52"],["93","u","u","b","52"],["94","u","u","b","52"],["95","u","u","b","53"],["96","u","u","b","53"],["97","u","u","b","53"],["98","u","u","b","53"],["99","u","u","b","53"],["100","u","u","b","54"],["101","u","u","b","54"],["103","u","u","b","54"],["104","u","u","b","54"],["105","u","u","b","54"],["106","u","u","b","55"],["107","u","u","b","55"],["108","u","u","b","55"],["109","u","u","b","55"],["110","u","u","b","55"],["111","u","u","b","55"],["112","u","u","b","56"],["113","u","u","b","56"],["114","u","u","b","56"],["115","u","u","b","56"],["116","u","u","b","56"],["117","u","u","b","57"],["118","u","u","b","57"],["119","u","u","b","57"],["120","u","u","b","57"],["121","u","u","b","57"],["122","u","u","b","58"],["123","u","u","b","58"],["124","u","u","b","58"],["125","u","u","b","58"],["126","u","u","b","58"],["127","u","u","b","58"],["128","u","u","b","58"],["129","u","u","b","58"],["130","u","u","b","59"],["131","u","u","b","59"],["132","u","u","b","59"],["133","u","u","b","59"],["134","u","u","b","59"],["135","u","u","b","59"],["136","u","u","b","59"],["137","u","u","b","59"],["138","u","u","b","60"],["140","u","u","b","60"],["142","u","u","b","61"],["143","u","u","b","61"],["144","u","u","b","61"],["145","u","u","b","61"],["146","u","u","b","61"],["147","u","u","b","61"],["148","u","u","b","61"],["149","u","u","b","62"],["150","u","u","b","62"],["151","u","u","b","62"],["152","u","u","b","62"],["153","u","u","b","63"],["154","u","u","b","63"],["155","u","u","b","63"],["156","u","u","b","63"],["157","u","u","b","64"],["158","u","u","b","64"],["159","u","u","b","64"],["160","u","u","b","64"],["161","u","u","b","64"],["162","u","u","b","64"],["163","u","u","b","65"],["164","u","u","b","65"],["165","u","u","b","65"],["166","u","u","b","65"],["167","u","u","b","65"],["168","u","u","b","65"],["169","u","u","b","66"],["170","u","u","b","66"],["171","u","u","b","66"],["172","u","u","b","66"],["173","u","u","b","66"],["174","u","u","b","66"],["175","u","u","b","67"],["176","u","u","b","67"],["177","u","u","b","67"],["178","u","u","b","67"],["180","u","u","b","67"],["181","u","u","b","67"],["182","u","u","b","67"],["183","u","u","b","68"],["184","u","u","b","68"],["185","u","u","b","68"],["186","u","u","b","68"],["187","u","u","b","68"],["188","u","u","b","68"],["202","u","u","b","71"],["227","u","u","b","75"],["228","u","u","b","75"],["229","u","u","b","75"],["230","u","u","b","75"],["231","u","u","b","75"],["233","u","u","b","76"],["235","u","u","b","76"],["236","u","u","b","76"],["237","u","u","b","76"],["238","u","u","b","76"],["240","u","u","b","77"],["241","u","u","b","77"],["242","u","u","b","77"],["243","u","u","b","77"],["244","u","u","b","78"],["245","u","u","b","78"],["246","u","u","b","78"],["247","u","u","b","78"],["248","u","u","b","78"],["249","u","u","b","78"],["250","u","u","b","78"],["251","u","u","b","79"],["252","u","u","b","79"],["253","u","u","b","79"],["254","u","u","b","79"],["255","u","u","b","79"],["256","u","u","b","80"],["257","u","u","b","80"],["258","u","u","b","80"],["259","u","u","b","80"],["260","u","u","b","80"],["261","u","u","b","80"],["262","u","u","b","80"],["263","u","u","b","80"],["264","u","u","b","80"],["265","u","u","b","80"],["266","u","u","b","81"],["267","u","u","b","81"],["268","u","u","b","81"],["269","u","u","b","81"],["270","u","u","b","81"],["271","u","u","b","81"],["272","u","u","b","83"],["273","u","u","b","83"],["274","u","u","b","83"],["275","u","u","b","83"],["297","2020-12-02","u","b","86"],["348","2021-12-19","u","b","96"],["399","2023-02-04","u","b","109"],["400","2023-02-10","u","b","109"],["420","2023-06-28","u","b","114"],["430","2023-09-03","u","b","116"],["434","2023-10-05","u","b","117"],["436","2023-10-13","u","b","117"],["437","u","u","b","118"],["438","2023-10-28","u","b","118"],["439","2023-11-11","u","b","119"],["440","2023-11-12","u","b","119"],["441","2023-11-20","u","b","119"],["442","2023-11-29","u","b","119"],["443","2023-12-07","u","b","120"],["444","2023-12-13","u","b","120"],["445","2023-12-21","u","b","120"],["446","2024-01-06","u","b","120"],["447","2024-01-12","u","b","120"],["448","2024-01-29","u","b","121"],["449","2024-02-02","u","b","121"],["450","2024-02-05","u","b","121"],["451","2024-02-17","u","b","121"],["452","2024-02-25","u","b","122"],["453","2024-02-28","u","b","122"],["454","2024-03-04","u","b","122"],["465","2024-07-07","u","b","126"],["466","u","u","b","126"],["469","u","u","b","126"],["471","2024-07-10","u","b","126"],["472","2024-07-11","u","b","126"],["474","2024-07-30","u","b","127"],["475","2024-08-01","u","b","127"],["476","2024-08-09","u","b","127"],["477","2024-08-16","u","b","127"],["478","2024-08-21","u","b","128"],["479","2024-08-31","u","b","128"],["480","2024-09-07","u","b","128"],["481","2024-09-14","u","b","128"],["482","2024-09-20","u","b","129"],["483","2024-09-27","u","b","129"],["484","2024-10-04","u","b","129"],["485","2024-10-11","u","b","129"],["486","2024-10-18","u","b","130"],["487","2024-10-26","u","b","130"],["488","2024-11-02","u","b","130"],["489","2024-11-09","u","b","130"],["494","2024-12-26","u","b","131"],["497","2025-01-26","u","b","132"],["503","2025-03-12","u","b","134"],["514","2025-05-28","u","b","136"],["515","2025-05-31","u","b","137"]]},instagram_android:{releases:[["23","u","u","b","62"],["24","u","u","b","62"],["25","u","u","b","62"],["26","u","u","b","63"],["27","u","u","b","63"],["28","u","u","b","63"],["29","u","u","b","63"],["30","u","u","b","63"],["31","u","u","b","64"],["32","u","u","b","64"],["33","u","u","b","64"],["34","u","u","b","64"],["35","u","u","b","65"],["36","u","u","b","65"],["37","u","u","b","65"],["38","u","u","b","65"],["39","u","u","b","65"],["40","u","u","b","65"],["41","u","u","b","65"],["42","u","u","b","66"],["43","u","u","b","66"],["44","u","u","b","66"],["45","u","u","b","66"],["46","u","u","b","66"],["47","u","u","b","66"],["48","u","u","b","67"],["49","u","u","b","67"],["50","u","u","b","67"],["51","u","u","b","67"],["52","u","u","b","67"],["53","u","u","b","67"],["54","u","u","b","67"],["55","u","u","b","67"],["56","u","u","b","68"],["57","u","u","b","68"],["58","u","u","b","68"],["59","u","u","b","68"],["60","u","u","b","68"],["61","u","u","b","68"],["65","u","u","b","69"],["66","u","u","b","69"],["68","u","u","b","69"],["72","u","u","b","70"],["74","u","u","b","71"],["75","u","u","b","71"],["79","u","u","b","71"],["81","u","u","b","72"],["82","u","u","b","72"],["83","u","u","b","72"],["84","u","u","b","73"],["86","u","u","b","73"],["95","u","u","b","74"],["96","u","u","b","80"],["97","u","u","b","80"],["98","u","u","b","80"],["103","u","u","b","80"],["104","u","u","b","80"],["117","u","u","b","80"],["118","u","u","b","80"],["119","u","u","b","80"],["120","u","u","b","80"],["121","u","u","b","80"],["127","u","u","b","80"],["128","u","u","b","80"],["129","u","u","b","80"],["130","u","u","b","80"],["131","u","u","b","80"],["132","u","u","b","80"],["133","u","u","b","80"],["134","u","u","b","80"],["135","u","u","b","80"],["136","u","u","b","80"],["137","u","u","b","81"],["138","u","u","b","81"],["139","u","u","b","81"],["140","u","u","b","81"],["141","u","u","b","81"],["142","u","u","b","81"],["143","u","u","b","83"],["144","u","u","b","83"],["145","u","u","b","83"],["146","u","u","b","83"],["153","u","u","b","84"],["163","u","u","b","92"],["164","u","u","b","92"],["230","u","u","b","92"],["258","2022-11-04","u","b","106"],["259","2022-11-04","u","b","106"],["279","2023-12-31","u","b","109"],["281","u","u","b","109"],["288","u","u","b","114"],["289","2023-12-21","u","b","114"],["290","2023-12-30","u","b","114"],["292","u","u","b","115"],["295","u","u","b","115"],["296","u","u","b","115"],["297","u","u","b","115"],["298","2024-01-11","u","b","115"],["299","u","u","b","115"],["300","u","u","b","116"],["301","2024-01-12","u","b","116"],["302","u","u","b","117"],["303","u","u","b","117"],["304","u","u","b","117"],["305","u","u","b","117"],["306","2024-01-17","u","b","118"],["307","u","u","b","118"],["308","2024-01-19","u","b","118"],["309","u","u","b","119"],["310","u","u","b","119"],["311","u","u","b","120"],["312","u","u","b","120"],["313","u","u","b","120"],["314","u","u","b","120"],["315","2024-01-19","u","b","120"],["316","2024-01-25","u","b","120"],["317","2024-02-03","u","b","121"],["318","2024-02-16","u","b","121"],["320","2024-03-04","u","b","121"],["321","2024-03-07","u","b","122"],["338","2024-07-06","u","b","126"],["346","2024-09-01","u","b","127"],["347","2024-09-11","u","b","127"],["349","2024-09-20","u","b","128"],["355","2024-11-06","u","b","130"],["366","u","u","b","132"],["367","2025-02-15","u","b","132"],["378","2025-05-03","u","b","135"],["381","2025-06-19","u","b","137"],["382","2025-06-19","u","b","137"],["383","2025-06-18","u","b","137"],["384","2025-06-16","u","b","137"],["385","2025-06-27","u","b","137"],["387","2025-07-09","u","b","137"],["390","2025-07-26","u","b","138"],["392","2025-08-12","u","b","138"],["394","2025-08-26","u","b","139"],["395","2025-09-13","u","b","139"],["396","2025-09-20","u","b","139"],["397","2025-09-19","u","b","139"],["399","2025-09-28","u","b","140"],["400","2025-10-06","u","b","141"],["401","2025-10-08","u","b","141"],["404","2025-10-31","u","b","141"],["406","2025-11-16","u","b","141"],["407","2025-11-23","u","b","142"],["408","2025-11-28","u","b","142"],["409","2025-12-16","u","b","143"],["410","2025-12-17","u","b","143"]]}},r=[["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1",fa:"4",s:"4",si:"3.2"}],["2019-03-25",{c:"66",ca:"66",e:"16",f:"57",fa:"57",s:"12.1",si:"12.2"}],["2019-03-25",{c:"66",ca:"66",e:"16",f:"57",fa:"57",s:"12.1",si:"12.2"}],["2024-03-19",{c:"116",ca:"116",e:"116",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2025-06-26",{c:"138",ca:"138",e:"138",f:"118",fa:"118",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"17",ca:"18",e:"12",f:"5",fa:"5",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-04-16",{c:"123",ca:"123",e:"123",f:"125",fa:"125",s:"17.4",si:"17.4"}],["2020-01-15",{c:"37",ca:"37",e:"79",f:"27",fa:"27",s:"9.1",si:"9.3"}],["2024-07-09",{c:"77",ca:"77",e:"79",f:"128",fa:"128",s:"17.4",si:"17.4"}],["2016-06-07",{c:"32",ca:"30",e:"12",f:"47",fa:"47",s:"8",si:"8"}],["2023-07-04",{c:"112",ca:"112",e:"112",f:"115",fa:"115",s:"16",si:"16"}],["2015-09-30",{c:"43",ca:"43",e:"12",f:"16",fa:"16",s:"9",si:"9"}],["2022-03-14",{c:"84",ca:"84",e:"84",f:"80",fa:"80",s:"15.4",si:"15.4"}],["2023-10-24",{c:"103",ca:"103",e:"103",f:"119",fa:"119",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-03-14",{c:"92",ca:"92",e:"92",f:"90",fa:"90",s:"15.4",si:"15.4"}],["2023-07-04",{c:"110",ca:"110",e:"110",f:"115",fa:"115",s:"16",si:"16"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"34",fa:"34",s:"10",si:"10"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"37",fa:"37",s:"10",si:"10"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"37",fa:"37",s:"10",si:"10"}],["2022-08-23",{c:"97",ca:"97",e:"97",f:"104",fa:"104",s:"15.4",si:"15.4"}],["2020-01-15",{c:"69",ca:"69",e:"79",f:"62",fa:"62",s:"12",si:"12"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"38",fa:"38",s:"10",si:"10"}],["2024-01-25",{c:"121",ca:"121",e:"121",f:"115",fa:"115",s:"16.4",si:"16.4"}],["2024-03-05",{c:"117",ca:"117",e:"117",f:"119",fa:"119",s:"17.4",si:"17.4"}],["2016-09-20",{c:"47",ca:"47",e:"14",f:"43",fa:"43",s:"10",si:"10"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"5"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3",fa:"4",s:"4",si:"3.2"}],["2018-05-09",{c:"66",ca:"66",e:"14",f:"60",fa:"60",s:"10",si:"10"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"38",fa:"38",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2021-09-20",{c:"88",ca:"88",e:"88",f:"89",fa:"89",s:"15",si:"15"}],["2017-04-05",{c:"55",ca:"55",e:"15",f:"52",fa:"52",s:"10.1",si:"10.3"}],["2024-06-11",{c:"76",ca:"76",e:"79",f:"127",fa:"127",s:"13.1",si:"13.4"}],["2020-01-15",{c:"63",ca:"63",e:"79",f:"57",fa:"57",s:"12",si:"12"}],["2020-01-15",{c:"63",ca:"63",e:"79",f:"57",fa:"57",s:"12",si:"12"}],["2025-04-01",{c:"133",ca:"133",e:"133",f:"137",fa:"137",s:"18.4",si:"18.4"}],["2025-11-11",{c:"90",ca:"90",e:"90",f:"145",fa:"145",s:"16.4",si:"16.4"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"3"}],["2021-04-26",{c:"66",ca:"66",e:"79",f:"76",fa:"79",s:"14.1",si:"14.5"}],["2023-02-09",{c:"110",ca:"110",e:"110",f:"86",fa:"86",s:"15",si:"15"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"4",si:"3.2"}],["2020-01-15",{c:"54",ca:"54",e:"79",f:"63",fa:"63",s:"10.1",si:"10.3"}],["2024-01-26",{c:"85",ca:"85",e:"121",f:"93",fa:"93",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-03-14",{c:"37",ca:"37",e:"79",f:"47",fa:"47",s:"15.4",si:"15.4"}],["2024-09-16",{c:"76",ca:"76",e:"79",f:"103",fa:"103",s:"18",si:"18"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3.6",fa:"4",s:"1.3",si:"1"}],["2022-03-14",{c:"1",ca:"18",e:"12",f:"25",fa:"25",s:"15.4",si:"15.4"}],["2020-01-15",{c:"35",ca:"59",e:"79",f:"30",fa:"54",s:"8",si:"8"}],["2015-07-29",{c:"21",ca:"25",e:"12",f:"22",fa:"22",s:"5.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3.6",fa:"4",s:"1.3",si:"1"}],["2015-07-29",{c:"21",ca:"25",e:"12",f:"22",fa:"22",s:"5.1",si:"4"}],["2015-07-29",{c:"25",ca:"25",e:"12",f:"13",fa:"14",s:"7",si:"7"}],["2016-09-20",{c:"30",ca:"30",e:"12",f:"49",fa:"49",s:"8",si:"8"}],["2015-07-29",{c:"21",ca:"25",e:"12",f:"9",fa:"18",s:"5.1",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2016-09-20",{c:"30",ca:"30",e:"12",f:"4",fa:"4",s:"10",si:"10"}],["2020-01-15",{c:"16",ca:"18",e:"79",f:"10",fa:"10",s:"6",si:"6"}],["2015-07-29",{c:"≤15",ca:"18",e:"12",f:"10",fa:"10",s:"≤4",si:"≤3.2"}],["2018-04-12",{c:"39",ca:"42",e:"14",f:"31",fa:"31",s:"11.1",si:"11.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1.5",fa:"4",s:"4",si:"3.2"}],["2020-09-16",{c:"67",ca:"67",e:"79",f:"68",fa:"68",s:"14",si:"14"}],["2021-09-20",{c:"67",ca:"67",e:"79",f:"68",fa:"68",s:"15",si:"15"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2017-02-01",{c:"56",ca:"56",e:"12",f:"50",fa:"50",s:"9.1",si:"9.3"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"14",s:"1",si:"3"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"4",fa:"4",s:"5.1",si:"5"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"29",fa:"29",s:"5.1",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2022-03-14",{c:"54",ca:"54",e:"79",f:"38",fa:"38",s:"15.4",si:"15.4"}],["2017-09-19",{c:"50",ca:"51",e:"15",f:"44",fa:"44",s:"11",si:"11"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"26",ca:"28",e:"12",f:"16",fa:"16",s:"7",si:"7"}],["2023-06-06",{c:"110",ca:"110",e:"110",f:"114",fa:"114",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1.5",fa:"4",s:"2",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1.5",fa:"4",s:"2",si:"1"}],["2024-09-16",{c:"99",ca:"99",e:"99",f:"28",fa:"28",s:"18",si:"18"}],["2023-04-11",{c:"99",ca:"99",e:"99",f:"112",fa:"112",s:"16.4",si:"16.4"}],["2023-12-11",{c:"99",ca:"99",e:"99",f:"113",fa:"113",s:"17.2",si:"17.2"}],["2023-04-11",{c:"99",ca:"99",e:"99",f:"112",fa:"112",s:"16.4",si:"16.4"}],["2023-12-11",{c:"118",ca:"118",e:"118",f:"97",fa:"97",s:"17.2",si:"17.2"}],["2020-01-15",{c:"51",ca:"51",e:"79",f:"43",fa:"43",s:"11",si:"11"}],["2020-01-15",{c:"57",ca:"57",e:"79",f:"53",fa:"53",s:"11.1",si:"11.3"}],["2022-03-14",{c:"99",ca:"99",e:"99",f:"97",fa:"97",s:"15.4",si:"15.4"}],["2020-01-15",{c:"49",ca:"49",e:"79",f:"47",fa:"47",s:"9",si:"9"}],["2015-07-29",{c:"27",ca:"27",e:"12",f:"1",fa:"4",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2015-09-22",{c:"4",ca:"18",e:"12",f:"41",fa:"41",s:"5",si:"4.2"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1.5",fa:"4",s:"4",si:"4"}],["2024-03-05",{c:"105",ca:"105",e:"105",f:"106",fa:"106",s:"17.4",si:"17.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2016-03-08",{c:"42",ca:"42",e:"13",f:"45",fa:"45",s:"9",si:"9"}],["2023-09-18",{c:"117",ca:"117",e:"117",f:"63",fa:"63",s:"17",si:"17"}],["2021-01-21",{c:"88",ca:"88",e:"88",f:"71",fa:"79",s:"13.1",si:"13"}],["2020-01-15",{c:"55",ca:"55",e:"79",f:"49",fa:"49",s:"12.1",si:"12.2"}],["2023-11-02",{c:"119",ca:"119",e:"119",f:"54",fa:"54",s:"13.1",si:"13.4"}],["2017-03-27",{c:"41",ca:"41",e:"12",f:"22",fa:"22",s:"10.1",si:"10.3"}],["2025-03-31",{c:"121",ca:"121",e:"121",f:"127",fa:"127",s:"18.4",si:"18.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"15",si:"15"}],["2023-02-14",{c:"58",ca:"58",e:"79",f:"110",fa:"110",s:"10",si:"10"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"16.2",si:"16.2"}],["2022-02-03",{c:"98",ca:"98",e:"98",f:"96",fa:"96",s:"13",si:"13"}],["2020-01-15",{c:"53",ca:"53",e:"79",f:"31",fa:"31",s:"11.1",si:"11.3"}],["2017-03-07",{c:"50",ca:"50",e:"12",f:"52",fa:"52",s:"9",si:"9"}],["2020-07-28",{c:"50",ca:"50",e:"12",f:"71",fa:"79",s:"9",si:"9"}],["2025-08-19",{c:"137",ca:"137",e:"137",f:"142",fa:"142",s:"17",si:"17"}],["2017-04-19",{c:"26",ca:"26",e:"12",f:"53",fa:"53",s:"7",si:"7"}],["2023-05-09",{c:"80",ca:"80",e:"80",f:"113",fa:"113",s:"16.4",si:"16.4"}],["2020-11-17",{c:"69",ca:"69",e:"79",f:"83",fa:"83",s:"12.1",si:"12.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"4",fa:"4",s:"3",si:"1"}],["2018-12-11",{c:"40",ca:"40",e:"18",f:"51",fa:"64",s:"10.1",si:"10.3"}],["2023-03-27",{c:"73",ca:"73",e:"79",f:"101",fa:"101",s:"16.4",si:"16.4"}],["2022-03-14",{c:"52",ca:"52",e:"79",f:"69",fa:"79",s:"15.4",si:"15.4"}],["2022-09-12",{c:"105",ca:"105",e:"105",f:"101",fa:"101",s:"16",si:"16"}],["2023-09-18",{c:"83",ca:"83",e:"83",f:"107",fa:"107",s:"17",si:"17"}],["2022-03-14",{c:"52",ca:"52",e:"79",f:"69",fa:"79",s:"15.4",si:"15.4"}],["2022-03-14",{c:"52",ca:"52",e:"79",f:"69",fa:"79",s:"15.4",si:"15.4"}],["2022-03-14",{c:"52",ca:"52",e:"79",f:"69",fa:"79",s:"15.4",si:"15.4"}],["2022-07-26",{c:"52",ca:"52",e:"79",f:"103",fa:"103",s:"15.4",si:"15.4"}],["2023-02-14",{c:"105",ca:"105",e:"105",f:"110",fa:"110",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-09-15",{c:"108",ca:"108",e:"108",f:"130",fa:"130",s:"26",si:"26"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"4",fa:"4",s:"≤4",si:"≤3.2"}],["2025-03-04",{c:"51",ca:"51",e:"12",f:"136",fa:"136",s:"5.1",si:"5"}],["2024-09-16",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"18",si:"18"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"3.2"}],["2023-12-11",{c:"85",ca:"85",e:"85",f:"68",fa:"68",s:"17.2",si:"17.2"}],["2023-09-18",{c:"91",ca:"91",e:"91",f:"33",fa:"33",s:"17",si:"17"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1",fa:"25",s:"3",si:"1"}],["2023-12-11",{c:"59",ca:"59",e:"79",f:"98",fa:"98",s:"17.2",si:"17.2"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"60",fa:"60",s:"13",si:"13"}],["2016-08-02",{c:"25",ca:"25",e:"14",f:"23",fa:"23",s:"7",si:"7"}],["2020-01-15",{c:"46",ca:"46",e:"79",f:"31",fa:"31",s:"10.1",si:"10.3"}],["2015-09-30",{c:"28",ca:"28",e:"12",f:"22",fa:"22",s:"9",si:"9"}],["2020-01-15",{c:"61",ca:"61",e:"79",f:"55",fa:"55",s:"11",si:"11"}],["2015-07-29",{c:"16",ca:"18",e:"12",f:"4",fa:"4",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1.5",fa:"4",s:"4",si:"3.2"}],["2017-04-05",{c:"49",ca:"49",e:"15",f:"31",fa:"31",s:"9.1",si:"9.3"}],["2017-10-24",{c:"62",ca:"62",e:"14",f:"22",fa:"22",s:"10",si:"10"}],["2015-07-29",{c:"≤4",ca:"18",e:"12",f:"≤2",fa:"4",s:"≤3.1",si:"≤2"}],["2015-07-29",{c:"7",ca:"18",e:"12",f:"6",fa:"6",s:"5.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-02-20",{c:"111",ca:"111",e:"111",f:"123",fa:"123",s:"16.4",si:"16.4"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"4",fa:"4",s:"4",si:"5"}],["2020-01-15",{c:"10",ca:"18",e:"79",f:"4",fa:"4",s:"5",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"55",fa:"55",s:"11.1",si:"11.3"}],["2020-01-15",{c:"12",ca:"18",e:"79",f:"49",fa:"49",s:"6",si:"6"}],["2025-09-16",{c:"131",ca:"131",e:"131",f:"143",fa:"143",s:"18.4",si:"18.4"}],["2024-09-03",{c:"120",ca:"120",e:"120",f:"130",fa:"130",s:"17.2",si:"17.2"}],["2023-09-18",{c:"31",ca:"31",e:"12",f:"6",fa:"6",s:"17",si:"4.2"}],["2015-07-29",{c:"15",ca:"18",e:"12",f:"1",fa:"4",s:"6",si:"6"}],["2022-03-14",{c:"37",ca:"37",e:"79",f:"98",fa:"98",s:"15.4",si:"15.4"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"49",fa:"49",s:"16.4",si:"16.4"}],["2023-08-01",{c:"17",ca:"18",e:"79",f:"116",fa:"116",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"58",ca:"58",e:"79",f:"53",fa:"53",s:"13",si:"13"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["≤2017-04-05",{c:"1",ca:"18",e:"≤15",f:"3",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-12-12",{c:"128",ca:"128",e:"128",f:"20",fa:"20",s:"26.2",si:"26.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"61",ca:"61",e:"79",f:"33",fa:"33",s:"11",si:"11"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"1",fa:"4",s:"4",si:"3.2"}],["2016-03-21",{c:"31",ca:"31",e:"12",f:"12",fa:"14",s:"9.1",si:"9.3"}],["2019-09-19",{c:"14",ca:"18",e:"18",f:"20",fa:"20",s:"10.1",si:"13"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"3.2"}],["2022-05-03",{c:"98",ca:"98",e:"98",f:"100",fa:"100",s:"13.1",si:"13.4"}],["2020-01-15",{c:"43",ca:"43",e:"79",f:"46",fa:"46",s:"11.1",si:"11.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"1.5",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2019-03-25",{c:"42",ca:"42",e:"13",f:"38",fa:"38",s:"12.1",si:"12.2"}],["2021-11-02",{c:"77",ca:"77",e:"79",f:"94",fa:"94",s:"13.1",si:"13.4"}],["2021-09-20",{c:"93",ca:"93",e:"93",f:"91",fa:"91",s:"15",si:"15"}],["2025-12-12",{c:"76",ca:"76",e:"79",f:"89",fa:"89",s:"26.2",si:"26.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"118",fa:"118",s:"15.4",si:"15.4"}],["2017-03-27",{c:"52",ca:"52",e:"14",f:"52",fa:"52",s:"10.1",si:"10.3"}],["2018-04-30",{c:"38",ca:"38",e:"17",f:"47",fa:"35",s:"9",si:"9"}],["2021-09-20",{c:"56",ca:"56",e:"79",f:"51",fa:"51",s:"15",si:"15"}],["2020-09-16",{c:"63",ca:"63",e:"17",f:"47",fa:"36",s:"14",si:"14"}],["2020-02-07",{c:"40",ca:"40",e:"80",f:"58",fa:"28",s:"9",si:"9"}],["2016-06-07",{c:"34",ca:"34",e:"12",f:"47",fa:"47",s:"9.1",si:"9.3"}],["2017-03-27",{c:"42",ca:"42",e:"14",f:"39",fa:"39",s:"10.1",si:"10.3"}],["2024-10-29",{c:"103",ca:"103",e:"103",f:"132",fa:"132",s:"17.2",si:"17.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"8",ca:"18",e:"12",f:"4",fa:"4",s:"5.1",si:"5"}],["2020-01-15",{c:"38",ca:"38",e:"79",f:"28",fa:"28",s:"10.1",si:"10.3"}],["2021-04-26",{c:"89",ca:"89",e:"89",f:"82",fa:"82",s:"14.1",si:"14.5"}],["2016-09-07",{c:"53",ca:"53",e:"12",f:"35",fa:"35",s:"9.1",si:"9.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2021-11-02",{c:"46",ca:"46",e:"79",f:"94",fa:"94",s:"11",si:"11"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-09-30",{c:"29",ca:"29",e:"12",f:"20",fa:"20",s:"9",si:"9"}],["2021-04-26",{c:"84",ca:"84",e:"84",f:"63",fa:"63",s:"14.1",si:"14.5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-04-04",{c:"135",ca:"135",e:"135",f:"129",fa:"129",s:"18.2",si:"18.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"24",fa:"24",s:"3.1",si:"2"}],["2022-03-14",{c:"86",ca:"86",e:"86",f:"85",fa:"85",s:"15.4",si:"15.4"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"52",fa:"52",s:"10.1",si:"10.3"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"58",fa:"58",s:"11.1",si:"11.3"}],["2016-09-20",{c:"36",ca:"36",e:"14",f:"39",fa:"39",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2021-09-07",{c:"56",ca:"56",e:"79",f:"92",fa:"92",s:"11",si:"11"}],["2017-04-05",{c:"48",ca:"48",e:"15",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"33",ca:"33",e:"79",f:"32",fa:"32",s:"9",si:"9"}],["2020-01-15",{c:"35",ca:"35",e:"79",f:"41",fa:"41",s:"10",si:"10"}],["2020-03-24",{c:"79",ca:"79",e:"17",f:"62",fa:"62",s:"13.1",si:"13.4"}],["2022-11-15",{c:"101",ca:"101",e:"101",f:"107",fa:"107",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-07-25",{c:"127",ca:"127",e:"127",f:"118",fa:"118",s:"17",si:"17"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-01-06",{c:"97",ca:"97",e:"97",f:"34",fa:"34",s:"9",si:"9"}],["2023-03-27",{c:"97",ca:"97",e:"97",f:"111",fa:"111",s:"16.4",si:"16.4"}],["2023-03-27",{c:"97",ca:"97",e:"97",f:"111",fa:"111",s:"16.4",si:"16.4"}],["2023-03-27",{c:"97",ca:"97",e:"97",f:"111",fa:"111",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-03-13",{c:"111",ca:"111",e:"111",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"52",ca:"52",e:"79",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"63",ca:"63",e:"79",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"34",ca:"34",e:"79",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"52",ca:"52",e:"79",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2018-09-05",{c:"62",ca:"62",e:"17",f:"62",fa:"62",s:"11",si:"11"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-09-12",{c:"89",ca:"89",e:"79",f:"89",fa:"89",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2023-03-27",{c:"77",ca:"77",e:"79",f:"98",fa:"98",s:"16.4",si:"16.4"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-27",{c:"35",ca:"35",e:"12",f:"29",fa:"32",s:"10.1",si:"10.3"}],["2016-09-20",{c:"39",ca:"39",e:"13",f:"26",fa:"26",s:"10",si:"10"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"3.5",fa:"4",s:"5",si:"≤3"}],["2015-07-29",{c:"11",ca:"18",e:"12",f:"3.5",fa:"4",s:"5.1",si:"5"}],["2024-09-16",{c:"125",ca:"125",e:"125",f:"128",fa:"128",s:"18",si:"18"}],["2020-01-15",{c:"71",ca:"71",e:"79",f:"65",fa:"65",s:"12.1",si:"12.2"}],["2024-06-11",{c:"111",ca:"111",e:"111",f:"127",fa:"127",s:"16.2",si:"16.2"}],["2015-07-29",{c:"26",ca:"26",e:"12",f:"3.6",fa:"4",s:"7",si:"7"}],["2017-10-17",{c:"57",ca:"57",e:"16",f:"52",fa:"52",s:"10.1",si:"10.3"}],["2022-10-27",{c:"107",ca:"107",e:"107",f:"66",fa:"66",s:"16",si:"16"}],["2022-03-14",{c:"37",ca:"37",e:"15",f:"48",fa:"48",s:"15.4",si:"15.4"}],["2023-12-19",{c:"105",ca:"105",e:"105",f:"121",fa:"121",s:"15.4",si:"15.4"}],["2020-03-24",{c:"74",ca:"74",e:"79",f:"67",fa:"67",s:"13.1",si:"13.4"}],["2015-07-29",{c:"16",ca:"18",e:"12",f:"11",fa:"14",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4"}],["2020-01-15",{c:"54",ca:"54",e:"79",f:"63",fa:"63",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2020-01-15",{c:"65",ca:"65",e:"79",f:"52",fa:"52",s:"12.1",si:"12.2"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"4",fa:"4",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-09-30",{c:"41",ca:"41",e:"12",f:"36",fa:"36",s:"9",si:"9"}],["2024-09-16",{c:"87",ca:"87",e:"87",f:"88",fa:"88",s:"18",si:"18"}],["2022-04-28",{c:"101",ca:"101",e:"101",f:"96",fa:"96",s:"15",si:"15"}],["2023-09-18",{c:"106",ca:"106",e:"106",f:"98",fa:"98",s:"17",si:"17"}],["2023-09-18",{c:"88",ca:"55",e:"88",f:"43",fa:"43",s:"17",si:"17"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-10-03",{c:"106",ca:"106",e:"106",f:"97",fa:"97",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"17",fa:"17",s:"5",si:"4"}],["2020-01-15",{c:"20",ca:"25",e:"79",f:"25",fa:"25",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-04-13",{c:"81",ca:"81",e:"81",f:"26",fa:"26",s:"13.1",si:"13.4"}],["2021-10-05",{c:"41",ca:"41",e:"79",f:"93",fa:"93",s:"10",si:"10"}],["2023-09-18",{c:"113",ca:"113",e:"113",f:"89",fa:"89",s:"17",si:"17"}],["2020-01-15",{c:"66",ca:"66",e:"79",f:"50",fa:"50",s:"11.1",si:"11.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-03-27",{c:"89",ca:"89",e:"89",f:"108",fa:"108",s:"16.4",si:"16.4"}],["2020-01-15",{c:"39",ca:"39",e:"79",f:"51",fa:"51",s:"10",si:"10"}],["2021-09-20",{c:"58",ca:"58",e:"79",f:"51",fa:"51",s:"15",si:"15"}],["2022-08-05",{c:"104",ca:"104",e:"104",f:"72",fa:"79",s:"14.1",si:"14.5"}],["2023-04-11",{c:"102",ca:"102",e:"102",f:"112",fa:"112",s:"15.5",si:"15.5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-11-12",{c:"1",ca:"18",e:"13",f:"19",fa:"19",s:"1.2",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3.6",fa:"4",s:"3",si:"1"}],["2021-04-26",{c:"20",ca:"25",e:"12",f:"57",fa:"57",s:"14.1",si:"5"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"3"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"6",fa:"6",s:"3.1",si:"2"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3",fa:"4",s:"4",si:"3"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3.6",fa:"4",s:"4",si:"3.2"}],["2025-08-19",{c:"13",ca:"132",e:"13",f:"50",fa:"142",s:"11.1",si:"18.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"7",ca:"18",e:"12",f:"29",fa:"29",s:"5.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-16",{c:"4",ca:"57",e:"12",f:"23",fa:"52",s:"3.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2021-12-07",{c:"66",ca:"66",e:"79",f:"95",fa:"79",s:"12.1",si:"12.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2018-12-11",{c:"41",ca:"41",e:"12",f:"64",fa:"64",s:"9",si:"9"}],["2019-03-25",{c:"58",ca:"58",e:"16",f:"55",fa:"55",s:"12.1",si:"12.2"}],["2017-09-28",{c:"24",ca:"25",e:"12",f:"29",fa:"56",s:"10",si:"10"}],["2021-04-26",{c:"81",ca:"81",e:"81",f:"86",fa:"86",s:"14.1",si:"14.5"}],["2025-03-04",{c:"129",ca:"129",e:"129",f:"136",fa:"136",s:"16.4",si:"16.4"}],["2021-04-26",{c:"72",ca:"72",e:"79",f:"78",fa:"79",s:"14.1",si:"14.5"}],["2020-09-16",{c:"74",ca:"74",e:"79",f:"75",fa:"79",s:"14",si:"14"}],["2019-09-19",{c:"63",ca:"63",e:"18",f:"58",fa:"58",s:"13",si:"13"}],["2020-09-16",{c:"71",ca:"71",e:"79",f:"76",fa:"79",s:"14",si:"14"}],["2024-04-16",{c:"87",ca:"87",e:"87",f:"125",fa:"125",s:"14.1",si:"14.5"}],["2021-01-21",{c:"88",ca:"88",e:"88",f:"82",fa:"82",s:"14",si:"14"}],["2018-04-12",{c:"55",ca:"55",e:"15",f:"52",fa:"52",s:"11.1",si:"11.3"}],["2020-01-15",{c:"41",ca:"41",e:"79",f:"36",fa:"36",s:"8",si:"8"}],["2025-03-31",{c:"122",ca:"122",e:"122",f:"131",fa:"131",s:"18.4",si:"18.4"}],["2015-07-29",{c:"38",ca:"38",e:"12",f:"13",fa:"14",s:"7",si:"7"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"1",fa:"4",s:"5",si:"4.2"}],["2018-05-09",{c:"61",ca:"61",e:"16",f:"60",fa:"60",s:"11",si:"11"}],["2023-06-06",{c:"80",ca:"80",e:"80",f:"114",fa:"114",s:"15",si:"15"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"4"}],["2025-04-29",{c:"123",ca:"123",e:"123",f:"138",fa:"138",s:"17.2",si:"17.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"6",fa:"6",s:"1.2",si:"1"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"15",si:"15"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-12-12",{c:"77",ca:"77",e:"79",f:"122",fa:"122",s:"26.2",si:"26.2"}],["2020-01-15",{c:"48",ca:"48",e:"79",f:"50",fa:"50",s:"11",si:"11"}],["2016-09-20",{c:"49",ca:"49",e:"14",f:"44",fa:"44",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-11-21",{c:"109",ca:"109",e:"109",f:"120",fa:"120",s:"16.4",si:"16.4"}],["2024-05-13",{c:"123",ca:"123",e:"123",f:"120",fa:"120",s:"17.5",si:"17.5"}],["2020-07-28",{c:"83",ca:"83",e:"83",f:"69",fa:"79",s:"13",si:"13"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-12-11",{c:"113",ca:"113",e:"113",f:"112",fa:"112",s:"17.2",si:"17.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2025-09-15",{c:"46",ca:"46",e:"79",f:"127",fa:"127",s:"5",si:"26"}],["2020-01-15",{c:"46",ca:"46",e:"79",f:"39",fa:"39",s:"11.1",si:"11.3"}],["2021-01-26",{c:"50",ca:"50",e:"79",f:"85",fa:"85",s:"11.1",si:"11.3"}],["2020-01-15",{c:"65",ca:"65",e:"79",f:"50",fa:"50",s:"9",si:"9"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-12-19",{c:"77",ca:"77",e:"79",f:"121",fa:"121",s:"16.4",si:"16.4"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.5",fa:"6",s:"4",si:"3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-09-16",{c:"85",ca:"85",e:"85",f:"79",fa:"79",s:"14",si:"14"}],["2021-09-20",{c:"89",ca:"89",e:"89",f:"66",fa:"66",s:"15",si:"15"}],["2015-07-29",{c:"26",ca:"26",e:"12",f:"21",fa:"21",s:"7",si:"7"}],["2015-07-29",{c:"38",ca:"38",e:"12",f:"13",fa:"14",s:"8",si:"8"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"7",ca:"18",e:"12",f:"4",fa:"4",s:"5.1",si:"5"}],["2020-01-15",{c:"24",ca:"25",e:"79",f:"35",fa:"35",s:"7",si:"7"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"53",fa:"53",s:"15.4",si:"15.4"}],["2015-07-29",{c:"9",ca:"18",e:"12",f:"6",fa:"6",s:"5.1",si:"5"}],["2023-01-12",{c:"109",ca:"109",e:"109",f:"4",fa:"4",s:"5.1",si:"5"}],["2022-04-28",{c:"101",ca:"101",e:"101",f:"63",fa:"63",s:"15.4",si:"15.4"}],["2017-09-19",{c:"53",ca:"53",e:"12",f:"36",fa:"36",s:"11",si:"11"}],["2020-02-04",{c:"80",ca:"80",e:"12",f:"42",fa:"42",s:"8",si:"12.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2023-03-27",{c:"104",ca:"104",e:"104",f:"102",fa:"102",s:"16.4",si:"16.4"}],["2021-04-26",{c:"49",ca:"49",e:"79",f:"25",fa:"25",s:"14.1",si:"14"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2023-03-27",{c:"60",ca:"60",e:"18",f:"57",fa:"57",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2018-10-02",{c:"6",ca:"18",e:"18",f:"56",fa:"56",s:"6",si:"10.3"}],["2020-07-28",{c:"79",ca:"79",e:"79",f:"75",fa:"79",s:"13.1",si:"13.4"}],["2020-01-15",{c:"46",ca:"46",e:"79",f:"66",fa:"66",s:"11",si:"11"}],["2015-07-29",{c:"18",ca:"18",e:"12",f:"1",fa:"4",s:"1.3",si:"1"}],["2020-01-15",{c:"41",ca:"41",e:"79",f:"32",fa:"32",s:"8",si:"8"}],["2020-01-15",{c:"≤79",ca:"≤79",e:"79",f:"≤23",fa:"≤23",s:"≤9.1",si:"≤9.3"}],["2022-09-02",{c:"105",ca:"105",e:"105",f:"103",fa:"103",s:"15.6",si:"15.6"}],["2023-09-18",{c:"66",ca:"66",e:"79",f:"115",fa:"115",s:"17",si:"17"}],["2022-09-12",{c:"55",ca:"55",e:"79",f:"72",fa:"79",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-07",{c:"50",ca:"50",e:"12",f:"52",fa:"52",s:"9",si:"9"}],["2015-07-29",{c:"26",ca:"26",e:"12",f:"14",fa:"14",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2021-10-25",{c:"57",ca:"57",e:"12",f:"58",fa:"58",s:"15",si:"15.1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-12-11",{c:"120",ca:"120",e:"120",f:"117",fa:"117",s:"17.2",si:"17.2"}],["2021-01-21",{c:"88",ca:"88",e:"88",f:"84",fa:"84",s:"9",si:"9"}],["2023-03-27",{c:"20",ca:"42",e:"14",f:"22",fa:"22",s:"7",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"2"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"9",si:"9"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"2"}],["2020-09-16",{c:"85",ca:"85",e:"85",f:"79",fa:"79",s:"14",si:"14"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-07-28",{c:"75",ca:"75",e:"79",f:"70",fa:"79",s:"13",si:"13"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2020-01-15",{c:"32",ca:"32",e:"79",f:"36",fa:"36",s:"10",si:"10"}],["2022-03-14",{c:"93",ca:"93",e:"93",f:"92",fa:"92",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"32",ca:"32",e:"79",f:"36",fa:"36",s:"10",si:"10"}],["2015-07-29",{c:"24",ca:"25",e:"12",f:"24",fa:"24",s:"8",si:"8"}],["2021-04-26",{c:"80",ca:"80",e:"80",f:"71",fa:"79",s:"14.1",si:"14.5"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"10",fa:"10",s:"8",si:"8"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"6",fa:"6",s:"8",si:"8"}],["2015-07-29",{c:"29",ca:"29",e:"12",f:"24",fa:"24",s:"8",si:"8"}],["2016-08-02",{c:"27",ca:"27",e:"14",f:"29",fa:"29",s:"8",si:"8"}],["2018-04-30",{c:"24",ca:"25",e:"17",f:"25",fa:"25",s:"8",si:"9"}],["2021-04-26",{c:"35",ca:"35",e:"12",f:"25",fa:"25",s:"14.1",si:"14.5"}],["2023-03-27",{c:"69",ca:"69",e:"79",f:"105",fa:"105",s:"16.4",si:"16.4"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"15.4",si:"15.4"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1.5",fa:"4",s:"4",si:"3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"2",si:"1"}],["≤2020-03-24",{c:"≤80",ca:"≤80",e:"≤80",f:"1.5",fa:"4",s:"≤13.1",si:"≤13.4"}],["2020-01-15",{c:"66",ca:"66",e:"79",f:"58",fa:"58",s:"11.1",si:"11.3"}],["2023-03-27",{c:"108",ca:"109",e:"108",f:"111",fa:"111",s:"16.4",si:"16.4"}],["2023-03-27",{c:"94",ca:"94",e:"94",f:"88",fa:"88",s:"16.4",si:"16.4"}],["2017-04-05",{c:"1",ca:"18",e:"15",f:"1.5",fa:"4",s:"1.2",si:"1"}],["≤2018-10-02",{c:"10",ca:"18",e:"≤18",f:"4",fa:"4",s:"7",si:"7"}],["2023-09-18",{c:"113",ca:"113",e:"113",f:"66",fa:"66",s:"17",si:"17"}],["2022-09-12",{c:"90",ca:"90",e:"90",f:"81",fa:"81",s:"16",si:"16"}],["2020-03-24",{c:"68",ca:"68",e:"79",f:"61",fa:"61",s:"13.1",si:"13.4"}],["2018-10-02",{c:"23",ca:"25",e:"18",f:"49",fa:"49",s:"7",si:"7"}],["2022-09-12",{c:"63",ca:"63",e:"18",f:"59",fa:"59",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2019-01-29",{c:"50",ca:"50",e:"12",f:"65",fa:"65",s:"10",si:"10"}],["2024-12-11",{c:"15",ca:"18",e:"79",f:"95",fa:"95",s:"18.2",si:"18.2"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"1.5",fa:"4",s:"5",si:"4"}],["2015-07-29",{c:"33",ca:"33",e:"12",f:"18",fa:"18",s:"7",si:"7"}],["2021-04-26",{c:"60",ca:"60",e:"79",f:"84",fa:"84",s:"14.1",si:"14.5"}],["2025-09-15",{c:"124",ca:"124",e:"124",f:"128",fa:"128",s:"26",si:"26"}],["2023-03-27",{c:"94",ca:"94",e:"94",f:"99",fa:"99",s:"16.4",si:"16.4"}],["2015-09-16",{c:"6",ca:"18",e:"12",f:"7",fa:"7",s:"8",si:"9"}],["2022-09-12",{c:"44",ca:"44",e:"79",f:"46",fa:"46",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2016-03-21",{c:"38",ca:"38",e:"13",f:"38",fa:"38",s:"9.1",si:"9.3"}],["2020-01-15",{c:"57",ca:"57",e:"79",f:"51",fa:"51",s:"10.1",si:"10.3"}],["2020-01-15",{c:"47",ca:"47",e:"79",f:"51",fa:"51",s:"9",si:"9"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3.6",fa:"4",s:"4",si:"3.2"}],["2020-07-28",{c:"55",ca:"55",e:"12",f:"59",fa:"79",s:"13",si:"13"}],["2025-01-27",{c:"116",ca:"116",e:"116",f:"125",fa:"125",s:"17",si:"18.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3",fa:"4",s:"4",si:"3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2020-01-15",{c:"76",ca:"76",e:"79",f:"67",fa:"67",s:"12.1",si:"13"}],["2022-05-31",{c:"96",ca:"96",e:"96",f:"101",fa:"101",s:"14.1",si:"14.5"}],["2020-01-15",{c:"74",ca:"74",e:"79",f:"63",fa:"64",s:"10.1",si:"10.3"}],["2023-12-11",{c:"73",ca:"73",e:"79",f:"78",fa:"79",s:"17.2",si:"17.2"}],["2023-12-11",{c:"86",ca:"86",e:"86",f:"101",fa:"101",s:"17.2",si:"17.2"}],["2023-06-06",{c:"1",ca:"18",e:"12",f:"1",fa:"114",s:"1.1",si:"1"}],["2025-05-01",{c:"136",ca:"136",e:"136",f:"97",fa:"97",s:"15.4",si:"15.4"}],["2019-09-19",{c:"63",ca:"63",e:"12",f:"6",fa:"6",s:"13",si:"13"}],["2015-07-29",{c:"6",ca:"18",e:"12",f:"6",fa:"6",s:"6",si:"7"}],["2015-07-29",{c:"32",ca:"32",e:"12",f:"29",fa:"29",s:"8",si:"8"}],["2020-07-28",{c:"76",ca:"76",e:"79",f:"71",fa:"79",s:"13",si:"13"}],["2020-09-16",{c:"85",ca:"85",e:"85",f:"79",fa:"79",s:"14",si:"14"}],["2018-10-02",{c:"63",ca:"63",e:"18",f:"58",fa:"58",s:"11.1",si:"11.3"}],["2025-01-07",{c:"128",ca:"128",e:"128",f:"134",fa:"134",s:"18.2",si:"18.2"}],["2024-03-05",{c:"119",ca:"119",e:"119",f:"121",fa:"121",s:"17.4",si:"17.4"}],["2016-09-20",{c:"49",ca:"49",e:"12",f:"18",fa:"18",s:"10",si:"10"}],["2023-03-27",{c:"50",ca:"50",e:"17",f:"44",fa:"48",s:"16",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2020-03-24",{c:"63",ca:"63",e:"79",f:"49",fa:"49",s:"13.1",si:"13.4"}],["2020-07-28",{c:"71",ca:"71",e:"79",f:"69",fa:"79",s:"12.1",si:"12.2"}],["2021-04-26",{c:"87",ca:"87",e:"87",f:"70",fa:"79",s:"14.1",si:"14.5"}],["2020-07-28",{c:"1",ca:"18",e:"13",f:"78",fa:"79",s:"4",si:"3.2"}],["2024-01-23",{c:"119",ca:"119",e:"119",f:"122",fa:"122",s:"17.2",si:"17.2"}],["2021-09-20",{c:"85",ca:"85",e:"85",f:"87",fa:"87",s:"15",si:"15"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-05-01",{c:"136",ca:"136",e:"136",f:"134",fa:"134",s:"18.2",si:"18.2"}],["2024-07-09",{c:"85",ca:"85",e:"85",f:"128",fa:"128",s:"16.4",si:"16.4"}],["2024-09-16",{c:"125",ca:"125",e:"125",f:"128",fa:"128",s:"18",si:"18"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.6",fa:"4",s:"5",si:"4"}],["2015-07-29",{c:"24",ca:"25",e:"12",f:"23",fa:"23",s:"7",si:"7"}],["2023-03-27",{c:"69",ca:"69",e:"79",f:"99",fa:"99",s:"16.4",si:"16.4"}],["2024-10-29",{c:"83",ca:"83",e:"83",f:"132",fa:"132",s:"15.4",si:"15.4"}],["2025-05-27",{c:"134",ca:"134",e:"134",f:"139",fa:"139",s:"18.4",si:"18.4"}],["2024-07-09",{c:"111",ca:"111",e:"111",f:"128",fa:"128",s:"16.4",si:"16.4"}],["2020-07-28",{c:"64",ca:"64",e:"79",f:"69",fa:"79",s:"13.1",si:"13.4"}],["2022-09-12",{c:"68",ca:"68",e:"79",f:"62",fa:"62",s:"16",si:"16"}],["2018-10-23",{c:"1",ca:"18",e:"12",f:"63",fa:"63",s:"3",si:"1"}],["2023-03-27",{c:"54",ca:"54",e:"17",f:"45",fa:"45",s:"16.4",si:"16.4"}],["2017-09-19",{c:"29",ca:"29",e:"12",f:"35",fa:"35",s:"11",si:"11"}],["2020-07-27",{c:"84",ca:"84",e:"84",f:"67",fa:"67",s:"9.1",si:"9.3"}],["2020-01-15",{c:"65",ca:"65",e:"79",f:"52",fa:"52",s:"12.1",si:"12.2"}],["2023-11-21",{c:"111",ca:"111",e:"111",f:"120",fa:"120",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-05-17",{c:"125",ca:"125",e:"125",f:"118",fa:"118",s:"17.2",si:"17.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"38",fa:"38",s:"5",si:"4.2"}],["2024-12-11",{c:"128",ca:"128",e:"128",f:"38",fa:"38",s:"18.2",si:"18.2"}],["2024-12-11",{c:"84",ca:"84",e:"84",f:"38",fa:"38",s:"18.2",si:"18.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2020-01-15",{c:"69",ca:"69",e:"79",f:"65",fa:"65",s:"11.1",si:"11.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2025-12-09",{c:"118",ca:"118",e:"118",f:"146",fa:"146",s:"17.4",si:"17.4"}],["2020-01-15",{c:"27",ca:"27",e:"79",f:"32",fa:"32",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-03-27",{c:"38",ca:"39",e:"79",f:"43",fa:"43",s:"16.4",si:"16.4"}],["2025-03-31",{c:"84",ca:"84",e:"84",f:"126",fa:"126",s:"16.4",si:"18.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"113",fa:"113",s:"17",si:"17"}],["2022-03-14",{c:"61",ca:"61",e:"79",f:"36",fa:"36",s:"15.4",si:"15.4"}],["2020-09-16",{c:"61",ca:"61",e:"79",f:"36",fa:"36",s:"14",si:"14"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"1",fa:"4",s:"3",si:"1"}],["2020-01-15",{c:"69",ca:"69",e:"79",f:"68",fa:"68",s:"11",si:"11"}],["2024-10-01",{c:"80",ca:"80",e:"80",f:"131",fa:"131",s:"16.1",si:"16.1"}],["2025-12-12",{c:"121",ca:"121",e:"121",f:"64",fa:"64",s:"26.2",si:"26.2"}],["2024-12-11",{c:"94",ca:"94",e:"94",f:"97",fa:"97",s:"18.2",si:"18.2"}],["2024-12-11",{c:"121",ca:"121",e:"121",f:"64",fa:"64",s:"18.2",si:"18.2"}],["2025-12-12",{c:"114",ca:"114",e:"114",f:"109",fa:"109",s:"26.2",si:"26.2"}],["2023-10-13",{c:"118",ca:"118",e:"118",f:"118",fa:"118",s:"17",si:"17"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-07",{c:"11",ca:"18",e:"12",f:"52",fa:"52",s:"5.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2020-01-15",{c:"6",ca:"18",e:"79",f:"6",fa:"45",s:"5",si:"5"}],["2023-03-27",{c:"65",ca:"65",e:"79",f:"61",fa:"61",s:"16.4",si:"16.4"}],["2018-04-30",{c:"45",ca:"45",e:"17",f:"44",fa:"44",s:"11.1",si:"11.3"}],["2015-07-29",{c:"38",ca:"38",e:"12",f:"13",fa:"14",s:"8",si:"8"}],["2024-06-11",{c:"122",ca:"122",e:"122",f:"127",fa:"127",s:"17",si:"17"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"5"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"5"}],["2020-01-15",{c:"53",ca:"53",e:"79",f:"63",fa:"63",s:"10",si:"10"}],["2020-07-28",{c:"73",ca:"73",e:"79",f:"72",fa:"79",s:"13.1",si:"13.4"}],["2020-01-15",{c:"37",ca:"37",e:"79",f:"62",fa:"62",s:"10.1",si:"10.3"}],["2020-01-15",{c:"37",ca:"37",e:"79",f:"54",fa:"54",s:"10.1",si:"10.3"}],["2021-12-13",{c:"68",ca:"89",e:"79",f:"79",fa:"79",s:"15.2",si:"15.2"}],["2020-01-15",{c:"53",ca:"53",e:"79",f:"63",fa:"63",s:"10",si:"10"}],["2023-03-27",{c:"92",ca:"92",e:"92",f:"92",fa:"92",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2020-01-15",{c:"19",ca:"25",e:"79",f:"4",fa:"4",s:"6",si:"6"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"2"}],["2020-01-15",{c:"18",ca:"18",e:"79",f:"55",fa:"55",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2018-09-05",{c:"33",ca:"33",e:"14",f:"49",fa:"62",s:"7",si:"7"}],["2017-11-28",{c:"9",ca:"47",e:"12",f:"2",fa:"57",s:"5.1",si:"5"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"55",fa:"55",s:"11.1",si:"11.3"}],["2017-03-27",{c:"38",ca:"38",e:"13",f:"38",fa:"38",s:"10.1",si:"10.3"}],["2020-01-15",{c:"70",ca:"70",e:"79",f:"3",fa:"4",s:"10.1",si:"10.3"}],["2024-08-06",{c:"117",ca:"117",e:"117",f:"129",fa:"129",s:"17.5",si:"17.5"}],["2024-05-17",{c:"125",ca:"125",e:"125",f:"126",fa:"126",s:"17.4",si:"17.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-09-16",{c:"77",ca:"77",e:"79",f:"65",fa:"65",s:"14",si:"14"}],["2019-09-19",{c:"56",ca:"56",e:"16",f:"59",fa:"59",s:"13",si:"13"}],["2023-12-05",{c:"119",ca:"120",e:"85",f:"65",fa:"65",s:"11.1",si:"11.3"}],["2023-09-18",{c:"61",ca:"61",e:"79",f:"57",fa:"57",s:"17",si:"17"}],["2022-06-28",{c:"67",ca:"67",e:"79",f:"102",fa:"102",s:"14.1",si:"14.5"}],["2022-03-14",{c:"92",ca:"92",e:"92",f:"90",fa:"90",s:"15.4",si:"15.4"}],["2015-09-30",{c:"41",ca:"41",e:"12",f:"29",fa:"29",s:"9",si:"9"}],["2015-09-30",{c:"41",ca:"41",e:"12",f:"40",fa:"40",s:"9",si:"9"}],["2020-01-15",{c:"73",ca:"73",e:"79",f:"67",fa:"67",s:"13",si:"13"}],["2016-09-20",{c:"34",ca:"34",e:"12",f:"31",fa:"31",s:"10",si:"10"}],["2017-04-05",{c:"57",ca:"57",e:"15",f:"48",fa:"48",s:"10",si:"10"}],["2015-09-30",{c:"41",ca:"41",e:"12",f:"34",fa:"34",s:"9",si:"9"}],["2015-09-30",{c:"41",ca:"36",e:"12",f:"24",fa:"24",s:"9",si:"9"}],["2020-08-27",{c:"85",ca:"85",e:"85",f:"77",fa:"79",s:"13.1",si:"13.4"}],["2015-09-30",{c:"41",ca:"36",e:"12",f:"17",fa:"17",s:"9",si:"9"}],["2020-01-15",{c:"66",ca:"66",e:"79",f:"61",fa:"61",s:"12",si:"12"}],["2023-10-24",{c:"111",ca:"111",e:"111",f:"119",fa:"119",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2022-03-14",{c:"98",ca:"98",e:"98",f:"94",fa:"94",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2023-09-15",{c:"117",ca:"117",e:"117",f:"71",fa:"79",s:"16",si:"16"}],["2015-09-30",{c:"28",ca:"28",e:"12",f:"22",fa:"22",s:"9",si:"9"}],["2016-09-20",{c:"2",ca:"18",e:"12",f:"49",fa:"49",s:"4",si:"3.2"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"3",fa:"4",s:"3",si:"2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"3",fa:"4",s:"6",si:"6"}],["2015-09-30",{c:"38",ca:"38",e:"12",f:"36",fa:"36",s:"9",si:"9"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2021-08-10",{c:"42",ca:"42",e:"79",f:"91",fa:"91",s:"13.1",si:"13.4"}],["2018-10-02",{c:"1",ca:"18",e:"18",f:"1.5",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1.3",si:"2"}],["2024-12-11",{c:"89",ca:"89",e:"89",f:"131",fa:"131",s:"18.2",si:"18.2"}],["2015-11-12",{c:"26",ca:"26",e:"13",f:"22",fa:"22",s:"8",si:"8"}],["2020-01-15",{c:"62",ca:"62",e:"79",f:"53",fa:"53",s:"11",si:"11"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-09-12",{c:"47",ca:"47",e:"12",f:"49",fa:"49",s:"16",si:"16"}],["2022-03-14",{c:"48",ca:"48",e:"79",f:"48",fa:"48",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-03-03",{c:"99",ca:"99",e:"99",f:"46",fa:"46",s:"7",si:"7"}],["2020-01-15",{c:"38",ca:"38",e:"79",f:"19",fa:"19",s:"10.1",si:"10.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-09-16",{c:"48",ca:"48",e:"79",f:"41",fa:"41",s:"14",si:"14"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"7",fa:"7",s:"1.3",si:"1"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3.5",fa:"4",s:"1.1",si:"1"}],["2017-04-05",{c:"4",ca:"18",e:"15",f:"49",fa:"49",s:"3",si:"2"}],["2015-07-29",{c:"23",ca:"25",e:"12",f:"31",fa:"31",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-11-19",{c:"87",ca:"87",e:"87",f:"70",fa:"79",s:"12.1",si:"12.2"}],["2020-07-28",{c:"33",ca:"33",e:"12",f:"74",fa:"79",s:"12.1",si:"12.2"}],["2024-03-19",{c:"114",ca:"114",e:"114",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2024-05-13",{c:"114",ca:"114",e:"114",f:"121",fa:"121",s:"17.5",si:"17.5"}],["2024-10-17",{c:"130",ca:"130",e:"130",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2024-03-19",{c:"114",ca:"114",e:"114",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2024-10-17",{c:"130",ca:"130",e:"130",f:"121",fa:"121",s:"17.5",si:"17.5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3"}],["2017-10-24",{c:"62",ca:"62",e:"14",f:"22",fa:"22",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2019-09-19",{c:"36",ca:"36",e:"12",f:"52",fa:"52",s:"13",si:"9.3"}],["2024-03-05",{c:"114",ca:"114",e:"114",f:"122",fa:"122",s:"17.4",si:"17.4"}],["2024-04-16",{c:"118",ca:"118",e:"118",f:"125",fa:"125",s:"13.1",si:"13.4"}],["2015-09-30",{c:"36",ca:"36",e:"12",f:"16",fa:"16",s:"9",si:"9"}],["2022-03-14",{c:"36",ca:"36",e:"12",f:"16",fa:"16",s:"15.4",si:"15.4"}],["2024-08-06",{c:"117",ca:"117",e:"117",f:"129",fa:"129",s:"17.4",si:"17.4"}],["2015-09-30",{c:"26",ca:"26",e:"12",f:"16",fa:"16",s:"9",si:"9"}],["2023-03-14",{c:"19",ca:"25",e:"79",f:"111",fa:"111",s:"6",si:"6"}],["2023-03-13",{c:"111",ca:"111",e:"111",f:"108",fa:"108",s:"15.4",si:"15.4"}],["2023-07-21",{c:"115",ca:"115",e:"115",f:"70",fa:"79",s:"15",si:"15"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"38",fa:"38",s:"10",si:"10"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"37",fa:"37",s:"10",si:"10"}],["2015-07-29",{c:"7",ca:"18",e:"12",f:"4",fa:"4",s:"5.1",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-09-05",{c:"140",ca:"140",e:"140",f:"133",fa:"133",s:"18.2",si:"18.2"}],["2015-09-30",{c:"44",ca:"44",e:"12",f:"40",fa:"40",s:"9",si:"9"}],["2016-03-21",{c:"41",ca:"41",e:"13",f:"27",fa:"27",s:"9.1",si:"9.3"}],["2023-09-18",{c:"113",ca:"113",e:"113",f:"102",fa:"102",s:"17",si:"17"}],["2018-04-30",{c:"44",ca:"44",e:"17",f:"48",fa:"48",s:"10.1",si:"10.3"}],["2015-07-29",{c:"32",ca:"32",e:"12",f:"19",fa:"19",s:"7",si:"7"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"115",fa:"115",s:"17",si:"17"}],["2025-09-15",{c:"95",ca:"95",e:"95",f:"142",fa:"142",s:"26",si:"26"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"2",si:"1"}],["2023-11-21",{c:"72",ca:"72",e:"79",f:"120",fa:"120",s:"16.4",si:"16.4"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"5"}],["2023-11-02",{c:"119",ca:"119",e:"119",f:"88",fa:"88",s:"16.5",si:"16.5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-04-18",{c:"124",ca:"124",e:"124",f:"120",fa:"120",s:"17.4",si:"17.4"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"3"}],["2025-10-14",{c:"125",ca:"125",e:"125",f:"144",fa:"144",s:"18.2",si:"18.2"}],["2025-10-14",{c:"111",ca:"111",e:"111",f:"144",fa:"144",s:"18",si:"18"}],["2022-12-05",{c:"108",ca:"108",e:"108",f:"101",fa:"101",s:"15.4",si:"15.4"}],["2017-10-17",{c:"26",ca:"26",e:"16",f:"19",fa:"19",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1.3",si:"1"}],["2021-08-10",{c:"61",ca:"61",e:"79",f:"91",fa:"68",s:"13",si:"13"}],["2017-10-17",{c:"57",ca:"57",e:"16",f:"52",fa:"52",s:"11",si:"11"}],["2021-04-26",{c:"85",ca:"85",e:"85",f:"78",fa:"79",s:"14.1",si:"14.5"}],["2021-10-25",{c:"75",ca:"75",e:"79",f:"78",fa:"79",s:"15.1",si:"15.1"}],["2022-05-03",{c:"95",ca:"95",e:"95",f:"100",fa:"100",s:"15.2",si:"15.2"}],["2024-03-05",{c:"114",ca:"114",e:"114",f:"112",fa:"112",s:"17.4",si:"17.4"}],["2024-12-11",{c:"119",ca:"119",e:"119",f:"120",fa:"120",s:"18.2",si:"18.2"}],["2020-10-20",{c:"86",ca:"86",e:"86",f:"78",fa:"79",s:"13.1",si:"13.4"}],["2020-03-24",{c:"69",ca:"69",e:"79",f:"62",fa:"62",s:"13.1",si:"13.4"}],["2021-10-25",{c:"75",ca:"75",e:"18",f:"64",fa:"64",s:"15.1",si:"15.1"}],["2021-11-19",{c:"96",ca:"96",e:"96",f:"79",fa:"79",s:"15.1",si:"15.1"}],["2021-04-26",{c:"69",ca:"69",e:"18",f:"62",fa:"62",s:"14.1",si:"14.5"}],["2023-03-27",{c:"91",ca:"91",e:"91",f:"89",fa:"89",s:"16.4",si:"16.4"}],["2024-12-11",{c:"112",ca:"112",e:"112",f:"121",fa:"121",s:"18.2",si:"18.2"}],["2021-12-13",{c:"74",ca:"88",e:"79",f:"79",fa:"79",s:"15.2",si:"15.2"}],["2024-09-16",{c:"119",ca:"119",e:"119",f:"120",fa:"120",s:"18",si:"18"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"4",si:"3.2"}],["2021-04-26",{c:"84",ca:"84",e:"84",f:"79",fa:"79",s:"14.1",si:"14.5"}],["2015-07-29",{c:"36",ca:"36",e:"12",f:"6",fa:"6",s:"8",si:"8"}],["2015-09-30",{c:"36",ca:"36",e:"12",f:"34",fa:"34",s:"9",si:"9"}],["2020-09-16",{c:"84",ca:"84",e:"84",f:"75",fa:"79",s:"14",si:"14"}],["2021-04-26",{c:"35",ca:"35",e:"12",f:"25",fa:"25",s:"14.1",si:"14.5"}],["2015-07-29",{c:"37",ca:"37",e:"12",f:"34",fa:"34",s:"11",si:"11"}],["2022-03-14",{c:"69",ca:"69",e:"79",f:"96",fa:"96",s:"15.4",si:"15.4"}],["2021-09-07",{c:"67",ca:"70",e:"18",f:"60",fa:"92",s:"13",si:"13"}],["2023-10-24",{c:"85",ca:"85",e:"85",f:"119",fa:"119",s:"16",si:"16"}],["2015-07-29",{c:"9",ca:"25",e:"12",f:"4",fa:"4",s:"5.1",si:"8"}],["2021-09-20",{c:"63",ca:"63",e:"17",f:"30",fa:"30",s:"14",si:"15"}],["2024-10-29",{c:"104",ca:"104",e:"104",f:"132",fa:"132",s:"16.4",si:"16.4"}],["2020-01-15",{c:"47",ca:"47",e:"79",f:"53",fa:"53",s:"12",si:"12"}],["2017-04-19",{c:"33",ca:"33",e:"12",f:"53",fa:"53",s:"9.1",si:"9.3"}],["2020-09-16",{c:"47",ca:"47",e:"79",f:"56",fa:"56",s:"14",si:"14"}],["2015-07-29",{c:"26",ca:"26",e:"12",f:"22",fa:"22",s:"8",si:"8"}],["2018-04-30",{c:"26",ca:"26",e:"17",f:"22",fa:"22",s:"8",si:"8"}],["2022-12-13",{c:"100",ca:"100",e:"100",f:"108",fa:"108",s:"16",si:"16"}],["2021-09-20",{c:"56",ca:"58",e:"79",f:"51",fa:"51",s:"15",si:"15"}],["2024-10-29",{c:"104",ca:"104",e:"104",f:"132",fa:"132",s:"16.4",si:"16.4"}],["2020-09-16",{c:"9",ca:"18",e:"18",f:"65",fa:"65",s:"14",si:"14"}],["2020-01-15",{c:"56",ca:"56",e:"79",f:"22",fa:"24",s:"11",si:"11"}],["2025-10-03",{c:"141",ca:"141",e:"141",f:"117",fa:"117",s:"15.4",si:"15.4"}],["2023-05-09",{c:"76",ca:"76",e:"79",f:"113",fa:"113",s:"15.4",si:"15.4"}],["2020-01-15",{c:"58",ca:"58",e:"79",f:"44",fa:"44",s:"11",si:"11"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"11",fa:"14",s:"5",si:"4.2"}],["2015-07-29",{c:"23",ca:"25",e:"12",f:"31",fa:"31",s:"6",si:"8"}],["2020-01-15",{c:"23",ca:"25",e:"79",f:"31",fa:"31",s:"6",si:"8"}],["2021-01-21",{c:"88",ca:"88",e:"88",f:"82",fa:"82",s:"14",si:"14"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-03-19",{c:"114",ca:"114",e:"114",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"36",ca:"36",e:"79",f:"36",fa:"36",s:"9.1",si:"9.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-09-30",{c:"44",ca:"44",e:"12",f:"15",fa:"15",s:"9",si:"9"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-27",{c:"48",ca:"48",e:"12",f:"41",fa:"41",s:"10.1",si:"10.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3",fa:"4",s:"1",si:"1"}],["2024-05-14",{c:"1",ca:"18",e:"12",f:"126",fa:"126",s:"3.1",si:"3"}]],c={w:"WebKit",g:"Gecko",p:"Presto",b:"Blink"},e={r:"retired",c:"current",b:"beta",n:"nightly",p:"planned",u:"unknown",e:"esr"},f=s=>{const a={};return Object.entries(s).forEach(([s,r])=>{if(r.releases){a[s]||(a[s]={releases:{}});const f=a[s].releases;r.releases.forEach(s=>{f[s[0]]={version:s[0],release_date:"u"==s[1]?"unknown":s[1],status:e[s[2]],engine:s[3]?c[s[3]]:void 0,engine_version:s[4]}})}}),a},b=(()=>{const s=[];return r.forEach(a=>{var r;s.push({status:{baseline_low_date:a[0],support:(r=a[1],{chrome:r.c,chrome_android:r.ca,edge:r.e,firefox:r.f,firefox_android:r.fa,safari:r.s,safari_ios:r.si})}})}),s})(),u=f(s),i=f(a);let n=!1;const o=["chrome","chrome_android","edge","firefox","firefox_android","safari","safari_ios"],g=Object.entries(u).filter(([s])=>o.includes(s)),t=["webview_android","samsunginternet_android","opera_android","opera"],l=[...Object.entries(u).filter(([s])=>t.includes(s)),...Object.entries(i)],w=["current","esr","retired","unknown","beta","nightly"];let p=!1;const d=s=>{if(!1===s.includeDownstreamBrowsers&&!0===s.includeKaiOS){if(console.log(new Error("KaiOS is a downstream browser and can only be included if you include other downstream browsers. Please ensure you use `includeDownstreamBrowsers: true`.")),"undefined"==typeof process||!process.exit)throw new Error("KaiOS configuration error: process.exit is not available");process.exit(1)}},v=s=>s&&s.startsWith("≤")?s.slice(1):s,_=(s,a)=>{if(s===a)return 0;const[r=0,c=0]=s.split(".",2).map(Number),[e=0,f=0]=a.split(".",2).map(Number);if(isNaN(r)||isNaN(c))throw new Error(`Invalid version: ${s}`);if(isNaN(e)||isNaN(f))throw new Error(`Invalid version: ${a}`);return r!==e?r>e?1:-1:c!==f?c>f?1:-1:0},h=s=>{let a=[];return s.forEach(s=>{let r=g.find(a=>a[0]===s.browser);if(r){Object.entries(r[1].releases).filter(([,s])=>w.includes(s.status)).sort((s,a)=>_(s[0],a[0])).forEach(([r,c])=>!!w.includes(c.status)&&(1===_(r,s.version)&&(a.push({browser:s.browser,version:r,release_date:c.release_date?c.release_date:"unknown"}),!0)))}}),a},m=(s,a=!1)=>{if(s.getFullYear()<2015&&!p&&console.warn(new Error("There are no browser versions compatible with Baseline before 2015.  You may receive unexpected results.")),s.getFullYear()<2002)throw new Error("None of the browsers in the core set were released before 2002.  Please use a date after 2002.");if(s.getFullYear()>(new Date).getFullYear())throw new Error("There are no browser versions compatible with Baseline in the future");const r=(s=>b.filter(a=>a.status.baseline_low_date&&new Date(a.status.baseline_low_date)<=s).map(s=>({baseline_low_date:s.status.baseline_low_date,support:s.status.support})))(s),c=(s=>{let a={};return Object.entries(g).forEach(([,s])=>{a[s[0]]={browser:s[0],version:"0",release_date:""}}),s.forEach(s=>{Object.entries(s.support).forEach(r=>{const c=r[0],e=v(r[1]);a[c]&&1===_(e,v(a[c].version))&&(a[c]={browser:c,version:e,release_date:s.baseline_low_date})})}),Object.values(a)})(r);return a?[...c,...h(c)].sort((s,a)=>s.browser<a.browser?-1:s.browser>a.browser?1:_(s.version,a.version)):c},O=(s=[],a=!0,r=!1)=>{const c=a=>{var r;return s&&s.length>0?null===(r=s.filter(s=>s.browser===a).sort((s,a)=>_(s.version,a.version))[0])||void 0===r?void 0:r.version:void 0},e=c("chrome"),f=c("firefox");if(!e&&!f)throw new Error("There are no browser versions compatible with Baseline before Chrome and Firefox");let b=[];return l.filter(([s])=>!("kai_os"===s&&!r)).forEach(([s,r])=>{var c;if(!r.releases)return;let u=Object.entries(r.releases).filter(([,s])=>{const{engine:a,engine_version:r}=s;return!(!a||!r)&&("Blink"===a&&e?_(r,e)>=0:!("Gecko"!==a||!f)&&_(r,f)>=0)}).sort((s,a)=>_(s[0],a[0]));for(let r=0;r<u.length;r++){const e=u[r];if(e){const[r,f]=e;let u={browser:s,version:r,release_date:null!==(c=f.release_date)&&void 0!==c?c:"unknown"};if(f.engine&&f.engine_version&&(u.engine=f.engine,u.engine_version=f.engine_version),b.push(u),!a)break}}}),b};function y(s){var a,r,c,e,f,b,u;let i=null!=s?s:{},o={listAllCompatibleVersions:null!==(a=i.listAllCompatibleVersions)&&void 0!==a&&a,includeDownstreamBrowsers:null!==(r=i.includeDownstreamBrowsers)&&void 0!==r&&r,widelyAvailableOnDate:null!==(c=i.widelyAvailableOnDate)&&void 0!==c?c:void 0,targetYear:null!==(e=i.targetYear)&&void 0!==e?e:void 0,includeKaiOS:null!==(f=i.includeKaiOS)&&void 0!==f&&f,overrideLastUpdated:null!==(b=i.overrideLastUpdated)&&void 0!==b?b:void 0,suppressWarnings:null!==(u=i.suppressWarnings)&&void 0!==u&&u},g=new Date;if(d(o),o.widelyAvailableOnDate||o.targetYear)if(o.targetYear&&o.widelyAvailableOnDate){if(console.log(new Error("You cannot use targetYear and widelyAvailableOnDate at the same time.  Please remove one of these options and try again.")),"undefined"==typeof process||!process.exit)throw new Error("Configuration error: targetYear and widelyAvailableOnDate cannot be used together");process.exit(1)}else o.widelyAvailableOnDate?g=new Date(o.widelyAvailableOnDate):o.targetYear&&(g=new Date(`${o.targetYear}-12-31`));else g=new Date;(o.widelyAvailableOnDate||void 0===o.targetYear)&&g.setMonth(g.getMonth()-30);let t=m(g,o.listAllCompatibleVersions);return o.suppressWarnings||((s,a)=>{if(n||"undefined"!=typeof process&&process.env&&(process.env.BROWSERSLIST_IGNORE_OLD_DATA||process.env.BASELINE_BROWSER_MAPPING_IGNORE_OLD_DATA))return;const r=new Date;r.setMonth(r.getMonth()-2),s>r&&(null!=a?a:1766153488462)<r.getTime()&&(console.warn("[baseline-browser-mapping] The data in this module is over two months old and you are targetting a recent feature cut off date of "+s.toISOString().slice(0,10)+". To ensure accurate Baseline data, please update to the latest version of this module using your package manager of choice.\nYou can suppress these warnings using the environment variables `BROWSERSLIST_IGNORE_OLD_DATA=true` or `BASELINE_BROWSER_MAPPING_IGNORE_OLD_DATA=true`.\nSome modules including `next.js` pre-compile data from this module via `browserslist` or other packages.\nPlease contact the maintainers of those modules if you are receiving these warnings and can't suppress them.\n"),n=!0)})(g,o.overrideLastUpdated),!1===o.includeDownstreamBrowsers?t:[...t,...O(t,o.listAllCompatibleVersions,o.includeKaiOS)]}exports._resetHasWarned=function(){n=!1},exports.getAllVersions=function(s){var a,r,c,e,f;p=!0;let b=null!=s?s:{},u={outputFormat:null!==(a=b.outputFormat)&&void 0!==a?a:"array",includeDownstreamBrowsers:null!==(r=b.includeDownstreamBrowsers)&&void 0!==r&&r,useSupports:null!==(c=b.useSupports)&&void 0!==c&&c,includeKaiOS:null!==(e=b.includeKaiOS)&&void 0!==e&&e,suppressWarnings:null!==(f=b.suppressWarnings)&&void 0!==f&&f};d(u);let i=(new Date).getFullYear()+1;const n=[...Array(i).keys()].slice(2002),g={};n.forEach(s=>{g[s]={},y({targetYear:s,suppressWarnings:u.suppressWarnings}).forEach(a=>{g[s]&&(g[s][a.browser]=a)})});const t=y({suppressWarnings:u.suppressWarnings}),l={};t.forEach(s=>{l[s.browser]=s});const w=new Date;w.setMonth(w.getMonth()+30);const v=y({widelyAvailableOnDate:w.toISOString().slice(0,10),suppressWarnings:u.suppressWarnings}),h={};v.forEach(s=>{h[s.browser]=s});const m=y({targetYear:2002,listAllCompatibleVersions:!0,suppressWarnings:u.suppressWarnings}),E=[];if(o.forEach(s=>{var a,r,c,e;let f=m.filter(a=>a.browser==s).sort((s,a)=>_(s.version,a.version)),b=null!==(r=null===(a=l[s])||void 0===a?void 0:a.version)&&void 0!==r?r:"0",o=null!==(e=null===(c=h[s])||void 0===c?void 0:c.version)&&void 0!==e?e:"0";n.forEach(a=>{var r;if(g[a]){let c=(null!==(r=g[a][s])&&void 0!==r?r:{version:"0"}).version,e=f.findIndex(s=>0===_(s.version,c));(a===i-1?f:f.slice(0,e)).forEach(s=>{let r=_(s.version,b)>=0,c=_(s.version,o)>=0,e=Object.assign(Object.assign({},s),{year:a<=2015?"pre_baseline":a-1});u.useSupports?(r&&(e.supports="widely"),c&&(e.supports="newly")):e=Object.assign(Object.assign({},e),{wa_compatible:r}),E.push(e)}),f=f.slice(e,f.length)}})}),u.includeDownstreamBrowsers){O(E,!0,u.includeKaiOS).forEach(s=>{let a=E.find(a=>"chrome"===a.browser&&a.version===s.engine_version);a&&(u.useSupports?E.push(Object.assign(Object.assign({},s),{year:a.year,supports:a.supports})):E.push(Object.assign(Object.assign({},s),{year:a.year,wa_compatible:a.wa_compatible})))})}if(E.sort((s,a)=>{if("pre_baseline"===s.year&&"pre_baseline"!==a.year)return-1;if("pre_baseline"===a.year&&"pre_baseline"!==s.year)return 1;if("pre_baseline"!==s.year&&"pre_baseline"!==a.year){if(s.year<a.year)return-1;if(s.year>a.year)return 1}return s.browser<a.browser?-1:s.browser>a.browser?1:_(s.version,a.version)}),"object"===u.outputFormat){const s={};return E.forEach(a=>{s[a.browser]||(s[a.browser]={});let r={year:a.year,release_date:a.release_date,engine:a.engine,engine_version:a.engine_version};s[a.browser][a.version]=u.useSupports?a.supports?Object.assign(Object.assign({},r),{supports:a.supports}):r:Object.assign(Object.assign({},r),{wa_compatible:a.wa_compatible})}),null!=s?s:{}}if("csv"===u.outputFormat){let s=`"browser","version","year","${u.useSupports?"supports":"wa_compatible"}","release_date","engine","engine_version"`;return E.forEach(a=>{var r,c,e,f;let b={browser:a.browser,version:a.version,year:a.year,release_date:null!==(r=a.release_date)&&void 0!==r?r:"NULL",engine:null!==(c=a.engine)&&void 0!==c?c:"NULL",engine_version:null!==(e=a.engine_version)&&void 0!==e?e:"NULL"};b=u.useSupports?Object.assign(Object.assign({},b),{supports:null!==(f=a.supports)&&void 0!==f?f:""}):Object.assign(Object.assign({},b),{wa_compatible:a.wa_compatible}),s+=`\n"${b.browser}","${b.version}","${b.year}","${u.useSupports?b.supports:b.wa_compatible}","${b.release_date}","${b.engine}","${b.engine_version}"`}),s}return E},exports.getCompatibleVersions=y;
Index: node_modules/baseline-browser-mapping/dist/index.d.ts
===================================================================
--- node_modules/baseline-browser-mapping/dist/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/baseline-browser-mapping/dist/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,102 @@
+export declare function _resetHasWarned(): void;
+type BrowserVersion = {
+    browser: string;
+    version: string;
+    release_date?: string;
+    engine?: string;
+    engine_version?: string;
+};
+interface AllBrowsersBrowserVersion extends BrowserVersion {
+    year: number | string;
+    supports?: string;
+    wa_compatible?: boolean;
+}
+type NestedBrowserVersions = {
+    [browser: string]: {
+        [version: string]: AllBrowsersBrowserVersion;
+    };
+};
+type Options = {
+    /**
+     * Whether to include only the minimum compatible browser versions or all compatible versions.
+     * Defaults to `false`.
+     */
+    listAllCompatibleVersions?: boolean;
+    /**
+     * Whether to include browsers that use the same engines as a core Baseline browser.
+     * Defaults to `false`.
+     */
+    includeDownstreamBrowsers?: boolean;
+    /**
+     * Pass a date in the format 'YYYY-MM-DD' to get versions compatible with Widely available on the specified date.
+     * If left undefined and a `targetYear` is not passed, defaults to Widely available as of the current date.
+     * > NOTE: cannot be used with `targetYear`.
+     */
+    widelyAvailableOnDate?: string | number;
+    /**
+     * Pass a year between 2015 and the current year to get browser versions compatible with all
+     * Newly Available features as of the end of the year specified.
+     * > NOTE: cannot be used with `widelyAvailableOnDate`.
+     */
+    targetYear?: number;
+    /**
+     * Pass a boolean that determines whether KaiOS is included in browser mappings.  KaiOS implements
+     * the Gecko engine used in Firefox.  However, KaiOS also has a different interaction paradigm to
+     * other browsers and requires extra consideration beyond simple feature compatibility to provide
+     * an optimal user experience.  Defaults to `false`.
+     */
+    includeKaiOS?: boolean;
+    overrideLastUpdated?: number;
+    /**
+     * Pass a boolean to suppress the warning about stale data.
+     * Defaults to `false`.
+     */
+    suppressWarnings?: boolean;
+};
+/**
+ * Returns browser versions compatible with specified Baseline targets.
+ * Defaults to returning the minimum versions of the core browser set that support Baseline Widely available.
+ * Takes an optional configuration `Object` with four optional properties:
+ * - `listAllCompatibleVersions`: `false` (default) or `false`
+ * - `includeDownstreamBrowsers`: `false` (default) or `false`
+ * - `widelyAvailableOnDate`: date in format `YYYY-MM-DD`
+ * - `targetYear`: year in format `YYYY`
+ */
+export declare function getCompatibleVersions(userOptions?: Options): BrowserVersion[];
+type AllVersionsOptions = {
+    /**
+     * Whether to return the output as a JavaScript `Array` (`"array"`), `Object` (`"object"`) or a CSV string (`"csv"`).
+     * Defaults to `"array"`.
+     */
+    outputFormat?: string;
+    /**
+     * Whether to include browsers that use the same engines as a core Baseline browser.
+     * Defaults to `false`.
+     */
+    includeDownstreamBrowsers?: boolean;
+    /**
+     * Whether to use the new "supports" property in place of "wa_compatible"
+     * Defaults to `false`
+     */
+    useSupports?: boolean;
+    /**
+     * Whether to include KaiOS in the output. KaiOS implements the Gecko engine used in Firefox.
+     * However, KaiOS also has a different interaction paradigm to other browsers and requires extra
+     * consideration beyond simple feature compatibility to provide an optimal user experience.
+     */
+    includeKaiOS?: boolean;
+    /**
+     * Pass a boolean to suppress the warning about old data.
+     * Defaults to `false`.
+     */
+    suppressWarnings?: boolean;
+};
+/**
+ * Returns all browser versions known to this module with their level of Baseline support as a JavaScript `Array` (`"array"`), `Object` (`"object"`) or a CSV string (`"csv"`).
+ * Takes an optional configuration `Object` with three optional properties:
+ * - `includeDownstreamBrowsers`: `true` (default) or `false`
+ * - `outputFormat`: `"array"` (default), `"object"` or `"csv"`
+ * - `useSupports`: `false` (default) or `true`, replaces `wa_compatible` property with optional `supports` property which returns `widely` or `newly` available when present.
+ */
+export declare function getAllVersions(userOptions?: AllVersionsOptions): AllBrowsersBrowserVersion[] | NestedBrowserVersions | string;
+export {};
Index: node_modules/baseline-browser-mapping/dist/index.js
===================================================================
--- node_modules/baseline-browser-mapping/dist/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/baseline-browser-mapping/dist/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+const s={chrome:{releases:[["1","2008-12-11","r","w","528"],["2","2009-05-21","r","w","530"],["3","2009-09-15","r","w","532"],["4","2010-01-25","r","w","532.5"],["5","2010-05-25","r","w","533"],["6","2010-09-02","r","w","534.3"],["7","2010-10-19","r","w","534.7"],["8","2010-12-02","r","w","534.10"],["9","2011-02-03","r","w","534.13"],["10","2011-03-08","r","w","534.16"],["11","2011-04-27","r","w","534.24"],["12","2011-06-07","r","w","534.30"],["13","2011-08-02","r","w","535.1"],["14","2011-09-16","r","w","535.1"],["15","2011-10-25","r","w","535.2"],["16","2011-12-13","r","w","535.7"],["17","2012-02-08","r","w","535.11"],["18","2012-03-28","r","w","535.19"],["19","2012-05-15","r","w","536.5"],["20","2012-06-26","r","w","536.10"],["21","2012-07-31","r","w","537.1"],["22","2012-09-25","r","w","537.4"],["23","2012-11-06","r","w","537.11"],["24","2013-01-10","r","w","537.17"],["25","2013-02-21","r","w","537.22"],["26","2013-03-26","r","w","537.31"],["27","2013-05-21","r","w","537.36"],["28","2013-07-09","r","b","28"],["29","2013-08-20","r","b","29"],["30","2013-10-01","r","b","30"],["31","2013-11-12","r","b","31"],["32","2014-01-14","r","b","32"],["33","2014-02-20","r","b","33"],["34","2014-04-08","r","b","34"],["35","2014-05-20","r","b","35"],["36","2014-07-16","r","b","36"],["37","2014-08-26","r","b","37"],["38","2014-10-07","r","b","38"],["39","2014-11-18","r","b","39"],["40","2015-01-21","r","b","40"],["41","2015-03-03","r","b","41"],["42","2015-04-14","r","b","42"],["43","2015-05-19","r","b","43"],["44","2015-07-21","r","b","44"],["45","2015-09-01","r","b","45"],["46","2015-10-13","r","b","46"],["47","2015-12-01","r","b","47"],["48","2016-01-20","r","b","48"],["49","2016-03-02","r","b","49"],["50","2016-04-13","r","b","50"],["51","2016-05-25","r","b","51"],["52","2016-07-20","r","b","52"],["53","2016-08-31","r","b","53"],["54","2016-10-12","r","b","54"],["55","2016-12-01","r","b","55"],["56","2017-01-25","r","b","56"],["57","2017-03-09","r","b","57"],["58","2017-04-19","r","b","58"],["59","2017-06-05","r","b","59"],["60","2017-07-25","r","b","60"],["61","2017-09-05","r","b","61"],["62","2017-10-17","r","b","62"],["63","2017-12-06","r","b","63"],["64","2018-01-23","r","b","64"],["65","2018-03-06","r","b","65"],["66","2018-04-17","r","b","66"],["67","2018-05-29","r","b","67"],["68","2018-07-24","r","b","68"],["69","2018-09-04","r","b","69"],["70","2018-10-16","r","b","70"],["71","2018-12-04","r","b","71"],["72","2019-01-29","r","b","72"],["73","2019-03-12","r","b","73"],["74","2019-04-23","r","b","74"],["75","2019-06-04","r","b","75"],["76","2019-07-30","r","b","76"],["77","2019-09-10","r","b","77"],["78","2019-10-22","r","b","78"],["79","2019-12-10","r","b","79"],["80","2020-02-04","r","b","80"],["81","2020-04-07","r","b","81"],["83","2020-05-19","r","b","83"],["84","2020-07-27","r","b","84"],["85","2020-08-25","r","b","85"],["86","2020-10-20","r","b","86"],["87","2020-11-17","r","b","87"],["88","2021-01-19","r","b","88"],["89","2021-03-02","r","b","89"],["90","2021-04-13","r","b","90"],["91","2021-05-25","r","b","91"],["92","2021-07-20","r","b","92"],["93","2021-08-31","r","b","93"],["94","2021-09-21","r","b","94"],["95","2021-10-19","r","b","95"],["96","2021-11-15","r","b","96"],["97","2022-01-04","r","b","97"],["98","2022-02-01","r","b","98"],["99","2022-03-01","r","b","99"],["100","2022-03-29","r","b","100"],["101","2022-04-26","r","b","101"],["102","2022-05-24","r","b","102"],["103","2022-06-21","r","b","103"],["104","2022-08-02","r","b","104"],["105","2022-09-02","r","b","105"],["106","2022-09-27","r","b","106"],["107","2022-10-25","r","b","107"],["108","2022-11-29","r","b","108"],["109","2023-01-10","r","b","109"],["110","2023-02-07","r","b","110"],["111","2023-03-07","r","b","111"],["112","2023-04-04","r","b","112"],["113","2023-05-02","r","b","113"],["114","2023-05-30","r","b","114"],["115","2023-07-18","r","b","115"],["116","2023-08-15","r","b","116"],["117","2023-09-12","r","b","117"],["118","2023-10-10","r","b","118"],["119","2023-10-31","r","b","119"],["120","2023-12-05","r","b","120"],["121","2024-01-23","r","b","121"],["122","2024-02-20","r","b","122"],["123","2024-03-19","r","b","123"],["124","2024-04-16","r","b","124"],["125","2024-05-14","r","b","125"],["126","2024-06-11","r","b","126"],["127","2024-07-23","r","b","127"],["128","2024-08-20","r","b","128"],["129","2024-09-17","r","b","129"],["130","2024-10-15","r","b","130"],["131","2024-11-12","r","b","131"],["132","2025-01-14","r","b","132"],["133","2025-02-04","r","b","133"],["134","2025-03-04","r","b","134"],["135","2025-04-01","r","b","135"],["136","2025-04-29","r","b","136"],["137","2025-05-27","r","b","137"],["138","2025-06-24","r","b","138"],["139","2025-08-05","r","b","139"],["140","2025-09-02","r","b","140"],["141","2025-09-30","r","b","141"],["142","2025-10-28","r","b","142"],["143","2025-12-02","c","b","143"],["144","2026-01-13","b","b","144"],["145","2026-02-10","n","b","145"],["146",null,"p","b","146"]]},chrome_android:{releases:[["18","2012-06-27","r","w","535.19"],["25","2013-02-27","r","w","537.22"],["26","2013-04-03","r","w","537.31"],["27","2013-05-22","r","w","537.36"],["28","2013-07-10","r","b","28"],["29","2013-08-21","r","b","29"],["30","2013-10-02","r","b","30"],["31","2013-11-14","r","b","31"],["32","2014-01-15","r","b","32"],["33","2014-02-26","r","b","33"],["34","2014-04-02","r","b","34"],["35","2014-05-20","r","b","35"],["36","2014-07-16","r","b","36"],["37","2014-09-03","r","b","37"],["38","2014-10-08","r","b","38"],["39","2014-11-12","r","b","39"],["40","2015-01-21","r","b","40"],["41","2015-03-11","r","b","41"],["42","2015-04-15","r","b","42"],["43","2015-05-27","r","b","43"],["44","2015-07-29","r","b","44"],["45","2015-09-01","r","b","45"],["46","2015-10-14","r","b","46"],["47","2015-12-02","r","b","47"],["48","2016-01-26","r","b","48"],["49","2016-03-09","r","b","49"],["50","2016-04-13","r","b","50"],["51","2016-06-08","r","b","51"],["52","2016-07-27","r","b","52"],["53","2016-09-07","r","b","53"],["54","2016-10-19","r","b","54"],["55","2016-12-06","r","b","55"],["56","2017-02-01","r","b","56"],["57","2017-03-16","r","b","57"],["58","2017-04-25","r","b","58"],["59","2017-06-06","r","b","59"],["60","2017-08-01","r","b","60"],["61","2017-09-05","r","b","61"],["62","2017-10-24","r","b","62"],["63","2017-12-05","r","b","63"],["64","2018-01-23","r","b","64"],["65","2018-03-06","r","b","65"],["66","2018-04-17","r","b","66"],["67","2018-05-31","r","b","67"],["68","2018-07-24","r","b","68"],["69","2018-09-04","r","b","69"],["70","2018-10-17","r","b","70"],["71","2018-12-04","r","b","71"],["72","2019-01-29","r","b","72"],["73","2019-03-12","r","b","73"],["74","2019-04-24","r","b","74"],["75","2019-06-04","r","b","75"],["76","2019-07-30","r","b","76"],["77","2019-09-10","r","b","77"],["78","2019-10-22","r","b","78"],["79","2019-12-17","r","b","79"],["80","2020-02-04","r","b","80"],["81","2020-04-07","r","b","81"],["83","2020-05-19","r","b","83"],["84","2020-07-27","r","b","84"],["85","2020-08-25","r","b","85"],["86","2020-10-20","r","b","86"],["87","2020-11-17","r","b","87"],["88","2021-01-19","r","b","88"],["89","2021-03-02","r","b","89"],["90","2021-04-13","r","b","90"],["91","2021-05-25","r","b","91"],["92","2021-07-20","r","b","92"],["93","2021-08-31","r","b","93"],["94","2021-09-21","r","b","94"],["95","2021-10-19","r","b","95"],["96","2021-11-15","r","b","96"],["97","2022-01-04","r","b","97"],["98","2022-02-01","r","b","98"],["99","2022-03-01","r","b","99"],["100","2022-03-29","r","b","100"],["101","2022-04-26","r","b","101"],["102","2022-05-24","r","b","102"],["103","2022-06-21","r","b","103"],["104","2022-08-02","r","b","104"],["105","2022-09-02","r","b","105"],["106","2022-09-27","r","b","106"],["107","2022-10-25","r","b","107"],["108","2022-11-29","r","b","108"],["109","2023-01-10","r","b","109"],["110","2023-02-07","r","b","110"],["111","2023-03-07","r","b","111"],["112","2023-04-04","r","b","112"],["113","2023-05-02","r","b","113"],["114","2023-05-30","r","b","114"],["115","2023-07-21","r","b","115"],["116","2023-08-15","r","b","116"],["117","2023-09-12","r","b","117"],["118","2023-10-10","r","b","118"],["119","2023-10-31","r","b","119"],["120","2023-12-05","r","b","120"],["121","2024-01-23","r","b","121"],["122","2024-02-20","r","b","122"],["123","2024-03-19","r","b","123"],["124","2024-04-16","r","b","124"],["125","2024-05-14","r","b","125"],["126","2024-06-11","r","b","126"],["127","2024-07-23","r","b","127"],["128","2024-08-20","r","b","128"],["129","2024-09-17","r","b","129"],["130","2024-10-15","r","b","130"],["131","2024-11-12","r","b","131"],["132","2025-01-14","r","b","132"],["133","2025-02-04","r","b","133"],["134","2025-03-04","r","b","134"],["135","2025-04-01","r","b","135"],["136","2025-04-29","r","b","136"],["137","2025-05-27","r","b","137"],["138","2025-06-24","r","b","138"],["139","2025-08-05","r","b","139"],["140","2025-09-02","r","b","140"],["141","2025-09-30","r","b","141"],["142","2025-10-28","r","b","142"],["143","2025-12-02","c","b","143"],["144","2026-01-13","b","b","144"],["145","2026-02-10","n","b","145"],["146",null,"p","b","146"]]},edge:{releases:[["12","2015-07-29","r",null,"12"],["13","2015-11-12","r",null,"13"],["14","2016-08-02","r",null,"14"],["15","2017-04-05","r",null,"15"],["16","2017-10-17","r",null,"16"],["17","2018-04-30","r",null,"17"],["18","2018-10-02","r",null,"18"],["79","2020-01-15","r","b","79"],["80","2020-02-07","r","b","80"],["81","2020-04-13","r","b","81"],["83","2020-05-21","r","b","83"],["84","2020-07-16","r","b","84"],["85","2020-08-27","r","b","85"],["86","2020-10-09","r","b","86"],["87","2020-11-19","r","b","87"],["88","2021-01-21","r","b","88"],["89","2021-03-04","r","b","89"],["90","2021-04-15","r","b","90"],["91","2021-05-27","r","b","91"],["92","2021-07-22","r","b","92"],["93","2021-09-02","r","b","93"],["94","2021-09-24","r","b","94"],["95","2021-10-21","r","b","95"],["96","2021-11-19","r","b","96"],["97","2022-01-06","r","b","97"],["98","2022-02-03","r","b","98"],["99","2022-03-03","r","b","99"],["100","2022-04-01","r","b","100"],["101","2022-04-28","r","b","101"],["102","2022-05-31","r","b","102"],["103","2022-06-23","r","b","103"],["104","2022-08-05","r","b","104"],["105","2022-09-01","r","b","105"],["106","2022-10-03","r","b","106"],["107","2022-10-27","r","b","107"],["108","2022-12-05","r","b","108"],["109","2023-01-12","r","b","109"],["110","2023-02-09","r","b","110"],["111","2023-03-13","r","b","111"],["112","2023-04-06","r","b","112"],["113","2023-05-05","r","b","113"],["114","2023-06-02","r","b","114"],["115","2023-07-21","r","b","115"],["116","2023-08-21","r","b","116"],["117","2023-09-15","r","b","117"],["118","2023-10-13","r","b","118"],["119","2023-11-02","r","b","119"],["120","2023-12-07","r","b","120"],["121","2024-01-25","r","b","121"],["122","2024-02-23","r","b","122"],["123","2024-03-22","r","b","123"],["124","2024-04-18","r","b","124"],["125","2024-05-17","r","b","125"],["126","2024-06-13","r","b","126"],["127","2024-07-25","r","b","127"],["128","2024-08-22","r","b","128"],["129","2024-09-19","r","b","129"],["130","2024-10-17","r","b","130"],["131","2024-11-14","r","b","131"],["132","2025-01-17","r","b","132"],["133","2025-02-06","r","b","133"],["134","2025-03-06","r","b","134"],["135","2025-04-04","r","b","135"],["136","2025-05-01","r","b","136"],["137","2025-05-29","r","b","137"],["138","2025-06-26","r","b","138"],["139","2025-08-07","r","b","139"],["140","2025-09-05","r","b","140"],["141","2025-10-03","r","b","141"],["142","2025-10-31","r","b","142"],["143","2025-12-05","c","b","143"],["144","2026-01-15","b","b","144"],["145","2026-02-12","n","b","145"],["146","2026-03-12","p","b","146"]]},firefox:{releases:[["1","2004-11-09","r","g","1.7"],["2","2006-10-24","r","g","1.8.1"],["3","2008-06-17","r","g","1.9"],["4","2011-03-22","r","g","2"],["5","2011-06-21","r","g","5"],["6","2011-08-16","r","g","6"],["7","2011-09-27","r","g","7"],["8","2011-11-08","r","g","8"],["9","2011-12-20","r","g","9"],["10","2012-01-31","r","g","10"],["11","2012-03-13","r","g","11"],["12","2012-04-24","r","g","12"],["13","2012-06-05","r","g","13"],["14","2012-07-17","r","g","14"],["15","2012-08-28","r","g","15"],["16","2012-10-09","r","g","16"],["17","2012-11-20","r","g","17"],["18","2013-01-08","r","g","18"],["19","2013-02-19","r","g","19"],["20","2013-04-02","r","g","20"],["21","2013-05-14","r","g","21"],["22","2013-06-25","r","g","22"],["23","2013-08-06","r","g","23"],["24","2013-09-17","r","g","24"],["25","2013-10-29","r","g","25"],["26","2013-12-10","r","g","26"],["27","2014-02-04","r","g","27"],["28","2014-03-18","r","g","28"],["29","2014-04-29","r","g","29"],["30","2014-06-10","r","g","30"],["31","2014-07-22","r","g","31"],["32","2014-09-02","r","g","32"],["33","2014-10-14","r","g","33"],["34","2014-12-01","r","g","34"],["35","2015-01-13","r","g","35"],["36","2015-02-24","r","g","36"],["37","2015-03-31","r","g","37"],["38","2015-05-12","r","g","38"],["39","2015-07-02","r","g","39"],["40","2015-08-11","r","g","40"],["41","2015-09-22","r","g","41"],["42","2015-11-03","r","g","42"],["43","2015-12-15","r","g","43"],["44","2016-01-26","r","g","44"],["45","2016-03-08","r","g","45"],["46","2016-04-26","r","g","46"],["47","2016-06-07","r","g","47"],["48","2016-08-02","r","g","48"],["49","2016-09-20","r","g","49"],["50","2016-11-15","r","g","50"],["51","2017-01-24","r","g","51"],["52","2017-03-07","r","g","52"],["53","2017-04-19","r","g","53"],["54","2017-06-13","r","g","54"],["55","2017-08-08","r","g","55"],["56","2017-09-28","r","g","56"],["57","2017-11-14","r","g","57"],["58","2018-01-23","r","g","58"],["59","2018-03-13","r","g","59"],["60","2018-05-09","r","g","60"],["61","2018-06-26","r","g","61"],["62","2018-09-05","r","g","62"],["63","2018-10-23","r","g","63"],["64","2018-12-11","r","g","64"],["65","2019-01-29","r","g","65"],["66","2019-03-19","r","g","66"],["67","2019-05-21","r","g","67"],["68","2019-07-09","r","g","68"],["69","2019-09-03","r","g","69"],["70","2019-10-22","r","g","70"],["71","2019-12-10","r","g","71"],["72","2020-01-07","r","g","72"],["73","2020-02-11","r","g","73"],["74","2020-03-10","r","g","74"],["75","2020-04-07","r","g","75"],["76","2020-05-05","r","g","76"],["77","2020-06-02","r","g","77"],["78","2020-06-30","r","g","78"],["79","2020-07-28","r","g","79"],["80","2020-08-25","r","g","80"],["81","2020-09-22","r","g","81"],["82","2020-10-20","r","g","82"],["83","2020-11-17","r","g","83"],["84","2020-12-15","r","g","84"],["85","2021-01-26","r","g","85"],["86","2021-02-23","r","g","86"],["87","2021-03-23","r","g","87"],["88","2021-04-19","r","g","88"],["89","2021-06-01","r","g","89"],["90","2021-07-13","r","g","90"],["91","2021-08-10","r","g","91"],["92","2021-09-07","r","g","92"],["93","2021-10-05","r","g","93"],["94","2021-11-02","r","g","94"],["95","2021-12-07","r","g","95"],["96","2022-01-11","r","g","96"],["97","2022-02-08","r","g","97"],["98","2022-03-08","r","g","98"],["99","2022-04-05","r","g","99"],["100","2022-05-03","r","g","100"],["101","2022-05-31","r","g","101"],["102","2022-06-28","r","g","102"],["103","2022-07-26","r","g","103"],["104","2022-08-23","r","g","104"],["105","2022-09-20","r","g","105"],["106","2022-10-18","r","g","106"],["107","2022-11-15","r","g","107"],["108","2022-12-13","r","g","108"],["109","2023-01-17","r","g","109"],["110","2023-02-14","r","g","110"],["111","2023-03-14","r","g","111"],["112","2023-04-11","r","g","112"],["113","2023-05-09","r","g","113"],["114","2023-06-06","r","g","114"],["115","2023-07-04","r","g","115"],["116","2023-08-01","r","g","116"],["117","2023-08-29","r","g","117"],["118","2023-09-26","r","g","118"],["119","2023-10-24","r","g","119"],["120","2023-11-21","r","g","120"],["121","2023-12-19","r","g","121"],["122","2024-01-23","r","g","122"],["123","2024-02-20","r","g","123"],["124","2024-03-19","r","g","124"],["125","2024-04-16","r","g","125"],["126","2024-05-14","r","g","126"],["127","2024-06-11","r","g","127"],["128","2024-07-09","r","g","128"],["129","2024-08-06","r","g","129"],["130","2024-09-03","r","g","130"],["131","2024-10-01","r","g","131"],["132","2024-10-29","r","g","132"],["133","2024-11-26","r","g","133"],["134","2025-01-07","r","g","134"],["135","2025-02-04","r","g","135"],["136","2025-03-04","r","g","136"],["137","2025-04-01","r","g","137"],["138","2025-04-29","r","g","138"],["139","2025-05-27","r","g","139"],["140","2025-06-24","e","g","140"],["141","2025-07-22","r","g","141"],["142","2025-08-19","r","g","142"],["143","2025-09-16","r","g","143"],["144","2025-10-14","r","g","144"],["145","2025-11-11","r","g","145"],["146","2025-12-09","c","g","146"],["147","2026-01-13","b","g","147"],["148","2026-02-24","n","g","148"],["149","2026-03-24","p","g","149"],["1.5","2005-11-29","r","g","1.8"],["3.5","2009-06-30","r","g","1.9.1"],["3.6","2010-01-21","r","g","1.9.2"]]},firefox_android:{releases:[["4","2011-03-29","r","g","2"],["5","2011-06-21","r","g","5"],["6","2011-08-16","r","g","6"],["7","2011-09-27","r","g","7"],["8","2011-11-08","r","g","8"],["9","2011-12-21","r","g","9"],["10","2012-01-31","r","g","10"],["14","2012-06-26","r","g","14"],["15","2012-08-28","r","g","15"],["16","2012-10-09","r","g","16"],["17","2012-11-20","r","g","17"],["18","2013-01-08","r","g","18"],["19","2013-02-19","r","g","19"],["20","2013-04-02","r","g","20"],["21","2013-05-14","r","g","21"],["22","2013-06-25","r","g","22"],["23","2013-08-06","r","g","23"],["24","2013-09-17","r","g","24"],["25","2013-10-29","r","g","25"],["26","2013-12-10","r","g","26"],["27","2014-02-04","r","g","27"],["28","2014-03-18","r","g","28"],["29","2014-04-29","r","g","29"],["30","2014-06-10","r","g","30"],["31","2014-07-22","r","g","31"],["32","2014-09-02","r","g","32"],["33","2014-10-14","r","g","33"],["34","2014-12-01","r","g","34"],["35","2015-01-13","r","g","35"],["36","2015-02-27","r","g","36"],["37","2015-03-31","r","g","37"],["38","2015-05-12","r","g","38"],["39","2015-07-02","r","g","39"],["40","2015-08-11","r","g","40"],["41","2015-09-22","r","g","41"],["42","2015-11-03","r","g","42"],["43","2015-12-15","r","g","43"],["44","2016-01-26","r","g","44"],["45","2016-03-08","r","g","45"],["46","2016-04-26","r","g","46"],["47","2016-06-07","r","g","47"],["48","2016-08-02","r","g","48"],["49","2016-09-20","r","g","49"],["50","2016-11-15","r","g","50"],["51","2017-01-24","r","g","51"],["52","2017-03-07","r","g","52"],["53","2017-04-19","r","g","53"],["54","2017-06-13","r","g","54"],["55","2017-08-08","r","g","55"],["56","2017-09-28","r","g","56"],["57","2017-11-28","r","g","57"],["58","2018-01-22","r","g","58"],["59","2018-03-13","r","g","59"],["60","2018-05-09","r","g","60"],["61","2018-06-26","r","g","61"],["62","2018-09-05","r","g","62"],["63","2018-10-23","r","g","63"],["64","2018-12-11","r","g","64"],["65","2019-01-29","r","g","65"],["66","2019-03-19","r","g","66"],["67","2019-05-21","r","g","67"],["68","2019-07-09","r","g","68"],["79","2020-07-28","r","g","79"],["80","2020-08-31","r","g","80"],["81","2020-09-22","r","g","81"],["82","2020-10-20","r","g","82"],["83","2020-11-17","r","g","83"],["84","2020-12-15","r","g","84"],["85","2021-01-26","r","g","85"],["86","2021-02-23","r","g","86"],["87","2021-03-23","r","g","87"],["88","2021-04-19","r","g","88"],["89","2021-06-01","r","g","89"],["90","2021-07-13","r","g","90"],["91","2021-08-10","r","g","91"],["92","2021-09-07","r","g","92"],["93","2021-10-05","r","g","93"],["94","2021-11-02","r","g","94"],["95","2021-12-07","r","g","95"],["96","2022-01-11","r","g","96"],["97","2022-02-08","r","g","97"],["98","2022-03-08","r","g","98"],["99","2022-04-05","r","g","99"],["100","2022-05-03","r","g","100"],["101","2022-05-31","r","g","101"],["102","2022-06-28","r","g","102"],["103","2022-07-26","r","g","103"],["104","2022-08-23","r","g","104"],["105","2022-09-20","r","g","105"],["106","2022-10-18","r","g","106"],["107","2022-11-15","r","g","107"],["108","2022-12-13","r","g","108"],["109","2023-01-17","r","g","109"],["110","2023-02-14","r","g","110"],["111","2023-03-14","r","g","111"],["112","2023-04-11","r","g","112"],["113","2023-05-09","r","g","113"],["114","2023-06-06","r","g","114"],["115","2023-07-04","r","g","115"],["116","2023-08-01","r","g","116"],["117","2023-08-29","r","g","117"],["118","2023-09-26","r","g","118"],["119","2023-10-24","r","g","119"],["120","2023-11-21","r","g","120"],["121","2023-12-19","r","g","121"],["122","2024-01-23","r","g","122"],["123","2024-02-20","r","g","123"],["124","2024-03-19","r","g","124"],["125","2024-04-16","r","g","125"],["126","2024-05-14","r","g","126"],["127","2024-06-11","r","g","127"],["128","2024-07-09","r","g","128"],["129","2024-08-06","r","g","129"],["130","2024-09-03","r","g","130"],["131","2024-10-01","r","g","131"],["132","2024-10-29","r","g","132"],["133","2024-11-26","r","g","133"],["134","2025-01-07","r","g","134"],["135","2025-02-04","r","g","135"],["136","2025-03-04","r","g","136"],["137","2025-04-01","r","g","137"],["138","2025-04-29","r","g","138"],["139","2025-05-27","r","g","139"],["140","2025-06-24","e","g","140"],["141","2025-07-22","r","g","141"],["142","2025-08-19","r","g","142"],["143","2025-09-16","r","g","143"],["144","2025-10-14","r","g","144"],["145","2025-11-11","r","g","145"],["146","2025-12-09","c","g","146"],["147","2026-01-13","b","g","147"],["148","2026-02-24","n","g","148"],["149","2026-03-24","p","g","149"]]},opera:{releases:[["2","1996-07-14","r",null,null],["3","1997-12-01","r",null,null],["4","2000-06-28","r",null,null],["5","2000-12-06","r",null,null],["6","2001-12-18","r",null,null],["7","2003-01-28","r","p","1"],["8","2005-04-19","r","p","1"],["9","2006-06-20","r","p","2"],["10","2009-09-01","r","p","2.2"],["11","2010-12-16","r","p","2.7"],["12","2012-06-14","r","p","2.10"],["15","2013-07-02","r","b","28"],["16","2013-08-27","r","b","29"],["17","2013-10-08","r","b","30"],["18","2013-11-19","r","b","31"],["19","2014-01-28","r","b","32"],["20","2014-03-04","r","b","33"],["21","2014-05-06","r","b","34"],["22","2014-06-03","r","b","35"],["23","2014-07-22","r","b","36"],["24","2014-09-02","r","b","37"],["25","2014-10-15","r","b","38"],["26","2014-12-03","r","b","39"],["27","2015-01-27","r","b","40"],["28","2015-03-10","r","b","41"],["29","2015-04-28","r","b","42"],["30","2015-06-09","r","b","43"],["31","2015-08-04","r","b","44"],["32","2015-09-15","r","b","45"],["33","2015-10-27","r","b","46"],["34","2015-12-08","r","b","47"],["35","2016-02-02","r","b","48"],["36","2016-03-15","r","b","49"],["37","2016-05-04","r","b","50"],["38","2016-06-08","r","b","51"],["39","2016-08-02","r","b","52"],["40","2016-09-20","r","b","53"],["41","2016-10-25","r","b","54"],["42","2016-12-13","r","b","55"],["43","2017-02-07","r","b","56"],["44","2017-03-21","r","b","57"],["45","2017-05-10","r","b","58"],["46","2017-06-22","r","b","59"],["47","2017-08-09","r","b","60"],["48","2017-09-27","r","b","61"],["49","2017-11-08","r","b","62"],["50","2018-01-04","r","b","63"],["51","2018-02-07","r","b","64"],["52","2018-03-22","r","b","65"],["53","2018-05-10","r","b","66"],["54","2018-06-28","r","b","67"],["55","2018-08-16","r","b","68"],["56","2018-09-25","r","b","69"],["57","2018-11-28","r","b","70"],["58","2019-01-23","r","b","71"],["60","2019-04-09","r","b","73"],["62","2019-06-27","r","b","75"],["63","2019-08-20","r","b","76"],["64","2019-10-07","r","b","77"],["65","2019-11-13","r","b","78"],["66","2020-01-07","r","b","79"],["67","2020-03-03","r","b","80"],["68","2020-04-22","r","b","81"],["69","2020-06-24","r","b","83"],["70","2020-07-27","r","b","84"],["71","2020-09-15","r","b","85"],["72","2020-10-21","r","b","86"],["73","2020-12-09","r","b","87"],["74","2021-02-02","r","b","88"],["75","2021-03-24","r","b","89"],["76","2021-04-28","r","b","90"],["77","2021-06-09","r","b","91"],["78","2021-08-03","r","b","92"],["79","2021-09-14","r","b","93"],["80","2021-10-05","r","b","94"],["81","2021-11-04","r","b","95"],["82","2021-12-02","r","b","96"],["83","2022-01-19","r","b","97"],["84","2022-02-16","r","b","98"],["85","2022-03-23","r","b","99"],["86","2022-04-20","r","b","100"],["87","2022-05-17","r","b","101"],["88","2022-06-08","r","b","102"],["89","2022-07-07","r","b","103"],["90","2022-08-18","r","b","104"],["91","2022-09-14","r","b","105"],["92","2022-10-19","r","b","106"],["93","2022-11-17","r","b","107"],["94","2022-12-15","r","b","108"],["95","2023-02-01","r","b","109"],["96","2023-02-22","r","b","110"],["97","2023-03-22","r","b","111"],["98","2023-04-20","r","b","112"],["99","2023-05-16","r","b","113"],["100","2023-06-29","r","b","114"],["101","2023-07-26","r","b","115"],["102","2023-08-23","r","b","116"],["103","2023-10-03","r","b","117"],["104","2023-10-23","r","b","118"],["105","2023-11-14","r","b","119"],["106","2023-12-19","r","b","120"],["107","2024-02-07","r","b","121"],["108","2024-03-05","r","b","122"],["109","2024-03-27","r","b","123"],["110","2024-05-14","r","b","124"],["111","2024-06-12","r","b","125"],["112","2024-07-11","r","b","126"],["113","2024-08-22","r","b","127"],["114","2024-09-25","r","b","128"],["115","2024-11-27","r","b","130"],["116","2025-01-08","r","b","131"],["117","2025-02-13","r","b","132"],["118","2025-04-15","r","b","133"],["119","2025-05-13","r","b","134"],["120","2025-07-02","r","b","135"],["121","2025-08-27","r","b","137"],["122","2025-09-11","r","b","138"],["123","2025-10-28","c","b","139"],["124",null,"b","b","140"],["125",null,"n","b","141"],["10.1","2009-11-23","r","p","2.2"],["10.5","2010-03-02","r","p","2.5"],["10.6","2010-07-01","r","p","2.6"],["11.1","2011-04-12","r","p","2.8"],["11.5","2011-06-28","r","p","2.9"],["11.6","2011-12-06","r","p","2.10"],["12.1","2012-11-20","r","p","2.12"],["3.5","1998-11-18","r",null,null],["3.6","1999-05-06","r",null,null],["5.1","2001-04-10","r",null,null],["7.1","2003-04-11","r","p","1"],["7.2","2003-09-23","r","p","1"],["7.5","2004-05-12","r","p","1"],["8.5","2005-09-20","r","p","1"],["9.1","2006-12-18","r","p","2"],["9.2","2007-04-11","r","p","2"],["9.5","2008-06-12","r","p","2.1"],["9.6","2008-10-08","r","p","2.1"]]},opera_android:{releases:[["11","2011-03-22","r","p","2.7"],["12","2012-02-25","r","p","2.10"],["14","2013-05-21","r","w","537.31"],["15","2013-07-08","r","b","28"],["16","2013-09-18","r","b","29"],["18","2013-11-20","r","b","31"],["19","2014-01-28","r","b","32"],["20","2014-03-06","r","b","33"],["21","2014-04-22","r","b","34"],["22","2014-06-17","r","b","35"],["24","2014-09-10","r","b","37"],["25","2014-10-16","r","b","38"],["26","2014-12-02","r","b","39"],["27","2015-01-29","r","b","40"],["28","2015-03-10","r","b","41"],["29","2015-04-28","r","b","42"],["30","2015-06-10","r","b","43"],["32","2015-09-23","r","b","45"],["33","2015-11-03","r","b","46"],["34","2015-12-16","r","b","47"],["35","2016-02-04","r","b","48"],["36","2016-03-31","r","b","49"],["37","2016-06-16","r","b","50"],["41","2016-10-25","r","b","54"],["42","2017-01-21","r","b","55"],["43","2017-09-27","r","b","59"],["44","2017-12-11","r","b","60"],["45","2018-02-15","r","b","61"],["46","2018-05-14","r","b","63"],["47","2018-07-23","r","b","66"],["48","2018-11-08","r","b","69"],["49","2018-12-07","r","b","70"],["50","2019-02-18","r","b","71"],["51","2019-03-21","r","b","72"],["52","2019-05-17","r","b","73"],["53","2019-07-11","r","b","74"],["54","2019-10-18","r","b","76"],["55","2019-12-03","r","b","77"],["56","2020-02-06","r","b","78"],["57","2020-03-30","r","b","80"],["58","2020-05-13","r","b","81"],["59","2020-06-30","r","b","83"],["60","2020-09-23","r","b","85"],["61","2020-12-07","r","b","86"],["62","2021-02-16","r","b","87"],["63","2021-04-16","r","b","89"],["64","2021-05-25","r","b","91"],["65","2021-10-20","r","b","92"],["66","2021-12-15","r","b","94"],["67","2022-01-31","r","b","96"],["68","2022-03-30","r","b","99"],["69","2022-05-09","r","b","100"],["70","2022-06-29","r","b","102"],["71","2022-09-16","r","b","104"],["72","2022-10-21","r","b","106"],["73","2023-01-17","r","b","108"],["74","2023-03-13","r","b","110"],["75","2023-05-17","r","b","112"],["76","2023-06-26","r","b","114"],["77","2023-08-31","r","b","115"],["78","2023-10-23","r","b","117"],["79","2023-12-06","r","b","119"],["80","2024-01-25","r","b","120"],["81","2024-03-14","r","b","122"],["82","2024-05-02","r","b","124"],["83","2024-06-25","r","b","126"],["84","2024-08-26","r","b","127"],["85","2024-10-29","r","b","128"],["86","2024-12-02","r","b","130"],["87","2025-01-22","r","b","132"],["88","2025-03-19","r","b","134"],["89","2025-04-29","r","b","135"],["90","2025-06-18","r","b","137"],["91","2025-08-19","r","b","139"],["92","2025-10-08","r","b","140"],["93","2025-11-25","c","b","142"],["10.1","2010-11-09","r","p","2.5"],["11.1","2011-06-30","r","p","2.8"],["11.5","2011-10-12","r","p","2.9"],["12.1","2012-10-09","r","p","2.11"]]},safari:{releases:[["1","2003-06-23","r","w","85"],["2","2005-04-29","r","w","412"],["3","2007-10-26","r","w","523.10"],["4","2009-06-08","r","w","530.17"],["5","2010-06-07","r","w","533.16"],["6","2012-07-25","r","w","536.25"],["7","2013-10-22","r","w","537.71"],["8","2014-10-16","r","w","538.35"],["9","2015-09-30","r","w","601.1.56"],["10","2016-09-20","r","w","602.1.50"],["11","2017-09-19","r","w","604.2.4"],["12","2018-09-17","r","w","606.1.36"],["13","2019-09-19","r","w","608.2.11"],["14","2020-09-16","r","w","610.1.28"],["15","2021-09-20","r","w","612.1.27"],["16","2022-09-12","r","w","614.1.25"],["17","2023-09-18","r","w","616.1.27"],["18","2024-09-16","r","w","619.1.26"],["26","2025-09-15","r","w","622.1.22"],["1.1","2003-10-24","r","w","100"],["1.2","2004-02-02","r","w","125"],["1.3","2005-04-15","r","w","312"],["10.1","2017-03-27","r","w","603.2.1"],["11.1","2018-04-12","r","w","605.1.33"],["12.1","2019-03-25","r","w","607.1.40"],["13.1","2020-03-24","r","w","609.1.20"],["14.1","2021-04-26","r","w","611.1.21"],["15.1","2021-10-25","r","w","612.2.9"],["15.2","2021-12-13","r","w","612.3.6"],["15.3","2022-01-26","r","w","612.4.9"],["15.4","2022-03-14","r","w","613.1.17"],["15.5","2022-05-16","r","w","613.2.7"],["15.6","2022-07-20","r","w","613.3.9"],["16.1","2022-10-24","r","w","614.2.9"],["16.2","2022-12-13","r","w","614.3.7"],["16.3","2023-01-23","r","w","614.4.6"],["16.4","2023-03-27","r","w","615.1.26"],["16.5","2023-05-18","r","w","615.2.9"],["16.6","2023-07-24","r","w","615.3.12"],["17.1","2023-10-25","r","w","616.2.9"],["17.2","2023-12-11","r","w","617.1.17"],["17.3","2024-01-22","r","w","617.2.4"],["17.4","2024-03-05","r","w","618.1.15"],["17.5","2024-05-13","r","w","618.2.12"],["17.6","2024-07-29","r","w","618.3.11"],["18.1","2024-10-28","r","w","619.2.8"],["18.2","2024-12-11","r","w","620.1.16"],["18.3","2025-01-27","r","w","620.2.4"],["18.4","2025-03-31","r","w","621.1.15"],["18.5","2025-05-12","r","w","621.2.5"],["18.6","2025-07-29","r","w","621.3.11"],["26.1","2025-11-03","r","w","622.2.11"],["26.2","2025-12-12","r","w","623.1.14"],["26.3","2025-12-15","c","w","623.2.2"],["3.1","2008-03-18","r","w","525.13"],["5.1","2011-07-20","r","w","534.48"],["9.1","2016-03-21","r","w","601.5.17"]]},safari_ios:{releases:[["1","2007-06-29","r","w","522.11"],["2","2008-07-11","r","w","525.18"],["3","2009-06-17","r","w","528.18"],["4","2010-06-21","r","w","532.9"],["5","2011-10-12","r","w","534.46"],["6","2012-09-10","r","w","536.26"],["7","2013-09-18","r","w","537.51"],["8","2014-09-17","r","w","600.1.4"],["9","2015-09-16","r","w","601.1.56"],["10","2016-09-13","r","w","602.1.50"],["11","2017-09-19","r","w","604.2.4"],["12","2018-09-17","r","w","606.1.36"],["13","2019-09-19","r","w","608.2.11"],["14","2020-09-16","r","w","610.1.28"],["15","2021-09-20","r","w","612.1.27"],["16","2022-09-12","r","w","614.1.25"],["17","2023-09-18","r","w","616.1.27"],["18","2024-09-16","r","w","619.1.26"],["26","2025-09-15","r","w","622.1.22"],["10.3","2017-03-27","r","w","603.2.1"],["11.3","2018-03-29","r","w","605.1.33"],["12.2","2019-03-25","r","w","607.1.40"],["13.4","2020-03-24","r","w","609.1.20"],["14.5","2021-04-26","r","w","611.1.21"],["15.1","2021-10-25","r","w","612.2.9"],["15.2","2021-12-13","r","w","612.3.6"],["15.3","2022-01-26","r","w","612.4.9"],["15.4","2022-03-14","r","w","613.1.17"],["15.5","2022-05-16","r","w","613.2.7"],["15.6","2022-07-20","r","w","613.3.9"],["16.1","2022-10-24","r","w","614.2.9"],["16.2","2022-12-13","r","w","614.3.7"],["16.3","2023-01-23","r","w","614.4.6"],["16.4","2023-03-27","r","w","615.1.26"],["16.5","2023-05-18","r","w","615.2.9"],["16.6","2023-07-24","r","w","615.3.12"],["17.1","2023-10-25","r","w","616.2.9"],["17.2","2023-12-11","r","w","617.1.17"],["17.3","2024-01-22","r","w","617.2.4"],["17.4","2024-03-05","r","w","618.1.15"],["17.5","2024-05-13","r","w","618.2.12"],["17.6","2024-07-29","r","w","618.3.11"],["18.1","2024-10-28","r","w","619.2.8"],["18.2","2024-12-11","r","w","620.1.16"],["18.3","2025-01-27","r","w","620.2.4"],["18.4","2025-03-31","r","w","621.1.15"],["18.5","2025-05-12","r","w","621.2.5"],["18.6","2025-07-29","r","w","621.3.11"],["26.1","2025-11-03","r","w","622.2.11"],["26.2","2025-12-12","r","w","623.1.14"],["26.3","2025-12-15","c","w","623.2.2"],["3.2","2010-04-03","r","w","531.21"],["4.2","2010-11-22","r","w","533.17"],["9.3","2016-03-21","r","w","601.5.17"]]},samsunginternet_android:{releases:[["1.0","2013-04-27","r","w","535.19"],["1.5","2013-09-25","r","b","28"],["1.6","2014-04-11","r","b","28"],["10.0","2019-08-22","r","b","71"],["10.2","2019-10-09","r","b","71"],["11.0","2019-12-05","r","b","75"],["11.2","2020-03-22","r","b","75"],["12.0","2020-06-19","r","b","79"],["12.1","2020-07-07","r","b","79"],["13.0","2020-12-02","r","b","83"],["13.2","2021-01-20","r","b","83"],["14.0","2021-04-17","r","b","87"],["14.2","2021-06-25","r","b","87"],["15.0","2021-08-13","r","b","90"],["16.0","2021-11-25","r","b","92"],["16.2","2022-03-06","r","b","92"],["17.0","2022-05-04","r","b","96"],["18.0","2022-08-08","r","b","99"],["18.1","2022-09-09","r","b","99"],["19.0","2022-11-01","r","b","102"],["19.1","2022-11-08","r","b","102"],["2.0","2014-10-17","r","b","34"],["2.1","2015-01-07","r","b","34"],["20.0","2023-02-10","r","b","106"],["21.0","2023-05-19","r","b","110"],["22.0","2023-07-14","r","b","111"],["23.0","2023-10-18","r","b","115"],["24.0","2024-01-25","r","b","117"],["25.0","2024-04-24","r","b","121"],["26.0","2024-06-07","r","b","122"],["27.0","2024-11-06","r","b","125"],["28.0","2025-04-02","r","b","130"],["29.0","2025-10-25","c","b","136"],["3.0","2015-04-10","r","b","38"],["3.2","2015-08-24","r","b","38"],["4.0","2016-03-11","r","b","44"],["4.2","2016-08-02","r","b","44"],["5.0","2016-12-15","r","b","51"],["5.2","2017-04-21","r","b","51"],["5.4","2017-05-17","r","b","51"],["6.0","2017-08-23","r","b","56"],["6.2","2017-10-26","r","b","56"],["6.4","2018-02-19","r","b","56"],["7.0","2018-03-16","r","b","59"],["7.2","2018-06-20","r","b","59"],["7.4","2018-09-12","r","b","59"],["8.0","2018-07-18","r","b","63"],["8.2","2018-12-21","r","b","63"],["9.0","2018-09-15","r","b","67"],["9.2","2019-04-02","r","b","67"],["9.4","2019-07-25","r","b","67"]]},webview_android:{releases:[["1","2008-09-23","r","w","523.12"],["2","2009-10-26","r","w","530.17"],["3","2011-02-22","r","w","534.13"],["4","2011-10-18","r","w","534.30"],["37","2014-09-03","r","b","37"],["38","2014-10-08","r","b","38"],["39","2014-11-12","r","b","39"],["40","2015-01-21","r","b","40"],["41","2015-03-11","r","b","41"],["42","2015-04-15","r","b","42"],["43","2015-05-27","r","b","43"],["44","2015-07-29","r","b","44"],["45","2015-09-01","r","b","45"],["46","2015-10-14","r","b","46"],["47","2015-12-02","r","b","47"],["48","2016-01-26","r","b","48"],["49","2016-03-09","r","b","49"],["50","2016-04-13","r","b","50"],["51","2016-06-08","r","b","51"],["52","2016-07-27","r","b","52"],["53","2016-09-07","r","b","53"],["54","2016-10-19","r","b","54"],["55","2016-12-06","r","b","55"],["56","2017-02-01","r","b","56"],["57","2017-03-16","r","b","57"],["58","2017-04-25","r","b","58"],["59","2017-06-06","r","b","59"],["60","2017-08-01","r","b","60"],["61","2017-09-05","r","b","61"],["62","2017-10-24","r","b","62"],["63","2017-12-05","r","b","63"],["64","2018-01-23","r","b","64"],["65","2018-03-06","r","b","65"],["66","2018-04-17","r","b","66"],["67","2018-05-31","r","b","67"],["68","2018-07-24","r","b","68"],["69","2018-09-04","r","b","69"],["70","2018-10-17","r","b","70"],["71","2018-12-04","r","b","71"],["72","2019-01-29","r","b","72"],["73","2019-03-12","r","b","73"],["74","2019-04-24","r","b","74"],["75","2019-06-04","r","b","75"],["76","2019-07-30","r","b","76"],["77","2019-09-10","r","b","77"],["78","2019-10-22","r","b","78"],["79","2019-12-17","r","b","79"],["80","2020-02-04","r","b","80"],["81","2020-04-07","r","b","81"],["83","2020-05-19","r","b","83"],["84","2020-07-27","r","b","84"],["85","2020-08-25","r","b","85"],["86","2020-10-20","r","b","86"],["87","2020-11-17","r","b","87"],["88","2021-01-19","r","b","88"],["89","2021-03-02","r","b","89"],["90","2021-04-13","r","b","90"],["91","2021-05-25","r","b","91"],["92","2021-07-20","r","b","92"],["93","2021-08-31","r","b","93"],["94","2021-09-21","r","b","94"],["95","2021-10-19","r","b","95"],["96","2021-11-15","r","b","96"],["97","2022-01-04","r","b","97"],["98","2022-02-01","r","b","98"],["99","2022-03-01","r","b","99"],["100","2022-03-29","r","b","100"],["101","2022-04-26","r","b","101"],["102","2022-05-24","r","b","102"],["103","2022-06-21","r","b","103"],["104","2022-08-02","r","b","104"],["105","2022-09-02","r","b","105"],["106","2022-09-27","r","b","106"],["107","2022-10-25","r","b","107"],["108","2022-11-29","r","b","108"],["109","2023-01-10","r","b","109"],["110","2023-02-07","r","b","110"],["111","2023-03-01","r","b","111"],["112","2023-04-04","r","b","112"],["113","2023-05-02","r","b","113"],["114","2023-05-30","r","b","114"],["115","2023-07-21","r","b","115"],["116","2023-08-15","r","b","116"],["117","2023-09-12","r","b","117"],["118","2023-10-10","r","b","118"],["119","2023-10-31","r","b","119"],["120","2023-12-05","r","b","120"],["121","2024-01-23","r","b","121"],["122","2024-02-20","r","b","122"],["123","2024-03-19","r","b","123"],["124","2024-04-16","r","b","124"],["125","2024-05-14","r","b","125"],["126","2024-06-11","r","b","126"],["127","2024-07-23","r","b","127"],["128","2024-08-20","r","b","128"],["129","2024-09-17","r","b","129"],["130","2024-10-15","r","b","130"],["131","2024-11-12","r","b","131"],["132","2025-01-14","r","b","132"],["133","2025-02-04","r","b","133"],["134","2025-03-04","r","b","134"],["135","2025-04-01","r","b","135"],["136","2025-04-29","r","b","136"],["137","2025-05-27","r","b","137"],["138","2025-06-24","r","b","138"],["139","2025-08-05","r","b","139"],["140","2025-09-02","r","b","140"],["141","2025-09-30","r","b","141"],["142","2025-10-28","r","b","142"],["143","2025-12-02","c","b","143"],["144","2026-01-13","b","b","144"],["145","2026-02-10","n","b","145"],["146",null,"p","b","146"],["1.5","2009-04-27","r","w","525.20"],["2.2","2010-05-20","r","w","533.1"],["4.4","2013-12-09","r","b","30"],["4.4.3","2014-06-02","r","b","33"]]}},a={ya_android:{releases:[["1.0","u","u","b","25"],["1.5","u","u","b","22"],["1.6","u","u","b","25"],["1.7","u","u","b","25"],["1.20","u","u","b","25"],["2.5","u","u","b","25"],["3.2","u","u","b","25"],["4.6","u","u","b","25"],["5.3","u","u","b","25"],["5.4","u","u","b","25"],["7.4","u","u","b","25"],["9.6","u","u","b","25"],["10.5","u","u","b","25"],["11.4","u","u","b","25"],["11.5","u","u","b","25"],["12.7","u","u","b","25"],["13.9","u","u","b","28"],["13.10","u","u","b","28"],["13.11","u","u","b","28"],["13.12","u","u","b","30"],["14.2","u","u","b","32"],["14.4","u","u","b","33"],["14.5","u","u","b","34"],["14.7","u","u","b","35"],["14.8","u","u","b","36"],["14.10","u","u","b","37"],["14.12","u","u","b","38"],["15.2","u","u","b","40"],["15.4","u","u","b","41"],["15.6","u","u","b","42"],["15.7","u","u","b","43"],["15.9","u","u","b","44"],["15.10","u","u","b","45"],["15.12","u","u","b","46"],["16.2","u","u","b","47"],["16.3","u","u","b","47"],["16.4","u","u","b","49"],["16.6","u","u","b","50"],["16.7","u","u","b","51"],["16.9","u","u","b","52"],["16.10","u","u","b","53"],["16.11","u","u","b","54"],["17.1","u","u","b","55"],["17.3","u","u","b","56"],["17.4","u","u","b","57"],["17.6","u","u","b","58"],["17.7","u","u","b","59"],["17.9","u","u","b","60"],["17.10","u","u","b","61"],["17.11","u","u","b","62"],["18.1","u","u","b","63"],["18.2","u","u","b","63"],["18.3","u","u","b","64"],["18.4","u","u","b","65"],["18.6","u","u","b","66"],["18.7","u","u","b","67"],["18.9","u","u","b","68"],["18.10","u","u","b","69"],["18.11","u","u","b","70"],["19.1","u","u","b","71"],["19.3","u","u","b","72"],["19.4","u","u","b","73"],["19.5","u","u","b","75"],["19.6","u","u","b","75"],["19.7","u","u","b","75"],["19.9","u","u","b","76"],["19.10","u","u","b","77"],["19.11","u","u","b","78"],["19.12","u","u","b","78"],["20.2","u","u","b","79"],["20.3","u","u","b","80"],["20.4","u","u","b","81"],["20.6","u","u","b","81"],["20.7","u","u","b","83"],["20.8","2020-09-02","u","b","84"],["20.9","2020-09-27","u","b","85"],["20.11","2020-11-11","u","b","86"],["20.12","2020-12-20","u","b","87"],["21.1","2021-12-31","u","b","88"],["21.2","u","u","b","88"],["21.3","2021-04-04","u","b","89"],["21.5","u","u","b","90"],["21.6","2021-09-28","u","b","91"],["21.8","2021-09-28","u","b","92"],["21.9","2021-09-29","u","b","93"],["21.11","2021-10-29","u","b","94"],["22.1","2021-12-31","u","b","96"],["22.3","2022-03-25","u","b","98"],["22.4","u","u","b","92"],["22.5","2022-05-20","u","b","100"],["22.7","2022-07-07","u","b","102"],["22.8","u","u","b","104"],["22.9","2022-08-27","u","b","104"],["22.11","2022-11-11","u","b","106"],["23.1","2023-01-10","u","b","108"],["23.3","2023-03-26","u","b","110"],["23.5","2023-05-19","u","b","112"],["23.7","2023-07-06","u","b","114"],["23.9","2023-09-13","u","b","116"],["23.11","2023-11-15","u","b","118"],["24.1","2024-01-18","u","b","120"],["24.2","2024-03-25","u","b","120"],["24.4","2024-03-27","u","b","122"],["24.6","2024-06-04","u","b","124"],["24.7","2024-07-18","u","b","126"],["24.9","2024-10-01","u","b","126"],["24.10","2024-10-11","u","b","128"],["24.12","2024-11-30","u","b","130"],["25.2","2025-04-24","u","b","132"],["25.3","2025-04-23","u","b","132"],["25.4","2025-04-23","u","b","134"],["25.6","2025-09-04","u","b","136"],["25.8","2025-08-30","u","b","138"],["25.10","2025-10-09","u","b","140"],["25.12","2025-12-07","u","b","142"]]},uc_android:{releases:[["10.5","u","u","b","31"],["10.7","u","u","b","31"],["10.8","u","u","b","31"],["10.10","u","u","b","31"],["11.0","u","u","b","31"],["11.1","u","u","b","40"],["11.2","u","u","b","40"],["11.3","u","u","b","40"],["11.4","u","u","b","40"],["11.5","u","u","b","40"],["11.6","u","u","b","57"],["11.8","u","u","b","57"],["11.9","u","u","b","57"],["12.0","u","u","b","57"],["12.1","u","u","b","57"],["12.2","u","u","b","57"],["12.3","u","u","b","57"],["12.4","u","u","b","57"],["12.5","u","u","b","57"],["12.6","u","u","b","57"],["12.7","u","u","b","57"],["12.8","u","u","b","57"],["12.9","u","u","b","57"],["12.10","u","u","b","57"],["12.11","u","u","b","57"],["12.12","u","u","b","57"],["12.13","u","u","b","57"],["12.14","u","u","b","57"],["13.0","u","u","b","57"],["13.1","u","u","b","57"],["13.2","u","u","b","57"],["13.3","2020-09-09","u","b","78"],["13.4","2021-09-28","u","b","78"],["13.5","2023-08-25","u","b","78"],["13.6","2023-12-17","u","b","78"],["13.7","2023-06-24","u","b","78"],["13.8","2022-04-30","u","b","78"],["13.9","2022-05-18","u","b","78"],["15.0","2022-08-24","u","b","78"],["15.1","2022-11-11","u","b","78"],["15.2","2023-04-23","u","b","78"],["15.3","2023-03-17","u","b","100"],["15.4","2023-10-25","u","b","100"],["15.5","2023-08-22","u","b","100"],["16.0","2023-08-24","u","b","100"],["16.1","2023-10-15","u","b","100"],["16.2","2023-12-09","u","b","100"],["16.3","2024-03-08","u","b","100"],["16.4","2024-10-03","u","b","100"],["16.5","2024-05-30","u","b","100"],["16.6","2024-07-23","u","b","100"],["17.0","2024-08-24","u","b","100"],["17.1","2024-09-26","u","b","100"],["17.2","2024-11-29","u","b","100"],["17.3","2025-01-07","u","b","100"],["17.4","2025-02-26","u","b","100"],["17.5","2025-04-08","u","b","100"],["17.6","2025-05-15","u","b","123"],["17.7","2025-06-11","u","b","123"],["17.8","2025-07-30","u","b","123"],["18.0","2025-08-17","u","b","123"],["18.1","2025-10-04","u","b","123"],["18.2","2025-11-04","u","b","123"],["18.3","2025-12-12","u","b","123"]]},qq_android:{releases:[["6.0","u","u","b","37"],["6.1","u","u","b","37"],["6.2","u","u","b","37"],["6.3","u","u","b","37"],["6.4","u","u","b","37"],["6.6","u","u","b","37"],["6.7","u","u","b","37"],["6.8","u","u","b","37"],["6.9","u","u","b","37"],["7.0","u","u","b","37"],["7.1","u","u","b","37"],["7.2","u","u","b","37"],["7.3","u","u","b","37"],["7.4","u","u","b","37"],["7.5","u","u","b","37"],["7.6","u","u","b","37"],["7.7","u","u","b","37"],["7.8","u","u","b","37"],["7.9","u","u","b","37"],["8.0","u","u","b","37"],["8.1","u","u","b","57"],["8.2","u","u","b","57"],["8.3","u","u","b","57"],["8.4","u","u","b","57"],["8.5","u","u","b","57"],["8.6","u","u","b","57"],["8.7","u","u","b","57"],["8.8","u","u","b","57"],["8.9","u","u","b","57"],["9.1","u","u","b","57"],["9.6","u","u","b","66"],["9.7","u","u","b","66"],["9.8","u","u","b","66"],["10.0","u","u","b","66"],["10.1","u","u","b","66"],["10.2","u","u","b","66"],["10.3","u","u","b","66"],["10.4","u","u","b","66"],["10.5","u","u","b","66"],["10.7","2020-09-09","u","b","66"],["10.9","2020-11-22","u","b","77"],["11.0","u","u","b","77"],["11.2","2021-01-30","u","b","77"],["11.3","2021-03-31","u","b","77"],["11.7","2021-11-02","u","b","89"],["11.9","u","u","b","89"],["12.0","2021-11-04","u","b","89"],["12.1","2021-11-05","u","b","89"],["12.2","2021-12-07","u","b","89"],["12.5","2022-04-07","u","b","89"],["12.7","2022-05-21","u","b","89"],["12.8","2022-06-30","u","b","89"],["12.9","2022-07-26","u","b","89"],["13.0","2022-08-15","u","b","89"],["13.1","2022-09-10","u","b","89"],["13.2","2022-10-26","u","b","89"],["13.3","2022-11-09","u","b","89"],["13.4","2023-04-26","u","b","98"],["13.5","2023-02-06","u","b","98"],["13.6","2023-02-09","u","b","98"],["13.7","2023-04-21","u","b","98"],["13.8","2023-04-21","u","b","98"],["14.0","2023-12-12","u","b","98"],["14.1","2023-07-16","u","b","98"],["14.2","2023-10-14","u","b","109"],["14.3","2023-09-13","u","b","109"],["14.4","2023-10-31","u","b","109"],["14.5","2023-11-12","u","b","109"],["14.6","2023-12-24","u","b","109"],["14.7","2024-01-18","u","b","109"],["14.8","2024-03-04","u","b","109"],["14.9","2024-04-09","u","b","109"],["15.0","2024-04-17","u","b","109"],["15.1","2024-05-18","u","b","109"],["15.2","2024-10-24","u","b","109"],["15.3","2024-07-28","u","b","109"],["15.4","2024-09-07","u","b","109"],["15.5","2024-09-24","u","b","109"],["15.6","2024-10-24","u","b","109"],["15.7","2024-12-03","u","b","109"],["15.8","2024-12-11","u","b","109"],["15.9","2025-02-01","u","b","109"],["19.1","2025-07-08","u","b","121"],["19.2","2025-07-15","u","b","121"],["19.3","2025-08-31","u","b","121"],["19.4","2025-09-20","u","b","121"],["19.5","2025-10-23","u","b","121"],["19.6","2025-11-17","u","b","121"],["19.7","2025-12-18","u","b","121"]]},kai_os:{releases:[["1.0","2017-03-01","u","g","37"],["2.0","2017-07-01","u","g","48"],["2.5","2017-07-01","u","g","48"],["3.0","2021-09-01","u","g","84"],["3.1","2022-03-01","u","g","84"],["4.0","2025-05-01","u","g","123"]]},facebook_android:{releases:[["66","u","u","b","48"],["68","u","u","b","48"],["74","u","u","b","50"],["75","u","u","b","50"],["76","u","u","b","50"],["77","u","u","b","50"],["78","u","u","b","50"],["79","u","u","b","50"],["80","u","u","b","51"],["81","u","u","b","51"],["82","u","u","b","51"],["83","u","u","b","51"],["84","u","u","b","51"],["86","u","u","b","51"],["87","u","u","b","52"],["88","u","u","b","52"],["89","u","u","b","52"],["90","u","u","b","52"],["91","u","u","b","52"],["92","u","u","b","52"],["93","u","u","b","52"],["94","u","u","b","52"],["95","u","u","b","53"],["96","u","u","b","53"],["97","u","u","b","53"],["98","u","u","b","53"],["99","u","u","b","53"],["100","u","u","b","54"],["101","u","u","b","54"],["103","u","u","b","54"],["104","u","u","b","54"],["105","u","u","b","54"],["106","u","u","b","55"],["107","u","u","b","55"],["108","u","u","b","55"],["109","u","u","b","55"],["110","u","u","b","55"],["111","u","u","b","55"],["112","u","u","b","56"],["113","u","u","b","56"],["114","u","u","b","56"],["115","u","u","b","56"],["116","u","u","b","56"],["117","u","u","b","57"],["118","u","u","b","57"],["119","u","u","b","57"],["120","u","u","b","57"],["121","u","u","b","57"],["122","u","u","b","58"],["123","u","u","b","58"],["124","u","u","b","58"],["125","u","u","b","58"],["126","u","u","b","58"],["127","u","u","b","58"],["128","u","u","b","58"],["129","u","u","b","58"],["130","u","u","b","59"],["131","u","u","b","59"],["132","u","u","b","59"],["133","u","u","b","59"],["134","u","u","b","59"],["135","u","u","b","59"],["136","u","u","b","59"],["137","u","u","b","59"],["138","u","u","b","60"],["140","u","u","b","60"],["142","u","u","b","61"],["143","u","u","b","61"],["144","u","u","b","61"],["145","u","u","b","61"],["146","u","u","b","61"],["147","u","u","b","61"],["148","u","u","b","61"],["149","u","u","b","62"],["150","u","u","b","62"],["151","u","u","b","62"],["152","u","u","b","62"],["153","u","u","b","63"],["154","u","u","b","63"],["155","u","u","b","63"],["156","u","u","b","63"],["157","u","u","b","64"],["158","u","u","b","64"],["159","u","u","b","64"],["160","u","u","b","64"],["161","u","u","b","64"],["162","u","u","b","64"],["163","u","u","b","65"],["164","u","u","b","65"],["165","u","u","b","65"],["166","u","u","b","65"],["167","u","u","b","65"],["168","u","u","b","65"],["169","u","u","b","66"],["170","u","u","b","66"],["171","u","u","b","66"],["172","u","u","b","66"],["173","u","u","b","66"],["174","u","u","b","66"],["175","u","u","b","67"],["176","u","u","b","67"],["177","u","u","b","67"],["178","u","u","b","67"],["180","u","u","b","67"],["181","u","u","b","67"],["182","u","u","b","67"],["183","u","u","b","68"],["184","u","u","b","68"],["185","u","u","b","68"],["186","u","u","b","68"],["187","u","u","b","68"],["188","u","u","b","68"],["202","u","u","b","71"],["227","u","u","b","75"],["228","u","u","b","75"],["229","u","u","b","75"],["230","u","u","b","75"],["231","u","u","b","75"],["233","u","u","b","76"],["235","u","u","b","76"],["236","u","u","b","76"],["237","u","u","b","76"],["238","u","u","b","76"],["240","u","u","b","77"],["241","u","u","b","77"],["242","u","u","b","77"],["243","u","u","b","77"],["244","u","u","b","78"],["245","u","u","b","78"],["246","u","u","b","78"],["247","u","u","b","78"],["248","u","u","b","78"],["249","u","u","b","78"],["250","u","u","b","78"],["251","u","u","b","79"],["252","u","u","b","79"],["253","u","u","b","79"],["254","u","u","b","79"],["255","u","u","b","79"],["256","u","u","b","80"],["257","u","u","b","80"],["258","u","u","b","80"],["259","u","u","b","80"],["260","u","u","b","80"],["261","u","u","b","80"],["262","u","u","b","80"],["263","u","u","b","80"],["264","u","u","b","80"],["265","u","u","b","80"],["266","u","u","b","81"],["267","u","u","b","81"],["268","u","u","b","81"],["269","u","u","b","81"],["270","u","u","b","81"],["271","u","u","b","81"],["272","u","u","b","83"],["273","u","u","b","83"],["274","u","u","b","83"],["275","u","u","b","83"],["297","2020-12-02","u","b","86"],["348","2021-12-19","u","b","96"],["399","2023-02-04","u","b","109"],["400","2023-02-10","u","b","109"],["420","2023-06-28","u","b","114"],["430","2023-09-03","u","b","116"],["434","2023-10-05","u","b","117"],["436","2023-10-13","u","b","117"],["437","u","u","b","118"],["438","2023-10-28","u","b","118"],["439","2023-11-11","u","b","119"],["440","2023-11-12","u","b","119"],["441","2023-11-20","u","b","119"],["442","2023-11-29","u","b","119"],["443","2023-12-07","u","b","120"],["444","2023-12-13","u","b","120"],["445","2023-12-21","u","b","120"],["446","2024-01-06","u","b","120"],["447","2024-01-12","u","b","120"],["448","2024-01-29","u","b","121"],["449","2024-02-02","u","b","121"],["450","2024-02-05","u","b","121"],["451","2024-02-17","u","b","121"],["452","2024-02-25","u","b","122"],["453","2024-02-28","u","b","122"],["454","2024-03-04","u","b","122"],["465","2024-07-07","u","b","126"],["466","u","u","b","126"],["469","u","u","b","126"],["471","2024-07-10","u","b","126"],["472","2024-07-11","u","b","126"],["474","2024-07-30","u","b","127"],["475","2024-08-01","u","b","127"],["476","2024-08-09","u","b","127"],["477","2024-08-16","u","b","127"],["478","2024-08-21","u","b","128"],["479","2024-08-31","u","b","128"],["480","2024-09-07","u","b","128"],["481","2024-09-14","u","b","128"],["482","2024-09-20","u","b","129"],["483","2024-09-27","u","b","129"],["484","2024-10-04","u","b","129"],["485","2024-10-11","u","b","129"],["486","2024-10-18","u","b","130"],["487","2024-10-26","u","b","130"],["488","2024-11-02","u","b","130"],["489","2024-11-09","u","b","130"],["494","2024-12-26","u","b","131"],["497","2025-01-26","u","b","132"],["503","2025-03-12","u","b","134"],["514","2025-05-28","u","b","136"],["515","2025-05-31","u","b","137"]]},instagram_android:{releases:[["23","u","u","b","62"],["24","u","u","b","62"],["25","u","u","b","62"],["26","u","u","b","63"],["27","u","u","b","63"],["28","u","u","b","63"],["29","u","u","b","63"],["30","u","u","b","63"],["31","u","u","b","64"],["32","u","u","b","64"],["33","u","u","b","64"],["34","u","u","b","64"],["35","u","u","b","65"],["36","u","u","b","65"],["37","u","u","b","65"],["38","u","u","b","65"],["39","u","u","b","65"],["40","u","u","b","65"],["41","u","u","b","65"],["42","u","u","b","66"],["43","u","u","b","66"],["44","u","u","b","66"],["45","u","u","b","66"],["46","u","u","b","66"],["47","u","u","b","66"],["48","u","u","b","67"],["49","u","u","b","67"],["50","u","u","b","67"],["51","u","u","b","67"],["52","u","u","b","67"],["53","u","u","b","67"],["54","u","u","b","67"],["55","u","u","b","67"],["56","u","u","b","68"],["57","u","u","b","68"],["58","u","u","b","68"],["59","u","u","b","68"],["60","u","u","b","68"],["61","u","u","b","68"],["65","u","u","b","69"],["66","u","u","b","69"],["68","u","u","b","69"],["72","u","u","b","70"],["74","u","u","b","71"],["75","u","u","b","71"],["79","u","u","b","71"],["81","u","u","b","72"],["82","u","u","b","72"],["83","u","u","b","72"],["84","u","u","b","73"],["86","u","u","b","73"],["95","u","u","b","74"],["96","u","u","b","80"],["97","u","u","b","80"],["98","u","u","b","80"],["103","u","u","b","80"],["104","u","u","b","80"],["117","u","u","b","80"],["118","u","u","b","80"],["119","u","u","b","80"],["120","u","u","b","80"],["121","u","u","b","80"],["127","u","u","b","80"],["128","u","u","b","80"],["129","u","u","b","80"],["130","u","u","b","80"],["131","u","u","b","80"],["132","u","u","b","80"],["133","u","u","b","80"],["134","u","u","b","80"],["135","u","u","b","80"],["136","u","u","b","80"],["137","u","u","b","81"],["138","u","u","b","81"],["139","u","u","b","81"],["140","u","u","b","81"],["141","u","u","b","81"],["142","u","u","b","81"],["143","u","u","b","83"],["144","u","u","b","83"],["145","u","u","b","83"],["146","u","u","b","83"],["153","u","u","b","84"],["163","u","u","b","92"],["164","u","u","b","92"],["230","u","u","b","92"],["258","2022-11-04","u","b","106"],["259","2022-11-04","u","b","106"],["279","2023-12-31","u","b","109"],["281","u","u","b","109"],["288","u","u","b","114"],["289","2023-12-21","u","b","114"],["290","2023-12-30","u","b","114"],["292","u","u","b","115"],["295","u","u","b","115"],["296","u","u","b","115"],["297","u","u","b","115"],["298","2024-01-11","u","b","115"],["299","u","u","b","115"],["300","u","u","b","116"],["301","2024-01-12","u","b","116"],["302","u","u","b","117"],["303","u","u","b","117"],["304","u","u","b","117"],["305","u","u","b","117"],["306","2024-01-17","u","b","118"],["307","u","u","b","118"],["308","2024-01-19","u","b","118"],["309","u","u","b","119"],["310","u","u","b","119"],["311","u","u","b","120"],["312","u","u","b","120"],["313","u","u","b","120"],["314","u","u","b","120"],["315","2024-01-19","u","b","120"],["316","2024-01-25","u","b","120"],["317","2024-02-03","u","b","121"],["318","2024-02-16","u","b","121"],["320","2024-03-04","u","b","121"],["321","2024-03-07","u","b","122"],["338","2024-07-06","u","b","126"],["346","2024-09-01","u","b","127"],["347","2024-09-11","u","b","127"],["349","2024-09-20","u","b","128"],["355","2024-11-06","u","b","130"],["366","u","u","b","132"],["367","2025-02-15","u","b","132"],["378","2025-05-03","u","b","135"],["381","2025-06-19","u","b","137"],["382","2025-06-19","u","b","137"],["383","2025-06-18","u","b","137"],["384","2025-06-16","u","b","137"],["385","2025-06-27","u","b","137"],["387","2025-07-09","u","b","137"],["390","2025-07-26","u","b","138"],["392","2025-08-12","u","b","138"],["394","2025-08-26","u","b","139"],["395","2025-09-13","u","b","139"],["396","2025-09-20","u","b","139"],["397","2025-09-19","u","b","139"],["399","2025-09-28","u","b","140"],["400","2025-10-06","u","b","141"],["401","2025-10-08","u","b","141"],["404","2025-10-31","u","b","141"],["406","2025-11-16","u","b","141"],["407","2025-11-23","u","b","142"],["408","2025-11-28","u","b","142"],["409","2025-12-16","u","b","143"],["410","2025-12-17","u","b","143"]]}},r=[["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1",fa:"4",s:"4",si:"3.2"}],["2019-03-25",{c:"66",ca:"66",e:"16",f:"57",fa:"57",s:"12.1",si:"12.2"}],["2019-03-25",{c:"66",ca:"66",e:"16",f:"57",fa:"57",s:"12.1",si:"12.2"}],["2024-03-19",{c:"116",ca:"116",e:"116",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2025-06-26",{c:"138",ca:"138",e:"138",f:"118",fa:"118",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"17",ca:"18",e:"12",f:"5",fa:"5",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-04-16",{c:"123",ca:"123",e:"123",f:"125",fa:"125",s:"17.4",si:"17.4"}],["2020-01-15",{c:"37",ca:"37",e:"79",f:"27",fa:"27",s:"9.1",si:"9.3"}],["2024-07-09",{c:"77",ca:"77",e:"79",f:"128",fa:"128",s:"17.4",si:"17.4"}],["2016-06-07",{c:"32",ca:"30",e:"12",f:"47",fa:"47",s:"8",si:"8"}],["2023-07-04",{c:"112",ca:"112",e:"112",f:"115",fa:"115",s:"16",si:"16"}],["2015-09-30",{c:"43",ca:"43",e:"12",f:"16",fa:"16",s:"9",si:"9"}],["2022-03-14",{c:"84",ca:"84",e:"84",f:"80",fa:"80",s:"15.4",si:"15.4"}],["2023-10-24",{c:"103",ca:"103",e:"103",f:"119",fa:"119",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-03-14",{c:"92",ca:"92",e:"92",f:"90",fa:"90",s:"15.4",si:"15.4"}],["2023-07-04",{c:"110",ca:"110",e:"110",f:"115",fa:"115",s:"16",si:"16"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"34",fa:"34",s:"10",si:"10"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"37",fa:"37",s:"10",si:"10"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"37",fa:"37",s:"10",si:"10"}],["2022-08-23",{c:"97",ca:"97",e:"97",f:"104",fa:"104",s:"15.4",si:"15.4"}],["2020-01-15",{c:"69",ca:"69",e:"79",f:"62",fa:"62",s:"12",si:"12"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"38",fa:"38",s:"10",si:"10"}],["2024-01-25",{c:"121",ca:"121",e:"121",f:"115",fa:"115",s:"16.4",si:"16.4"}],["2024-03-05",{c:"117",ca:"117",e:"117",f:"119",fa:"119",s:"17.4",si:"17.4"}],["2016-09-20",{c:"47",ca:"47",e:"14",f:"43",fa:"43",s:"10",si:"10"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"5"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3",fa:"4",s:"4",si:"3.2"}],["2018-05-09",{c:"66",ca:"66",e:"14",f:"60",fa:"60",s:"10",si:"10"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"38",fa:"38",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2021-09-20",{c:"88",ca:"88",e:"88",f:"89",fa:"89",s:"15",si:"15"}],["2017-04-05",{c:"55",ca:"55",e:"15",f:"52",fa:"52",s:"10.1",si:"10.3"}],["2024-06-11",{c:"76",ca:"76",e:"79",f:"127",fa:"127",s:"13.1",si:"13.4"}],["2020-01-15",{c:"63",ca:"63",e:"79",f:"57",fa:"57",s:"12",si:"12"}],["2020-01-15",{c:"63",ca:"63",e:"79",f:"57",fa:"57",s:"12",si:"12"}],["2025-04-01",{c:"133",ca:"133",e:"133",f:"137",fa:"137",s:"18.4",si:"18.4"}],["2025-11-11",{c:"90",ca:"90",e:"90",f:"145",fa:"145",s:"16.4",si:"16.4"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"3"}],["2021-04-26",{c:"66",ca:"66",e:"79",f:"76",fa:"79",s:"14.1",si:"14.5"}],["2023-02-09",{c:"110",ca:"110",e:"110",f:"86",fa:"86",s:"15",si:"15"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"4",si:"3.2"}],["2020-01-15",{c:"54",ca:"54",e:"79",f:"63",fa:"63",s:"10.1",si:"10.3"}],["2024-01-26",{c:"85",ca:"85",e:"121",f:"93",fa:"93",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-03-14",{c:"37",ca:"37",e:"79",f:"47",fa:"47",s:"15.4",si:"15.4"}],["2024-09-16",{c:"76",ca:"76",e:"79",f:"103",fa:"103",s:"18",si:"18"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3.6",fa:"4",s:"1.3",si:"1"}],["2022-03-14",{c:"1",ca:"18",e:"12",f:"25",fa:"25",s:"15.4",si:"15.4"}],["2020-01-15",{c:"35",ca:"59",e:"79",f:"30",fa:"54",s:"8",si:"8"}],["2015-07-29",{c:"21",ca:"25",e:"12",f:"22",fa:"22",s:"5.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3.6",fa:"4",s:"1.3",si:"1"}],["2015-07-29",{c:"21",ca:"25",e:"12",f:"22",fa:"22",s:"5.1",si:"4"}],["2015-07-29",{c:"25",ca:"25",e:"12",f:"13",fa:"14",s:"7",si:"7"}],["2016-09-20",{c:"30",ca:"30",e:"12",f:"49",fa:"49",s:"8",si:"8"}],["2015-07-29",{c:"21",ca:"25",e:"12",f:"9",fa:"18",s:"5.1",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2016-09-20",{c:"30",ca:"30",e:"12",f:"4",fa:"4",s:"10",si:"10"}],["2020-01-15",{c:"16",ca:"18",e:"79",f:"10",fa:"10",s:"6",si:"6"}],["2015-07-29",{c:"≤15",ca:"18",e:"12",f:"10",fa:"10",s:"≤4",si:"≤3.2"}],["2018-04-12",{c:"39",ca:"42",e:"14",f:"31",fa:"31",s:"11.1",si:"11.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1.5",fa:"4",s:"4",si:"3.2"}],["2020-09-16",{c:"67",ca:"67",e:"79",f:"68",fa:"68",s:"14",si:"14"}],["2021-09-20",{c:"67",ca:"67",e:"79",f:"68",fa:"68",s:"15",si:"15"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2017-02-01",{c:"56",ca:"56",e:"12",f:"50",fa:"50",s:"9.1",si:"9.3"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"14",s:"1",si:"3"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"4",fa:"4",s:"5.1",si:"5"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"29",fa:"29",s:"5.1",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2022-03-14",{c:"54",ca:"54",e:"79",f:"38",fa:"38",s:"15.4",si:"15.4"}],["2017-09-19",{c:"50",ca:"51",e:"15",f:"44",fa:"44",s:"11",si:"11"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"26",ca:"28",e:"12",f:"16",fa:"16",s:"7",si:"7"}],["2023-06-06",{c:"110",ca:"110",e:"110",f:"114",fa:"114",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1.5",fa:"4",s:"2",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1.5",fa:"4",s:"2",si:"1"}],["2024-09-16",{c:"99",ca:"99",e:"99",f:"28",fa:"28",s:"18",si:"18"}],["2023-04-11",{c:"99",ca:"99",e:"99",f:"112",fa:"112",s:"16.4",si:"16.4"}],["2023-12-11",{c:"99",ca:"99",e:"99",f:"113",fa:"113",s:"17.2",si:"17.2"}],["2023-04-11",{c:"99",ca:"99",e:"99",f:"112",fa:"112",s:"16.4",si:"16.4"}],["2023-12-11",{c:"118",ca:"118",e:"118",f:"97",fa:"97",s:"17.2",si:"17.2"}],["2020-01-15",{c:"51",ca:"51",e:"79",f:"43",fa:"43",s:"11",si:"11"}],["2020-01-15",{c:"57",ca:"57",e:"79",f:"53",fa:"53",s:"11.1",si:"11.3"}],["2022-03-14",{c:"99",ca:"99",e:"99",f:"97",fa:"97",s:"15.4",si:"15.4"}],["2020-01-15",{c:"49",ca:"49",e:"79",f:"47",fa:"47",s:"9",si:"9"}],["2015-07-29",{c:"27",ca:"27",e:"12",f:"1",fa:"4",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2015-09-22",{c:"4",ca:"18",e:"12",f:"41",fa:"41",s:"5",si:"4.2"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1.5",fa:"4",s:"4",si:"4"}],["2024-03-05",{c:"105",ca:"105",e:"105",f:"106",fa:"106",s:"17.4",si:"17.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2016-03-08",{c:"42",ca:"42",e:"13",f:"45",fa:"45",s:"9",si:"9"}],["2023-09-18",{c:"117",ca:"117",e:"117",f:"63",fa:"63",s:"17",si:"17"}],["2021-01-21",{c:"88",ca:"88",e:"88",f:"71",fa:"79",s:"13.1",si:"13"}],["2020-01-15",{c:"55",ca:"55",e:"79",f:"49",fa:"49",s:"12.1",si:"12.2"}],["2023-11-02",{c:"119",ca:"119",e:"119",f:"54",fa:"54",s:"13.1",si:"13.4"}],["2017-03-27",{c:"41",ca:"41",e:"12",f:"22",fa:"22",s:"10.1",si:"10.3"}],["2025-03-31",{c:"121",ca:"121",e:"121",f:"127",fa:"127",s:"18.4",si:"18.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"15",si:"15"}],["2023-02-14",{c:"58",ca:"58",e:"79",f:"110",fa:"110",s:"10",si:"10"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"16.2",si:"16.2"}],["2022-02-03",{c:"98",ca:"98",e:"98",f:"96",fa:"96",s:"13",si:"13"}],["2020-01-15",{c:"53",ca:"53",e:"79",f:"31",fa:"31",s:"11.1",si:"11.3"}],["2017-03-07",{c:"50",ca:"50",e:"12",f:"52",fa:"52",s:"9",si:"9"}],["2020-07-28",{c:"50",ca:"50",e:"12",f:"71",fa:"79",s:"9",si:"9"}],["2025-08-19",{c:"137",ca:"137",e:"137",f:"142",fa:"142",s:"17",si:"17"}],["2017-04-19",{c:"26",ca:"26",e:"12",f:"53",fa:"53",s:"7",si:"7"}],["2023-05-09",{c:"80",ca:"80",e:"80",f:"113",fa:"113",s:"16.4",si:"16.4"}],["2020-11-17",{c:"69",ca:"69",e:"79",f:"83",fa:"83",s:"12.1",si:"12.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"4",fa:"4",s:"3",si:"1"}],["2018-12-11",{c:"40",ca:"40",e:"18",f:"51",fa:"64",s:"10.1",si:"10.3"}],["2023-03-27",{c:"73",ca:"73",e:"79",f:"101",fa:"101",s:"16.4",si:"16.4"}],["2022-03-14",{c:"52",ca:"52",e:"79",f:"69",fa:"79",s:"15.4",si:"15.4"}],["2022-09-12",{c:"105",ca:"105",e:"105",f:"101",fa:"101",s:"16",si:"16"}],["2023-09-18",{c:"83",ca:"83",e:"83",f:"107",fa:"107",s:"17",si:"17"}],["2022-03-14",{c:"52",ca:"52",e:"79",f:"69",fa:"79",s:"15.4",si:"15.4"}],["2022-03-14",{c:"52",ca:"52",e:"79",f:"69",fa:"79",s:"15.4",si:"15.4"}],["2022-03-14",{c:"52",ca:"52",e:"79",f:"69",fa:"79",s:"15.4",si:"15.4"}],["2022-07-26",{c:"52",ca:"52",e:"79",f:"103",fa:"103",s:"15.4",si:"15.4"}],["2023-02-14",{c:"105",ca:"105",e:"105",f:"110",fa:"110",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-09-15",{c:"108",ca:"108",e:"108",f:"130",fa:"130",s:"26",si:"26"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"4",fa:"4",s:"≤4",si:"≤3.2"}],["2025-03-04",{c:"51",ca:"51",e:"12",f:"136",fa:"136",s:"5.1",si:"5"}],["2024-09-16",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"18",si:"18"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"3.2"}],["2023-12-11",{c:"85",ca:"85",e:"85",f:"68",fa:"68",s:"17.2",si:"17.2"}],["2023-09-18",{c:"91",ca:"91",e:"91",f:"33",fa:"33",s:"17",si:"17"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1",fa:"25",s:"3",si:"1"}],["2023-12-11",{c:"59",ca:"59",e:"79",f:"98",fa:"98",s:"17.2",si:"17.2"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"60",fa:"60",s:"13",si:"13"}],["2016-08-02",{c:"25",ca:"25",e:"14",f:"23",fa:"23",s:"7",si:"7"}],["2020-01-15",{c:"46",ca:"46",e:"79",f:"31",fa:"31",s:"10.1",si:"10.3"}],["2015-09-30",{c:"28",ca:"28",e:"12",f:"22",fa:"22",s:"9",si:"9"}],["2020-01-15",{c:"61",ca:"61",e:"79",f:"55",fa:"55",s:"11",si:"11"}],["2015-07-29",{c:"16",ca:"18",e:"12",f:"4",fa:"4",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1.5",fa:"4",s:"4",si:"3.2"}],["2017-04-05",{c:"49",ca:"49",e:"15",f:"31",fa:"31",s:"9.1",si:"9.3"}],["2017-10-24",{c:"62",ca:"62",e:"14",f:"22",fa:"22",s:"10",si:"10"}],["2015-07-29",{c:"≤4",ca:"18",e:"12",f:"≤2",fa:"4",s:"≤3.1",si:"≤2"}],["2015-07-29",{c:"7",ca:"18",e:"12",f:"6",fa:"6",s:"5.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-02-20",{c:"111",ca:"111",e:"111",f:"123",fa:"123",s:"16.4",si:"16.4"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"4",fa:"4",s:"4",si:"5"}],["2020-01-15",{c:"10",ca:"18",e:"79",f:"4",fa:"4",s:"5",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"55",fa:"55",s:"11.1",si:"11.3"}],["2020-01-15",{c:"12",ca:"18",e:"79",f:"49",fa:"49",s:"6",si:"6"}],["2025-09-16",{c:"131",ca:"131",e:"131",f:"143",fa:"143",s:"18.4",si:"18.4"}],["2024-09-03",{c:"120",ca:"120",e:"120",f:"130",fa:"130",s:"17.2",si:"17.2"}],["2023-09-18",{c:"31",ca:"31",e:"12",f:"6",fa:"6",s:"17",si:"4.2"}],["2015-07-29",{c:"15",ca:"18",e:"12",f:"1",fa:"4",s:"6",si:"6"}],["2022-03-14",{c:"37",ca:"37",e:"79",f:"98",fa:"98",s:"15.4",si:"15.4"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"49",fa:"49",s:"16.4",si:"16.4"}],["2023-08-01",{c:"17",ca:"18",e:"79",f:"116",fa:"116",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"58",ca:"58",e:"79",f:"53",fa:"53",s:"13",si:"13"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["≤2017-04-05",{c:"1",ca:"18",e:"≤15",f:"3",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-12-12",{c:"128",ca:"128",e:"128",f:"20",fa:"20",s:"26.2",si:"26.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"61",ca:"61",e:"79",f:"33",fa:"33",s:"11",si:"11"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"1",fa:"4",s:"4",si:"3.2"}],["2016-03-21",{c:"31",ca:"31",e:"12",f:"12",fa:"14",s:"9.1",si:"9.3"}],["2019-09-19",{c:"14",ca:"18",e:"18",f:"20",fa:"20",s:"10.1",si:"13"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"3.2"}],["2022-05-03",{c:"98",ca:"98",e:"98",f:"100",fa:"100",s:"13.1",si:"13.4"}],["2020-01-15",{c:"43",ca:"43",e:"79",f:"46",fa:"46",s:"11.1",si:"11.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"1.5",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2019-03-25",{c:"42",ca:"42",e:"13",f:"38",fa:"38",s:"12.1",si:"12.2"}],["2021-11-02",{c:"77",ca:"77",e:"79",f:"94",fa:"94",s:"13.1",si:"13.4"}],["2021-09-20",{c:"93",ca:"93",e:"93",f:"91",fa:"91",s:"15",si:"15"}],["2025-12-12",{c:"76",ca:"76",e:"79",f:"89",fa:"89",s:"26.2",si:"26.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"118",fa:"118",s:"15.4",si:"15.4"}],["2017-03-27",{c:"52",ca:"52",e:"14",f:"52",fa:"52",s:"10.1",si:"10.3"}],["2018-04-30",{c:"38",ca:"38",e:"17",f:"47",fa:"35",s:"9",si:"9"}],["2021-09-20",{c:"56",ca:"56",e:"79",f:"51",fa:"51",s:"15",si:"15"}],["2020-09-16",{c:"63",ca:"63",e:"17",f:"47",fa:"36",s:"14",si:"14"}],["2020-02-07",{c:"40",ca:"40",e:"80",f:"58",fa:"28",s:"9",si:"9"}],["2016-06-07",{c:"34",ca:"34",e:"12",f:"47",fa:"47",s:"9.1",si:"9.3"}],["2017-03-27",{c:"42",ca:"42",e:"14",f:"39",fa:"39",s:"10.1",si:"10.3"}],["2024-10-29",{c:"103",ca:"103",e:"103",f:"132",fa:"132",s:"17.2",si:"17.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"8",ca:"18",e:"12",f:"4",fa:"4",s:"5.1",si:"5"}],["2020-01-15",{c:"38",ca:"38",e:"79",f:"28",fa:"28",s:"10.1",si:"10.3"}],["2021-04-26",{c:"89",ca:"89",e:"89",f:"82",fa:"82",s:"14.1",si:"14.5"}],["2016-09-07",{c:"53",ca:"53",e:"12",f:"35",fa:"35",s:"9.1",si:"9.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2021-11-02",{c:"46",ca:"46",e:"79",f:"94",fa:"94",s:"11",si:"11"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-09-30",{c:"29",ca:"29",e:"12",f:"20",fa:"20",s:"9",si:"9"}],["2021-04-26",{c:"84",ca:"84",e:"84",f:"63",fa:"63",s:"14.1",si:"14.5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-04-04",{c:"135",ca:"135",e:"135",f:"129",fa:"129",s:"18.2",si:"18.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"24",fa:"24",s:"3.1",si:"2"}],["2022-03-14",{c:"86",ca:"86",e:"86",f:"85",fa:"85",s:"15.4",si:"15.4"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"52",fa:"52",s:"10.1",si:"10.3"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"58",fa:"58",s:"11.1",si:"11.3"}],["2016-09-20",{c:"36",ca:"36",e:"14",f:"39",fa:"39",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2021-09-07",{c:"56",ca:"56",e:"79",f:"92",fa:"92",s:"11",si:"11"}],["2017-04-05",{c:"48",ca:"48",e:"15",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"33",ca:"33",e:"79",f:"32",fa:"32",s:"9",si:"9"}],["2020-01-15",{c:"35",ca:"35",e:"79",f:"41",fa:"41",s:"10",si:"10"}],["2020-03-24",{c:"79",ca:"79",e:"17",f:"62",fa:"62",s:"13.1",si:"13.4"}],["2022-11-15",{c:"101",ca:"101",e:"101",f:"107",fa:"107",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-07-25",{c:"127",ca:"127",e:"127",f:"118",fa:"118",s:"17",si:"17"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-01-06",{c:"97",ca:"97",e:"97",f:"34",fa:"34",s:"9",si:"9"}],["2023-03-27",{c:"97",ca:"97",e:"97",f:"111",fa:"111",s:"16.4",si:"16.4"}],["2023-03-27",{c:"97",ca:"97",e:"97",f:"111",fa:"111",s:"16.4",si:"16.4"}],["2023-03-27",{c:"97",ca:"97",e:"97",f:"111",fa:"111",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-03-13",{c:"111",ca:"111",e:"111",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"52",ca:"52",e:"79",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"63",ca:"63",e:"79",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"34",ca:"34",e:"79",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2020-01-15",{c:"52",ca:"52",e:"79",f:"34",fa:"34",s:"9.1",si:"9.3"}],["2018-09-05",{c:"62",ca:"62",e:"17",f:"62",fa:"62",s:"11",si:"11"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-09-12",{c:"89",ca:"89",e:"79",f:"89",fa:"89",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2023-03-27",{c:"77",ca:"77",e:"79",f:"98",fa:"98",s:"16.4",si:"16.4"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-27",{c:"35",ca:"35",e:"12",f:"29",fa:"32",s:"10.1",si:"10.3"}],["2016-09-20",{c:"39",ca:"39",e:"13",f:"26",fa:"26",s:"10",si:"10"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"3.5",fa:"4",s:"5",si:"≤3"}],["2015-07-29",{c:"11",ca:"18",e:"12",f:"3.5",fa:"4",s:"5.1",si:"5"}],["2024-09-16",{c:"125",ca:"125",e:"125",f:"128",fa:"128",s:"18",si:"18"}],["2020-01-15",{c:"71",ca:"71",e:"79",f:"65",fa:"65",s:"12.1",si:"12.2"}],["2024-06-11",{c:"111",ca:"111",e:"111",f:"127",fa:"127",s:"16.2",si:"16.2"}],["2015-07-29",{c:"26",ca:"26",e:"12",f:"3.6",fa:"4",s:"7",si:"7"}],["2017-10-17",{c:"57",ca:"57",e:"16",f:"52",fa:"52",s:"10.1",si:"10.3"}],["2022-10-27",{c:"107",ca:"107",e:"107",f:"66",fa:"66",s:"16",si:"16"}],["2022-03-14",{c:"37",ca:"37",e:"15",f:"48",fa:"48",s:"15.4",si:"15.4"}],["2023-12-19",{c:"105",ca:"105",e:"105",f:"121",fa:"121",s:"15.4",si:"15.4"}],["2020-03-24",{c:"74",ca:"74",e:"79",f:"67",fa:"67",s:"13.1",si:"13.4"}],["2015-07-29",{c:"16",ca:"18",e:"12",f:"11",fa:"14",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4"}],["2020-01-15",{c:"54",ca:"54",e:"79",f:"63",fa:"63",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2020-01-15",{c:"65",ca:"65",e:"79",f:"52",fa:"52",s:"12.1",si:"12.2"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"4",fa:"4",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-09-30",{c:"41",ca:"41",e:"12",f:"36",fa:"36",s:"9",si:"9"}],["2024-09-16",{c:"87",ca:"87",e:"87",f:"88",fa:"88",s:"18",si:"18"}],["2022-04-28",{c:"101",ca:"101",e:"101",f:"96",fa:"96",s:"15",si:"15"}],["2023-09-18",{c:"106",ca:"106",e:"106",f:"98",fa:"98",s:"17",si:"17"}],["2023-09-18",{c:"88",ca:"55",e:"88",f:"43",fa:"43",s:"17",si:"17"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-10-03",{c:"106",ca:"106",e:"106",f:"97",fa:"97",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"17",fa:"17",s:"5",si:"4"}],["2020-01-15",{c:"20",ca:"25",e:"79",f:"25",fa:"25",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-04-13",{c:"81",ca:"81",e:"81",f:"26",fa:"26",s:"13.1",si:"13.4"}],["2021-10-05",{c:"41",ca:"41",e:"79",f:"93",fa:"93",s:"10",si:"10"}],["2023-09-18",{c:"113",ca:"113",e:"113",f:"89",fa:"89",s:"17",si:"17"}],["2020-01-15",{c:"66",ca:"66",e:"79",f:"50",fa:"50",s:"11.1",si:"11.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-03-27",{c:"89",ca:"89",e:"89",f:"108",fa:"108",s:"16.4",si:"16.4"}],["2020-01-15",{c:"39",ca:"39",e:"79",f:"51",fa:"51",s:"10",si:"10"}],["2021-09-20",{c:"58",ca:"58",e:"79",f:"51",fa:"51",s:"15",si:"15"}],["2022-08-05",{c:"104",ca:"104",e:"104",f:"72",fa:"79",s:"14.1",si:"14.5"}],["2023-04-11",{c:"102",ca:"102",e:"102",f:"112",fa:"112",s:"15.5",si:"15.5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-11-12",{c:"1",ca:"18",e:"13",f:"19",fa:"19",s:"1.2",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3.6",fa:"4",s:"3",si:"1"}],["2021-04-26",{c:"20",ca:"25",e:"12",f:"57",fa:"57",s:"14.1",si:"5"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"3"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"6",fa:"6",s:"3.1",si:"2"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3",fa:"4",s:"4",si:"3"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3.6",fa:"4",s:"4",si:"3.2"}],["2025-08-19",{c:"13",ca:"132",e:"13",f:"50",fa:"142",s:"11.1",si:"18.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"7",ca:"18",e:"12",f:"29",fa:"29",s:"5.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-16",{c:"4",ca:"57",e:"12",f:"23",fa:"52",s:"3.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2021-12-07",{c:"66",ca:"66",e:"79",f:"95",fa:"79",s:"12.1",si:"12.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2018-12-11",{c:"41",ca:"41",e:"12",f:"64",fa:"64",s:"9",si:"9"}],["2019-03-25",{c:"58",ca:"58",e:"16",f:"55",fa:"55",s:"12.1",si:"12.2"}],["2017-09-28",{c:"24",ca:"25",e:"12",f:"29",fa:"56",s:"10",si:"10"}],["2021-04-26",{c:"81",ca:"81",e:"81",f:"86",fa:"86",s:"14.1",si:"14.5"}],["2025-03-04",{c:"129",ca:"129",e:"129",f:"136",fa:"136",s:"16.4",si:"16.4"}],["2021-04-26",{c:"72",ca:"72",e:"79",f:"78",fa:"79",s:"14.1",si:"14.5"}],["2020-09-16",{c:"74",ca:"74",e:"79",f:"75",fa:"79",s:"14",si:"14"}],["2019-09-19",{c:"63",ca:"63",e:"18",f:"58",fa:"58",s:"13",si:"13"}],["2020-09-16",{c:"71",ca:"71",e:"79",f:"76",fa:"79",s:"14",si:"14"}],["2024-04-16",{c:"87",ca:"87",e:"87",f:"125",fa:"125",s:"14.1",si:"14.5"}],["2021-01-21",{c:"88",ca:"88",e:"88",f:"82",fa:"82",s:"14",si:"14"}],["2018-04-12",{c:"55",ca:"55",e:"15",f:"52",fa:"52",s:"11.1",si:"11.3"}],["2020-01-15",{c:"41",ca:"41",e:"79",f:"36",fa:"36",s:"8",si:"8"}],["2025-03-31",{c:"122",ca:"122",e:"122",f:"131",fa:"131",s:"18.4",si:"18.4"}],["2015-07-29",{c:"38",ca:"38",e:"12",f:"13",fa:"14",s:"7",si:"7"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"1",fa:"4",s:"5",si:"4.2"}],["2018-05-09",{c:"61",ca:"61",e:"16",f:"60",fa:"60",s:"11",si:"11"}],["2023-06-06",{c:"80",ca:"80",e:"80",f:"114",fa:"114",s:"15",si:"15"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"4"}],["2025-04-29",{c:"123",ca:"123",e:"123",f:"138",fa:"138",s:"17.2",si:"17.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"6",fa:"6",s:"1.2",si:"1"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"15",si:"15"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-12-12",{c:"77",ca:"77",e:"79",f:"122",fa:"122",s:"26.2",si:"26.2"}],["2020-01-15",{c:"48",ca:"48",e:"79",f:"50",fa:"50",s:"11",si:"11"}],["2016-09-20",{c:"49",ca:"49",e:"14",f:"44",fa:"44",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-11-21",{c:"109",ca:"109",e:"109",f:"120",fa:"120",s:"16.4",si:"16.4"}],["2024-05-13",{c:"123",ca:"123",e:"123",f:"120",fa:"120",s:"17.5",si:"17.5"}],["2020-07-28",{c:"83",ca:"83",e:"83",f:"69",fa:"79",s:"13",si:"13"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-12-11",{c:"113",ca:"113",e:"113",f:"112",fa:"112",s:"17.2",si:"17.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2025-09-15",{c:"46",ca:"46",e:"79",f:"127",fa:"127",s:"5",si:"26"}],["2020-01-15",{c:"46",ca:"46",e:"79",f:"39",fa:"39",s:"11.1",si:"11.3"}],["2021-01-26",{c:"50",ca:"50",e:"79",f:"85",fa:"85",s:"11.1",si:"11.3"}],["2020-01-15",{c:"65",ca:"65",e:"79",f:"50",fa:"50",s:"9",si:"9"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-12-19",{c:"77",ca:"77",e:"79",f:"121",fa:"121",s:"16.4",si:"16.4"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.5",fa:"6",s:"4",si:"3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-09-16",{c:"85",ca:"85",e:"85",f:"79",fa:"79",s:"14",si:"14"}],["2021-09-20",{c:"89",ca:"89",e:"89",f:"66",fa:"66",s:"15",si:"15"}],["2015-07-29",{c:"26",ca:"26",e:"12",f:"21",fa:"21",s:"7",si:"7"}],["2015-07-29",{c:"38",ca:"38",e:"12",f:"13",fa:"14",s:"8",si:"8"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"7",ca:"18",e:"12",f:"4",fa:"4",s:"5.1",si:"5"}],["2020-01-15",{c:"24",ca:"25",e:"79",f:"35",fa:"35",s:"7",si:"7"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"53",fa:"53",s:"15.4",si:"15.4"}],["2015-07-29",{c:"9",ca:"18",e:"12",f:"6",fa:"6",s:"5.1",si:"5"}],["2023-01-12",{c:"109",ca:"109",e:"109",f:"4",fa:"4",s:"5.1",si:"5"}],["2022-04-28",{c:"101",ca:"101",e:"101",f:"63",fa:"63",s:"15.4",si:"15.4"}],["2017-09-19",{c:"53",ca:"53",e:"12",f:"36",fa:"36",s:"11",si:"11"}],["2020-02-04",{c:"80",ca:"80",e:"12",f:"42",fa:"42",s:"8",si:"12.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2023-03-27",{c:"104",ca:"104",e:"104",f:"102",fa:"102",s:"16.4",si:"16.4"}],["2021-04-26",{c:"49",ca:"49",e:"79",f:"25",fa:"25",s:"14.1",si:"14"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2023-03-27",{c:"60",ca:"60",e:"18",f:"57",fa:"57",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2018-10-02",{c:"6",ca:"18",e:"18",f:"56",fa:"56",s:"6",si:"10.3"}],["2020-07-28",{c:"79",ca:"79",e:"79",f:"75",fa:"79",s:"13.1",si:"13.4"}],["2020-01-15",{c:"46",ca:"46",e:"79",f:"66",fa:"66",s:"11",si:"11"}],["2015-07-29",{c:"18",ca:"18",e:"12",f:"1",fa:"4",s:"1.3",si:"1"}],["2020-01-15",{c:"41",ca:"41",e:"79",f:"32",fa:"32",s:"8",si:"8"}],["2020-01-15",{c:"≤79",ca:"≤79",e:"79",f:"≤23",fa:"≤23",s:"≤9.1",si:"≤9.3"}],["2022-09-02",{c:"105",ca:"105",e:"105",f:"103",fa:"103",s:"15.6",si:"15.6"}],["2023-09-18",{c:"66",ca:"66",e:"79",f:"115",fa:"115",s:"17",si:"17"}],["2022-09-12",{c:"55",ca:"55",e:"79",f:"72",fa:"79",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-07",{c:"50",ca:"50",e:"12",f:"52",fa:"52",s:"9",si:"9"}],["2015-07-29",{c:"26",ca:"26",e:"12",f:"14",fa:"14",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2021-10-25",{c:"57",ca:"57",e:"12",f:"58",fa:"58",s:"15",si:"15.1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-12-11",{c:"120",ca:"120",e:"120",f:"117",fa:"117",s:"17.2",si:"17.2"}],["2021-01-21",{c:"88",ca:"88",e:"88",f:"84",fa:"84",s:"9",si:"9"}],["2023-03-27",{c:"20",ca:"42",e:"14",f:"22",fa:"22",s:"7",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"2"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"9",si:"9"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"2"}],["2020-09-16",{c:"85",ca:"85",e:"85",f:"79",fa:"79",s:"14",si:"14"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-07-28",{c:"75",ca:"75",e:"79",f:"70",fa:"79",s:"13",si:"13"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2020-01-15",{c:"32",ca:"32",e:"79",f:"36",fa:"36",s:"10",si:"10"}],["2022-03-14",{c:"93",ca:"93",e:"93",f:"92",fa:"92",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"32",ca:"32",e:"79",f:"36",fa:"36",s:"10",si:"10"}],["2015-07-29",{c:"24",ca:"25",e:"12",f:"24",fa:"24",s:"8",si:"8"}],["2021-04-26",{c:"80",ca:"80",e:"80",f:"71",fa:"79",s:"14.1",si:"14.5"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"10",fa:"10",s:"8",si:"8"}],["2015-07-29",{c:"10",ca:"18",e:"12",f:"6",fa:"6",s:"8",si:"8"}],["2015-07-29",{c:"29",ca:"29",e:"12",f:"24",fa:"24",s:"8",si:"8"}],["2016-08-02",{c:"27",ca:"27",e:"14",f:"29",fa:"29",s:"8",si:"8"}],["2018-04-30",{c:"24",ca:"25",e:"17",f:"25",fa:"25",s:"8",si:"9"}],["2021-04-26",{c:"35",ca:"35",e:"12",f:"25",fa:"25",s:"14.1",si:"14.5"}],["2023-03-27",{c:"69",ca:"69",e:"79",f:"105",fa:"105",s:"16.4",si:"16.4"}],["2023-05-09",{c:"111",ca:"111",e:"111",f:"113",fa:"113",s:"15.4",si:"15.4"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"1.5",fa:"4",s:"4",si:"3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"2",si:"1"}],["≤2020-03-24",{c:"≤80",ca:"≤80",e:"≤80",f:"1.5",fa:"4",s:"≤13.1",si:"≤13.4"}],["2020-01-15",{c:"66",ca:"66",e:"79",f:"58",fa:"58",s:"11.1",si:"11.3"}],["2023-03-27",{c:"108",ca:"109",e:"108",f:"111",fa:"111",s:"16.4",si:"16.4"}],["2023-03-27",{c:"94",ca:"94",e:"94",f:"88",fa:"88",s:"16.4",si:"16.4"}],["2017-04-05",{c:"1",ca:"18",e:"15",f:"1.5",fa:"4",s:"1.2",si:"1"}],["≤2018-10-02",{c:"10",ca:"18",e:"≤18",f:"4",fa:"4",s:"7",si:"7"}],["2023-09-18",{c:"113",ca:"113",e:"113",f:"66",fa:"66",s:"17",si:"17"}],["2022-09-12",{c:"90",ca:"90",e:"90",f:"81",fa:"81",s:"16",si:"16"}],["2020-03-24",{c:"68",ca:"68",e:"79",f:"61",fa:"61",s:"13.1",si:"13.4"}],["2018-10-02",{c:"23",ca:"25",e:"18",f:"49",fa:"49",s:"7",si:"7"}],["2022-09-12",{c:"63",ca:"63",e:"18",f:"59",fa:"59",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2019-01-29",{c:"50",ca:"50",e:"12",f:"65",fa:"65",s:"10",si:"10"}],["2024-12-11",{c:"15",ca:"18",e:"79",f:"95",fa:"95",s:"18.2",si:"18.2"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"1.5",fa:"4",s:"5",si:"4"}],["2015-07-29",{c:"33",ca:"33",e:"12",f:"18",fa:"18",s:"7",si:"7"}],["2021-04-26",{c:"60",ca:"60",e:"79",f:"84",fa:"84",s:"14.1",si:"14.5"}],["2025-09-15",{c:"124",ca:"124",e:"124",f:"128",fa:"128",s:"26",si:"26"}],["2023-03-27",{c:"94",ca:"94",e:"94",f:"99",fa:"99",s:"16.4",si:"16.4"}],["2015-09-16",{c:"6",ca:"18",e:"12",f:"7",fa:"7",s:"8",si:"9"}],["2022-09-12",{c:"44",ca:"44",e:"79",f:"46",fa:"46",s:"16",si:"16"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2016-03-21",{c:"38",ca:"38",e:"13",f:"38",fa:"38",s:"9.1",si:"9.3"}],["2020-01-15",{c:"57",ca:"57",e:"79",f:"51",fa:"51",s:"10.1",si:"10.3"}],["2020-01-15",{c:"47",ca:"47",e:"79",f:"51",fa:"51",s:"9",si:"9"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3.6",fa:"4",s:"4",si:"3.2"}],["2020-07-28",{c:"55",ca:"55",e:"12",f:"59",fa:"79",s:"13",si:"13"}],["2025-01-27",{c:"116",ca:"116",e:"116",f:"125",fa:"125",s:"17",si:"18.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3",fa:"4",s:"4",si:"3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2020-01-15",{c:"76",ca:"76",e:"79",f:"67",fa:"67",s:"12.1",si:"13"}],["2022-05-31",{c:"96",ca:"96",e:"96",f:"101",fa:"101",s:"14.1",si:"14.5"}],["2020-01-15",{c:"74",ca:"74",e:"79",f:"63",fa:"64",s:"10.1",si:"10.3"}],["2023-12-11",{c:"73",ca:"73",e:"79",f:"78",fa:"79",s:"17.2",si:"17.2"}],["2023-12-11",{c:"86",ca:"86",e:"86",f:"101",fa:"101",s:"17.2",si:"17.2"}],["2023-06-06",{c:"1",ca:"18",e:"12",f:"1",fa:"114",s:"1.1",si:"1"}],["2025-05-01",{c:"136",ca:"136",e:"136",f:"97",fa:"97",s:"15.4",si:"15.4"}],["2019-09-19",{c:"63",ca:"63",e:"12",f:"6",fa:"6",s:"13",si:"13"}],["2015-07-29",{c:"6",ca:"18",e:"12",f:"6",fa:"6",s:"6",si:"7"}],["2015-07-29",{c:"32",ca:"32",e:"12",f:"29",fa:"29",s:"8",si:"8"}],["2020-07-28",{c:"76",ca:"76",e:"79",f:"71",fa:"79",s:"13",si:"13"}],["2020-09-16",{c:"85",ca:"85",e:"85",f:"79",fa:"79",s:"14",si:"14"}],["2018-10-02",{c:"63",ca:"63",e:"18",f:"58",fa:"58",s:"11.1",si:"11.3"}],["2025-01-07",{c:"128",ca:"128",e:"128",f:"134",fa:"134",s:"18.2",si:"18.2"}],["2024-03-05",{c:"119",ca:"119",e:"119",f:"121",fa:"121",s:"17.4",si:"17.4"}],["2016-09-20",{c:"49",ca:"49",e:"12",f:"18",fa:"18",s:"10",si:"10"}],["2023-03-27",{c:"50",ca:"50",e:"17",f:"44",fa:"48",s:"16",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2020-03-24",{c:"63",ca:"63",e:"79",f:"49",fa:"49",s:"13.1",si:"13.4"}],["2020-07-28",{c:"71",ca:"71",e:"79",f:"69",fa:"79",s:"12.1",si:"12.2"}],["2021-04-26",{c:"87",ca:"87",e:"87",f:"70",fa:"79",s:"14.1",si:"14.5"}],["2020-07-28",{c:"1",ca:"18",e:"13",f:"78",fa:"79",s:"4",si:"3.2"}],["2024-01-23",{c:"119",ca:"119",e:"119",f:"122",fa:"122",s:"17.2",si:"17.2"}],["2021-09-20",{c:"85",ca:"85",e:"85",f:"87",fa:"87",s:"15",si:"15"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-05-01",{c:"136",ca:"136",e:"136",f:"134",fa:"134",s:"18.2",si:"18.2"}],["2024-07-09",{c:"85",ca:"85",e:"85",f:"128",fa:"128",s:"16.4",si:"16.4"}],["2024-09-16",{c:"125",ca:"125",e:"125",f:"128",fa:"128",s:"18",si:"18"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.6",fa:"4",s:"5",si:"4"}],["2015-07-29",{c:"24",ca:"25",e:"12",f:"23",fa:"23",s:"7",si:"7"}],["2023-03-27",{c:"69",ca:"69",e:"79",f:"99",fa:"99",s:"16.4",si:"16.4"}],["2024-10-29",{c:"83",ca:"83",e:"83",f:"132",fa:"132",s:"15.4",si:"15.4"}],["2025-05-27",{c:"134",ca:"134",e:"134",f:"139",fa:"139",s:"18.4",si:"18.4"}],["2024-07-09",{c:"111",ca:"111",e:"111",f:"128",fa:"128",s:"16.4",si:"16.4"}],["2020-07-28",{c:"64",ca:"64",e:"79",f:"69",fa:"79",s:"13.1",si:"13.4"}],["2022-09-12",{c:"68",ca:"68",e:"79",f:"62",fa:"62",s:"16",si:"16"}],["2018-10-23",{c:"1",ca:"18",e:"12",f:"63",fa:"63",s:"3",si:"1"}],["2023-03-27",{c:"54",ca:"54",e:"17",f:"45",fa:"45",s:"16.4",si:"16.4"}],["2017-09-19",{c:"29",ca:"29",e:"12",f:"35",fa:"35",s:"11",si:"11"}],["2020-07-27",{c:"84",ca:"84",e:"84",f:"67",fa:"67",s:"9.1",si:"9.3"}],["2020-01-15",{c:"65",ca:"65",e:"79",f:"52",fa:"52",s:"12.1",si:"12.2"}],["2023-11-21",{c:"111",ca:"111",e:"111",f:"120",fa:"120",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-05-17",{c:"125",ca:"125",e:"125",f:"118",fa:"118",s:"17.2",si:"17.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"38",fa:"38",s:"5",si:"4.2"}],["2024-12-11",{c:"128",ca:"128",e:"128",f:"38",fa:"38",s:"18.2",si:"18.2"}],["2024-12-11",{c:"84",ca:"84",e:"84",f:"38",fa:"38",s:"18.2",si:"18.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2020-01-15",{c:"69",ca:"69",e:"79",f:"65",fa:"65",s:"11.1",si:"11.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2025-12-09",{c:"118",ca:"118",e:"118",f:"146",fa:"146",s:"17.4",si:"17.4"}],["2020-01-15",{c:"27",ca:"27",e:"79",f:"32",fa:"32",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2023-03-27",{c:"38",ca:"39",e:"79",f:"43",fa:"43",s:"16.4",si:"16.4"}],["2025-03-31",{c:"84",ca:"84",e:"84",f:"126",fa:"126",s:"16.4",si:"18.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"2"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"113",fa:"113",s:"17",si:"17"}],["2022-03-14",{c:"61",ca:"61",e:"79",f:"36",fa:"36",s:"15.4",si:"15.4"}],["2020-09-16",{c:"61",ca:"61",e:"79",f:"36",fa:"36",s:"14",si:"14"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"1",fa:"4",s:"3",si:"1"}],["2020-01-15",{c:"69",ca:"69",e:"79",f:"68",fa:"68",s:"11",si:"11"}],["2024-10-01",{c:"80",ca:"80",e:"80",f:"131",fa:"131",s:"16.1",si:"16.1"}],["2025-12-12",{c:"121",ca:"121",e:"121",f:"64",fa:"64",s:"26.2",si:"26.2"}],["2024-12-11",{c:"94",ca:"94",e:"94",f:"97",fa:"97",s:"18.2",si:"18.2"}],["2024-12-11",{c:"121",ca:"121",e:"121",f:"64",fa:"64",s:"18.2",si:"18.2"}],["2025-12-12",{c:"114",ca:"114",e:"114",f:"109",fa:"109",s:"26.2",si:"26.2"}],["2023-10-13",{c:"118",ca:"118",e:"118",f:"118",fa:"118",s:"17",si:"17"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"4",fa:"4",s:"5",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-07",{c:"11",ca:"18",e:"12",f:"52",fa:"52",s:"5.1",si:"5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2020-01-15",{c:"6",ca:"18",e:"79",f:"6",fa:"45",s:"5",si:"5"}],["2023-03-27",{c:"65",ca:"65",e:"79",f:"61",fa:"61",s:"16.4",si:"16.4"}],["2018-04-30",{c:"45",ca:"45",e:"17",f:"44",fa:"44",s:"11.1",si:"11.3"}],["2015-07-29",{c:"38",ca:"38",e:"12",f:"13",fa:"14",s:"8",si:"8"}],["2024-06-11",{c:"122",ca:"122",e:"122",f:"127",fa:"127",s:"17",si:"17"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"5"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"5"}],["2020-01-15",{c:"53",ca:"53",e:"79",f:"63",fa:"63",s:"10",si:"10"}],["2020-07-28",{c:"73",ca:"73",e:"79",f:"72",fa:"79",s:"13.1",si:"13.4"}],["2020-01-15",{c:"37",ca:"37",e:"79",f:"62",fa:"62",s:"10.1",si:"10.3"}],["2020-01-15",{c:"37",ca:"37",e:"79",f:"54",fa:"54",s:"10.1",si:"10.3"}],["2021-12-13",{c:"68",ca:"89",e:"79",f:"79",fa:"79",s:"15.2",si:"15.2"}],["2020-01-15",{c:"53",ca:"53",e:"79",f:"63",fa:"63",s:"10",si:"10"}],["2023-03-27",{c:"92",ca:"92",e:"92",f:"92",fa:"92",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2020-01-15",{c:"19",ca:"25",e:"79",f:"4",fa:"4",s:"6",si:"6"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"2"}],["2020-01-15",{c:"18",ca:"18",e:"79",f:"55",fa:"55",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2018-09-05",{c:"33",ca:"33",e:"14",f:"49",fa:"62",s:"7",si:"7"}],["2017-11-28",{c:"9",ca:"47",e:"12",f:"2",fa:"57",s:"5.1",si:"5"}],["2020-01-15",{c:"60",ca:"60",e:"79",f:"55",fa:"55",s:"11.1",si:"11.3"}],["2017-03-27",{c:"38",ca:"38",e:"13",f:"38",fa:"38",s:"10.1",si:"10.3"}],["2020-01-15",{c:"70",ca:"70",e:"79",f:"3",fa:"4",s:"10.1",si:"10.3"}],["2024-08-06",{c:"117",ca:"117",e:"117",f:"129",fa:"129",s:"17.5",si:"17.5"}],["2024-05-17",{c:"125",ca:"125",e:"125",f:"126",fa:"126",s:"17.4",si:"17.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-09-16",{c:"77",ca:"77",e:"79",f:"65",fa:"65",s:"14",si:"14"}],["2019-09-19",{c:"56",ca:"56",e:"16",f:"59",fa:"59",s:"13",si:"13"}],["2023-12-05",{c:"119",ca:"120",e:"85",f:"65",fa:"65",s:"11.1",si:"11.3"}],["2023-09-18",{c:"61",ca:"61",e:"79",f:"57",fa:"57",s:"17",si:"17"}],["2022-06-28",{c:"67",ca:"67",e:"79",f:"102",fa:"102",s:"14.1",si:"14.5"}],["2022-03-14",{c:"92",ca:"92",e:"92",f:"90",fa:"90",s:"15.4",si:"15.4"}],["2015-09-30",{c:"41",ca:"41",e:"12",f:"29",fa:"29",s:"9",si:"9"}],["2015-09-30",{c:"41",ca:"41",e:"12",f:"40",fa:"40",s:"9",si:"9"}],["2020-01-15",{c:"73",ca:"73",e:"79",f:"67",fa:"67",s:"13",si:"13"}],["2016-09-20",{c:"34",ca:"34",e:"12",f:"31",fa:"31",s:"10",si:"10"}],["2017-04-05",{c:"57",ca:"57",e:"15",f:"48",fa:"48",s:"10",si:"10"}],["2015-09-30",{c:"41",ca:"41",e:"12",f:"34",fa:"34",s:"9",si:"9"}],["2015-09-30",{c:"41",ca:"36",e:"12",f:"24",fa:"24",s:"9",si:"9"}],["2020-08-27",{c:"85",ca:"85",e:"85",f:"77",fa:"79",s:"13.1",si:"13.4"}],["2015-09-30",{c:"41",ca:"36",e:"12",f:"17",fa:"17",s:"9",si:"9"}],["2020-01-15",{c:"66",ca:"66",e:"79",f:"61",fa:"61",s:"12",si:"12"}],["2023-10-24",{c:"111",ca:"111",e:"111",f:"119",fa:"119",s:"16.4",si:"16.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2022-03-14",{c:"98",ca:"98",e:"98",f:"94",fa:"94",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2023-09-15",{c:"117",ca:"117",e:"117",f:"71",fa:"79",s:"16",si:"16"}],["2015-09-30",{c:"28",ca:"28",e:"12",f:"22",fa:"22",s:"9",si:"9"}],["2016-09-20",{c:"2",ca:"18",e:"12",f:"49",fa:"49",s:"4",si:"3.2"}],["2020-01-15",{c:"1",ca:"18",e:"79",f:"3",fa:"4",s:"3",si:"2"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"3",fa:"4",s:"6",si:"6"}],["2015-09-30",{c:"38",ca:"38",e:"12",f:"36",fa:"36",s:"9",si:"9"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2021-08-10",{c:"42",ca:"42",e:"79",f:"91",fa:"91",s:"13.1",si:"13.4"}],["2018-10-02",{c:"1",ca:"18",e:"18",f:"1.5",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1.3",si:"2"}],["2024-12-11",{c:"89",ca:"89",e:"89",f:"131",fa:"131",s:"18.2",si:"18.2"}],["2015-11-12",{c:"26",ca:"26",e:"13",f:"22",fa:"22",s:"8",si:"8"}],["2020-01-15",{c:"62",ca:"62",e:"79",f:"53",fa:"53",s:"11",si:"11"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-09-12",{c:"47",ca:"47",e:"12",f:"49",fa:"49",s:"16",si:"16"}],["2022-03-14",{c:"48",ca:"48",e:"79",f:"48",fa:"48",s:"15.4",si:"15.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2022-03-03",{c:"99",ca:"99",e:"99",f:"46",fa:"46",s:"7",si:"7"}],["2020-01-15",{c:"38",ca:"38",e:"79",f:"19",fa:"19",s:"10.1",si:"10.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-09-16",{c:"48",ca:"48",e:"79",f:"41",fa:"41",s:"14",si:"14"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"7",fa:"7",s:"1.3",si:"1"}],["2015-07-29",{c:"2",ca:"18",e:"12",f:"3.5",fa:"4",s:"1.1",si:"1"}],["2017-04-05",{c:"4",ca:"18",e:"15",f:"49",fa:"49",s:"3",si:"2"}],["2015-07-29",{c:"23",ca:"25",e:"12",f:"31",fa:"31",s:"6",si:"6"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-11-19",{c:"87",ca:"87",e:"87",f:"70",fa:"79",s:"12.1",si:"12.2"}],["2020-07-28",{c:"33",ca:"33",e:"12",f:"74",fa:"79",s:"12.1",si:"12.2"}],["2024-03-19",{c:"114",ca:"114",e:"114",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2024-05-13",{c:"114",ca:"114",e:"114",f:"121",fa:"121",s:"17.5",si:"17.5"}],["2024-10-17",{c:"130",ca:"130",e:"130",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2024-03-19",{c:"114",ca:"114",e:"114",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2024-10-17",{c:"130",ca:"130",e:"130",f:"121",fa:"121",s:"17.5",si:"17.5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3"}],["2017-10-24",{c:"62",ca:"62",e:"14",f:"22",fa:"22",s:"10",si:"10"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2019-09-19",{c:"36",ca:"36",e:"12",f:"52",fa:"52",s:"13",si:"9.3"}],["2024-03-05",{c:"114",ca:"114",e:"114",f:"122",fa:"122",s:"17.4",si:"17.4"}],["2024-04-16",{c:"118",ca:"118",e:"118",f:"125",fa:"125",s:"13.1",si:"13.4"}],["2015-09-30",{c:"36",ca:"36",e:"12",f:"16",fa:"16",s:"9",si:"9"}],["2022-03-14",{c:"36",ca:"36",e:"12",f:"16",fa:"16",s:"15.4",si:"15.4"}],["2024-08-06",{c:"117",ca:"117",e:"117",f:"129",fa:"129",s:"17.4",si:"17.4"}],["2015-09-30",{c:"26",ca:"26",e:"12",f:"16",fa:"16",s:"9",si:"9"}],["2023-03-14",{c:"19",ca:"25",e:"79",f:"111",fa:"111",s:"6",si:"6"}],["2023-03-13",{c:"111",ca:"111",e:"111",f:"108",fa:"108",s:"15.4",si:"15.4"}],["2023-07-21",{c:"115",ca:"115",e:"115",f:"70",fa:"79",s:"15",si:"15"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"38",fa:"38",s:"10",si:"10"}],["2016-09-20",{c:"45",ca:"45",e:"12",f:"37",fa:"37",s:"10",si:"10"}],["2015-07-29",{c:"7",ca:"18",e:"12",f:"4",fa:"4",s:"5.1",si:"4.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2025-09-05",{c:"140",ca:"140",e:"140",f:"133",fa:"133",s:"18.2",si:"18.2"}],["2015-09-30",{c:"44",ca:"44",e:"12",f:"40",fa:"40",s:"9",si:"9"}],["2016-03-21",{c:"41",ca:"41",e:"13",f:"27",fa:"27",s:"9.1",si:"9.3"}],["2023-09-18",{c:"113",ca:"113",e:"113",f:"102",fa:"102",s:"17",si:"17"}],["2018-04-30",{c:"44",ca:"44",e:"17",f:"48",fa:"48",s:"10.1",si:"10.3"}],["2015-07-29",{c:"32",ca:"32",e:"12",f:"19",fa:"19",s:"7",si:"7"}],["2023-12-07",{c:"120",ca:"120",e:"120",f:"115",fa:"115",s:"17",si:"17"}],["2025-09-15",{c:"95",ca:"95",e:"95",f:"142",fa:"142",s:"26",si:"26"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"2",si:"1"}],["2023-11-21",{c:"72",ca:"72",e:"79",f:"120",fa:"120",s:"16.4",si:"16.4"}],["2015-07-29",{c:"4",ca:"18",e:"12",f:"3.5",fa:"4",s:"4",si:"5"}],["2023-11-02",{c:"119",ca:"119",e:"119",f:"88",fa:"88",s:"16.5",si:"16.5"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"≤4",si:"≤3.2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-04-18",{c:"124",ca:"124",e:"124",f:"120",fa:"120",s:"17.4",si:"17.4"}],["2015-07-29",{c:"3",ca:"18",e:"12",f:"3.5",fa:"4",s:"3.1",si:"3"}],["2025-10-14",{c:"125",ca:"125",e:"125",f:"144",fa:"144",s:"18.2",si:"18.2"}],["2025-10-14",{c:"111",ca:"111",e:"111",f:"144",fa:"144",s:"18",si:"18"}],["2022-12-05",{c:"108",ca:"108",e:"108",f:"101",fa:"101",s:"15.4",si:"15.4"}],["2017-10-17",{c:"26",ca:"26",e:"16",f:"19",fa:"19",s:"7",si:"7"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1.3",si:"1"}],["2021-08-10",{c:"61",ca:"61",e:"79",f:"91",fa:"68",s:"13",si:"13"}],["2017-10-17",{c:"57",ca:"57",e:"16",f:"52",fa:"52",s:"11",si:"11"}],["2021-04-26",{c:"85",ca:"85",e:"85",f:"78",fa:"79",s:"14.1",si:"14.5"}],["2021-10-25",{c:"75",ca:"75",e:"79",f:"78",fa:"79",s:"15.1",si:"15.1"}],["2022-05-03",{c:"95",ca:"95",e:"95",f:"100",fa:"100",s:"15.2",si:"15.2"}],["2024-03-05",{c:"114",ca:"114",e:"114",f:"112",fa:"112",s:"17.4",si:"17.4"}],["2024-12-11",{c:"119",ca:"119",e:"119",f:"120",fa:"120",s:"18.2",si:"18.2"}],["2020-10-20",{c:"86",ca:"86",e:"86",f:"78",fa:"79",s:"13.1",si:"13.4"}],["2020-03-24",{c:"69",ca:"69",e:"79",f:"62",fa:"62",s:"13.1",si:"13.4"}],["2021-10-25",{c:"75",ca:"75",e:"18",f:"64",fa:"64",s:"15.1",si:"15.1"}],["2021-11-19",{c:"96",ca:"96",e:"96",f:"79",fa:"79",s:"15.1",si:"15.1"}],["2021-04-26",{c:"69",ca:"69",e:"18",f:"62",fa:"62",s:"14.1",si:"14.5"}],["2023-03-27",{c:"91",ca:"91",e:"91",f:"89",fa:"89",s:"16.4",si:"16.4"}],["2024-12-11",{c:"112",ca:"112",e:"112",f:"121",fa:"121",s:"18.2",si:"18.2"}],["2021-12-13",{c:"74",ca:"88",e:"79",f:"79",fa:"79",s:"15.2",si:"15.2"}],["2024-09-16",{c:"119",ca:"119",e:"119",f:"120",fa:"120",s:"18",si:"18"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"4",si:"3.2"}],["2021-04-26",{c:"84",ca:"84",e:"84",f:"79",fa:"79",s:"14.1",si:"14.5"}],["2015-07-29",{c:"36",ca:"36",e:"12",f:"6",fa:"6",s:"8",si:"8"}],["2015-09-30",{c:"36",ca:"36",e:"12",f:"34",fa:"34",s:"9",si:"9"}],["2020-09-16",{c:"84",ca:"84",e:"84",f:"75",fa:"79",s:"14",si:"14"}],["2021-04-26",{c:"35",ca:"35",e:"12",f:"25",fa:"25",s:"14.1",si:"14.5"}],["2015-07-29",{c:"37",ca:"37",e:"12",f:"34",fa:"34",s:"11",si:"11"}],["2022-03-14",{c:"69",ca:"69",e:"79",f:"96",fa:"96",s:"15.4",si:"15.4"}],["2021-09-07",{c:"67",ca:"70",e:"18",f:"60",fa:"92",s:"13",si:"13"}],["2023-10-24",{c:"85",ca:"85",e:"85",f:"119",fa:"119",s:"16",si:"16"}],["2015-07-29",{c:"9",ca:"25",e:"12",f:"4",fa:"4",s:"5.1",si:"8"}],["2021-09-20",{c:"63",ca:"63",e:"17",f:"30",fa:"30",s:"14",si:"15"}],["2024-10-29",{c:"104",ca:"104",e:"104",f:"132",fa:"132",s:"16.4",si:"16.4"}],["2020-01-15",{c:"47",ca:"47",e:"79",f:"53",fa:"53",s:"12",si:"12"}],["2017-04-19",{c:"33",ca:"33",e:"12",f:"53",fa:"53",s:"9.1",si:"9.3"}],["2020-09-16",{c:"47",ca:"47",e:"79",f:"56",fa:"56",s:"14",si:"14"}],["2015-07-29",{c:"26",ca:"26",e:"12",f:"22",fa:"22",s:"8",si:"8"}],["2018-04-30",{c:"26",ca:"26",e:"17",f:"22",fa:"22",s:"8",si:"8"}],["2022-12-13",{c:"100",ca:"100",e:"100",f:"108",fa:"108",s:"16",si:"16"}],["2021-09-20",{c:"56",ca:"58",e:"79",f:"51",fa:"51",s:"15",si:"15"}],["2024-10-29",{c:"104",ca:"104",e:"104",f:"132",fa:"132",s:"16.4",si:"16.4"}],["2020-09-16",{c:"9",ca:"18",e:"18",f:"65",fa:"65",s:"14",si:"14"}],["2020-01-15",{c:"56",ca:"56",e:"79",f:"22",fa:"24",s:"11",si:"11"}],["2025-10-03",{c:"141",ca:"141",e:"141",f:"117",fa:"117",s:"15.4",si:"15.4"}],["2023-05-09",{c:"76",ca:"76",e:"79",f:"113",fa:"113",s:"15.4",si:"15.4"}],["2020-01-15",{c:"58",ca:"58",e:"79",f:"44",fa:"44",s:"11",si:"11"}],["2015-07-29",{c:"5",ca:"18",e:"12",f:"11",fa:"14",s:"5",si:"4.2"}],["2015-07-29",{c:"23",ca:"25",e:"12",f:"31",fa:"31",s:"6",si:"8"}],["2020-01-15",{c:"23",ca:"25",e:"79",f:"31",fa:"31",s:"6",si:"8"}],["2021-01-21",{c:"88",ca:"88",e:"88",f:"82",fa:"82",s:"14",si:"14"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2024-03-19",{c:"114",ca:"114",e:"114",f:"124",fa:"124",s:"17.4",si:"17.4"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2020-01-15",{c:"36",ca:"36",e:"79",f:"36",fa:"36",s:"9.1",si:"9.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2015-09-30",{c:"44",ca:"44",e:"12",f:"15",fa:"15",s:"9",si:"9"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"1",si:"1"}],["2017-03-27",{c:"48",ca:"48",e:"12",f:"41",fa:"41",s:"10.1",si:"10.3"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3",si:"1"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"1",fa:"4",s:"3.1",si:"2"}],["2015-07-29",{c:"1",ca:"18",e:"12",f:"3",fa:"4",s:"1",si:"1"}],["2024-05-14",{c:"1",ca:"18",e:"12",f:"126",fa:"126",s:"3.1",si:"3"}]],c={w:"WebKit",g:"Gecko",p:"Presto",b:"Blink"},e={r:"retired",c:"current",b:"beta",n:"nightly",p:"planned",u:"unknown",e:"esr"},f=s=>{const a={};return Object.entries(s).forEach(([s,r])=>{if(r.releases){a[s]||(a[s]={releases:{}});const f=a[s].releases;r.releases.forEach(s=>{f[s[0]]={version:s[0],release_date:"u"==s[1]?"unknown":s[1],status:e[s[2]],engine:s[3]?c[s[3]]:void 0,engine_version:s[4]}})}}),a},b=(()=>{const s=[];return r.forEach(a=>{var r;s.push({status:{baseline_low_date:a[0],support:(r=a[1],{chrome:r.c,chrome_android:r.ca,edge:r.e,firefox:r.f,firefox_android:r.fa,safari:r.s,safari_ios:r.si})}})}),s})(),u=f(s),i=f(a);let n=!1;function o(){n=!1}const g=["chrome","chrome_android","edge","firefox","firefox_android","safari","safari_ios"],t=Object.entries(u).filter(([s])=>g.includes(s)),l=["webview_android","samsunginternet_android","opera_android","opera"],w=[...Object.entries(u).filter(([s])=>l.includes(s)),...Object.entries(i)],p=["current","esr","retired","unknown","beta","nightly"];let d=!1;const v=s=>{if(!1===s.includeDownstreamBrowsers&&!0===s.includeKaiOS){if(console.log(new Error("KaiOS is a downstream browser and can only be included if you include other downstream browsers. Please ensure you use `includeDownstreamBrowsers: true`.")),"undefined"==typeof process||!process.exit)throw new Error("KaiOS configuration error: process.exit is not available");process.exit(1)}},_=s=>s&&s.startsWith("≤")?s.slice(1):s,h=(s,a)=>{if(s===a)return 0;const[r=0,c=0]=s.split(".",2).map(Number),[e=0,f=0]=a.split(".",2).map(Number);if(isNaN(r)||isNaN(c))throw new Error(`Invalid version: ${s}`);if(isNaN(e)||isNaN(f))throw new Error(`Invalid version: ${a}`);return r!==e?r>e?1:-1:c!==f?c>f?1:-1:0},m=s=>{let a=[];return s.forEach(s=>{let r=t.find(a=>a[0]===s.browser);if(r){Object.entries(r[1].releases).filter(([,s])=>p.includes(s.status)).sort((s,a)=>h(s[0],a[0])).forEach(([r,c])=>!!p.includes(c.status)&&(1===h(r,s.version)&&(a.push({browser:s.browser,version:r,release_date:c.release_date?c.release_date:"unknown"}),!0)))}}),a},O=(s,a=!1)=>{if(s.getFullYear()<2015&&!d&&console.warn(new Error("There are no browser versions compatible with Baseline before 2015.  You may receive unexpected results.")),s.getFullYear()<2002)throw new Error("None of the browsers in the core set were released before 2002.  Please use a date after 2002.");if(s.getFullYear()>(new Date).getFullYear())throw new Error("There are no browser versions compatible with Baseline in the future");const r=(s=>b.filter(a=>a.status.baseline_low_date&&new Date(a.status.baseline_low_date)<=s).map(s=>({baseline_low_date:s.status.baseline_low_date,support:s.status.support})))(s),c=(s=>{let a={};return Object.entries(t).forEach(([,s])=>{a[s[0]]={browser:s[0],version:"0",release_date:""}}),s.forEach(s=>{Object.entries(s.support).forEach(r=>{const c=r[0],e=_(r[1]);a[c]&&1===h(e,_(a[c].version))&&(a[c]={browser:c,version:e,release_date:s.baseline_low_date})})}),Object.values(a)})(r);return a?[...c,...m(c)].sort((s,a)=>s.browser<a.browser?-1:s.browser>a.browser?1:h(s.version,a.version)):c},y=(s=[],a=!0,r=!1)=>{const c=a=>{var r;return s&&s.length>0?null===(r=s.filter(s=>s.browser===a).sort((s,a)=>h(s.version,a.version))[0])||void 0===r?void 0:r.version:void 0},e=c("chrome"),f=c("firefox");if(!e&&!f)throw new Error("There are no browser versions compatible with Baseline before Chrome and Firefox");let b=[];return w.filter(([s])=>!("kai_os"===s&&!r)).forEach(([s,r])=>{var c;if(!r.releases)return;let u=Object.entries(r.releases).filter(([,s])=>{const{engine:a,engine_version:r}=s;return!(!a||!r)&&("Blink"===a&&e?h(r,e)>=0:!("Gecko"!==a||!f)&&h(r,f)>=0)}).sort((s,a)=>h(s[0],a[0]));for(let r=0;r<u.length;r++){const e=u[r];if(e){const[r,f]=e;let u={browser:s,version:r,release_date:null!==(c=f.release_date)&&void 0!==c?c:"unknown"};if(f.engine&&f.engine_version&&(u.engine=f.engine,u.engine_version=f.engine_version),b.push(u),!a)break}}}),b};function E(s){var a,r,c,e,f,b,u;let i=null!=s?s:{},o={listAllCompatibleVersions:null!==(a=i.listAllCompatibleVersions)&&void 0!==a&&a,includeDownstreamBrowsers:null!==(r=i.includeDownstreamBrowsers)&&void 0!==r&&r,widelyAvailableOnDate:null!==(c=i.widelyAvailableOnDate)&&void 0!==c?c:void 0,targetYear:null!==(e=i.targetYear)&&void 0!==e?e:void 0,includeKaiOS:null!==(f=i.includeKaiOS)&&void 0!==f&&f,overrideLastUpdated:null!==(b=i.overrideLastUpdated)&&void 0!==b?b:void 0,suppressWarnings:null!==(u=i.suppressWarnings)&&void 0!==u&&u},g=new Date;if(v(o),o.widelyAvailableOnDate||o.targetYear)if(o.targetYear&&o.widelyAvailableOnDate){if(console.log(new Error("You cannot use targetYear and widelyAvailableOnDate at the same time.  Please remove one of these options and try again.")),"undefined"==typeof process||!process.exit)throw new Error("Configuration error: targetYear and widelyAvailableOnDate cannot be used together");process.exit(1)}else o.widelyAvailableOnDate?g=new Date(o.widelyAvailableOnDate):o.targetYear&&(g=new Date(`${o.targetYear}-12-31`));else g=new Date;(o.widelyAvailableOnDate||void 0===o.targetYear)&&g.setMonth(g.getMonth()-30);let t=O(g,o.listAllCompatibleVersions);return o.suppressWarnings||((s,a)=>{if(n||"undefined"!=typeof process&&process.env&&(process.env.BROWSERSLIST_IGNORE_OLD_DATA||process.env.BASELINE_BROWSER_MAPPING_IGNORE_OLD_DATA))return;const r=new Date;r.setMonth(r.getMonth()-2),s>r&&(null!=a?a:1766153488462)<r.getTime()&&(console.warn("[baseline-browser-mapping] The data in this module is over two months old and you are targetting a recent feature cut off date of "+s.toISOString().slice(0,10)+". To ensure accurate Baseline data, please update to the latest version of this module using your package manager of choice.\nYou can suppress these warnings using the environment variables `BROWSERSLIST_IGNORE_OLD_DATA=true` or `BASELINE_BROWSER_MAPPING_IGNORE_OLD_DATA=true`.\nSome modules including `next.js` pre-compile data from this module via `browserslist` or other packages.\nPlease contact the maintainers of those modules if you are receiving these warnings and can't suppress them.\n"),n=!0)})(g,o.overrideLastUpdated),!1===o.includeDownstreamBrowsers?t:[...t,...y(t,o.listAllCompatibleVersions,o.includeKaiOS)]}function D(s){var a,r,c,e,f;d=!0;let b=null!=s?s:{},u={outputFormat:null!==(a=b.outputFormat)&&void 0!==a?a:"array",includeDownstreamBrowsers:null!==(r=b.includeDownstreamBrowsers)&&void 0!==r&&r,useSupports:null!==(c=b.useSupports)&&void 0!==c&&c,includeKaiOS:null!==(e=b.includeKaiOS)&&void 0!==e&&e,suppressWarnings:null!==(f=b.suppressWarnings)&&void 0!==f&&f};v(u);let i=(new Date).getFullYear()+1;const n=[...Array(i).keys()].slice(2002),o={};n.forEach(s=>{o[s]={},E({targetYear:s,suppressWarnings:u.suppressWarnings}).forEach(a=>{o[s]&&(o[s][a.browser]=a)})});const t=E({suppressWarnings:u.suppressWarnings}),l={};t.forEach(s=>{l[s.browser]=s});const w=new Date;w.setMonth(w.getMonth()+30);const p=E({widelyAvailableOnDate:w.toISOString().slice(0,10),suppressWarnings:u.suppressWarnings}),_={};p.forEach(s=>{_[s.browser]=s});const m=E({targetYear:2002,listAllCompatibleVersions:!0,suppressWarnings:u.suppressWarnings}),O=[];if(g.forEach(s=>{var a,r,c,e;let f=m.filter(a=>a.browser==s).sort((s,a)=>h(s.version,a.version)),b=null!==(r=null===(a=l[s])||void 0===a?void 0:a.version)&&void 0!==r?r:"0",g=null!==(e=null===(c=_[s])||void 0===c?void 0:c.version)&&void 0!==e?e:"0";n.forEach(a=>{var r;if(o[a]){let c=(null!==(r=o[a][s])&&void 0!==r?r:{version:"0"}).version,e=f.findIndex(s=>0===h(s.version,c));(a===i-1?f:f.slice(0,e)).forEach(s=>{let r=h(s.version,b)>=0,c=h(s.version,g)>=0,e=Object.assign(Object.assign({},s),{year:a<=2015?"pre_baseline":a-1});u.useSupports?(r&&(e.supports="widely"),c&&(e.supports="newly")):e=Object.assign(Object.assign({},e),{wa_compatible:r}),O.push(e)}),f=f.slice(e,f.length)}})}),u.includeDownstreamBrowsers){y(O,!0,u.includeKaiOS).forEach(s=>{let a=O.find(a=>"chrome"===a.browser&&a.version===s.engine_version);a&&(u.useSupports?O.push(Object.assign(Object.assign({},s),{year:a.year,supports:a.supports})):O.push(Object.assign(Object.assign({},s),{year:a.year,wa_compatible:a.wa_compatible})))})}if(O.sort((s,a)=>{if("pre_baseline"===s.year&&"pre_baseline"!==a.year)return-1;if("pre_baseline"===a.year&&"pre_baseline"!==s.year)return 1;if("pre_baseline"!==s.year&&"pre_baseline"!==a.year){if(s.year<a.year)return-1;if(s.year>a.year)return 1}return s.browser<a.browser?-1:s.browser>a.browser?1:h(s.version,a.version)}),"object"===u.outputFormat){const s={};return O.forEach(a=>{s[a.browser]||(s[a.browser]={});let r={year:a.year,release_date:a.release_date,engine:a.engine,engine_version:a.engine_version};s[a.browser][a.version]=u.useSupports?a.supports?Object.assign(Object.assign({},r),{supports:a.supports}):r:Object.assign(Object.assign({},r),{wa_compatible:a.wa_compatible})}),null!=s?s:{}}if("csv"===u.outputFormat){let s=`"browser","version","year","${u.useSupports?"supports":"wa_compatible"}","release_date","engine","engine_version"`;return O.forEach(a=>{var r,c,e,f;let b={browser:a.browser,version:a.version,year:a.year,release_date:null!==(r=a.release_date)&&void 0!==r?r:"NULL",engine:null!==(c=a.engine)&&void 0!==c?c:"NULL",engine_version:null!==(e=a.engine_version)&&void 0!==e?e:"NULL"};b=u.useSupports?Object.assign(Object.assign({},b),{supports:null!==(f=a.supports)&&void 0!==f?f:""}):Object.assign(Object.assign({},b),{wa_compatible:a.wa_compatible}),s+=`\n"${b.browser}","${b.version}","${b.year}","${u.useSupports?b.supports:b.wa_compatible}","${b.release_date}","${b.engine}","${b.engine_version}"`}),s}return O}export{o as _resetHasWarned,D as getAllVersions,E as getCompatibleVersions};
Index: node_modules/baseline-browser-mapping/package.json
===================================================================
--- node_modules/baseline-browser-mapping/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/baseline-browser-mapping/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,64 @@
+{
+  "name": "baseline-browser-mapping",
+  "main": "./dist/index.cjs",
+  "version": "2.9.11",
+  "description": "A library for obtaining browser versions with their maximum supported Baseline feature set and Widely Available status.",
+  "exports": {
+    ".": {
+      "require": "./dist/index.cjs",
+      "types": "./dist/index.d.ts",
+      "default": "./dist/index.js"
+    },
+    "./legacy": {
+      "require": "./dist/index.cjs",
+      "types": "./dist/index.d.ts"
+    }
+  },
+  "jsdelivr": "./dist/index.js",
+  "files": [
+    "dist/*",
+    "!dist/scripts/*",
+    "LICENSE.txt",
+    "README.md"
+  ],
+  "types": "./dist/index.d.ts",
+  "type": "module",
+  "bin": {
+    "baseline-browser-mapping": "dist/cli.js"
+  },
+  "scripts": {
+    "fix-cli-permissions": "output=$(npx baseline-browser-mapping 2>&1); path=$(printf '%s\n' \"$output\" | sed -n 's/^.*: \\(.*\\): Permission denied$/\\1/p; t; s/^\\(.*\\): Permission denied$/\\1/p'); if [ -n \"$path\" ]; then echo \"Permission denied for: $path\"; echo \"Removing $path ...\"; rm -rf \"$path\"; else echo \"$output\"; fi",
+    "test:format": "npx prettier --check .",
+    "test:lint": "npx eslint .",
+    "test:jasmine": "npx jasmine",
+    "test:jasmine-browser": "npx jasmine-browser-runner runSpecs --config ./spec/support/jasmine-browser.js",
+    "test": "npm run build && npm run fix-cli-permissions && npm run test:format && npm run test:lint && npm run test:jasmine && npm run test:jasmine-browser",
+    "build": "rm -rf dist; npx prettier . --write; rollup -c; rm -rf ./dist/scripts/expose-data.d.ts ./dist/cli.d.ts",
+    "refresh-downstream": "npx tsx scripts/refresh-downstream.ts",
+    "refresh-static": "npx tsx scripts/refresh-static.ts",
+    "update-data-file": "npx tsx scripts/update-data-file.ts; npx prettier ./src/data/data.js --write",
+    "update-data-dependencies": "npm i @mdn/browser-compat-data@latest web-features@latest -D",
+    "check-data-changes": "git diff --name-only | grep -q '^src/data/data.js$' && echo 'changes-available=TRUE' || echo 'changes-available=FALSE'"
+  },
+  "license": "Apache-2.0",
+  "devDependencies": {
+    "@mdn/browser-compat-data": "^7.2.2",
+    "@rollup/plugin-terser": "^0.4.4",
+    "@rollup/plugin-typescript": "^12.1.3",
+    "@types/node": "^22.15.17",
+    "eslint-plugin-new-with-error": "^5.0.0",
+    "jasmine": "^5.8.0",
+    "jasmine-browser-runner": "^3.0.0",
+    "jasmine-spec-reporter": "^7.0.0",
+    "prettier": "^3.5.3",
+    "rollup": "^4.44.0",
+    "tslib": "^2.8.1",
+    "typescript": "^5.7.2",
+    "typescript-eslint": "^8.35.0",
+    "web-features": "^3.12.0"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/web-platform-dx/baseline-browser-mapping.git"
+  }
+}
Index: node_modules/browserslist/LICENSE
===================================================================
--- node_modules/browserslist/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2014 Andrey Sitnik <andrey@sitnik.ru> and other contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Index: node_modules/browserslist/README.md
===================================================================
--- node_modules/browserslist/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,65 @@
+# Browserslist
+
+<img width="120" height="120" alt="Browserslist logo by Anton Popov"
+     src="https://browsersl.ist/logo.svg" align="right">
+
+The config to share target browsers and Node.js versions between different
+front-end tools. It is used in:
+
+* [Autoprefixer]
+* [Babel]
+* [postcss-preset-env]
+* [eslint-plugin-compat]
+* [stylelint-no-unsupported-browser-features]
+* [postcss-normalize]
+* [obsolete-webpack-plugin]
+
+All tools will find target browsers automatically,
+when you add the following to `package.json`:
+
+```json
+  "browserslist": [
+    "defaults and fully supports es6-module",
+    "maintained node versions"
+  ]
+```
+
+Or in `.browserslistrc` config:
+
+```yaml
+# Browsers that we support
+
+defaults and fully supports es6-module
+maintained node versions
+```
+
+Developers set their version lists using queries like `last 2 versions`
+to be free from updating versions manually.
+Browserslist will use [`caniuse-lite`] with [Can I Use] data for this queries.
+
+You can check how config works at our playground: [`browsersl.ist`](https://browsersl.ist/)
+
+<a href="https://browsersl.ist/">
+  <img src="/img/screenshot.webp" alt="browsersl.ist website">
+</a>
+
+<br>
+<br>
+<div align="center">
+  <a href="https://evilmartians.com/?utm_source=browserslist"><img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54"></a>  <a href="https://cube.dev/?ref=eco-browserslist-github"><img src="https://user-images.githubusercontent.com/986756/154330861-d79ab8ec-aacb-4af8-9e17-1b28f1eccb01.svg" alt="Supported by Cube" width="227" height="46"></a>
+</div>
+
+[stylelint-no-unsupported-browser-features]: https://github.com/ismay/stylelint-no-unsupported-browser-features
+[obsolete-webpack-plugin]:                   https://github.com/ElemeFE/obsolete-webpack-plugin
+[eslint-plugin-compat]:                      https://github.com/amilajack/eslint-plugin-compat
+[Browserslist Example]:                      https://github.com/browserslist/browserslist-example
+[postcss-preset-env]:                        https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env
+[postcss-normalize]:                         https://github.com/csstools/postcss-normalize
+[`browsersl.ist`]:                           https://browsersl.ist/
+[`caniuse-lite`]:                            https://github.com/ben-eb/caniuse-lite
+[Autoprefixer]:                              https://github.com/postcss/autoprefixer
+[Can I Use]:                                 https://caniuse.com/
+[Babel]:                                     https://github.com/babel/babel/tree/master/packages/babel-preset-env
+
+## Docs
+Read full docs **[here](https://github.com/browserslist/browserslist#readme)**.
Index: node_modules/browserslist/browser.js
===================================================================
--- node_modules/browserslist/browser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/browser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,54 @@
+var BrowserslistError = require('./error')
+
+function noop() {}
+
+module.exports = {
+  loadQueries: function loadQueries() {
+    throw new BrowserslistError(
+      'Sharable configs are not supported in client-side build of Browserslist'
+    )
+  },
+
+  getStat: function getStat(opts) {
+    return opts.stats
+  },
+
+  loadConfig: function loadConfig(opts) {
+    if (opts.config) {
+      throw new BrowserslistError(
+        'Browserslist config are not supported in client-side build'
+      )
+    }
+  },
+
+  loadCountry: function loadCountry() {
+    throw new BrowserslistError(
+      'Country statistics are not supported ' +
+        'in client-side build of Browserslist'
+    )
+  },
+
+  loadFeature: function loadFeature() {
+    throw new BrowserslistError(
+      'Supports queries are not available in client-side build of Browserslist'
+    )
+  },
+
+  currentNode: function currentNode(resolve, context) {
+    return resolve(['maintained node versions'], context)[0]
+  },
+
+  parseConfig: noop,
+
+  readConfig: noop,
+
+  findConfig: noop,
+
+  findConfigFile: noop,
+
+  clearCaches: noop,
+
+  oldDataWarning: noop,
+
+  env: {}
+}
Index: node_modules/browserslist/cli.js
===================================================================
--- node_modules/browserslist/cli.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/cli.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,156 @@
+#!/usr/bin/env node
+
+var fs = require('fs')
+var updateDb = require('update-browserslist-db')
+
+var browserslist = require('./')
+var pkg = require('./package.json')
+
+var args = process.argv.slice(2)
+
+var USAGE =
+  'Usage:\n' +
+  '  npx browserslist\n' +
+  '  npx browserslist "QUERIES"\n' +
+  '  npx browserslist --json "QUERIES"\n' +
+  '  npx browserslist --config="path/to/browserlist/file"\n' +
+  '  npx browserslist --coverage "QUERIES"\n' +
+  '  npx browserslist --coverage=US "QUERIES"\n' +
+  '  npx browserslist --coverage=US,RU,global "QUERIES"\n' +
+  '  npx browserslist --env="environment name defined in config"\n' +
+  '  npx browserslist --stats="path/to/browserlist/stats/file"\n' +
+  '  npx browserslist --mobile-to-desktop\n' +
+  '  npx browserslist --ignore-unknown-versions\n'
+
+function isArg(arg) {
+  return args.some(function (str) {
+    return str === arg || str.indexOf(arg + '=') === 0
+  })
+}
+
+function error(msg) {
+  process.stderr.write('browserslist: ' + msg + '\n')
+  process.exit(1)
+}
+
+if (isArg('--help') || isArg('-h')) {
+  process.stdout.write(pkg.description + '.\n\n' + USAGE + '\n')
+} else if (isArg('--version') || isArg('-v')) {
+  process.stdout.write('browserslist ' + pkg.version + '\n')
+} else if (isArg('--update-db')) {
+  /* c8 ignore next 8 */
+  process.stdout.write(
+    'The --update-db command is deprecated.\n' +
+      'Please use npx update-browserslist-db@latest instead.\n'
+  )
+  process.stdout.write('Browserslist DB update will still be made.\n')
+  updateDb(function (str) {
+    process.stdout.write(str)
+  })
+} else {
+  var mode = 'browsers'
+  var opts = {}
+  var queries
+  var areas
+
+  for (var i = 0; i < args.length; i++) {
+    if (args[i][0] !== '-') {
+      queries = args[i].replace(/^["']|["']$/g, '')
+      continue
+    }
+
+    var arg = args[i].split('=')
+    var name = arg[0]
+    var value = arg[1]
+
+    if (value) value = value.replace(/^["']|["']$/g, '')
+
+    if (name === '--config' || name === '-b') {
+      opts.config = value
+    } else if (name === '--env' || name === '-e') {
+      opts.env = value
+    } else if (name === '--stats' || name === '-s') {
+      opts.stats = value
+    } else if (name === '--coverage' || name === '-c') {
+      if (mode !== 'json') mode = 'coverage'
+      if (value) {
+        areas = value.split(',')
+      } else {
+        areas = ['global']
+      }
+    } else if (name === '--json') {
+      mode = 'json'
+    } else if (name === '--mobile-to-desktop') {
+      /* c8 ignore next */
+      opts.mobileToDesktop = true
+    } else if (name === '--ignore-unknown-versions') {
+      /* c8 ignore next */
+      opts.ignoreUnknownVersions = true
+    } else {
+      error('Unknown arguments ' + args[i] + '.\n\n' + USAGE)
+    }
+  }
+
+  var browsers
+  try {
+    browsers = browserslist(queries, opts)
+  } catch (e) {
+    if (e.name === 'BrowserslistError') {
+      error(e.message)
+    } /* c8 ignore start */ else {
+      throw e
+    } /* c8 ignore end */
+  }
+
+  var coverage
+  if (mode === 'browsers') {
+    browsers.forEach(function (browser) {
+      process.stdout.write(browser + '\n')
+    })
+  } else if (areas) {
+    coverage = areas.map(function (area) {
+      var stats
+      if (area !== 'global') {
+        stats = area
+      } else if (opts.stats) {
+        stats = JSON.parse(fs.readFileSync(opts.stats))
+      }
+      var result = browserslist.coverage(browsers, stats)
+      var round = Math.round(result * 100) / 100.0
+
+      return [area, round]
+    })
+
+    if (mode === 'coverage') {
+      var prefix = 'These browsers account for '
+      process.stdout.write(prefix)
+      coverage.forEach(function (data, index) {
+        var area = data[0]
+        var round = data[1]
+        var end = 'globally'
+        if (area && area !== 'global') {
+          end = 'in the ' + area.toUpperCase()
+        } else if (opts.stats) {
+          end = 'in custom statistics'
+        }
+
+        if (index !== 0) {
+          process.stdout.write(prefix.replace(/./g, ' '))
+        }
+
+        process.stdout.write(round + '% of all users ' + end + '\n')
+      })
+    }
+  }
+
+  if (mode === 'json') {
+    var data = { browsers: browsers }
+    if (coverage) {
+      data.coverage = coverage.reduce(function (object, j) {
+        object[j[0]] = j[1]
+        return object
+      }, {})
+    }
+    process.stdout.write(JSON.stringify(data, null, '  ') + '\n')
+  }
+}
Index: node_modules/browserslist/error.d.ts
===================================================================
--- node_modules/browserslist/error.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/error.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,7 @@
+declare class BrowserslistError extends Error {
+  constructor(message: any)
+  name: 'BrowserslistError'
+  browserslist: true
+}
+
+export = BrowserslistError
Index: node_modules/browserslist/error.js
===================================================================
--- node_modules/browserslist/error.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/error.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,12 @@
+function BrowserslistError(message) {
+  this.name = 'BrowserslistError'
+  this.message = message
+  this.browserslist = true
+  if (Error.captureStackTrace) {
+    Error.captureStackTrace(this, BrowserslistError)
+  }
+}
+
+BrowserslistError.prototype = Error.prototype
+
+module.exports = BrowserslistError
Index: node_modules/browserslist/index.d.ts
===================================================================
--- node_modules/browserslist/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,224 @@
+/**
+ * Return array of browsers by selection queries.
+ *
+ * ```js
+ * browserslist('IE >= 10, IE 8') //=> ['ie 11', 'ie 10', 'ie 8']
+ * ```
+ *
+ * @param queries Browser queries.
+ * @param opts Options.
+ * @returns Array with browser names in Can I Use.
+ */
+declare function browserslist(
+  queries?: string | readonly string[] | null,
+  opts?: browserslist.Options
+): string[]
+
+declare namespace browserslist {
+  interface Query {
+    compose: 'or' | 'and'
+    type: string
+    query: string
+    not?: true
+  }
+
+  interface Options {
+    /**
+     * Path to processed file. It will be used to find config files.
+     */
+    path?: string | false
+    /**
+     * Processing environment. It will be used to take right queries
+     * from config file.
+     */
+    env?: string
+    /**
+     * Custom browser usage statistics for "> 1% in my stats" query.
+     */
+    stats?: Stats | string
+    /**
+     * Path to config file with queries.
+     */
+    config?: string
+    /**
+     * Do not throw on unknown version in direct query.
+     */
+    ignoreUnknownVersions?: boolean
+    /**
+     * Throw an error if env is not found.
+     */
+    throwOnMissing?: boolean
+    /**
+     * Disable security checks for extend query.
+     */
+    dangerousExtend?: boolean
+    /**
+     * Alias mobile browsers to the desktop version when Can I Use
+     * doesn’t have data about the specified version.
+     */
+    mobileToDesktop?: boolean
+  }
+
+  type Config = {
+    defaults: string[]
+    [section: string]: string[] | undefined
+  }
+
+  interface Stats {
+    [browser: string]: {
+      [version: string]: number
+    }
+  }
+
+  /**
+   * Browser names aliases.
+   */
+  let aliases: {
+    [alias: string]: string | undefined
+  }
+
+  /**
+   * Aliases to work with joined versions like `ios_saf 7.0-7.1`.
+   */
+  let versionAliases: {
+    [browser: string]:
+      | {
+          [version: string]: string | undefined
+        }
+      | undefined
+  }
+
+  /**
+   * Can I Use only provides a few versions for some browsers (e.g. `and_chr`).
+   *
+   * Fallback to a similar browser for unknown versions.
+   */
+  let desktopNames: {
+    [browser: string]: string | undefined
+  }
+
+  let data: {
+    [browser: string]:
+      | {
+          name: string
+          versions: string[]
+          released: string[]
+          releaseDate: {
+            [version: string]: number | undefined | null
+          }
+        }
+      | undefined
+  }
+
+  let nodeVersions: string[]
+
+  interface Usage {
+    [version: string]: number
+  }
+
+  let usage: {
+    global?: Usage
+    custom?: Usage | null
+    [country: string]: Usage | undefined | null
+  }
+
+  let cache: {
+    [feature: string]: {
+      [name: string]: {
+        [version: string]: string
+      }
+    }
+  }
+
+  /**
+   * Default browsers query
+   */
+  let defaults: readonly string[]
+
+  /**
+   * Which statistics should be used. Country code or custom statistics.
+   * Pass `"my stats"` to load statistics from `Browserslist` files.
+   */
+  type StatsOptions = string | 'my stats' | Stats | { dataByBrowser: Stats }
+
+  /**
+   * Return browsers market coverage.
+   *
+   * ```js
+   * browserslist.coverage(browserslist('> 1% in US'), 'US') //=> 83.1
+   * ```
+   *
+   * @param browsers Browsers names in Can I Use.
+   * @param stats Which statistics should be used.
+   * @returns Total market coverage for all selected browsers.
+   */
+  function coverage(browsers: readonly string[], stats?: StatsOptions): number
+
+  /**
+   * Get queries AST to analyze the config content.
+   *
+   * @param queries Browser queries.
+   * @param opts Options.
+   * @returns An array of the data of each query in the config.
+   */
+  function parse(
+    queries?: string | readonly string[] | null,
+    opts?: browserslist.Options
+  ): Query[]
+
+  /**
+   * Return queries for specific file inside the project.
+   *
+   * ```js
+   * browserslist.loadConfig({
+   *   file: process.cwd()
+   * }) ?? browserslist.defaults
+   * ```
+   */
+  function loadConfig(options: LoadConfigOptions): string[] | undefined
+
+  function clearCaches(): void
+
+  function parseConfig(string: string): Config
+
+  function readConfig(file: string): Config
+
+  function findConfig(...pathSegments: string[]): Config | undefined
+
+  function findConfigFile(...pathSegments: string[]): string | undefined
+
+  interface LoadConfigOptions {
+    /**
+     * Path to config file
+     * */
+    config?: string
+
+    /**
+     * Path to file inside the project to find Browserslist config
+     * in closest folder
+     */
+    path?: string
+
+    /**
+     * Environment to choose part of config.
+     */
+    env?: string
+  }
+}
+
+declare global {
+  namespace NodeJS {
+    interface ProcessEnv {
+      BROWSERSLIST?: string
+      BROWSERSLIST_CONFIG?: string
+      BROWSERSLIST_DANGEROUS_EXTEND?: string
+      BROWSERSLIST_DISABLE_CACHE?: string
+      BROWSERSLIST_ENV?: string
+      BROWSERSLIST_IGNORE_OLD_DATA?: string
+      BROWSERSLIST_STATS?: string
+      BROWSERSLIST_ROOT_PATH?: string
+    }
+  }
+}
+
+export = browserslist
Index: node_modules/browserslist/index.js
===================================================================
--- node_modules/browserslist/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1335 @@
+var bbm = require('baseline-browser-mapping')
+var jsReleases = require('node-releases/data/processed/envs.json')
+var agents = require('caniuse-lite/dist/unpacker/agents').agents
+var e2c = require('electron-to-chromium/versions')
+var jsEOL = require('node-releases/data/release-schedule/release-schedule.json')
+var path = require('path')
+
+var BrowserslistError = require('./error')
+var env = require('./node')
+var parseWithoutCache = require('./parse') // Will load browser.js in webpack
+
+var YEAR = 365.259641 * 24 * 60 * 60 * 1000
+var ANDROID_EVERGREEN_FIRST = '37'
+var OP_MOB_BLINK_FIRST = 14
+var FIREFOX_ESR_VERSION = '140'
+
+// Helpers
+
+function isVersionsMatch(versionA, versionB) {
+  return (versionA + '.').indexOf(versionB + '.') === 0
+}
+
+function isEolReleased(name) {
+  var version = name.slice(1)
+  return browserslist.nodeVersions.some(function (i) {
+    return isVersionsMatch(i, version)
+  })
+}
+
+function normalize(versions) {
+  return versions.filter(function (version) {
+    return typeof version === 'string'
+  })
+}
+
+function normalizeElectron(version) {
+  var versionToUse = version
+  if (version.split('.').length === 3) {
+    versionToUse = version.split('.').slice(0, -1).join('.')
+  }
+  return versionToUse
+}
+
+function nameMapper(name) {
+  return function mapName(version) {
+    return name + ' ' + version
+  }
+}
+
+function getMajor(version) {
+  return parseInt(version.split('.')[0])
+}
+
+function getMajorVersions(released, number) {
+  if (released.length === 0) return []
+  var majorVersions = uniq(released.map(getMajor))
+  var minimum = majorVersions[majorVersions.length - number]
+  if (!minimum) {
+    return released
+  }
+  var selected = []
+  for (var i = released.length - 1; i >= 0; i--) {
+    if (minimum > getMajor(released[i])) break
+    selected.unshift(released[i])
+  }
+  return selected
+}
+
+function uniq(array) {
+  var filtered = []
+  for (var i = 0; i < array.length; i++) {
+    if (filtered.indexOf(array[i]) === -1) filtered.push(array[i])
+  }
+  return filtered
+}
+
+function fillUsage(result, name, data) {
+  for (var i in data) {
+    result[name + ' ' + i] = data[i]
+  }
+}
+
+function generateFilter(sign, version) {
+  version = parseFloat(version)
+  if (sign === '>') {
+    return function (v) {
+      return parseLatestFloat(v) > version
+    }
+  } else if (sign === '>=') {
+    return function (v) {
+      return parseLatestFloat(v) >= version
+    }
+  } else if (sign === '<') {
+    return function (v) {
+      return parseFloat(v) < version
+    }
+  } else {
+    return function (v) {
+      return parseFloat(v) <= version
+    }
+  }
+
+  function parseLatestFloat(v) {
+    return parseFloat(v.split('-')[1] || v)
+  }
+}
+
+function generateSemverFilter(sign, version) {
+  version = version.split('.').map(parseSimpleInt)
+  version[1] = version[1] || 0
+  version[2] = version[2] || 0
+  if (sign === '>') {
+    return function (v) {
+      v = v.split('.').map(parseSimpleInt)
+      return compareSemver(v, version) > 0
+    }
+  } else if (sign === '>=') {
+    return function (v) {
+      v = v.split('.').map(parseSimpleInt)
+      return compareSemver(v, version) >= 0
+    }
+  } else if (sign === '<') {
+    return function (v) {
+      v = v.split('.').map(parseSimpleInt)
+      return compareSemver(version, v) > 0
+    }
+  } else {
+    return function (v) {
+      v = v.split('.').map(parseSimpleInt)
+      return compareSemver(version, v) >= 0
+    }
+  }
+}
+
+function parseSimpleInt(x) {
+  return parseInt(x)
+}
+
+function compare(a, b) {
+  if (a < b) return -1
+  if (a > b) return +1
+  return 0
+}
+
+function compareSemver(a, b) {
+  return (
+    compare(parseInt(a[0]), parseInt(b[0])) ||
+    compare(parseInt(a[1] || '0'), parseInt(b[1] || '0')) ||
+    compare(parseInt(a[2] || '0'), parseInt(b[2] || '0'))
+  )
+}
+
+// this follows the npm-like semver behavior
+function semverFilterLoose(operator, range) {
+  range = range.split('.').map(parseSimpleInt)
+  if (typeof range[1] === 'undefined') {
+    range[1] = 'x'
+  }
+  // ignore any patch version because we only return minor versions
+  // range[2] = 'x'
+  switch (operator) {
+    case '<=':
+      return function (version) {
+        version = version.split('.').map(parseSimpleInt)
+        return compareSemverLoose(version, range) <= 0
+      }
+    case '>=':
+    default:
+      return function (version) {
+        version = version.split('.').map(parseSimpleInt)
+        return compareSemverLoose(version, range) >= 0
+      }
+  }
+}
+
+// this follows the npm-like semver behavior
+function compareSemverLoose(version, range) {
+  if (version[0] !== range[0]) {
+    return version[0] < range[0] ? -1 : +1
+  }
+  if (range[1] === 'x') {
+    return 0
+  }
+  if (version[1] !== range[1]) {
+    return version[1] < range[1] ? -1 : +1
+  }
+  return 0
+}
+
+function resolveVersion(data, version) {
+  if (data.versions.indexOf(version) !== -1) {
+    return version
+  } else if (browserslist.versionAliases[data.name][version]) {
+    return browserslist.versionAliases[data.name][version]
+  } else {
+    return false
+  }
+}
+
+function normalizeVersion(data, version) {
+  var resolved = resolveVersion(data, version)
+  if (resolved) {
+    return resolved
+  } else if (data.versions.length === 1) {
+    return data.versions[0]
+  } else {
+    return false
+  }
+}
+
+function filterByYear(since, context) {
+  since = since / 1000
+  return Object.keys(agents).reduce(function (selected, name) {
+    var data = byName(name, context)
+    if (!data) return selected
+    var versions = Object.keys(data.releaseDate).filter(function (v) {
+      var date = data.releaseDate[v]
+      return date !== null && date >= since
+    })
+    return selected.concat(versions.map(nameMapper(data.name)))
+  }, [])
+}
+
+function cloneData(data) {
+  return {
+    name: data.name,
+    versions: data.versions,
+    released: data.released,
+    releaseDate: data.releaseDate
+  }
+}
+
+function byName(name, context) {
+  name = name.toLowerCase()
+  name = browserslist.aliases[name] || name
+  if (context.mobileToDesktop && browserslist.desktopNames[name]) {
+    var desktop = browserslist.data[browserslist.desktopNames[name]]
+    if (name === 'android') {
+      return normalizeAndroidData(cloneData(browserslist.data[name]), desktop)
+    } else {
+      var cloned = cloneData(desktop)
+      cloned.name = name
+      return cloned
+    }
+  }
+  return browserslist.data[name]
+}
+
+function normalizeAndroidVersions(androidVersions, chromeVersions) {
+  var iFirstEvergreen = chromeVersions.indexOf(ANDROID_EVERGREEN_FIRST)
+  return androidVersions
+    .filter(function (version) {
+      return /^(?:[2-4]\.|[34]$)/.test(version)
+    })
+    .concat(chromeVersions.slice(iFirstEvergreen))
+}
+
+function copyObject(obj) {
+  var copy = {}
+  for (var key in obj) {
+    copy[key] = obj[key]
+  }
+  return copy
+}
+
+function normalizeAndroidData(android, chrome) {
+  android.released = normalizeAndroidVersions(android.released, chrome.released)
+  android.versions = normalizeAndroidVersions(android.versions, chrome.versions)
+  android.releaseDate = copyObject(android.releaseDate)
+  android.released.forEach(function (v) {
+    if (android.releaseDate[v] === undefined) {
+      android.releaseDate[v] = chrome.releaseDate[v]
+    }
+  })
+  return android
+}
+
+function checkName(name, context) {
+  var data = byName(name, context)
+  if (!data) throw new BrowserslistError('Unknown browser ' + name)
+  return data
+}
+
+function unknownQuery(query) {
+  return new BrowserslistError(
+    'Unknown browser query `' +
+      query +
+      '`. ' +
+      'Maybe you are using old Browserslist or made typo in query.'
+  )
+}
+
+// Adjusts last X versions queries for some mobile browsers,
+// where caniuse data jumps from a legacy version to the latest
+function filterJumps(list, name, nVersions, context) {
+  var jump = 1
+  switch (name) {
+    case 'android':
+      if (context.mobileToDesktop) return list
+      var released = browserslist.data.chrome.released
+      jump = released.length - released.indexOf(ANDROID_EVERGREEN_FIRST)
+      break
+    case 'op_mob':
+      var latest = browserslist.data.op_mob.released.slice(-1)[0]
+      jump = getMajor(latest) - OP_MOB_BLINK_FIRST + 1
+      break
+    default:
+      return list
+  }
+  if (nVersions <= jump) {
+    return list.slice(-1)
+  }
+  return list.slice(jump - 1 - nVersions)
+}
+
+function isSupported(flags, withPartial) {
+  return (
+    typeof flags === 'string' &&
+    (flags.indexOf('y') >= 0 || (withPartial && flags.indexOf('a') >= 0))
+  )
+}
+
+function resolve(queries, context) {
+  return parseQueries(queries).reduce(function (result, node, index) {
+    if (node.not && index === 0) {
+      throw new BrowserslistError(
+        'Write any browsers query (for instance, `defaults`) ' +
+          'before `' +
+          node.query +
+          '`'
+      )
+    }
+    var type = QUERIES[node.type]
+    var array = type.select.call(browserslist, context, node).map(function (j) {
+      var parts = j.split(' ')
+      if (parts[1] === '0') {
+        return parts[0] + ' ' + byName(parts[0], context).versions[0]
+      } else {
+        return j
+      }
+    })
+
+    if (node.compose === 'and') {
+      if (node.not) {
+        return result.filter(function (j) {
+          return array.indexOf(j) === -1
+        })
+      } else {
+        return result.filter(function (j) {
+          return array.indexOf(j) !== -1
+        })
+      }
+    } else {
+      if (node.not) {
+        var filter = {}
+        array.forEach(function (j) {
+          filter[j] = true
+        })
+        return result.filter(function (j) {
+          return !filter[j]
+        })
+      }
+      return result.concat(array)
+    }
+  }, [])
+}
+
+function prepareOpts(opts) {
+  if (typeof opts === 'undefined') opts = {}
+
+  if (typeof opts.path === 'undefined') {
+    opts.path = path.resolve ? path.resolve('.') : '.'
+  }
+
+  return opts
+}
+
+function prepareQueries(queries, opts) {
+  if (typeof queries === 'undefined' || queries === null) {
+    var config = browserslist.loadConfig(opts)
+    if (config) {
+      queries = config
+    } else {
+      queries = browserslist.defaults
+    }
+  }
+
+  return queries
+}
+
+function checkQueries(queries) {
+  if (!(typeof queries === 'string' || Array.isArray(queries))) {
+    throw new BrowserslistError(
+      'Browser queries must be an array or string. Got ' + typeof queries + '.'
+    )
+  }
+}
+
+var cache = {}
+var parseCache = {}
+
+function browserslist(queries, opts) {
+  opts = prepareOpts(opts)
+  queries = prepareQueries(queries, opts)
+  checkQueries(queries)
+
+  var needsPath = parseQueries(queries).some(function (node) {
+    return QUERIES[node.type].needsPath
+  })
+  var context = {
+    ignoreUnknownVersions: opts.ignoreUnknownVersions,
+    dangerousExtend: opts.dangerousExtend,
+    throwOnMissing: opts.throwOnMissing,
+    mobileToDesktop: opts.mobileToDesktop,
+    env: opts.env
+  }
+  // Removing to avoid using context.path without marking query as needsPath
+  if (needsPath) {
+    context.path = opts.path
+  }
+
+  env.oldDataWarning(browserslist.data)
+  var stats = env.getStat(opts, browserslist.data)
+  if (stats) {
+    context.customUsage = {}
+    for (var browser in stats) {
+      fillUsage(context.customUsage, browser, stats[browser])
+    }
+  }
+
+  var cacheKey = JSON.stringify([queries, context])
+  if (cache[cacheKey]) return cache[cacheKey]
+
+  var result = uniq(resolve(queries, context)).sort(function (name1, name2) {
+    name1 = name1.split(' ')
+    name2 = name2.split(' ')
+    if (name1[0] === name2[0]) {
+      // assumptions on caniuse data
+      // 1) version ranges never overlaps
+      // 2) if version is not a range, it never contains `-`
+      var version1 = name1[1].split('-')[0]
+      var version2 = name2[1].split('-')[0]
+      return compareSemver(version2.split('.'), version1.split('.'))
+    } else {
+      return compare(name1[0], name2[0])
+    }
+  })
+  if (!env.env.BROWSERSLIST_DISABLE_CACHE) {
+    cache[cacheKey] = result
+  }
+  return result
+}
+
+function parseQueries(queries) {
+  var cacheKey = JSON.stringify(queries)
+  if (cacheKey in parseCache) return parseCache[cacheKey]
+  var result = parseWithoutCache(QUERIES, queries)
+  if (!env.env.BROWSERSLIST_DISABLE_CACHE) {
+    parseCache[cacheKey] = result
+  }
+  return result
+}
+
+function loadCustomUsage(context, config) {
+  var stats = env.loadStat(context, config, browserslist.data)
+  if (stats) {
+    context.customUsage = {}
+    for (var browser in stats) {
+      fillUsage(context.customUsage, browser, stats[browser])
+    }
+  }
+  if (!context.customUsage) {
+    throw new BrowserslistError('Custom usage statistics was not provided')
+  }
+  return context.customUsage
+}
+
+browserslist.parse = function (queries, opts) {
+  opts = prepareOpts(opts)
+  queries = prepareQueries(queries, opts)
+  checkQueries(queries)
+  return parseQueries(queries)
+}
+
+// Will be filled by Can I Use data below
+browserslist.cache = {}
+browserslist.data = {}
+browserslist.usage = {
+  global: {},
+  custom: null
+}
+
+// Default browsers query
+browserslist.defaults = ['> 0.5%', 'last 2 versions', 'Firefox ESR', 'not dead']
+
+// Browser names aliases
+browserslist.aliases = {
+  fx: 'firefox',
+  ff: 'firefox',
+  ios: 'ios_saf',
+  explorer: 'ie',
+  blackberry: 'bb',
+  explorermobile: 'ie_mob',
+  operamini: 'op_mini',
+  operamobile: 'op_mob',
+  chromeandroid: 'and_chr',
+  firefoxandroid: 'and_ff',
+  ucandroid: 'and_uc',
+  qqandroid: 'and_qq'
+}
+
+// Can I Use only provides a few versions for some browsers (e.g. and_chr).
+// Fallback to a similar browser for unknown versions
+// Note op_mob is not included as its chromium versions are not in sync with Opera desktop
+browserslist.desktopNames = {
+  and_chr: 'chrome',
+  and_ff: 'firefox',
+  ie_mob: 'ie',
+  android: 'chrome' // has extra processing logic
+}
+
+// Aliases to work with joined versions like `ios_saf 7.0-7.1`
+browserslist.versionAliases = {}
+
+browserslist.clearCaches = env.clearCaches
+browserslist.parseConfig = env.parseConfig
+browserslist.readConfig = env.readConfig
+browserslist.findConfigFile = env.findConfigFile
+browserslist.findConfig = env.findConfig
+browserslist.loadConfig = env.loadConfig
+
+browserslist.coverage = function (browsers, stats) {
+  var data
+  if (typeof stats === 'undefined') {
+    data = browserslist.usage.global
+  } else if (stats === 'my stats') {
+    var opts = {}
+    opts.path = path.resolve ? path.resolve('.') : '.'
+    var customStats = env.getStat(opts)
+    if (!customStats) {
+      throw new BrowserslistError('Custom usage statistics was not provided')
+    }
+    data = {}
+    for (var browser in customStats) {
+      fillUsage(data, browser, customStats[browser])
+    }
+  } else if (typeof stats === 'string') {
+    if (stats.length > 2) {
+      stats = stats.toLowerCase()
+    } else {
+      stats = stats.toUpperCase()
+    }
+    env.loadCountry(browserslist.usage, stats, browserslist.data)
+    data = browserslist.usage[stats]
+  } else {
+    if ('dataByBrowser' in stats) {
+      stats = stats.dataByBrowser
+    }
+    data = {}
+    for (var name in stats) {
+      for (var version in stats[name]) {
+        data[name + ' ' + version] = stats[name][version]
+      }
+    }
+  }
+
+  return browsers.reduce(function (all, i) {
+    var usage = data[i]
+    if (usage === undefined) {
+      usage = data[i.replace(/ \S+$/, ' 0')]
+    }
+    return all + (usage || 0)
+  }, 0)
+}
+
+function nodeQuery(context, node) {
+  var matched = browserslist.nodeVersions.filter(function (i) {
+    return isVersionsMatch(i, node.version)
+  })
+  if (matched.length === 0) {
+    if (context.ignoreUnknownVersions) {
+      return []
+    } else {
+      throw new BrowserslistError(
+        'Unknown version ' + node.version + ' of Node.js'
+      )
+    }
+  }
+  return ['node ' + matched[matched.length - 1]]
+}
+
+function sinceQuery(context, node) {
+  var year = parseInt(node.year)
+  var month = parseInt(node.month || '01') - 1
+  var day = parseInt(node.day || '01')
+  return filterByYear(Date.UTC(year, month, day, 0, 0, 0), context)
+}
+
+function bbmTransform(bbmVersions) {
+  var browsers = {
+    chrome: 'chrome',
+    chrome_android: 'and_chr',
+    edge: 'edge',
+    firefox: 'firefox',
+    firefox_android: 'and_ff',
+    safari: 'safari',
+    safari_ios: 'ios_saf',
+    webview_android: 'android',
+    samsunginternet_android: 'samsung',
+    opera_android: 'op_mob',
+    opera: 'opera',
+    qq_android: 'and_qq',
+    uc_android: 'and_uc',
+    kai_os: 'kaios'
+  }
+
+  return bbmVersions
+    .filter(function (version) {
+      return Object.keys(browsers).indexOf(version.browser) !== -1
+    })
+    .map(function (version) {
+      return browsers[version.browser] + ' >= ' + version.version
+    })
+}
+
+function coverQuery(context, node) {
+  var coverage = parseFloat(node.coverage)
+  var usage = browserslist.usage.global
+  if (node.place) {
+    if (node.place.match(/^my\s+stats$/i)) {
+      if (!context.customUsage) {
+        throw new BrowserslistError('Custom usage statistics was not provided')
+      }
+      usage = context.customUsage
+    } else {
+      var place
+      if (node.place.length === 2) {
+        place = node.place.toUpperCase()
+      } else {
+        place = node.place.toLowerCase()
+      }
+      env.loadCountry(browserslist.usage, place, browserslist.data)
+      usage = browserslist.usage[place]
+    }
+  } else if (node.config) {
+    usage = loadCustomUsage(context, node.config)
+  }
+  var versions = Object.keys(usage).sort(function (a, b) {
+    return usage[b] - usage[a]
+  })
+  var covered = 0
+  var result = []
+  var version
+  for (var i = 0; i < versions.length; i++) {
+    version = versions[i]
+    if (usage[version] === 0) break
+    covered += usage[version]
+    result.push(version)
+    if (covered >= coverage) break
+  }
+  return result
+}
+
+var QUERIES = {
+  last_major_versions: {
+    matches: ['versions'],
+    regexp: /^last\s+(\d+)\s+major\s+versions?$/i,
+    select: function (context, node) {
+      return Object.keys(agents).reduce(function (selected, name) {
+        var data = byName(name, context)
+        if (!data) return selected
+        var list = getMajorVersions(data.released, node.versions)
+        list = list.map(nameMapper(data.name))
+        list = filterJumps(list, data.name, node.versions, context)
+        return selected.concat(list)
+      }, [])
+    }
+  },
+  last_versions: {
+    matches: ['versions'],
+    regexp: /^last\s+(\d+)\s+versions?$/i,
+    select: function (context, node) {
+      return Object.keys(agents).reduce(function (selected, name) {
+        var data = byName(name, context)
+        if (!data) return selected
+        var list = data.released.slice(-node.versions)
+        list = list.map(nameMapper(data.name))
+        list = filterJumps(list, data.name, node.versions, context)
+        return selected.concat(list)
+      }, [])
+    }
+  },
+  last_electron_major_versions: {
+    matches: ['versions'],
+    regexp: /^last\s+(\d+)\s+electron\s+major\s+versions?$/i,
+    select: function (context, node) {
+      var validVersions = getMajorVersions(Object.keys(e2c), node.versions)
+      return validVersions.map(function (i) {
+        return 'chrome ' + e2c[i]
+      })
+    }
+  },
+  last_node_major_versions: {
+    matches: ['versions'],
+    regexp: /^last\s+(\d+)\s+node\s+major\s+versions?$/i,
+    select: function (context, node) {
+      return getMajorVersions(browserslist.nodeVersions, node.versions).map(
+        function (version) {
+          return 'node ' + version
+        }
+      )
+    }
+  },
+  last_browser_major_versions: {
+    matches: ['versions', 'browser'],
+    regexp: /^last\s+(\d+)\s+(\w+)\s+major\s+versions?$/i,
+    select: function (context, node) {
+      var data = checkName(node.browser, context)
+      var validVersions = getMajorVersions(data.released, node.versions)
+      var list = validVersions.map(nameMapper(data.name))
+      list = filterJumps(list, data.name, node.versions, context)
+      return list
+    }
+  },
+  last_electron_versions: {
+    matches: ['versions'],
+    regexp: /^last\s+(\d+)\s+electron\s+versions?$/i,
+    select: function (context, node) {
+      return Object.keys(e2c)
+        .slice(-node.versions)
+        .map(function (i) {
+          return 'chrome ' + e2c[i]
+        })
+    }
+  },
+  last_node_versions: {
+    matches: ['versions'],
+    regexp: /^last\s+(\d+)\s+node\s+versions?$/i,
+    select: function (context, node) {
+      return browserslist.nodeVersions
+        .slice(-node.versions)
+        .map(function (version) {
+          return 'node ' + version
+        })
+    }
+  },
+  last_browser_versions: {
+    matches: ['versions', 'browser'],
+    regexp: /^last\s+(\d+)\s+(\w+)\s+versions?$/i,
+    select: function (context, node) {
+      var data = checkName(node.browser, context)
+      var list = data.released.slice(-node.versions).map(nameMapper(data.name))
+      list = filterJumps(list, data.name, node.versions, context)
+      return list
+    }
+  },
+  unreleased_versions: {
+    matches: [],
+    regexp: /^unreleased\s+versions$/i,
+    select: function (context) {
+      return Object.keys(agents).reduce(function (selected, name) {
+        var data = byName(name, context)
+        if (!data) return selected
+        var list = data.versions.filter(function (v) {
+          return data.released.indexOf(v) === -1
+        })
+        list = list.map(nameMapper(data.name))
+        return selected.concat(list)
+      }, [])
+    }
+  },
+  unreleased_electron_versions: {
+    matches: [],
+    regexp: /^unreleased\s+electron\s+versions?$/i,
+    select: function () {
+      return []
+    }
+  },
+  unreleased_browser_versions: {
+    matches: ['browser'],
+    regexp: /^unreleased\s+(\w+)\s+versions?$/i,
+    select: function (context, node) {
+      var data = checkName(node.browser, context)
+      return data.versions
+        .filter(function (v) {
+          return data.released.indexOf(v) === -1
+        })
+        .map(nameMapper(data.name))
+    }
+  },
+  last_years: {
+    matches: ['years'],
+    regexp: /^last\s+((\d+\.)?\d+)\s+years?$/i,
+    select: function (context, node) {
+      return filterByYear(Date.now() - YEAR * node.years, context)
+    }
+  },
+  since_y: {
+    matches: ['year'],
+    regexp: /^since (\d+)$/i,
+    select: sinceQuery
+  },
+  since_y_m: {
+    matches: ['year', 'month'],
+    regexp: /^since (\d+)-(\d+)$/i,
+    select: sinceQuery
+  },
+  since_y_m_d: {
+    matches: ['year', 'month', 'day'],
+    regexp: /^since (\d+)-(\d+)-(\d+)$/i,
+    select: sinceQuery
+  },
+  baseline: {
+    matches: ['year', 'availability', 'date', 'downstream', 'kaios'],
+    // Matches:
+    //   baseline 2024
+    //   baseline newly available
+    //   baseline widely available
+    //   baseline widely available on 2024-06-01
+    //   ...with downstream
+    //   ...including kaios
+    regexp:
+      /^baseline\s+(?:(\d+)|(newly|widely)\s+available(?:\s+on\s+(\d{4}-\d{2}-\d{2}))?)?(\s+with\s+downstream)?(\s+including\s+kaios)?$/i,
+    select: function (context, node) {
+      var baselineVersions
+      var includeDownstream = !!node.downstream
+      var includeKaiOS = !!node.kaios
+      if (node.availability === 'newly' && node.date) {
+        throw new BrowserslistError(
+          'Using newly available with a date is not supported, please use "widely available on YYYY-MM-DD" and add 30 months to the date you specified.'
+        )
+      }
+      if (node.year) {
+        baselineVersions = bbm.getCompatibleVersions({
+          targetYear: node.year,
+          includeDownstreamBrowsers: includeDownstream,
+          includeKaiOS: includeKaiOS,
+          suppressWarnings: true
+        })
+      } else if (node.date) {
+        baselineVersions = bbm.getCompatibleVersions({
+          widelyAvailableOnDate: node.date,
+          includeDownstreamBrowsers: includeDownstream,
+          includeKaiOS: includeKaiOS,
+          suppressWarnings: true
+        })
+      } else if (node.availability === 'newly') {
+        var future30months = new Date().setMonth(new Date().getMonth() + 30)
+        baselineVersions = bbm.getCompatibleVersions({
+          widelyAvailableOnDate: future30months,
+          includeDownstreamBrowsers: includeDownstream,
+          includeKaiOS: includeKaiOS,
+          suppressWarnings: true
+        })
+      } else {
+        baselineVersions = bbm.getCompatibleVersions({
+          includeDownstreamBrowsers: includeDownstream,
+          includeKaiOS: includeKaiOS,
+          suppressWarnings: true
+        })
+      }
+      return resolve(bbmTransform(baselineVersions), context)
+    }
+  },
+  popularity: {
+    matches: ['sign', 'popularity'],
+    regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%$/,
+    select: function (context, node) {
+      var popularity = parseFloat(node.popularity)
+      var usage = browserslist.usage.global
+      return Object.keys(usage).reduce(function (result, version) {
+        if (node.sign === '>') {
+          if (usage[version] > popularity) {
+            result.push(version)
+          }
+        } else if (node.sign === '<') {
+          if (usage[version] < popularity) {
+            result.push(version)
+          }
+        } else if (node.sign === '<=') {
+          if (usage[version] <= popularity) {
+            result.push(version)
+          }
+        } else if (usage[version] >= popularity) {
+          result.push(version)
+        }
+        return result
+      }, [])
+    }
+  },
+  popularity_in_my_stats: {
+    matches: ['sign', 'popularity'],
+    regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+my\s+stats$/,
+    select: function (context, node) {
+      var popularity = parseFloat(node.popularity)
+      if (!context.customUsage) {
+        throw new BrowserslistError('Custom usage statistics was not provided')
+      }
+      var usage = context.customUsage
+      return Object.keys(usage).reduce(function (result, version) {
+        var percentage = usage[version]
+        if (percentage == null) {
+          return result
+        }
+
+        if (node.sign === '>') {
+          if (percentage > popularity) {
+            result.push(version)
+          }
+        } else if (node.sign === '<') {
+          if (percentage < popularity) {
+            result.push(version)
+          }
+        } else if (node.sign === '<=') {
+          if (percentage <= popularity) {
+            result.push(version)
+          }
+        } else if (percentage >= popularity) {
+          result.push(version)
+        }
+        return result
+      }, [])
+    }
+  },
+  popularity_in_config_stats: {
+    matches: ['sign', 'popularity', 'config'],
+    regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+(\S+)\s+stats$/,
+    select: function (context, node) {
+      var popularity = parseFloat(node.popularity)
+      var usage = loadCustomUsage(context, node.config)
+      return Object.keys(usage).reduce(function (result, version) {
+        var percentage = usage[version]
+        if (percentage == null) {
+          return result
+        }
+
+        if (node.sign === '>') {
+          if (percentage > popularity) {
+            result.push(version)
+          }
+        } else if (node.sign === '<') {
+          if (percentage < popularity) {
+            result.push(version)
+          }
+        } else if (node.sign === '<=') {
+          if (percentage <= popularity) {
+            result.push(version)
+          }
+        } else if (percentage >= popularity) {
+          result.push(version)
+        }
+        return result
+      }, [])
+    }
+  },
+  popularity_in_place: {
+    matches: ['sign', 'popularity', 'place'],
+    regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+((alt-)?\w\w)$/,
+    select: function (context, node) {
+      var popularity = parseFloat(node.popularity)
+      var place = node.place
+      if (place.length === 2) {
+        place = place.toUpperCase()
+      } else {
+        place = place.toLowerCase()
+      }
+      env.loadCountry(browserslist.usage, place, browserslist.data)
+      var usage = browserslist.usage[place]
+      return Object.keys(usage).reduce(function (result, version) {
+        var percentage = usage[version]
+        if (percentage == null) {
+          return result
+        }
+
+        if (node.sign === '>') {
+          if (percentage > popularity) {
+            result.push(version)
+          }
+        } else if (node.sign === '<') {
+          if (percentage < popularity) {
+            result.push(version)
+          }
+        } else if (node.sign === '<=') {
+          if (percentage <= popularity) {
+            result.push(version)
+          }
+        } else if (percentage >= popularity) {
+          result.push(version)
+        }
+        return result
+      }, [])
+    }
+  },
+  cover: {
+    matches: ['coverage'],
+    regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%$/i,
+    select: coverQuery
+  },
+  cover_in: {
+    matches: ['coverage', 'place'],
+    regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%\s+in\s+(my\s+stats|(alt-)?\w\w)$/i,
+    select: coverQuery
+  },
+  cover_config: {
+    matches: ['coverage', 'config'],
+    regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%\s+in\s+(\S+)\s+stats$/i,
+    select: coverQuery
+  },
+  supports: {
+    matches: ['supportType', 'feature'],
+    regexp: /^(?:(fully|partially)\s+)?supports\s+([\w-]+)$/,
+    select: function (context, node) {
+      env.loadFeature(browserslist.cache, node.feature)
+      var withPartial = node.supportType !== 'fully'
+      var features = browserslist.cache[node.feature]
+      var result = []
+      for (var name in features) {
+        var data = byName(name, context)
+        // Only check desktop when latest released mobile has support
+        var iMax = data.released.length - 1
+        while (iMax >= 0) {
+          if (data.released[iMax] in features[name]) break
+          iMax--
+        }
+        var checkDesktop =
+          context.mobileToDesktop &&
+          name in browserslist.desktopNames &&
+          isSupported(features[name][data.released[iMax]], withPartial)
+        data.versions.forEach(function (version) {
+          var flags = features[name][version]
+          if (flags === undefined && checkDesktop) {
+            flags = features[browserslist.desktopNames[name]][version]
+          }
+          if (isSupported(flags, withPartial)) {
+            result.push(name + ' ' + version)
+          }
+        })
+      }
+      return result
+    }
+  },
+  electron_range: {
+    matches: ['from', 'to'],
+    regexp: /^electron\s+([\d.]+)\s*-\s*([\d.]+)$/i,
+    select: function (context, node) {
+      var fromToUse = normalizeElectron(node.from)
+      var toToUse = normalizeElectron(node.to)
+      var from = parseFloat(node.from)
+      var to = parseFloat(node.to)
+      if (!e2c[fromToUse]) {
+        throw new BrowserslistError('Unknown version ' + from + ' of electron')
+      }
+      if (!e2c[toToUse]) {
+        throw new BrowserslistError('Unknown version ' + to + ' of electron')
+      }
+      return Object.keys(e2c)
+        .filter(function (i) {
+          var parsed = parseFloat(i)
+          return parsed >= from && parsed <= to
+        })
+        .map(function (i) {
+          return 'chrome ' + e2c[i]
+        })
+    }
+  },
+  node_range: {
+    matches: ['from', 'to'],
+    regexp: /^node\s+([\d.]+)\s*-\s*([\d.]+)$/i,
+    select: function (context, node) {
+      return browserslist.nodeVersions
+        .filter(semverFilterLoose('>=', node.from))
+        .filter(semverFilterLoose('<=', node.to))
+        .map(function (v) {
+          return 'node ' + v
+        })
+    }
+  },
+  browser_range: {
+    matches: ['browser', 'from', 'to'],
+    regexp: /^(\w+)\s+([\d.]+)\s*-\s*([\d.]+)$/i,
+    select: function (context, node) {
+      var data = checkName(node.browser, context)
+      var from = parseFloat(normalizeVersion(data, node.from) || node.from)
+      var to = parseFloat(normalizeVersion(data, node.to) || node.to)
+      function filter(v) {
+        var parsed = parseFloat(v)
+        return parsed >= from && parsed <= to
+      }
+      return data.released.filter(filter).map(nameMapper(data.name))
+    }
+  },
+  electron_ray: {
+    matches: ['sign', 'version'],
+    regexp: /^electron\s*(>=?|<=?)\s*([\d.]+)$/i,
+    select: function (context, node) {
+      var versionToUse = normalizeElectron(node.version)
+      return Object.keys(e2c)
+        .filter(generateFilter(node.sign, versionToUse))
+        .map(function (i) {
+          return 'chrome ' + e2c[i]
+        })
+    }
+  },
+  node_ray: {
+    matches: ['sign', 'version'],
+    regexp: /^node\s*(>=?|<=?)\s*([\d.]+)$/i,
+    select: function (context, node) {
+      return browserslist.nodeVersions
+        .filter(generateSemverFilter(node.sign, node.version))
+        .map(function (v) {
+          return 'node ' + v
+        })
+    }
+  },
+  browser_ray: {
+    matches: ['browser', 'sign', 'version'],
+    regexp: /^(\w+)\s*(>=?|<=?)\s*([\d.]+|esr)$/i,
+    select: function (context, node) {
+      var version = node.version
+      var data = checkName(node.browser, context)
+      var alias = browserslist.versionAliases[data.name][version.toLowerCase()]
+      if (alias) version = alias
+      if (!/[\d.]+/.test(version)) {
+        throw new BrowserslistError(
+          'Unknown version ' + version + ' of ' + node.browser
+        )
+      }
+      return data.released
+        .filter(generateFilter(node.sign, version))
+        .map(function (v) {
+          return data.name + ' ' + v
+        })
+    }
+  },
+  firefox_esr: {
+    matches: [],
+    regexp: /^(firefox|ff|fx)\s+esr$/i,
+    select: function () {
+      return ['firefox ' + FIREFOX_ESR_VERSION]
+    }
+  },
+  opera_mini_all: {
+    matches: [],
+    regexp: /(operamini|op_mini)\s+all/i,
+    select: function () {
+      return ['op_mini all']
+    }
+  },
+  electron_version: {
+    matches: ['version'],
+    regexp: /^electron\s+([\d.]+)$/i,
+    select: function (context, node) {
+      var versionToUse = normalizeElectron(node.version)
+      var chrome = e2c[versionToUse]
+      if (!chrome) {
+        throw new BrowserslistError(
+          'Unknown version ' + node.version + ' of electron'
+        )
+      }
+      return ['chrome ' + chrome]
+    }
+  },
+  node_major_version: {
+    matches: ['version'],
+    regexp: /^node\s+(\d+)$/i,
+    select: nodeQuery
+  },
+  node_minor_version: {
+    matches: ['version'],
+    regexp: /^node\s+(\d+\.\d+)$/i,
+    select: nodeQuery
+  },
+  node_patch_version: {
+    matches: ['version'],
+    regexp: /^node\s+(\d+\.\d+\.\d+)$/i,
+    select: nodeQuery
+  },
+  current_node: {
+    matches: [],
+    regexp: /^current\s+node$/i,
+    select: function (context) {
+      return [env.currentNode(resolve, context)]
+    }
+  },
+  maintained_node: {
+    matches: [],
+    regexp: /^maintained\s+node\s+versions$/i,
+    select: function (context) {
+      var now = Date.now()
+      var queries = Object.keys(jsEOL)
+        .filter(function (key) {
+          return (
+            now < Date.parse(jsEOL[key].end) &&
+            now > Date.parse(jsEOL[key].start) &&
+            isEolReleased(key)
+          )
+        })
+        .map(function (key) {
+          return 'node ' + key.slice(1)
+        })
+      return resolve(queries, context)
+    }
+  },
+  phantomjs_1_9: {
+    matches: [],
+    regexp: /^phantomjs\s+1.9$/i,
+    select: function () {
+      return ['safari 5']
+    }
+  },
+  phantomjs_2_1: {
+    matches: [],
+    regexp: /^phantomjs\s+2.1$/i,
+    select: function () {
+      return ['safari 6']
+    }
+  },
+  browser_version: {
+    matches: ['browser', 'version'],
+    regexp: /^(\w+)\s+(tp|[\d.]+)$/i,
+    select: function (context, node) {
+      var version = node.version
+      if (/^tp$/i.test(version)) version = 'TP'
+      var data = checkName(node.browser, context)
+      var alias = normalizeVersion(data, version)
+      if (alias) {
+        version = alias
+      } else {
+        if (version.indexOf('.') === -1) {
+          alias = version + '.0'
+        } else {
+          alias = version.replace(/\.0$/, '')
+        }
+        alias = normalizeVersion(data, alias)
+        if (alias) {
+          version = alias
+        } else if (context.ignoreUnknownVersions) {
+          return []
+        } else {
+          throw new BrowserslistError(
+            'Unknown version ' + version + ' of ' + node.browser
+          )
+        }
+      }
+      return [data.name + ' ' + version]
+    }
+  },
+  browserslist_config: {
+    matches: [],
+    regexp: /^browserslist config$/i,
+    needsPath: true,
+    select: function (context) {
+      return browserslist(undefined, context)
+    }
+  },
+  extends: {
+    matches: ['config'],
+    regexp: /^extends (.+)$/i,
+    needsPath: true,
+    select: function (context, node) {
+      return resolve(env.loadQueries(context, node.config), context)
+    }
+  },
+  defaults: {
+    matches: [],
+    regexp: /^defaults$/i,
+    select: function (context) {
+      return resolve(browserslist.defaults, context)
+    }
+  },
+  dead: {
+    matches: [],
+    regexp: /^dead$/i,
+    select: function (context) {
+      var dead = [
+        'Baidu >= 0',
+        'ie <= 11',
+        'ie_mob <= 11',
+        'bb <= 10',
+        'op_mob <= 12.1',
+        'samsung 4'
+      ]
+      return resolve(dead, context)
+    }
+  },
+  unknown: {
+    matches: [],
+    regexp: /^(\w+)$/i,
+    select: function (context, node) {
+      if (byName(node.query, context)) {
+        throw new BrowserslistError(
+          'Specify versions in Browserslist query for browser ' + node.query
+        )
+      } else {
+        throw unknownQuery(node.query)
+      }
+    }
+  }
+}
+
+// Get and convert Can I Use data
+
+;(function () {
+  for (var name in agents) {
+    var browser = agents[name]
+    browserslist.data[name] = {
+      name: name,
+      versions: normalize(agents[name].versions),
+      released: normalize(agents[name].versions.slice(0, -3)),
+      releaseDate: agents[name].release_date
+    }
+    fillUsage(browserslist.usage.global, name, browser.usage_global)
+
+    browserslist.versionAliases[name] = {}
+    for (var i = 0; i < browser.versions.length; i++) {
+      var full = browser.versions[i]
+      if (!full) continue
+
+      if (full.indexOf('-') !== -1) {
+        var interval = full.split('-')
+        for (var j = 0; j < interval.length; j++) {
+          browserslist.versionAliases[name][interval[j]] = full
+        }
+      }
+    }
+  }
+
+  browserslist.nodeVersions = jsReleases.map(function (release) {
+    return release.version
+  })
+})()
+
+browserslist.versionAliases.firefox.esr = FIREFOX_ESR_VERSION
+
+module.exports = browserslist
Index: node_modules/browserslist/node.js
===================================================================
--- node_modules/browserslist/node.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/node.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,502 @@
+var feature = require('caniuse-lite/dist/unpacker/feature').default
+var region = require('caniuse-lite/dist/unpacker/region').default
+var fs = require('fs')
+var path = require('path')
+
+var BrowserslistError = require('./error')
+
+var IS_SECTION = /^\s*\[(.+)]\s*$/
+var CONFIG_PATTERN = /^browserslist-config-/
+var SCOPED_CONFIG__PATTERN = /@[^/]+(?:\/[^/]+)?\/browserslist-config(?:-|$|\/)/
+var FORMAT =
+  'Browserslist config should be a string or an array ' +
+  'of strings with browser queries'
+var PATHTYPE_UNKNOWN = 'unknown'
+var PATHTYPE_DIR = 'directory'
+var PATHTYPE_FILE = 'file'
+
+var dataTimeChecked = false
+var statCache = {}
+var configPathCache = {}
+var parseConfigCache = {}
+
+function checkExtend(name) {
+  var use = ' Use `dangerousExtend` option to disable.'
+  if (!CONFIG_PATTERN.test(name) && !SCOPED_CONFIG__PATTERN.test(name)) {
+    throw new BrowserslistError(
+      'Browserslist config needs `browserslist-config-` prefix. ' + use
+    )
+  }
+  if (name.replace(/^@[^/]+\//, '').indexOf('.') !== -1) {
+    throw new BrowserslistError(
+      '`.` not allowed in Browserslist config name. ' + use
+    )
+  }
+  if (name.indexOf('node_modules') !== -1) {
+    throw new BrowserslistError(
+      '`node_modules` not allowed in Browserslist config.' + use
+    )
+  }
+}
+
+function getPathType(filepath) {
+  var stats
+  try {
+    stats = fs.existsSync(filepath) && fs.statSync(filepath)
+  } catch (err) {
+    /* c8 ignore start */
+    if (
+      err.code !== 'ENOENT' &&
+      err.code !== 'EACCES' &&
+      err.code !== 'ERR_ACCESS_DENIED'
+    ) {
+      throw err
+    }
+    /* c8 ignore end */
+  }
+
+  if (stats && stats.isDirectory()) return PATHTYPE_DIR
+  if (stats && stats.isFile()) return PATHTYPE_FILE
+
+  return PATHTYPE_UNKNOWN
+}
+
+function isFile(file) {
+  return getPathType(file) === PATHTYPE_FILE
+}
+
+function isDirectory(dir) {
+  return getPathType(dir) === PATHTYPE_DIR
+}
+
+function eachParent(file, callback, cache) {
+  var loc = path.resolve(file)
+  var pathsForCacheResult = []
+  var result
+  do {
+    if (!pathInRoot(loc)) {
+      break
+    }
+    if (cache && loc in cache) {
+      result = cache[loc]
+      break
+    }
+    pathsForCacheResult.push(loc)
+
+    if (!isDirectory(loc)) {
+      continue
+    }
+
+    var locResult = callback(loc)
+    if (typeof locResult !== 'undefined') {
+      result = locResult
+      break
+    }
+  } while (loc !== (loc = path.dirname(loc)))
+
+  if (cache && !process.env.BROWSERSLIST_DISABLE_CACHE) {
+    pathsForCacheResult.forEach(function (cachePath) {
+      cache[cachePath] = result
+    })
+  }
+  return result
+}
+
+function pathInRoot(p) {
+  if (!process.env.BROWSERSLIST_ROOT_PATH) return true
+  var rootPath = path.resolve(process.env.BROWSERSLIST_ROOT_PATH)
+  if (path.relative(rootPath, p).substring(0, 2) === '..') {
+    return false
+  }
+  return true
+}
+
+function check(section) {
+  if (Array.isArray(section)) {
+    for (var i = 0; i < section.length; i++) {
+      if (typeof section[i] !== 'string') {
+        throw new BrowserslistError(FORMAT)
+      }
+    }
+  } else if (typeof section !== 'string') {
+    throw new BrowserslistError(FORMAT)
+  }
+}
+
+function pickEnv(config, opts) {
+  if (typeof config !== 'object') return config
+
+  var name
+  if (typeof opts.env === 'string') {
+    name = opts.env
+  } else if (process.env.BROWSERSLIST_ENV) {
+    name = process.env.BROWSERSLIST_ENV
+  } else if (process.env.NODE_ENV) {
+    name = process.env.NODE_ENV
+  } else {
+    name = 'production'
+  }
+
+  if (opts.throwOnMissing) {
+    if (name && name !== 'defaults' && !config[name]) {
+      throw new BrowserslistError(
+        'Missing config for Browserslist environment `' + name + '`'
+      )
+    }
+  }
+
+  return config[name] || config.defaults
+}
+
+function parsePackage(file) {
+  var text = fs
+    .readFileSync(file)
+    .toString()
+    .replace(/^\uFEFF/m, '')
+  var list
+  if (text.indexOf('"browserslist"') >= 0) {
+    list = JSON.parse(text).browserslist
+  } else if (text.indexOf('"browserlist"') >= 0) {
+    var config = JSON.parse(text)
+    if (config.browserlist && !config.browserslist) {
+      throw new BrowserslistError(
+        '`browserlist` key instead of `browserslist` in ' + file
+      )
+    }
+  }
+  if (Array.isArray(list) || typeof list === 'string') {
+    list = { defaults: list }
+  }
+  for (var i in list) {
+    check(list[i])
+  }
+
+  return list
+}
+
+function parsePackageOrReadConfig(file) {
+  if (file in parseConfigCache) {
+    return parseConfigCache[file]
+  }
+
+  var isPackage = path.basename(file) === 'package.json'
+  var result = isPackage ? parsePackage(file) : module.exports.readConfig(file)
+
+  if (!process.env.BROWSERSLIST_DISABLE_CACHE) {
+    parseConfigCache[file] = result
+  }
+  return result
+}
+
+function latestReleaseTime(agents) {
+  var latest = 0
+  for (var name in agents) {
+    var dates = agents[name].releaseDate || {}
+    for (var key in dates) {
+      if (latest < dates[key]) {
+        latest = dates[key]
+      }
+    }
+  }
+  return latest * 1000
+}
+
+function getMonthsPassed(date) {
+  var now = new Date()
+  var past = new Date(date)
+
+  var years = now.getFullYear() - past.getFullYear()
+  var months = now.getMonth() - past.getMonth()
+
+  return years * 12 + months
+}
+
+function normalizeStats(data, stats) {
+  if (!data) {
+    data = {}
+  }
+  if (stats && 'dataByBrowser' in stats) {
+    stats = stats.dataByBrowser
+  }
+
+  if (typeof stats !== 'object') return undefined
+
+  var normalized = {}
+  for (var i in stats) {
+    var versions = Object.keys(stats[i])
+    if (versions.length === 1 && data[i] && data[i].versions.length === 1) {
+      var normal = data[i].versions[0]
+      normalized[i] = {}
+      normalized[i][normal] = stats[i][versions[0]]
+    } else {
+      normalized[i] = stats[i]
+    }
+  }
+
+  return normalized
+}
+
+function normalizeUsageData(usageData, data) {
+  for (var browser in usageData) {
+    var browserUsage = usageData[browser]
+    // https://github.com/browserslist/browserslist/issues/431#issuecomment-565230615
+    // caniuse-db returns { 0: "percentage" } for `and_*` regional stats
+    if ('0' in browserUsage) {
+      var versions = data[browser].versions
+      browserUsage[versions[versions.length - 1]] = browserUsage[0]
+      delete browserUsage[0]
+    }
+  }
+}
+
+module.exports = {
+  loadQueries: function loadQueries(ctx, name) {
+    if (!ctx.dangerousExtend && !process.env.BROWSERSLIST_DANGEROUS_EXTEND) {
+      checkExtend(name)
+    }
+    var queries = require(require.resolve(name, { paths: ['.', ctx.path] }))
+    if (typeof queries === 'object' && queries !== null && queries.__esModule) {
+      queries = queries.default
+    }
+    if (queries) {
+      if (Array.isArray(queries)) {
+        return queries
+      } else if (typeof queries === 'object') {
+        if (!queries.defaults) queries.defaults = []
+        return pickEnv(queries, ctx, name)
+      }
+    }
+    throw new BrowserslistError(
+      '`' +
+        name +
+        '` config exports not an array of queries' +
+        ' or an object of envs'
+    )
+  },
+
+  loadStat: function loadStat(ctx, name, data) {
+    if (!ctx.dangerousExtend && !process.env.BROWSERSLIST_DANGEROUS_EXTEND) {
+      checkExtend(name)
+    }
+    var stats = require(
+      // Use forward slashes for module paths, also on Windows.
+      require.resolve(path.posix.join(name, 'browserslist-stats.json'), {
+        paths: ['.']
+      })
+    )
+    return normalizeStats(data, stats)
+  },
+
+  getStat: function getStat(opts, data) {
+    var stats
+    if (opts.stats) {
+      stats = opts.stats
+    } else if (process.env.BROWSERSLIST_STATS) {
+      stats = process.env.BROWSERSLIST_STATS
+    } else if (opts.path && path.resolve && fs.existsSync) {
+      stats = eachParent(
+        opts.path,
+        function (dir) {
+          var file = path.join(dir, 'browserslist-stats.json')
+          return isFile(file) ? file : undefined
+        },
+        statCache
+      )
+    }
+    if (typeof stats === 'string') {
+      try {
+        stats = JSON.parse(fs.readFileSync(stats))
+      } catch (e) {
+        throw new BrowserslistError("Can't read " + stats)
+      }
+    }
+    return normalizeStats(data, stats)
+  },
+
+  loadConfig: function loadConfig(opts) {
+    if (process.env.BROWSERSLIST) {
+      return process.env.BROWSERSLIST
+    } else if (opts.config || process.env.BROWSERSLIST_CONFIG) {
+      var file = opts.config || process.env.BROWSERSLIST_CONFIG
+      return pickEnv(parsePackageOrReadConfig(file), opts)
+    } else if (opts.path) {
+      return pickEnv(module.exports.findConfig(opts.path), opts)
+    } else {
+      return undefined
+    }
+  },
+
+  loadCountry: function loadCountry(usage, country, data) {
+    var code = country.replace(/[^\w-]/g, '')
+    if (!usage[code]) {
+      var compressed
+      try {
+        compressed = require('caniuse-lite/data/regions/' + code + '.js')
+      } catch (e) {
+        throw new BrowserslistError('Unknown region name `' + code + '`.')
+      }
+      var usageData = region(compressed)
+      normalizeUsageData(usageData, data)
+      usage[country] = {}
+      for (var i in usageData) {
+        for (var j in usageData[i]) {
+          usage[country][i + ' ' + j] = usageData[i][j]
+        }
+      }
+    }
+  },
+
+  loadFeature: function loadFeature(features, name) {
+    name = name.replace(/[^\w-]/g, '')
+    if (features[name]) return
+    var compressed
+    try {
+      compressed = require('caniuse-lite/data/features/' + name + '.js')
+    } catch (e) {
+      throw new BrowserslistError('Unknown feature name `' + name + '`.')
+    }
+    var stats = feature(compressed).stats
+    features[name] = {}
+    for (var i in stats) {
+      features[name][i] = {}
+      for (var j in stats[i]) {
+        features[name][i][j] = stats[i][j]
+      }
+    }
+  },
+
+  parseConfig: function parseConfig(string) {
+    var result = { defaults: [] }
+    var sections = ['defaults']
+
+    string
+      .toString()
+      .replace(/#[^\n]*/g, '')
+      .split(/\n|,/)
+      .map(function (line) {
+        return line.trim()
+      })
+      .filter(function (line) {
+        return line !== ''
+      })
+      .forEach(function (line) {
+        if (IS_SECTION.test(line)) {
+          sections = line.match(IS_SECTION)[1].trim().split(' ')
+          sections.forEach(function (section) {
+            if (result[section]) {
+              throw new BrowserslistError(
+                'Duplicate section ' + section + ' in Browserslist config'
+              )
+            }
+            result[section] = []
+          })
+        } else {
+          sections.forEach(function (section) {
+            result[section].push(line)
+          })
+        }
+      })
+
+    return result
+  },
+
+  readConfig: function readConfig(file) {
+    if (!isFile(file)) {
+      throw new BrowserslistError("Can't read " + file + ' config')
+    }
+
+    return module.exports.parseConfig(fs.readFileSync(file))
+  },
+
+  findConfigFile: function findConfigFile(from) {
+    return eachParent(
+      from,
+      function (dir) {
+        var config = path.join(dir, 'browserslist')
+        var pkg = path.join(dir, 'package.json')
+        var rc = path.join(dir, '.browserslistrc')
+
+        var pkgBrowserslist
+        if (isFile(pkg)) {
+          try {
+            pkgBrowserslist = parsePackage(pkg)
+          } catch (e) {
+            if (e.name === 'BrowserslistError') throw e
+            console.warn(
+              '[Browserslist] Could not parse ' + pkg + '. Ignoring it.'
+            )
+          }
+        }
+
+        if (isFile(config) && pkgBrowserslist) {
+          throw new BrowserslistError(
+            dir + ' contains both browserslist and package.json with browsers'
+          )
+        } else if (isFile(rc) && pkgBrowserslist) {
+          throw new BrowserslistError(
+            dir +
+              ' contains both .browserslistrc and package.json with browsers'
+          )
+        } else if (isFile(config) && isFile(rc)) {
+          throw new BrowserslistError(
+            dir + ' contains both .browserslistrc and browserslist'
+          )
+        } else if (isFile(config)) {
+          return config
+        } else if (isFile(rc)) {
+          return rc
+        } else if (pkgBrowserslist) {
+          return pkg
+        }
+      },
+      configPathCache
+    )
+  },
+
+  findConfig: function findConfig(from) {
+    var configFile = this.findConfigFile(from)
+
+    return configFile ? parsePackageOrReadConfig(configFile) : undefined
+  },
+
+  clearCaches: function clearCaches() {
+    dataTimeChecked = false
+    statCache = {}
+    configPathCache = {}
+    parseConfigCache = {}
+
+    this.cache = {}
+  },
+
+  oldDataWarning: function oldDataWarning(agentsObj) {
+    if (dataTimeChecked) return
+    dataTimeChecked = true
+    if (process.env.BROWSERSLIST_IGNORE_OLD_DATA) return
+
+    var latest = latestReleaseTime(agentsObj)
+    var monthsPassed = getMonthsPassed(latest)
+
+    if (latest !== 0 && monthsPassed >= 6) {
+      if (process.env.BROWSERSLIST_TRACE_WARNING) {
+        console.info('Last browser release in DB: ' + String(new Date(latest)))
+        console.trace()
+      }
+
+      var months = monthsPassed + ' ' + (monthsPassed > 1 ? 'months' : 'month')
+      console.warn(
+        'Browserslist: browsers data (caniuse-lite) is ' +
+          months +
+          ' old. Please run:\n' +
+          '  npx update-browserslist-db@latest\n' +
+          '  Why you should do it regularly: ' +
+          'https://github.com/browserslist/update-db#readme'
+      )
+    }
+  },
+
+  currentNode: function currentNode() {
+    return 'node ' + process.versions.node
+  },
+
+  env: process.env
+}
Index: node_modules/browserslist/package.json
===================================================================
--- node_modules/browserslist/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,45 @@
+{
+  "name": "browserslist",
+  "version": "4.28.1",
+  "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
+  "keywords": [
+    "caniuse",
+    "browsers",
+    "target"
+  ],
+  "funding": [
+    {
+      "type": "opencollective",
+      "url": "https://opencollective.com/browserslist"
+    },
+    {
+      "type": "tidelift",
+      "url": "https://tidelift.com/funding/github/npm/browserslist"
+    },
+    {
+      "type": "github",
+      "url": "https://github.com/sponsors/ai"
+    }
+  ],
+  "author": "Andrey Sitnik <andrey@sitnik.ru>",
+  "license": "MIT",
+  "repository": "browserslist/browserslist",
+  "dependencies": {
+    "baseline-browser-mapping": "^2.9.0",
+    "caniuse-lite": "^1.0.30001759",
+    "electron-to-chromium": "^1.5.263",
+    "node-releases": "^2.0.27",
+    "update-browserslist-db": "^1.2.0"
+  },
+  "engines": {
+    "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+  },
+  "bin": {
+    "browserslist": "cli.js"
+  },
+  "types": "./index.d.ts",
+  "browser": {
+    "./node.js": "./browser.js",
+    "path": false
+  }
+}
Index: node_modules/browserslist/parse.js
===================================================================
--- node_modules/browserslist/parse.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/browserslist/parse.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,78 @@
+var AND_REGEXP = /^\s+and\s+(.*)/i
+var OR_REGEXP = /^(?:,\s*|\s+or\s+)(.*)/i
+
+function flatten(array) {
+  if (!Array.isArray(array)) return [array]
+  return array.reduce(function (a, b) {
+    return a.concat(flatten(b))
+  }, [])
+}
+
+function find(string, predicate) {
+  for (var max = string.length, n = 1; n <= max; n++) {
+    var parsed = string.substr(-n, n)
+    if (predicate(parsed, n, max)) {
+      return string.slice(0, -n)
+    }
+  }
+  return ''
+}
+
+function matchQuery(all, query) {
+  var node = { query: query }
+  if (query.indexOf('not ') === 0) {
+    node.not = true
+    query = query.slice(4)
+  }
+
+  for (var name in all) {
+    var type = all[name]
+    var match = query.match(type.regexp)
+    if (match) {
+      node.type = name
+      for (var i = 0; i < type.matches.length; i++) {
+        node[type.matches[i]] = match[i + 1]
+      }
+      return node
+    }
+  }
+
+  node.type = 'unknown'
+  return node
+}
+
+function matchBlock(all, string, qs) {
+  var node
+  return find(string, function (parsed, n, max) {
+    if (AND_REGEXP.test(parsed)) {
+      node = matchQuery(all, parsed.match(AND_REGEXP)[1])
+      node.compose = 'and'
+      qs.unshift(node)
+      return true
+    } else if (OR_REGEXP.test(parsed)) {
+      node = matchQuery(all, parsed.match(OR_REGEXP)[1])
+      node.compose = 'or'
+      qs.unshift(node)
+      return true
+    } else if (n === max) {
+      node = matchQuery(all, parsed.trim())
+      node.compose = 'or'
+      qs.unshift(node)
+      return true
+    }
+    return false
+  })
+}
+
+module.exports = function parse(all, queries) {
+  if (!Array.isArray(queries)) queries = [queries]
+  return flatten(
+    queries.map(function (block) {
+      var qs = []
+      do {
+        block = matchBlock(all, block, qs)
+      } while (block)
+      return qs
+    })
+  )
+}
Index: node_modules/caniuse-lite/LICENSE
===================================================================
--- node_modules/caniuse-lite/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,395 @@
+Attribution 4.0 International
+
+=======================================================================
+
+Creative Commons Corporation ("Creative Commons") is not a law firm and
+does not provide legal services or legal advice. Distribution of
+Creative Commons public licenses does not create a lawyer-client or
+other relationship. Creative Commons makes its licenses and related
+information available on an "as-is" basis. Creative Commons gives no
+warranties regarding its licenses, any material licensed under their
+terms and conditions, or any related information. Creative Commons
+disclaims all liability for damages resulting from their use to the
+fullest extent possible.
+
+Using Creative Commons Public Licenses
+
+Creative Commons public licenses provide a standard set of terms and
+conditions that creators and other rights holders may use to share
+original works of authorship and other material subject to copyright
+and certain other rights specified in the public license below. The
+following considerations are for informational purposes only, are not
+exhaustive, and do not form part of our licenses.
+
+     Considerations for licensors: Our public licenses are
+     intended for use by those authorized to give the public
+     permission to use material in ways otherwise restricted by
+     copyright and certain other rights. Our licenses are
+     irrevocable. Licensors should read and understand the terms
+     and conditions of the license they choose before applying it.
+     Licensors should also secure all rights necessary before
+     applying our licenses so that the public can reuse the
+     material as expected. Licensors should clearly mark any
+     material not subject to the license. This includes other CC-
+     licensed material, or material used under an exception or
+     limitation to copyright. More considerations for licensors:
+	wiki.creativecommons.org/Considerations_for_licensors
+
+     Considerations for the public: By using one of our public
+     licenses, a licensor grants the public permission to use the
+     licensed material under specified terms and conditions. If
+     the licensor's permission is not necessary for any reason--for
+     example, because of any applicable exception or limitation to
+     copyright--then that use is not regulated by the license. Our
+     licenses grant only permissions under copyright and certain
+     other rights that a licensor has authority to grant. Use of
+     the licensed material may still be restricted for other
+     reasons, including because others have copyright or other
+     rights in the material. A licensor may make special requests,
+     such as asking that all changes be marked or described.
+     Although not required by our licenses, you are encouraged to
+     respect those requests where reasonable. More_considerations
+     for the public: 
+	wiki.creativecommons.org/Considerations_for_licensees
+
+=======================================================================
+
+Creative Commons Attribution 4.0 International Public License
+
+By exercising the Licensed Rights (defined below), You accept and agree
+to be bound by the terms and conditions of this Creative Commons
+Attribution 4.0 International Public License ("Public License"). To the
+extent this Public License may be interpreted as a contract, You are
+granted the Licensed Rights in consideration of Your acceptance of
+these terms and conditions, and the Licensor grants You such rights in
+consideration of benefits the Licensor receives from making the
+Licensed Material available under these terms and conditions.
+
+
+Section 1 -- Definitions.
+
+  a. Adapted Material means material subject to Copyright and Similar
+     Rights that is derived from or based upon the Licensed Material
+     and in which the Licensed Material is translated, altered,
+     arranged, transformed, or otherwise modified in a manner requiring
+     permission under the Copyright and Similar Rights held by the
+     Licensor. For purposes of this Public License, where the Licensed
+     Material is a musical work, performance, or sound recording,
+     Adapted Material is always produced where the Licensed Material is
+     synched in timed relation with a moving image.
+
+  b. Adapter's License means the license You apply to Your Copyright
+     and Similar Rights in Your contributions to Adapted Material in
+     accordance with the terms and conditions of this Public License.
+
+  c. Copyright and Similar Rights means copyright and/or similar rights
+     closely related to copyright including, without limitation,
+     performance, broadcast, sound recording, and Sui Generis Database
+     Rights, without regard to how the rights are labeled or
+     categorized. For purposes of this Public License, the rights
+     specified in Section 2(b)(1)-(2) are not Copyright and Similar
+     Rights.
+
+  d. Effective Technological Measures means those measures that, in the
+     absence of proper authority, may not be circumvented under laws
+     fulfilling obligations under Article 11 of the WIPO Copyright
+     Treaty adopted on December 20, 1996, and/or similar international
+     agreements.
+
+  e. Exceptions and Limitations means fair use, fair dealing, and/or
+     any other exception or limitation to Copyright and Similar Rights
+     that applies to Your use of the Licensed Material.
+
+  f. Licensed Material means the artistic or literary work, database,
+     or other material to which the Licensor applied this Public
+     License.
+
+  g. Licensed Rights means the rights granted to You subject to the
+     terms and conditions of this Public License, which are limited to
+     all Copyright and Similar Rights that apply to Your use of the
+     Licensed Material and that the Licensor has authority to license.
+
+  h. Licensor means the individual(s) or entity(ies) granting rights
+     under this Public License.
+
+  i. Share means to provide material to the public by any means or
+     process that requires permission under the Licensed Rights, such
+     as reproduction, public display, public performance, distribution,
+     dissemination, communication, or importation, and to make material
+     available to the public including in ways that members of the
+     public may access the material from a place and at a time
+     individually chosen by them.
+
+  j. Sui Generis Database Rights means rights other than copyright
+     resulting from Directive 96/9/EC of the European Parliament and of
+     the Council of 11 March 1996 on the legal protection of databases,
+     as amended and/or succeeded, as well as other essentially
+     equivalent rights anywhere in the world.
+
+  k. You means the individual or entity exercising the Licensed Rights
+     under this Public License. Your has a corresponding meaning.
+
+
+Section 2 -- Scope.
+
+  a. License grant.
+
+       1. Subject to the terms and conditions of this Public License,
+          the Licensor hereby grants You a worldwide, royalty-free,
+          non-sublicensable, non-exclusive, irrevocable license to
+          exercise the Licensed Rights in the Licensed Material to:
+
+            a. reproduce and Share the Licensed Material, in whole or
+               in part; and
+
+            b. produce, reproduce, and Share Adapted Material.
+
+       2. Exceptions and Limitations. For the avoidance of doubt, where
+          Exceptions and Limitations apply to Your use, this Public
+          License does not apply, and You do not need to comply with
+          its terms and conditions.
+
+       3. Term. The term of this Public License is specified in Section
+          6(a).
+
+       4. Media and formats; technical modifications allowed. The
+          Licensor authorizes You to exercise the Licensed Rights in
+          all media and formats whether now known or hereafter created,
+          and to make technical modifications necessary to do so. The
+          Licensor waives and/or agrees not to assert any right or
+          authority to forbid You from making technical modifications
+          necessary to exercise the Licensed Rights, including
+          technical modifications necessary to circumvent Effective
+          Technological Measures. For purposes of this Public License,
+          simply making modifications authorized by this Section 2(a)
+          (4) never produces Adapted Material.
+
+       5. Downstream recipients.
+
+            a. Offer from the Licensor -- Licensed Material. Every
+               recipient of the Licensed Material automatically
+               receives an offer from the Licensor to exercise the
+               Licensed Rights under the terms and conditions of this
+               Public License.
+
+            b. No downstream restrictions. You may not offer or impose
+               any additional or different terms or conditions on, or
+               apply any Effective Technological Measures to, the
+               Licensed Material if doing so restricts exercise of the
+               Licensed Rights by any recipient of the Licensed
+               Material.
+
+       6. No endorsement. Nothing in this Public License constitutes or
+          may be construed as permission to assert or imply that You
+          are, or that Your use of the Licensed Material is, connected
+          with, or sponsored, endorsed, or granted official status by,
+          the Licensor or others designated to receive attribution as
+          provided in Section 3(a)(1)(A)(i).
+
+  b. Other rights.
+
+       1. Moral rights, such as the right of integrity, are not
+          licensed under this Public License, nor are publicity,
+          privacy, and/or other similar personality rights; however, to
+          the extent possible, the Licensor waives and/or agrees not to
+          assert any such rights held by the Licensor to the limited
+          extent necessary to allow You to exercise the Licensed
+          Rights, but not otherwise.
+
+       2. Patent and trademark rights are not licensed under this
+          Public License.
+
+       3. To the extent possible, the Licensor waives any right to
+          collect royalties from You for the exercise of the Licensed
+          Rights, whether directly or through a collecting society
+          under any voluntary or waivable statutory or compulsory
+          licensing scheme. In all other cases the Licensor expressly
+          reserves any right to collect such royalties.
+
+
+Section 3 -- License Conditions.
+
+Your exercise of the Licensed Rights is expressly made subject to the
+following conditions.
+
+  a. Attribution.
+
+       1. If You Share the Licensed Material (including in modified
+          form), You must:
+
+            a. retain the following if it is supplied by the Licensor
+               with the Licensed Material:
+
+                 i. identification of the creator(s) of the Licensed
+                    Material and any others designated to receive
+                    attribution, in any reasonable manner requested by
+                    the Licensor (including by pseudonym if
+                    designated);
+
+                ii. a copyright notice;
+
+               iii. a notice that refers to this Public License;
+
+                iv. a notice that refers to the disclaimer of
+                    warranties;
+
+                 v. a URI or hyperlink to the Licensed Material to the
+                    extent reasonably practicable;
+
+            b. indicate if You modified the Licensed Material and
+               retain an indication of any previous modifications; and
+
+            c. indicate the Licensed Material is licensed under this
+               Public License, and include the text of, or the URI or
+               hyperlink to, this Public License.
+
+       2. You may satisfy the conditions in Section 3(a)(1) in any
+          reasonable manner based on the medium, means, and context in
+          which You Share the Licensed Material. For example, it may be
+          reasonable to satisfy the conditions by providing a URI or
+          hyperlink to a resource that includes the required
+          information.
+
+       3. If requested by the Licensor, You must remove any of the
+          information required by Section 3(a)(1)(A) to the extent
+          reasonably practicable.
+
+       4. If You Share Adapted Material You produce, the Adapter's
+          License You apply must not prevent recipients of the Adapted
+          Material from complying with this Public License.
+
+
+Section 4 -- Sui Generis Database Rights.
+
+Where the Licensed Rights include Sui Generis Database Rights that
+apply to Your use of the Licensed Material:
+
+  a. for the avoidance of doubt, Section 2(a)(1) grants You the right
+     to extract, reuse, reproduce, and Share all or a substantial
+     portion of the contents of the database;
+
+  b. if You include all or a substantial portion of the database
+     contents in a database in which You have Sui Generis Database
+     Rights, then the database in which You have Sui Generis Database
+     Rights (but not its individual contents) is Adapted Material; and
+
+  c. You must comply with the conditions in Section 3(a) if You Share
+     all or a substantial portion of the contents of the database.
+
+For the avoidance of doubt, this Section 4 supplements and does not
+replace Your obligations under this Public License where the Licensed
+Rights include other Copyright and Similar Rights.
+
+
+Section 5 -- Disclaimer of Warranties and Limitation of Liability.
+
+  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
+     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
+     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
+     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
+     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
+     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
+     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
+     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
+     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
+     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
+
+  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
+     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
+     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
+     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
+     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
+     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
+     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
+     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
+     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
+
+  c. The disclaimer of warranties and limitation of liability provided
+     above shall be interpreted in a manner that, to the extent
+     possible, most closely approximates an absolute disclaimer and
+     waiver of all liability.
+
+
+Section 6 -- Term and Termination.
+
+  a. This Public License applies for the term of the Copyright and
+     Similar Rights licensed here. However, if You fail to comply with
+     this Public License, then Your rights under this Public License
+     terminate automatically.
+
+  b. Where Your right to use the Licensed Material has terminated under
+     Section 6(a), it reinstates:
+
+       1. automatically as of the date the violation is cured, provided
+          it is cured within 30 days of Your discovery of the
+          violation; or
+
+       2. upon express reinstatement by the Licensor.
+
+     For the avoidance of doubt, this Section 6(b) does not affect any
+     right the Licensor may have to seek remedies for Your violations
+     of this Public License.
+
+  c. For the avoidance of doubt, the Licensor may also offer the
+     Licensed Material under separate terms or conditions or stop
+     distributing the Licensed Material at any time; however, doing so
+     will not terminate this Public License.
+
+  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
+     License.
+
+
+Section 7 -- Other Terms and Conditions.
+
+  a. The Licensor shall not be bound by any additional or different
+     terms or conditions communicated by You unless expressly agreed.
+
+  b. Any arrangements, understandings, or agreements regarding the
+     Licensed Material not stated herein are separate from and
+     independent of the terms and conditions of this Public License.
+
+
+Section 8 -- Interpretation.
+
+  a. For the avoidance of doubt, this Public License does not, and
+     shall not be interpreted to, reduce, limit, restrict, or impose
+     conditions on any use of the Licensed Material that could lawfully
+     be made without permission under this Public License.
+
+  b. To the extent possible, if any provision of this Public License is
+     deemed unenforceable, it shall be automatically reformed to the
+     minimum extent necessary to make it enforceable. If the provision
+     cannot be reformed, it shall be severed from this Public License
+     without affecting the enforceability of the remaining terms and
+     conditions.
+
+  c. No term or condition of this Public License will be waived and no
+     failure to comply consented to unless expressly agreed to by the
+     Licensor.
+
+  d. Nothing in this Public License constitutes or may be interpreted
+     as a limitation upon, or waiver of, any privileges and immunities
+     that apply to the Licensor or You, including from the legal
+     processes of any jurisdiction or authority.
+
+
+=======================================================================
+
+Creative Commons is not a party to its public
+licenses. Notwithstanding, Creative Commons may elect to apply one of
+its public licenses to material it publishes and in those instances
+will be considered the “Licensor.” The text of the Creative Commons
+public licenses is dedicated to the public domain under the CC0 Public
+Domain Dedication. Except for the limited purpose of indicating that
+material is shared under a Creative Commons public license or as
+otherwise permitted by the Creative Commons policies published at
+creativecommons.org/policies, Creative Commons does not authorize the
+use of the trademark "Creative Commons" or any other trademark or logo
+of Creative Commons without its prior written consent including,
+without limitation, in connection with any unauthorized modifications
+to any of its public licenses or any other arrangements,
+understandings, or agreements concerning use of licensed material. For
+the avoidance of doubt, this paragraph does not form part of the
+public licenses.
+
+Creative Commons may be contacted at creativecommons.org.
Index: node_modules/caniuse-lite/README.md
===================================================================
--- node_modules/caniuse-lite/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6 @@
+# caniuse-lite
+
+A smaller version of caniuse-db, with only the essentials!
+
+## Docs
+Read full docs **[here](https://github.com/browserslist/caniuse-lite#readme)**.
Index: node_modules/caniuse-lite/data/agents.js
===================================================================
--- node_modules/caniuse-lite/data/agents.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/agents.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{K:0,D:0,E:0.0347693,F:0.052154,A:0,B:0.330309,yC:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","yC","K","D","E","F","A","B","","",""],E:"IE",F:{yC:962323200,K:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{"0":0,"1":0,"2":0,"3":0.028128,"4":0.032816,"5":0.009376,"6":0,"7":0,"8":0,C:0,L:0,M:0,G:0,N:0,O:0,P:0,Q:0,H:0,R:0,S:0,T:0,U:0,V:0,W:0,X:0,Y:0,Z:0,a:0,b:0.009376,c:0,d:0,e:0,f:0,g:0,h:0,i:0,j:0,k:0,l:0,m:0,n:0,o:0,p:0,q:0,r:0,s:0.032816,t:0,u:0,v:0,w:0,x:0.037504,y:0,z:0,JB:0.004688,KB:0.004688,LB:0.004688,MB:0.004688,NB:0.004688,OB:0.018752,PB:0.009376,QB:0.009376,RB:0.009376,SB:0.014064,TB:0.014064,UB:0.014064,VB:0.028128,WB:0.028128,XB:0.065632,YB:0.501616,ZB:3.72227,I:0.009376},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","L","M","G","N","O","P","Q","H","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","I","","",""],E:"Edge",F:{"0":1694649600,"1":1697155200,"2":1698969600,"3":1701993600,"4":1706227200,"5":1708732800,"6":1711152000,"7":1713398400,"8":1715990400,C:1438128000,L:1447286400,M:1470096000,G:1491868800,N:1508198400,O:1525046400,P:1542067200,Q:1579046400,H:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,a:1622073600,b:1626912000,c:1630627200,d:1632441600,e:1634774400,f:1637539200,g:1641427200,h:1643932800,i:1646265600,j:1649635200,k:1651190400,l:1653955200,m:1655942400,n:1659657600,o:1661990400,p:1664755200,q:1666915200,r:1670198400,s:1673481600,t:1675900800,u:1678665600,v:1680825600,w:1683158400,x:1685664000,y:1689897600,z:1692576000,JB:1718841600,KB:1721865600,LB:1724371200,MB:1726704000,NB:1729123200,OB:1731542400,PB:1737417600,QB:1740614400,RB:1741219200,SB:1743984000,TB:1746316800,UB:1748476800,VB:1750896000,WB:1754611200,XB:1756944000,YB:1759363200,ZB:1761868800,I:1764806400},D:{C:"ms",L:"ms",M:"ms",G:"ms",N:"ms",O:"ms",P:"ms"}},C:{A:{"0":0,"1":0.1172,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0.004688,"9":0,zC:0,UC:0,J:0,aB:0.004688,K:0,D:0,E:0,F:0,A:0,B:0.051568,C:0,L:0,M:0,G:0,N:0,O:0,P:0,bB:0,AB:0,BB:0,CB:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,cB:0,dB:0,eB:0,fB:0,gB:0,hB:0,iB:0,jB:0,kB:0,lB:0,mB:0,nB:0,oB:0,pB:0.037504,qB:0,rB:0,sB:0,tB:0,uB:0,vB:0,wB:0,xB:0,yB:0.014064,zB:0,"0B":0,"1B":0,"2B":0,"3B":0,"4B":0,VC:0,"5B":0,WC:0,"6B":0,"7B":0,"8B":0,"9B":0,AC:0,BC:0,CC:0,DC:0,EC:0,FC:0,GC:0,HC:0,IC:0,JC:0,KC:0,LC:0,MC:0.004688,Q:0,H:0,R:0,XC:0,S:0,T:0,U:0,V:0,W:0,X:0,Y:0,Z:0,a:0,b:0,c:0,d:0,e:0,f:0,g:0,h:0,i:0,j:0,k:0,l:0,m:0,n:0,o:0,p:0,q:0,r:0,s:0,t:0,u:0,v:0,w:0,x:0,y:0.145328,z:0,JB:0,KB:0,LB:0.02344,MB:0,NB:0,OB:0,PB:0.009376,QB:0,RB:0,SB:0.009376,TB:0.009376,UB:0.004688,VB:0.004688,WB:0.004688,XB:0.079696,YB:0.009376,ZB:0.014064,I:0.032816,YC:0.614128,ZC:0.72664,NC:0,"0C":0,"1C":0,"2C":0,"3C":0,"4C":0},B:"moz",C:["zC","UC","3C","4C","J","aB","K","D","E","F","A","B","C","L","M","G","N","O","P","bB","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","3B","4B","VC","5B","WC","6B","7B","8B","9B","AC","BC","CC","DC","EC","FC","GC","HC","IC","JC","KC","LC","MC","Q","H","R","XC","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","I","YC","ZC","NC","0C","1C","2C"],E:"Firefox",F:{"0":1693267200,"1":1695686400,"2":1698105600,"3":1700524800,"4":1702944000,"5":1705968000,"6":1708387200,"7":1710806400,"8":1713225600,"9":1361232000,zC:1161648000,UC:1213660800,"3C":1246320000,"4C":1264032000,J:1300752000,aB:1308614400,K:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,L:1335225600,M:1338854400,G:1342483200,N:1346112000,O:1349740800,P:1353628800,bB:1357603200,AB:1364860800,BB:1368489600,CB:1372118400,DB:1375747200,EB:1379376000,FB:1386633600,GB:1391472000,HB:1395100800,IB:1398729600,cB:1402358400,dB:1405987200,eB:1409616000,fB:1413244800,gB:1417392000,hB:1421107200,iB:1424736000,jB:1428278400,kB:1431475200,lB:1435881600,mB:1439251200,nB:1442880000,oB:1446508800,pB:1450137600,qB:1453852800,rB:1457395200,sB:1461628800,tB:1465257600,uB:1470096000,vB:1474329600,wB:1479168000,xB:1485216000,yB:1488844800,zB:1492560000,"0B":1497312000,"1B":1502150400,"2B":1506556800,"3B":1510617600,"4B":1516665600,VC:1520985600,"5B":1525824000,WC:1529971200,"6B":1536105600,"7B":1540252800,"8B":1544486400,"9B":1548720000,AC:1552953600,BC:1558396800,CC:1562630400,DC:1567468800,EC:1571788800,FC:1575331200,GC:1578355200,HC:1581379200,IC:1583798400,JC:1586304000,KC:1588636800,LC:1591056000,MC:1593475200,Q:1595894400,H:1598313600,R:1600732800,XC:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,a:1628553600,b:1630972800,c:1633392000,d:1635811200,e:1638835200,f:1641859200,g:1644364800,h:1646697600,i:1649116800,j:1651536000,k:1653955200,l:1656374400,m:1658793600,n:1661212800,o:1663632000,p:1666051200,q:1668470400,r:1670889600,s:1673913600,t:1676332800,u:1678752000,v:1681171200,w:1683590400,x:1686009600,y:1688428800,z:1690848000,JB:1715644800,KB:1718064000,LB:1720483200,MB:1722902400,NB:1725321600,OB:1727740800,PB:1730160000,QB:1732579200,RB:1736208000,SB:1738627200,TB:1741046400,UB:1743465600,VB:1745884800,WB:1748304000,XB:1750723200,YB:1753142400,ZB:1755561600,I:1757980800,YC:1760400000,ZC:1762819200,NC:1765238400,"0C":null,"1C":null,"2C":null}},D:{A:{"0":0.14064,"1":0.103136,"2":0.04688,"3":0.196896,"4":0.1172,"5":0.098448,"6":0.079696,"7":0.075008,"8":0.49224,"9":0,J:0,aB:0,K:0,D:0,E:0,F:0,A:0,B:0,C:0,L:0,M:0,G:0,N:0,O:0,P:0,bB:0,AB:0,BB:0,CB:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,cB:0,dB:0,eB:0,fB:0,gB:0,hB:0,iB:0,jB:0,kB:0,lB:0.004688,mB:0.004688,nB:0.004688,oB:0.004688,pB:0.004688,qB:0.004688,rB:0.009376,sB:0.004688,tB:0.009376,uB:0.014064,vB:0.014064,wB:0.004688,xB:0.004688,yB:0.014064,zB:0.009376,"0B":0.004688,"1B":0.004688,"2B":0.009376,"3B":0.004688,"4B":0.009376,VC:0.004688,"5B":0.004688,WC:0,"6B":0,"7B":0,"8B":0,"9B":0,AC:0.018752,BC:0,CC:0,DC:0.014064,EC:0.004688,FC:0,GC:0,HC:0,IC:0,JC:0,KC:0,LC:0.014064,MC:0.004688,Q:0.075008,H:0.004688,R:0.014064,S:0.04688,T:0,U:0.009376,V:0.009376,W:0.037504,X:0.004688,Y:0,Z:0,a:0.018752,b:0.014064,c:0.014064,d:0,e:0,f:0,g:0.014064,h:0.042192,i:0.018752,j:0.004688,k:0.014064,l:0.009376,m:0.079696,n:0.014064,o:0.173456,p:0.112512,q:0.07032,r:0.042192,s:0.731328,t:0.168768,u:0.089072,v:2.29712,w:0.060944,x:0.182832,y:0.037504,z:0.075008,JB:0.525056,KB:0.159392,LB:0.150016,MB:0.135952,NB:0.89072,OB:0.290656,PB:0.103136,QB:0.07032,RB:1.08762,SB:0.065632,TB:0.065632,UB:0.482864,VB:0.318784,WB:3.44099,XB:0.684448,YB:3.75978,ZB:11.1809,I:0.042192,YC:0.009376,ZC:0,NC:0},B:"webkit",C:["","","","","","","","","J","aB","K","D","E","F","A","B","C","L","M","G","N","O","P","bB","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","3B","4B","VC","5B","WC","6B","7B","8B","9B","AC","BC","CC","DC","EC","FC","GC","HC","IC","JC","KC","LC","MC","Q","H","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","I","YC","ZC","NC"],E:"Chrome",F:{"0":1694476800,"1":1696896000,"2":1698710400,"3":1701993600,"4":1705968000,"5":1708387200,"6":1710806400,"7":1713225600,"8":1715644800,"9":1337040000,J:1264377600,aB:1274745600,K:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,L:1312243200,M:1316131200,G:1316131200,N:1319500800,O:1323734400,P:1328659200,bB:1332892800,AB:1340668800,BB:1343692800,CB:1348531200,DB:1352246400,EB:1357862400,FB:1361404800,GB:1364428800,HB:1369094400,IB:1374105600,cB:1376956800,dB:1384214400,eB:1389657600,fB:1392940800,gB:1397001600,hB:1400544000,iB:1405468800,jB:1409011200,kB:1412640000,lB:1416268800,mB:1421798400,nB:1425513600,oB:1429401600,pB:1432080000,qB:1437523200,rB:1441152000,sB:1444780800,tB:1449014400,uB:1453248000,vB:1456963200,wB:1460592000,xB:1464134400,yB:1469059200,zB:1472601600,"0B":1476230400,"1B":1480550400,"2B":1485302400,"3B":1489017600,"4B":1492560000,VC:1496707200,"5B":1500940800,WC:1504569600,"6B":1508198400,"7B":1512518400,"8B":1516752000,"9B":1520294400,AC:1523923200,BC:1527552000,CC:1532390400,DC:1536019200,EC:1539648000,FC:1543968000,GC:1548720000,HC:1552348800,IC:1555977600,JC:1559606400,KC:1564444800,LC:1568073600,MC:1571702400,Q:1575936000,H:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,a:1621987200,b:1626739200,c:1630368000,d:1632268800,e:1634601600,f:1637020800,g:1641340800,h:1643673600,i:1646092800,j:1648512000,k:1650931200,l:1653350400,m:1655769600,n:1659398400,o:1661817600,p:1664236800,q:1666656000,r:1669680000,s:1673308800,t:1675728000,u:1678147200,v:1680566400,w:1682985600,x:1685404800,y:1689724800,z:1692057600,JB:1718064000,KB:1721174400,LB:1724112000,MB:1726531200,NB:1728950400,OB:1731369600,PB:1736812800,QB:1738627200,RB:1741046400,SB:1743465600,TB:1745884800,UB:1748304000,VB:1750723200,WB:1754352000,XB:1756771200,YB:1759190400,ZB:1761609600,I:1764633600,YC:null,ZC:null,NC:null}},E:{A:{J:0,aB:0,K:0,D:0,E:0,F:0,A:0,B:0,C:0,L:0,M:0.009376,G:0,"5C":0,aC:0,"6C":0,"7C":0,"8C":0,"9C":0,bC:0,OC:0.004688,PC:0,AD:0.018752,BD:0.02344,CD:0.004688,cC:0,dC:0.004688,QC:0.009376,DD:0.089072,RC:0.004688,eC:0.009376,fC:0.009376,gC:0.018752,hC:0.009376,iC:0.014064,ED:0.131264,SC:0.004688,jC:0.09376,kC:0.009376,lC:0.014064,mC:0.02344,nC:0.037504,FD:0.14064,TC:0.014064,oC:0.02344,pC:0.014064,qC:0.051568,rC:0.028128,GD:0.1172,sC:0.206272,tC:0.229712,uC:0.009376,vC:0,HD:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5C","aC","J","aB","6C","K","7C","D","8C","E","F","9C","A","bC","B","OC","C","PC","L","AD","M","BD","G","CD","cC","dC","QC","DD","RC","eC","fC","gC","hC","iC","ED","SC","jC","kC","lC","mC","nC","FD","TC","oC","pC","qC","rC","GD","sC","tC","uC","vC","HD",""],E:"Safari",F:{"5C":1205798400,aC:1226534400,J:1244419200,aB:1275868800,"6C":1311120000,K:1343174400,"7C":1382400000,D:1382400000,"8C":1410998400,E:1413417600,F:1443657600,"9C":1458518400,A:1474329600,bC:1490572800,B:1505779200,OC:1522281600,C:1537142400,PC:1553472000,L:1568851200,AD:1585008000,M:1600214400,BD:1619395200,G:1632096000,CD:1635292800,cC:1639353600,dC:1647216000,QC:1652745600,DD:1658275200,RC:1662940800,eC:1666569600,fC:1670889600,gC:1674432000,hC:1679875200,iC:1684368000,ED:1690156800,SC:1695686400,jC:1698192000,kC:1702252800,lC:1705881600,mC:1709596800,nC:1715558400,FD:1722211200,TC:1726444800,oC:1730073600,pC:1733875200,qC:1737936000,rC:1743379200,GD:1747008000,sC:1757894400,tC:1762128000,uC:1762041600,vC:null,HD:null}},F:{A:{"0":0,"1":0,"2":0,"3":0.009376,"4":0,"5":0.290656,"6":0.417232,"7":0.16408,"8":0,"9":0,F:0,B:0,C:0,G:0,N:0,O:0,P:0,bB:0,AB:0,BB:0,CB:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,cB:0,dB:0,eB:0,fB:0,gB:0,hB:0,iB:0,jB:0,kB:0,lB:0,mB:0,nB:0,oB:0,pB:0,qB:0,rB:0,sB:0,tB:0,uB:0,vB:0,wB:0,xB:0,yB:0,zB:0,"0B":0,"1B":0,"2B":0,"3B":0,"4B":0,"5B":0,"6B":0,"7B":0,"8B":0,"9B":0,AC:0,BC:0,CC:0,DC:0,EC:0,FC:0,GC:0,HC:0,IC:0,JC:0,KC:0,LC:0,MC:0,Q:0,H:0,R:0,XC:0,S:0,T:0,U:0,V:0,W:0,X:0,Y:0,Z:0,a:0,b:0.075008,c:0.009376,d:0,e:0.028128,f:0,g:0,h:0,i:0,j:0,k:0,l:0,m:0,n:0,o:0,p:0,q:0,r:0,s:0,t:0,u:0,v:0,w:0,x:0,y:0,z:0,ID:0,JD:0,KD:0,LD:0,OC:0,wC:0,MD:0,PC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","F","ID","JD","KD","LD","B","OC","wC","MD","C","PC","G","N","O","P","bB","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","3B","4B","5B","6B","7B","8B","9B","AC","BC","CC","DC","EC","FC","GC","HC","IC","JC","KC","LC","MC","Q","H","R","XC","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","","",""],E:"Opera",F:{"0":1739404800,"1":1744675200,"2":1747094400,"3":1751414400,"4":1756339200,"5":1757548800,"6":1761609600,"7":1762992000,"8":1764806400,"9":1393891200,F:1150761600,ID:1223424000,JD:1251763200,KD:1267488000,LD:1277942400,B:1292457600,OC:1302566400,wC:1309219200,MD:1323129600,C:1323129600,PC:1352073600,G:1372723200,N:1377561600,O:1381104000,P:1386288000,bB:1390867200,AB:1399334400,BB:1401753600,CB:1405987200,DB:1409616000,EB:1413331200,FB:1417132800,GB:1422316800,HB:1425945600,IB:1430179200,cB:1433808000,dB:1438646400,eB:1442448000,fB:1445904000,gB:1449100800,hB:1454371200,iB:1457308800,jB:1462320000,kB:1465344000,lB:1470096000,mB:1474329600,nB:1477267200,oB:1481587200,pB:1486425600,qB:1490054400,rB:1494374400,sB:1498003200,tB:1502236800,uB:1506470400,vB:1510099200,wB:1515024000,xB:1517961600,yB:1521676800,zB:1525910400,"0B":1530144000,"1B":1534982400,"2B":1537833600,"3B":1543363200,"4B":1548201600,"5B":1554768000,"6B":1561593600,"7B":1566259200,"8B":1570406400,"9B":1573689600,AC:1578441600,BC:1583971200,CC:1587513600,DC:1592956800,EC:1595894400,FC:1600128000,GC:1603238400,HC:1613520000,IC:1612224000,JC:1616544000,KC:1619568000,LC:1623715200,MC:1627948800,Q:1631577600,H:1633392000,R:1635984000,XC:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800,a:1663113600,b:1668816000,c:1668643200,d:1671062400,e:1675209600,f:1677024000,g:1679529600,h:1681948800,i:1684195200,j:1687219200,k:1690329600,l:1692748800,m:1696204800,n:1699920000,o:1699920000,p:1702944000,q:1707264000,r:1710115200,s:1711497600,t:1716336000,u:1719273600,v:1721088000,w:1724284800,x:1727222400,y:1732665600,z:1736294400},D:{F:"o",B:"o",C:"o",ID:"o",JD:"o",KD:"o",LD:"o",OC:"o",wC:"o",MD:"o",PC:"o"}},G:{A:{E:0,aC:0,ND:0,xC:0.0011798,OD:0,PD:0.00471918,QD:0.00353939,RD:0,SD:0,TD:0.0106182,UD:0.0011798,VD:0.0188767,WD:0.219442,XD:0.00707877,YD:0.00235959,ZD:0.0554504,aD:0,bD:0.00589898,cD:0.00235959,dD:0.0106182,eD:0.0176969,fD:0.0224161,gD:0.0188767,cC:0.0153373,dC:0.0165171,QC:0.0176969,hD:0.256016,RC:0.0318545,eC:0.0589898,fC:0.0306747,gC:0.0566302,hC:0.0141575,iC:0.0235959,iD:0.34568,SC:0.0294949,jC:0.0353939,kC:0.0259555,lC:0.0365737,mC:0.0601696,nC:0.11444,jD:0.280791,TC:0.0625291,oC:0.132137,pC:0.0707877,qC:0.23006,rC:0.11798,kD:8.23969,sC:0.563942,tC:0.515571,uC:0,vC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","aC","ND","xC","OD","PD","QD","E","RD","SD","TD","UD","VD","WD","XD","YD","ZD","aD","bD","cD","dD","eD","fD","gD","cC","dC","QC","hD","RC","eC","fC","gC","hC","iC","iD","SC","jC","kC","lC","mC","nC","jD","TC","oC","pC","qC","rC","kD","sC","tC","uC","vC","",""],E:"Safari on iOS",F:{aC:1270252800,ND:1283904000,xC:1299628800,OD:1331078400,PD:1359331200,QD:1394409600,E:1410912000,RD:1413763200,SD:1442361600,TD:1458518400,UD:1473724800,VD:1490572800,WD:1505779200,XD:1522281600,YD:1537142400,ZD:1553472000,aD:1568851200,bD:1572220800,cD:1580169600,dD:1585008000,eD:1600214400,fD:1619395200,gD:1632096000,cC:1639353600,dC:1647216000,QC:1652659200,hD:1658275200,RC:1662940800,eC:1666569600,fC:1670889600,gC:1674432000,hC:1679875200,iC:1684368000,iD:1690156800,SC:1694995200,jC:1698192000,kC:1702252800,lC:1705881600,mC:1709596800,nC:1715558400,jD:1722211200,TC:1726444800,oC:1730073600,pC:1733875200,qC:1737936000,rC:1743379200,kD:1747008000,sC:1757894400,tC:1762128000,uC:1765497600,vC:null}},H:{A:{lD:0.04},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","lD","","",""],E:"Opera Mini",F:{lD:1426464000}},I:{A:{UC:0,J:0,I:0.461543,mD:0,nD:0,oD:0,pD:0,xC:0.0000924288,qD:0,rD:0.000231072},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","mD","nD","oD","UC","J","pD","xC","qD","rD","I","","",""],E:"Android Browser",F:{mD:1256515200,nD:1274313600,oD:1291593600,UC:1298332800,J:1318896000,pD:1341792000,xC:1374624000,qD:1386547200,rD:1401667200,I:1764633600}},J:{A:{D:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","A","","",""],E:"Blackberry Browser",F:{D:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,H:0.825856,OC:0,wC:0,PC:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","OC","wC","C","PC","H","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,OC:1314835200,wC:1318291200,C:1330300800,PC:1349740800,H:1709769600},D:{H:"webkit"}},L:{A:{I:41.8556},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","","",""],E:"Chrome for Android",F:{I:1764633600}},M:{A:{NC:0.302784},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","NC","","",""],E:"Firefox for Android",F:{NC:1765238400}},N:{A:{A:0,B:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{QC:0.573696},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","QC","","",""],E:"UC Browser for Android",F:{QC:1710115200},D:{QC:"webkit"}},P:{A:{"9":0,J:0,AB:0.0108341,BB:0.0108341,CB:0.0216682,DB:0.0216682,EB:0.0216682,FB:0.0433363,GB:0.0541704,HB:0.227516,IB:1.50594,sD:0,tD:0,uD:0,vD:0,wD:0,bC:0,xD:0,yD:0,zD:0,"0D":0,"1D":0,RC:0,SC:0,TC:0,"2D":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","J","sD","tD","uD","vD","wD","bC","xD","yD","zD","0D","1D","RC","SC","TC","2D","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","","",""],E:"Samsung Internet",F:{"9":1677369600,J:1461024000,sD:1481846400,tD:1509408000,uD:1528329600,vD:1546128000,wD:1554163200,bC:1567900800,xD:1582588800,yD:1593475200,zD:1605657600,"0D":1618531200,"1D":1629072000,RC:1640736000,SC:1651708800,TC:1659657600,"2D":1667260800,AB:1684454400,BB:1689292800,CB:1697587200,DB:1711497600,EB:1715126400,FB:1717718400,GB:1725667200,HB:1746057600,IB:1761264000}},Q:{A:{"3D":0.148736},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3D","","",""],E:"QQ Browser",F:{"3D":1710288000}},R:{A:{"4D":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4D","","",""],E:"Baidu Browser",F:{"4D":1710201600}},S:{A:{"5D":0.021248,"6D":0},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5D","6D","","",""],E:"KaiOS Browser",F:{"5D":1527811200,"6D":1631664000}}};
Index: node_modules/caniuse-lite/data/browserVersions.js
===================================================================
--- node_modules/caniuse-lite/data/browserVersions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/browserVersions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={"0":"117","1":"118","2":"119","3":"120","4":"121","5":"122","6":"123","7":"124","8":"125","9":"20",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"80",I:"143",J:"4",K:"6",L:"13",M:"14",N:"16",O:"17",P:"18",Q:"79",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"92",c:"93",d:"94",e:"95",f:"96",g:"97",h:"98",i:"99",j:"100",k:"101",l:"102",m:"103",n:"104",o:"105",p:"106",q:"107",r:"108",s:"109",t:"110",u:"111",v:"112",w:"113",x:"114",y:"115",z:"116",AB:"21",BB:"22",CB:"23",DB:"24",EB:"25",FB:"26",GB:"27",HB:"28",IB:"29",JB:"126",KB:"127",LB:"128",MB:"129",NB:"130",OB:"131",PB:"132",QB:"133",RB:"134",SB:"135",TB:"136",UB:"137",VB:"138",WB:"139",XB:"140",YB:"141",ZB:"142",aB:"5",bB:"19",cB:"30",dB:"31",eB:"32",fB:"33",gB:"34",hB:"35",iB:"36",jB:"37",kB:"38",lB:"39",mB:"40",nB:"41",oB:"42",pB:"43",qB:"44",rB:"45",sB:"46",tB:"47",uB:"48",vB:"49",wB:"50",xB:"51",yB:"52",zB:"53","0B":"54","1B":"55","2B":"56","3B":"57","4B":"58","5B":"60","6B":"62","7B":"63","8B":"64","9B":"65",AC:"66",BC:"67",CC:"68",DC:"69",EC:"70",FC:"71",GC:"72",HC:"73",IC:"74",JC:"75",KC:"76",LC:"77",MC:"78",NC:"146",OC:"11.1",PC:"12.1",QC:"15.5",RC:"16.0",SC:"17.0",TC:"18.0",UC:"3",VC:"59",WC:"61",XC:"82",YC:"144",ZC:"145",aC:"3.2",bC:"10.1",cC:"15.2-15.3",dC:"15.4",eC:"16.1",fC:"16.2",gC:"16.3",hC:"16.4",iC:"16.5",jC:"17.1",kC:"17.2",lC:"17.3",mC:"17.4",nC:"17.5",oC:"18.1",pC:"18.2",qC:"18.3",rC:"18.4",sC:"26.0",tC:"26.1",uC:"26.2",vC:"26.3",wC:"11.5",xC:"4.2-4.3",yC:"5.5",zC:"2","0C":"147","1C":"148","2C":"149","3C":"3.5","4C":"3.6","5C":"3.1","6C":"5.1","7C":"6.1","8C":"7.1","9C":"9.1",AD:"13.1",BD:"14.1",CD:"15.1",DD:"15.6",ED:"16.6",FD:"17.6",GD:"18.5-18.6",HD:"TP",ID:"9.5-9.6",JD:"10.0-10.1",KD:"10.5",LD:"10.6",MD:"11.6",ND:"4.0-4.1",OD:"5.0-5.1",PD:"6.0-6.1",QD:"7.0-7.1",RD:"8.1-8.4",SD:"9.0-9.2",TD:"9.3",UD:"10.0-10.2",VD:"10.3",WD:"11.0-11.2",XD:"11.3-11.4",YD:"12.0-12.1",ZD:"12.2-12.5",aD:"13.0-13.1",bD:"13.2",cD:"13.3",dD:"13.4-13.7",eD:"14.0-14.4",fD:"14.5-14.8",gD:"15.0-15.1",hD:"15.6-15.8",iD:"16.6-16.7",jD:"17.6-17.7",kD:"18.5-18.7",lD:"all",mD:"2.1",nD:"2.2",oD:"2.3",pD:"4.1",qD:"4.4",rD:"4.4.3-4.4.4",sD:"5.0-5.4",tD:"6.2-6.4",uD:"7.2-7.4",vD:"8.2",wD:"9.2",xD:"11.1-11.2",yD:"12.0",zD:"13.0","0D":"14.0","1D":"15.0","2D":"19.0","3D":"14.9","4D":"13.52","5D":"2.5","6D":"3.0-3.1"};
Index: node_modules/caniuse-lite/data/browsers.js
===================================================================
--- node_modules/caniuse-lite/data/browsers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/browsers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:"ie",B:"edge",C:"firefox",D:"chrome",E:"safari",F:"opera",G:"ios_saf",H:"op_mini",I:"android",J:"bb",K:"op_mob",L:"and_chr",M:"and_ff",N:"ie_mob",O:"and_uc",P:"samsung",Q:"and_qq",R:"baidu",S:"kaios"};
Index: node_modules/caniuse-lite/data/features.js
===================================================================
--- node_modules/caniuse-lite/data/features.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cross-document-view-transitions":require("./features/cross-document-view-transitions"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-anchor-positioning":require("./features/css-anchor-positioning"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-cascade-scope":require("./features/css-cascade-scope"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries-style":require("./features/css-container-queries-style"),"css-container-queries":require("./features/css-container-queries"),"css-container-query-units":require("./features/css-container-query-units"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid-animation":require("./features/css-grid-animation"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphens":require("./features/css-hyphens"),"css-if":require("./features/css-if"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-range-syntax":require("./features/css-media-range-syntax"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-module-scripts":require("./features/css-module-scripts"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-relative-colors":require("./features/css-relative-colors"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-box-trim":require("./features/css-text-box-trim"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-text-wrap-balance":require("./features/css-text-wrap-balance"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"mdn-css-backdrop-pseudo-element":require("./features/mdn-css-backdrop-pseudo-element"),"mdn-css-unicode-bidi-isolate-override":require("./features/mdn-css-unicode-bidi-isolate-override"),"mdn-css-unicode-bidi-isolate":require("./features/mdn-css-unicode-bidi-isolate"),"mdn-css-unicode-bidi-plaintext":require("./features/mdn-css-unicode-bidi-plaintext"),"mdn-text-decoration-color":require("./features/mdn-text-decoration-color"),"mdn-text-decoration-line":require("./features/mdn-text-decoration-line"),"mdn-text-decoration-shorthand":require("./features/mdn-text-decoration-shorthand"),"mdn-text-decoration-style":require("./features/mdn-text-decoration-style"),"media-fragments":require("./features/media-fragments"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passkeys":require("./features/passkeys"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"selectlist":require("./features/selectlist"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-bundling":require("./features/subresource-bundling"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"view-transitions":require("./features/view-transitions"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm-bigint":require("./features/wasm-bigint"),"wasm-bulk-memory":require("./features/wasm-bulk-memory"),"wasm-extended-const":require("./features/wasm-extended-const"),"wasm-gc":require("./features/wasm-gc"),"wasm-multi-memory":require("./features/wasm-multi-memory"),"wasm-multi-value":require("./features/wasm-multi-value"),"wasm-mutable-globals":require("./features/wasm-mutable-globals"),"wasm-nontrapping-fptoint":require("./features/wasm-nontrapping-fptoint"),"wasm-reference-types":require("./features/wasm-reference-types"),"wasm-relaxed-simd":require("./features/wasm-relaxed-simd"),"wasm-signext":require("./features/wasm-signext"),"wasm-simd":require("./features/wasm-simd"),"wasm-tail-calls":require("./features/wasm-tail-calls"),"wasm-threads":require("./features/wasm-threads"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webcodecs":require("./features/webcodecs"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webtransport":require("./features/webtransport"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer"),"zstd":require("./features/zstd")};
Index: node_modules/caniuse-lite/data/features/aac.js
===================================================================
--- node_modules/caniuse-lite/data/features/aac.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/aac.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C","132":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F","16":"A B"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"132":"NC"},N:{"1":"A","2":"B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"132":"5D 6D"}},B:6,C:"AAC audio file format",D:true};
Index: node_modules/caniuse-lite/data/features/abortcontroller.js
===================================================================
--- node_modules/caniuse-lite/data/features/abortcontroller.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/abortcontroller.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC","130":"C OC"},F:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"AbortController & AbortSignal",D:true};
Index: node_modules/caniuse-lite/data/features/ac3-ec3.js
===================================================================
--- node_modules/caniuse-lite/data/features/ac3-ec3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ac3-ec3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD","132":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D","132":"A"},K:{"2":"A B C H OC wC","132":"PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs",D:false};
Index: node_modules/caniuse-lite/data/features/accelerometer.js
===================================================================
--- node_modules/caniuse-lite/data/features/accelerometer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/accelerometer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","194":"4B VC 5B WC 6B 7B 8B 9B AC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:4,C:"Accelerometer",D:true};
Index: node_modules/caniuse-lite/data/features/addeventlistener.js
===================================================================
--- node_modules/caniuse-lite/data/features/addeventlistener.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/addeventlistener.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","130":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","257":"zC UC J aB K 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"EventTarget.addEventListener()",D:true};
Index: node_modules/caniuse-lite/data/features/alternate-stylesheet.js
===================================================================
--- node_modules/caniuse-lite/data/features/alternate-stylesheet.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/alternate-stylesheet.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","2":"K D yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"F B C ID JD KD LD OC wC MD PC","16":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"16":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"2":"H","16":"A B C OC wC PC"},L:{"16":"I"},M:{"16":"NC"},N:{"16":"A B"},O:{"16":"QC"},P:{"16":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"16":"4D"},S:{"1":"5D 6D"}},B:1,C:"Alternate stylesheet",D:false};
Index: node_modules/caniuse-lite/data/features/ambient-light.js
===================================================================
--- node_modules/caniuse-lite/data/features/ambient-light.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ambient-light.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L","132":"M G N O P","322":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C","132":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC","194":"0 1 2 3 4 5 6 7 8 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","322":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC ID JD KD LD OC wC MD PC","322":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"322":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"132":"5D 6D"}},B:4,C:"Ambient Light Sensor",D:true};
Index: node_modules/caniuse-lite/data/features/apng.js
===================================================================
--- node_modules/caniuse-lite/data/features/apng.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/apng.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B"},E:{"1":"E F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 B C sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"9 F G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Animated PNG (APNG)",D:true};
Index: node_modules/caniuse-lite/data/features/array-find-index.js
===================================================================
--- node_modules/caniuse-lite/data/features/array-find-index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/array-find-index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB"},E:{"1":"E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB ID JD KD LD OC wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Array.prototype.findIndex",D:true};
Index: node_modules/caniuse-lite/data/features/array-find.js
===================================================================
--- node_modules/caniuse-lite/data/features/array-find.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/array-find.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB"},E:{"1":"E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB ID JD KD LD OC wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Array.prototype.find",D:true};
Index: node_modules/caniuse-lite/data/features/array-flat.js
===================================================================
--- node_modules/caniuse-lite/data/features/array-flat.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/array-flat.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC"},E:{"1":"C L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B ID JD KD LD OC wC MD PC"},G:{"1":"YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"flat & flatMap array methods",D:true};
Index: node_modules/caniuse-lite/data/features/array-includes.js
===================================================================
--- node_modules/caniuse-lite/data/features/array-includes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/array-includes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Array.prototype.includes",D:true};
Index: node_modules/caniuse-lite/data/features/arrow-functions.js
===================================================================
--- node_modules/caniuse-lite/data/features/arrow-functions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/arrow-functions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Arrow functions",D:true};
Index: node_modules/caniuse-lite/data/features/asmjs.js
===================================================================
--- node_modules/caniuse-lite/data/features/asmjs.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/asmjs.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"L M G N O P","132":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB","132":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","132":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","132":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","132":"H"},L:{"132":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"132":"QC"},P:{"2":"J","132":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"132":"3D"},R:{"132":"4D"},S:{"1":"5D 6D"}},B:6,C:"asm.js",D:true};
Index: node_modules/caniuse-lite/data/features/async-clipboard.js
===================================================================
--- node_modules/caniuse-lite/data/features/async-clipboard.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/async-clipboard.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 3C 4C","132":"0 1 2 3 4 5 6 7 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB ID JD KD LD OC wC MD PC"},G:{"1":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","260":"I"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"EB FB GB HB IB","2":"J sD tD uD vD","260":"9 AB BB CB DB wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D","132":"6D"}},B:5,C:"Asynchronous Clipboard API",D:true};
Index: node_modules/caniuse-lite/data/features/async-functions.js
===================================================================
--- node_modules/caniuse-lite/data/features/async-functions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/async-functions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L","194":"M"},C:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C","258":"bC"},F:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD","258":"VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"Async functions",D:true};
Index: node_modules/caniuse-lite/data/features/atob-btoa.js
===================================================================
--- node_modules/caniuse-lite/data/features/atob-btoa.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/atob-btoa.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","2":"F ID JD","16":"KD"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","16":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Base64 encoding and decoding",D:true};
Index: node_modules/caniuse-lite/data/features/audio-api.js
===================================================================
--- node_modules/caniuse-lite/data/features/audio-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/audio-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L","33":"9 M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB"},E:{"1":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","33":"K D E F A B C L M 7C 8C 9C bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Web Audio API",D:true};
Index: node_modules/caniuse-lite/data/features/audio.js
===================================================================
--- node_modules/caniuse-lite/data/features/audio.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/audio.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","132":"J aB K D E F A B C L M G N O P bB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F","4":"ID JD"},G:{"260":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","2":"mD nD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Audio element",D:true};
Index: node_modules/caniuse-lite/data/features/audiotracks.js
===================================================================
--- node_modules/caniuse-lite/data/features/audiotracks.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/audiotracks.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB 3C 4C","194":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB","322":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB ID JD KD LD OC wC MD PC","322":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","322":"H"},L:{"322":"I"},M:{"2":"NC"},N:{"1":"A B"},O:{"322":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"322":"3D"},R:{"322":"4D"},S:{"194":"5D 6D"}},B:1,C:"Audio Tracks",D:true};
Index: node_modules/caniuse-lite/data/features/autofocus.js
===================================================================
--- node_modules/caniuse-lite/data/features/autofocus.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/autofocus.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"Autofocus attribute",D:true};
Index: node_modules/caniuse-lite/data/features/auxclick.js
===================================================================
--- node_modules/caniuse-lite/data/features/auxclick.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/auxclick.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 3C 4C","129":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},E:{"1":"pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC"},F:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB ID JD KD LD OC wC MD PC"},G:{"1":"pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"Auxclick",D:true};
Index: node_modules/caniuse-lite/data/features/av1.js
===================================================================
--- node_modules/caniuse-lite/data/features/av1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/av1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"0 1 2 3 C L M G N O z","194":"P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y"},C:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 3C 4C","66":"1B 2B 3B 4B VC 5B WC 6B 7B 8B","260":"9B","516":"AC"},D:{"1":"0 1 2 3 4 5 6 7 8 EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC","66":"BC CC DC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED","1028":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD","1028":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:6,C:"AV1 video format",D:true};
Index: node_modules/caniuse-lite/data/features/avif.js
===================================================================
--- node_modules/caniuse-lite/data/features/avif.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/avif.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"1 2 3 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w","4162":"0 x y z"},C:{"1":"0 1 2 3 4 5 6 7 8 w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC 3C 4C","194":"LC MC Q H R XC S T U V W X Y Z a b","257":"c d e f g h i j k l m n o p q r s t","2049":"u v"},D:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC","1796":"eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC ID JD KD LD OC wC MD PC"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD","1281":"RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:6,C:"AVIF image format",D:true};
Index: node_modules/caniuse-lite/data/features/background-attachment.js
===================================================================
--- node_modules/caniuse-lite/data/features/background-attachment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/background-attachment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","132":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","132":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K D E F A B C 6C 7C 8C 9C bC OC PC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","132":"J L 5C aC AD","2050":"M G BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","132":"F ID JD"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","772":"E OD PD QD RD SD TD UD VD WD XD YD ZD","2050":"aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD qD rD","132":"pD xC"},J:{"260":"D A"},K:{"1":"B C H OC wC PC","132":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"2":"J","1028":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS background-attachment",D:true};
Index: node_modules/caniuse-lite/data/features/background-clip-text.js
===================================================================
--- node_modules/caniuse-lite/data/features/background-clip-text.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/background-clip-text.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"G N O P","33":"C L M","129":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","161":"0 1 2 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB 3C 4C"},D:{"129":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","161":"0 1 2 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"5C","129":"QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","388":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC","420":"J aC"},F:{"2":"F B C ID JD KD LD OC wC MD PC","129":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","161":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"129":"QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","388":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC"},H:{"2":"lD"},I:{"16":"UC mD nD oD","129":"I","161":"J pD xC qD rD"},J:{"161":"D A"},K:{"16":"A B C OC wC PC","129":"H"},L:{"129":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"161":"QC"},P:{"1":"EB FB GB HB IB","161":"9 J AB BB CB DB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"161":"3D"},R:{"161":"4D"},S:{"1":"5D 6D"}},B:7,C:"Background-clip: text",D:true};
Index: node_modules/caniuse-lite/data/features/background-img-opts.js
===================================================================
--- node_modules/caniuse-lite/data/features/background-img-opts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/background-img-opts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C","36":"4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","516":"J aB K D E F A B C L M"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","772":"J aB K 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID","36":"JD"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","4":"aC ND xC PD","516":"OD"},H:{"132":"lD"},I:{"1":"I qD rD","36":"mD","516":"UC J pD xC","548":"nD oD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 Background-image options",D:true};
Index: node_modules/caniuse-lite/data/features/background-position-x-y.js
===================================================================
--- node_modules/caniuse-lite/data/features/background-position-x-y.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/background-position-x-y.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:7,C:"background-position-x & background-position-y",D:true};
Index: node_modules/caniuse-lite/data/features/background-repeat-round-space.js
===================================================================
--- node_modules/caniuse-lite/data/features/background-repeat-round-space.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/background-repeat-round-space.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E yC","132":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F G N O P ID JD"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"CSS background-repeat round and space",D:true};
Index: node_modules/caniuse-lite/data/features/background-sync.js
===================================================================
--- node_modules/caniuse-lite/data/features/background-sync.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/background-sync.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 3C 4C","16":"0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"Background Sync API",D:true};
Index: node_modules/caniuse-lite/data/features/battery-status.js
===================================================================
--- node_modules/caniuse-lite/data/features/battery-status.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/battery-status.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"pB qB rB sB tB uB vB wB xB","2":"0 1 2 3 4 5 6 7 8 zC UC J aB K D E F yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","132":"9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB","164":"A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB","66":"jB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D","2":"6D"}},B:4,C:"Battery Status API",D:true};
Index: node_modules/caniuse-lite/data/features/beacon.js
===================================================================
--- node_modules/caniuse-lite/data/features/beacon.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/beacon.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Beacon API",D:true};
Index: node_modules/caniuse-lite/data/features/beforeafterprint.js
===================================================================
--- node_modules/caniuse-lite/data/features/beforeafterprint.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/beforeafterprint.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","16":"yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB ID JD KD LD OC wC MD PC"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"16":"A B"},O:{"1":"QC"},P:{"2":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","16":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Printing Events",D:true};
Index: node_modules/caniuse-lite/data/features/bigint.js
===================================================================
--- node_modules/caniuse-lite/data/features/bigint.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/bigint.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 3C 4C","194":"9B AC BC"},D:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC"},E:{"1":"M G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB ID JD KD LD OC wC MD PC"},G:{"1":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"BigInt",D:true};
Index: node_modules/caniuse-lite/data/features/blobbuilder.js
===================================================================
--- node_modules/caniuse-lite/data/features/blobbuilder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/blobbuilder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C","36":"K D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D","36":"E F A B C L M G N O P bB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B C ID JD KD LD OC wC MD"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD"},H:{"2":"lD"},I:{"1":"I","2":"mD nD oD","36":"UC J pD xC qD rD"},J:{"1":"A","2":"D"},K:{"1":"H PC","2":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Blob constructing",D:true};
Index: node_modules/caniuse-lite/data/features/bloburls.js
===================================================================
--- node_modules/caniuse-lite/data/features/bloburls.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/bloburls.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D","33":"9 E F A B C L M G N O P bB AB BB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","33":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC mD nD oD","33":"J pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Blob URLs",D:true};
Index: node_modules/caniuse-lite/data/features/border-image.js
===================================================================
--- node_modules/caniuse-lite/data/features/border-image.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/border-image.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","260":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","804":"J aB K D E F A B C L M 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","260":"xB yB zB 0B 1B","388":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","1412":"9 G N O P bB AB BB CB DB EB FB GB HB IB","1956":"J aB K D E F A B C L M"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","129":"A B C L M G 9C bC OC PC AD BD CD cC","1412":"K D E F 7C 8C","1956":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F ID JD","260":"kB lB mB nB oB","388":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB","1796":"KD LD","1828":"B C OC wC MD PC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","129":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC","1412":"E PD QD RD SD","1956":"aC ND xC OD"},H:{"1828":"lD"},I:{"1":"I","388":"qD rD","1956":"UC J mD nD oD pD xC"},J:{"1412":"A","1924":"D"},K:{"1":"H","2":"A","1828":"B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","260":"sD tD","388":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","260":"5D"}},B:4,C:"CSS3 Border images",D:true};
Index: node_modules/caniuse-lite/data/features/border-radius.js
===================================================================
--- node_modules/caniuse-lite/data/features/border-radius.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/border-radius.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","257":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","289":"UC 3C 4C","292":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"J"},E:{"1":"aB D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"J 5C aC","129":"K 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"aC"},H:{"2":"lD"},I:{"1":"UC J I nD oD pD xC qD rD","33":"mD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","257":"5D"}},B:4,C:"CSS3 Border-radius (rounded corners)",D:true};
Index: node_modules/caniuse-lite/data/features/broadcastchannel.js
===================================================================
--- node_modules/caniuse-lite/data/features/broadcastchannel.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/broadcastchannel.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB ID JD KD LD OC wC MD PC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"BroadcastChannel",D:true};
Index: node_modules/caniuse-lite/data/features/brotli.js
===================================================================
--- node_modules/caniuse-lite/data/features/brotli.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/brotli.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB","194":"vB","257":"wB"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","513":"B C OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC","194":"iB jB"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding",D:true};
Index: node_modules/caniuse-lite/data/features/calc.js
===================================================================
--- node_modules/caniuse-lite/data/features/calc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/calc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","260":"F","516":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","33":"J aB K D E F A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O P","33":"9 bB AB BB CB DB EB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","33":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"PD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","132":"qD rD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"calc() as CSS unit value",D:true};
Index: node_modules/caniuse-lite/data/features/canvas-blending.js
===================================================================
--- node_modules/caniuse-lite/data/features/canvas-blending.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/canvas-blending.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O P bB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G N ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Canvas blend modes",D:true};
Index: node_modules/caniuse-lite/data/features/canvas-text.js
===================================================================
--- node_modules/caniuse-lite/data/features/canvas-text.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/canvas-text.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"yC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","8":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","8":"F ID JD"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","8":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Text API for Canvas",D:true};
Index: node_modules/caniuse-lite/data/features/canvas.js
===================================================================
--- node_modules/caniuse-lite/data/features/canvas.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/canvas.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"yC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","132":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","132":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"260":"lD"},I:{"1":"UC J I pD xC qD rD","132":"mD nD oD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Canvas (basic support)",D:true};
Index: node_modules/caniuse-lite/data/features/ch-unit.js
===================================================================
--- node_modules/caniuse-lite/data/features/ch-unit.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ch-unit.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"ch (character) unit",D:true};
Index: node_modules/caniuse-lite/data/features/chacha20-poly1305.js
===================================================================
--- node_modules/caniuse-lite/data/features/chacha20-poly1305.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/chacha20-poly1305.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB","129":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD","16":"rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS",D:true};
Index: node_modules/caniuse-lite/data/features/channel-messaging.js
===================================================================
--- node_modules/caniuse-lite/data/features/channel-messaging.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/channel-messaging.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB 3C 4C","194":"FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","2":"F ID JD","16":"KD"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Channel messaging",D:true};
Index: node_modules/caniuse-lite/data/features/childnode-remove.js
===================================================================
--- node_modules/caniuse-lite/data/features/childnode-remove.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/childnode-remove.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","16":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"ChildNode.remove()",D:true};
Index: node_modules/caniuse-lite/data/features/classlist.js
===================================================================
--- node_modules/caniuse-lite/data/features/classlist.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/classlist.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"8":"K D E F yC","1924":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"zC UC 3C","516":"DB EB","772":"9 J aB K D E F A B C L M G N O P bB AB BB CB 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","8":"J aB K D","516":"DB EB FB GB","772":"CB","900":"9 E F A B C L M G N O P bB AB BB"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J aB 5C aC","900":"K 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","8":"F B ID JD KD LD OC","900":"C wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"aC ND xC","900":"OD PD"},H:{"900":"lD"},I:{"1":"I qD rD","8":"mD nD oD","900":"UC J pD xC"},J:{"1":"A","900":"D"},K:{"1":"H","8":"A B","900":"C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"900":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"classList (DOMTokenList)",D:true};
Index: node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js
===================================================================
--- node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width",D:true};
Index: node_modules/caniuse-lite/data/features/clipboard.js
===================================================================
--- node_modules/caniuse-lite/data/features/clipboard.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/clipboard.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2436":"K D E F A B yC"},B:{"260":"O P","2436":"C L M G N","8196":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C","772":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB","4100":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"J aB K D E F A B C","2564":"9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB","8196":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","10244":"pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B"},E:{"1":"C L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C aC","2308":"A B bC OC","2820":"J aB K D E F 6C 7C 8C 9C"},F:{"2":"F B ID JD KD LD OC wC MD","16":"C","516":"PC","2564":"9 G N O P bB AB BB CB DB EB FB GB HB IB","8196":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","10244":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB"},G:{"1":"YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","2820":"E OD PD QD RD SD TD UD VD WD XD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC","260":"I","2308":"qD rD"},J:{"2":"D","2308":"A"},K:{"2":"A B C OC wC","16":"PC","8196":"H"},L:{"8196":"I"},M:{"1028":"NC"},N:{"2":"A B"},O:{"8196":"QC"},P:{"2052":"sD tD","2308":"J","8196":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"8196":"3D"},R:{"8196":"4D"},S:{"4100":"5D 6D"}},B:5,C:"Synchronous Clipboard API",D:true};
Index: node_modules/caniuse-lite/data/features/colr-v1.js
===================================================================
--- node_modules/caniuse-lite/data/features/colr-v1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/colr-v1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g"},C:{"1":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g 3C 4C","258":"h i j k l m n","578":"o p"},D:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"16":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"COLR/CPAL(v1) Font Formats",D:true};
Index: node_modules/caniuse-lite/data/features/colr.js
===================================================================
--- node_modules/caniuse-lite/data/features/colr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/colr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","257":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","513":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC","513":"FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},E:{"1":"M G BD CD cC dC QC DD RC eC fC gC hC iC ED kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","129":"B C L OC PC AD","1026":"SC jC"},F:{"1":"0 1 2 3 4 5 6 7 8 f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B ID JD KD LD OC wC MD PC","513":"4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD","1026":"SC jC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"16":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"COLR/CPAL(v0) Font Formats",D:true};
Index: node_modules/caniuse-lite/data/features/comparedocumentposition.js
===================================================================
--- node_modules/caniuse-lite/data/features/comparedocumentposition.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/comparedocumentposition.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","16":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","132":"9 G N O P bB AB BB CB DB EB FB GB HB IB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB K 5C aC","132":"D E F 7C 8C 9C","260":"6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","16":"F B ID JD KD LD OC wC","132":"G N"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC","132":"E ND xC OD PD QD RD SD TD"},H:{"1":"lD"},I:{"1":"I qD rD","16":"mD nD","132":"UC J oD pD xC"},J:{"132":"D A"},K:{"1":"C H PC","16":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Node.compareDocumentPosition()",D:true};
Index: node_modules/caniuse-lite/data/features/console-basic.js
===================================================================
--- node_modules/caniuse-lite/data/features/console-basic.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/console-basic.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D yC","132":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F ID JD KD LD"},G:{"1":"aC ND xC OD","513":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"4097":"lD"},I:{"1025":"UC J I mD nD oD pD xC qD rD"},J:{"258":"D A"},K:{"2":"A","258":"B C OC wC PC","1025":"H"},L:{"1025":"I"},M:{"2049":"NC"},N:{"258":"A B"},O:{"258":"QC"},P:{"1025":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1025":"4D"},S:{"1":"5D 6D"}},B:1,C:"Basic console logging functions",D:true};
Index: node_modules/caniuse-lite/data/features/console-time.js
===================================================================
--- node_modules/caniuse-lite/data/features/console-time.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/console-time.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F ID JD KD LD","16":"B"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"H","16":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"console.time and console.timeEnd",D:true};
Index: node_modules/caniuse-lite/data/features/const.js
===================================================================
--- node_modules/caniuse-lite/data/features/const.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/const.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","2052":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","132":"zC UC J aB K D E F A B C 3C 4C","260":"9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","260":"9 J aB K D E F A B C L M G N O P bB","772":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB","1028":"nB oB pB qB rB sB tB uB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","260":"J aB A 5C aC bC","772":"K D E F 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F ID","132":"B JD KD LD OC wC","644":"C MD PC","772":"9 G N O P bB AB BB CB DB EB FB GB","1028":"HB IB cB dB eB fB gB hB"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","260":"aC ND xC UD VD","772":"E OD PD QD RD SD TD"},H:{"644":"lD"},I:{"1":"I","16":"mD nD","260":"oD","772":"UC J pD xC qD rD"},J:{"772":"D A"},K:{"1":"H","132":"A B OC wC","644":"C PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","1028":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"const",D:true};
Index: node_modules/caniuse-lite/data/features/constraint-validation.js
===================================================================
--- node_modules/caniuse-lite/data/features/constraint-validation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/constraint-validation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","900":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","388":"M G N","900":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","260":"vB wB","388":"IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB","900":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","388":"EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB","900":"9 G N O P bB AB BB CB DB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC","388":"E F 8C 9C","900":"K D 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F B ID JD KD LD OC wC","388":"9 G N O P bB AB BB CB DB EB FB","900":"C MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC","388":"E QD RD SD TD","900":"OD PD"},H:{"2":"lD"},I:{"1":"I","16":"UC mD nD oD","388":"qD rD","900":"J pD xC"},J:{"16":"D","388":"A"},K:{"1":"H","16":"A B OC wC","900":"C PC"},L:{"1":"I"},M:{"1":"NC"},N:{"900":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","388":"5D"}},B:1,C:"Constraint Validation API",D:true};
Index: node_modules/caniuse-lite/data/features/contenteditable.js
===================================================================
--- node_modules/caniuse-lite/data/features/contenteditable.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/contenteditable.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC","4":"UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"D A"},K:{"1":"H PC","2":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"contenteditable attribute (basic support)",D:true};
Index: node_modules/caniuse-lite/data/features/contentsecuritypolicy.js
===================================================================
--- node_modules/caniuse-lite/data/features/contentsecuritypolicy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/contentsecuritypolicy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","129":"9 J aB K D E F A B C L M G N O P bB AB BB"},D:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L","257":"9 M G N O P bB AB BB CB DB"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","257":"K 7C","260":"6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","257":"PD","260":"OD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D","257":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Content Security Policy 1.0",D:true};
Index: node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js
===================================================================
--- node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M","4100":"G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB 3C 4C","132":"dB eB fB gB","260":"hB","516":"iB jB kB lB mB nB oB pB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB","1028":"iB jB kB","2052":"lB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB ID JD KD LD OC wC MD PC","1028":"CB DB EB","2052":"FB"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Content Security Policy Level 2",D:true};
Index: node_modules/caniuse-lite/data/features/cookie-store-api.js
===================================================================
--- node_modules/caniuse-lite/data/features/cookie-store-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/cookie-store-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","194":"Q H R S T U V"},C:{"1":"XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB 3C 4C","322":"PB QB RB SB TB UB VB WB"},D:{"1":"0 1 2 3 4 5 6 7 8 W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B","194":"8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V"},E:{"1":"rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC"},F:{"1":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB ID JD KD LD OC wC MD PC","194":"xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},G:{"1":"rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"Cookie Store API",D:true};
Index: node_modules/caniuse-lite/data/features/cors.js
===================================================================
--- node_modules/caniuse-lite/data/features/cors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/cors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D yC","132":"A","260":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC","1025":"WC 6B 7B 8B 9B AC BC CC DC EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"J aB K D E F A B C"},E:{"2":"5C aC","513":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","644":"J aB 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD OC wC MD"},G:{"513":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","644":"aC ND xC OD"},H:{"2":"lD"},I:{"1":"I qD rD","132":"UC J mD nD oD pD xC"},J:{"1":"A","132":"D"},K:{"1":"C H PC","2":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","132":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Cross-Origin Resource Sharing",D:true};
Index: node_modules/caniuse-lite/data/features/createimagebitmap.js
===================================================================
--- node_modules/caniuse-lite/data/features/createimagebitmap.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/createimagebitmap.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB 3C 4C","1028":"c d e f g","3076":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b","8193":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","132":"wB xB","260":"yB zB","516":"0B 1B 2B 3B 4B"},E:{"1":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD BD","4100":"G CD cC dC QC DD RC eC fC gC hC iC ED"},F:{"1":"0 1 2 3 4 5 6 7 8 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB ID JD KD LD OC wC MD PC","132":"jB kB","260":"lB mB","516":"nB oB pB qB rB"},G:{"1":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD","4100":"gD cC dC QC hD RC eC fC gC hC iC iD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"8193":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","16":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"3076":"5D 6D"}},B:1,C:"createImageBitmap",D:true};
Index: node_modules/caniuse-lite/data/features/credential-management.js
===================================================================
--- node_modules/caniuse-lite/data/features/credential-management.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/credential-management.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB","66":"uB vB wB","129":"xB yB zB 0B 1B 2B"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB ID JD KD LD OC wC MD PC"},G:{"1":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"Credential Management API",D:true};
Index: node_modules/caniuse-lite/data/features/cross-document-view-transitions.js
===================================================================
--- node_modules/caniuse-lite/data/features/cross-document-view-transitions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/cross-document-view-transitions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB 3C 4C","194":"I","260":"YC ZC NC 0C 1C 2C"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC"},F:{"1":"0 1 2 3 4 5 6 7 8 v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u ID JD KD LD OC wC MD PC"},G:{"1":"pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"260":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"View Transitions (cross-document)",D:true};
Index: node_modules/caniuse-lite/data/features/cryptography.js
===================================================================
--- node_modules/caniuse-lite/data/features/cryptography.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/cryptography.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E F A","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","513":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB 3C 4C","66":"eB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","8":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J aB K D 5C aC 6C 7C","289":"E F A 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","8":"9 F B C G N O P bB AB BB CB ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"aC ND xC OD PD QD","289":"E RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","8":"UC J mD nD oD pD xC qD rD"},J:{"8":"D A"},K:{"1":"H","8":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"8":"A","164":"B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Web Cryptography",D:true};
Index: node_modules/caniuse-lite/data/features/css-all.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-all.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-all.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB ID JD KD LD OC wC MD PC"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD"},H:{"2":"lD"},I:{"1":"I rD","2":"UC J mD nD oD pD xC qD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS all property",D:true};
Index: node_modules/caniuse-lite/data/features/css-anchor-positioning.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-anchor-positioning.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-anchor-positioning.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"0 1 2 3 4 5 6 7"},C:{"1":"0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC 3C 4C","322":"ZC NC"},D:{"1":"8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"0 1 2 3 4 5 6 7"},E:{"1":"sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD"},F:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l ID JD KD LD OC wC MD PC","194":"m n o p q r s t"},G:{"1":"sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"GB HB IB","2":"9 J AB BB CB DB EB FB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Anchor Positioning",D:true};
Index: node_modules/caniuse-lite/data/features/css-animation.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-animation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-animation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J 3C 4C","33":"aB K D E F A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC","33":"K D E 6C 7C 8C","292":"J aB"},F:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD OC wC MD","33":"9 C G N O P bB AB BB CB DB EB FB GB HB IB"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"E PD QD RD","164":"aC ND xC OD"},H:{"2":"lD"},I:{"1":"I","33":"J pD xC qD rD","164":"UC mD nD oD"},J:{"33":"D A"},K:{"1":"H PC","2":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"CSS Animation",D:true};
Index: node_modules/caniuse-lite/data/features/css-any-link.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-any-link.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-any-link.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","16":"zC","33":"9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB K 5C aC 6C","33":"D E 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC OD","33":"E PD QD RD"},H:{"2":"lD"},I:{"1":"I","16":"UC J mD nD oD pD xC","33":"qD rD"},J:{"16":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","16":"J","33":"sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","33":"5D"}},B:5,C:"CSS :any-link selector",D:true};
Index: node_modules/caniuse-lite/data/features/css-appearance.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-appearance.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-appearance.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","33":"S","164":"Q H R","388":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","164":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q","676":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"S","164":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","164":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"EC FC GC","164":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","164":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","164":"UC J mD nD oD pD xC qD rD"},J:{"164":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A","388":"B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","164":"J sD tD uD vD wD bC xD yD zD"},Q:{"164":"3D"},R:{"1":"4D"},S:{"1":"6D","164":"5D"}},B:5,C:"CSS Appearance",D:true};
Index: node_modules/caniuse-lite/data/features/css-at-counter-style.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-at-counter-style.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-at-counter-style.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z","132":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB 3C 4C","132":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z","132":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED","4":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC ID JD KD LD OC wC MD PC","132":"0 1 2 3 4 5 6 7 8 LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD","4":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","132":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","132":"H"},L:{"132":"I"},M:{"132":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"J sD tD uD vD wD bC xD yD zD 0D 1D","132":"9 AB BB CB DB EB FB GB HB IB RC SC TC 2D"},Q:{"2":"3D"},R:{"132":"4D"},S:{"132":"5D 6D"}},B:4,C:"CSS Counter Styles",D:true};
Index: node_modules/caniuse-lite/data/features/css-autofill.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-autofill.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-autofill.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","33":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U 3C 4C"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"0 1 2 3 4 5 6 7 8 f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"HD","33":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD BD"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD"},P:{"1":"AB BB CB DB EB FB GB HB IB","33":"9 J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},I:{"1":"I","2":"UC J mD nD oD pD xC","33":"qD rD"}},B:6,C:":autofill CSS pseudo-class",D:undefined};
Index: node_modules/caniuse-lite/data/features/css-backdrop-filter.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-backdrop-filter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-backdrop-filter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N","257":"O P"},C:{"1":"0 1 2 3 4 5 6 7 8 m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC 3C 4C","578":"EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l"},D:{"1":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB","194":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},E:{"1":"TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C","33":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD"},F:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB ID JD KD LD OC wC MD PC","194":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B"},G:{"1":"TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD","33":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB yD zD 0D 1D RC SC TC 2D","2":"J","194":"sD tD uD vD wD bC xD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"CSS Backdrop Filter",D:true};
Index: node_modules/caniuse-lite/data/features/css-background-offsets.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-background-offsets.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-background-offsets.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS background-position edge offsets",D:true};
Index: node_modules/caniuse-lite/data/features/css-backgroundblendmode.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-backgroundblendmode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-backgroundblendmode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB","260":"sB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C","132":"E F A 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB ID JD KD LD OC wC MD PC","260":"fB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","132":"E RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS background-blend-mode",D:true};
Index: node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","164":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB"},C:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB 3C 4C"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB","164":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB"},E:{"2":"J aB K 5C aC 6C","164":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 z","2":"F ID JD KD LD","129":"B C OC wC MD PC","164":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y"},G:{"2":"aC ND xC OD PD","164":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"132":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","164":"qD rD"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C OC wC PC","164":"H"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"164":"QC"},P:{"164":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"164":"3D"},R:{"164":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS box-decoration-break",D:true};
Index: node_modules/caniuse-lite/data/features/css-boxshadow.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-boxshadow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-boxshadow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","33":"3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"J aB K D E F"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"aB","164":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"ND xC","164":"aC"},H:{"2":"lD"},I:{"1":"J I pD xC qD rD","164":"UC mD nD oD"},J:{"1":"A","33":"D"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 Box-shadow",D:true};
Index: node_modules/caniuse-lite/data/features/css-canvas.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-canvas.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-canvas.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},E:{"2":"5C aC","33":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB"},G:{"33":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"I","33":"UC J mD nD oD pD xC qD rD"},J:{"33":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","33":"J"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"CSS Canvas Drawings",D:true};
Index: node_modules/caniuse-lite/data/features/css-caret-color.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-caret-color.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-caret-color.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:2,C:"CSS caret-color",D:true};
Index: node_modules/caniuse-lite/data/features/css-cascade-layers.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-cascade-layers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-cascade-layers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e","322":"f g h"},C:{"1":"0 1 2 3 4 5 6 7 8 g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c 3C 4C","194":"d e f"},D:{"1":"0 1 2 3 4 5 6 7 8 i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e","322":"f g h"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U ID JD KD LD OC wC MD PC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:4,C:"CSS Cascade Layers",D:true};
Index: node_modules/caniuse-lite/data/features/css-cascade-scope.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-cascade-scope.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-cascade-scope.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"1 2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 n o p q r s t u v w x y z"},C:{"1":"NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC 3C 4C"},D:{"1":"1 2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 n o p q r s t u v w x y z"},E:{"1":"mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC"},F:{"1":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y ID JD KD LD OC wC MD PC","194":"Z a b c d e f g h i j k l m n o"},G:{"1":"mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"EB FB GB HB IB","2":"9 J AB BB CB DB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"Scoped Styles: the @scope rule",D:true};
Index: node_modules/caniuse-lite/data/features/css-case-insensitive.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-case-insensitive.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-case-insensitive.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Case-insensitive CSS attribute selectors",D:true};
Index: node_modules/caniuse-lite/data/features/css-clip-path.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-clip-path.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-clip-path.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O","260":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","3138":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 3C 4C","644":"tB uB vB wB xB yB zB"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB","260":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","292":"DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},E:{"2":"J aB K 5C aC 6C 7C","260":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","292":"D E F A B C L 8C 9C bC OC PC"},F:{"2":"F B C ID JD KD LD OC wC MD PC","260":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","292":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"2":"aC ND xC OD PD","260":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","292":"E QD RD SD TD UD VD WD XD YD ZD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC","260":"I","292":"qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","260":"H"},L:{"260":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"260":"QC"},P:{"260":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","292":"J sD"},Q:{"260":"3D"},R:{"260":"4D"},S:{"1":"6D","644":"5D"}},B:4,C:"CSS clip-path property (for HTML)",D:true};
Index: node_modules/caniuse-lite/data/features/css-color-adjust.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-color-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-color-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB 3C 4C"},D:{"16":"J aB K D E F A B C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","33":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC"},F:{"2":"F B C ID JD KD LD OC wC MD PC","33":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"16":"UC J mD nD oD pD xC qD rD","33":"I"},J:{"16":"D A"},K:{"2":"A B C OC wC PC","33":"H"},L:{"16":"I"},M:{"1":"NC"},N:{"16":"A B"},O:{"16":"QC"},P:{"16":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"33":"3D"},R:{"16":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS print-color-adjust",D:true};
Index: node_modules/caniuse-lite/data/features/css-color-function.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-color-function.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-color-function.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q","322":"r s t"},C:{"1":"0 1 2 3 4 5 6 7 8 w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t 3C 4C","578":"u v"},D:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q","322":"r s t"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C","132":"B C L M bC OC PC AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d ID JD KD LD OC wC MD PC","322":"e f g"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD","132":"VD WD XD YD ZD aD bD cD dD eD fD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"BB CB DB EB FB GB HB IB","2":"9 J AB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:4,C:"CSS color() function",D:true};
Index: node_modules/caniuse-lite/data/features/css-conic-gradients.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-conic-gradients.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-conic-gradients.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC 3C 4C","578":"JC KC LC MC Q H R XC"},D:{"1":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B","257":"DC EC","450":"VC 5B WC 6B 7B 8B 9B AC BC CC"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB ID JD KD LD OC wC MD PC","257":"2B 3B","450":"sB tB uB vB wB xB yB zB 0B 1B"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"CSS Conical Gradients",D:true};
Index: node_modules/caniuse-lite/data/features/css-container-queries-style.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-container-queries-style.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-container-queries-style.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","194":"q r s t","260":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","194":"q r s t","260":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD","260":"oC pC qC rC GD sC tC uC vC HD","772":"TC"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b ID JD KD LD OC wC MD PC","194":"c d e f g","260":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD","260":"oC pC qC rC kD sC tC uC vC","772":"TC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","260":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","260":"H"},L:{"260":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","260":"BB CB DB EB FB GB HB IB"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Container Style Queries",D:true};
Index: node_modules/caniuse-lite/data/features/css-container-queries.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-container-queries.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-container-queries.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","516":"o"},C:{"1":"0 1 2 3 4 5 6 7 8 t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a","194":"c d e f g h i j k l m n","450":"b","516":"o"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC ID JD KD LD OC wC MD PC","194":"Q H R XC S T U V W X Y Z","516":"a b c"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Container Queries (Size)",D:true};
Index: node_modules/caniuse-lite/data/features/css-container-query-units.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-container-query-units.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-container-query-units.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b","194":"k l m n","450":"c d e f g h i j"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC ID JD KD LD OC wC MD PC","194":"Q H R XC S T U V W X Y Z"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Container Query Units",D:true};
Index: node_modules/caniuse-lite/data/features/css-containment.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-containment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-containment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB 3C 4C","194":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC"},D:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","66":"xB"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB ID JD KD LD OC wC MD PC","66":"kB lB"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","194":"5D"}},B:2,C:"CSS Containment",D:true};
Index: node_modules/caniuse-lite/data/features/css-content-visibility.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-content-visibility.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-content-visibility.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T"},C:{"1":"8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r 3C 4C","194":"0 1 2 3 4 5 6 7 s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T"},E:{"1":"TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD"},F:{"1":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC ID JD KD LD OC wC MD PC"},G:{"1":"TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS content-visibility",D:true};
Index: node_modules/caniuse-lite/data/features/css-counters.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-counters.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-counters.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","2":"K D yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS Counters",D:true};
Index: node_modules/caniuse-lite/data/features/css-crisp-edges.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-crisp-edges.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-crisp-edges.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K yC","2340":"D E F A B"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C","513":"9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b","545":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB","1025":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","164":"K","4644":"D E F 7C 8C 9C"},F:{"2":"9 F B G N O P bB AB BB CB DB EB FB GB ID JD KD LD OC wC","545":"C MD PC","1025":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","4260":"OD PD","4644":"E QD RD SD TD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","1025":"I"},J:{"2":"D","4260":"A"},K:{"2":"A B OC wC","545":"C PC","1025":"H"},L:{"1025":"I"},M:{"1":"NC"},N:{"2340":"A B"},O:{"1025":"QC"},P:{"1025":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1025":"3D"},R:{"1025":"4D"},S:{"1":"6D","4097":"5D"}},B:4,C:"Crisp edges/pixelated images",D:true};
Index: node_modules/caniuse-lite/data/features/css-cross-fade.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-cross-fade.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-cross-fade.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"J aB K D E F A B C L M G N","33":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","33":"K D E F 6C 7C 8C 9C"},F:{"2":"F B C ID JD KD LD OC wC MD PC","33":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","33":"E OD PD QD RD SD TD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC","33":"I qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","33":"H"},L:{"33":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"33":"QC"},P:{"33":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"33":"3D"},R:{"33":"4D"},S:{"2":"5D 6D"}},B:4,C:"CSS Cross-Fade Function",D:true};
Index: node_modules/caniuse-lite/data/features/css-default-pseudo.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-default-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-default-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","16":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","132":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC","132":"K D E F A 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F B ID JD KD LD OC wC","132":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB","260":"C MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC OD PD","132":"E QD RD SD TD UD"},H:{"260":"lD"},I:{"1":"I","16":"UC mD nD oD","132":"J pD xC qD rD"},J:{"16":"D","132":"A"},K:{"1":"H","16":"A B C OC wC","260":"PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","132":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:":default CSS pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-descendant-gtgt.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-descendant-gtgt.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-descendant-gtgt.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"Q"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"B","2":"J aB K D E F A C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Explicit descendant combinator >>",D:true};
Index: node_modules/caniuse-lite/data/features/css-deviceadaptation.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-deviceadaptation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-deviceadaptation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","164":"A B"},B:{"66":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","164":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB","66":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB ID JD KD LD OC wC MD PC","66":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"292":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A H","292":"B C OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"164":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"66":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Device Adaptation",D:true};
Index: node_modules/caniuse-lite/data/features/css-dir-pseudo.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-dir-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-dir-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","194":"0 1 2 o p q r s t u v w x y z"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N 3C 4C","33":"9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},D:{"1":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z","194":"0 1 2 a b c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z ID JD KD LD OC wC MD PC","194":"a b c d e f g h i j k l m n o"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"EB FB GB HB IB","2":"9 J AB BB CB DB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"6D","33":"5D"}},B:5,C:":dir() CSS pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-display-contents.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-display-contents.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-display-contents.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","132":"Q H R S T U V W X","260":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB 3C 4C","132":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC","260":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","132":"9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X","194":"4B VC 5B WC 6B 7B 8B","260":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC","132":"C L M G OC PC AD BD CD cC dC QC DD","260":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","772":"RC eC fC gC hC iC ED"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB ID JD KD LD OC wC MD PC","132":"yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC","260":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD","132":"XD YD ZD aD bD cD","260":"dD eD fD gD cC dC QC hD","516":"eC fC gC hC iC iD","772":"RC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","260":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","260":"H"},L:{"260":"I"},M:{"260":"NC"},N:{"2":"A B"},O:{"132":"QC"},P:{"2":"J sD tD uD vD","132":"wD bC xD yD zD 0D","260":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D"},Q:{"132":"3D"},R:{"260":"4D"},S:{"132":"5D","260":"6D"}},B:4,C:"CSS display: contents",D:true};
Index: node_modules/caniuse-lite/data/features/css-element-function.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-element-function.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-element-function.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"33":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","164":"zC UC 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"33":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"33":"5D 6D"}},B:5,C:"CSS element() function",D:true};
Index: node_modules/caniuse-lite/data/features/css-env-function.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-env-function.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-env-function.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","132":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD","132":"WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:7,C:"CSS Environment Variables env()",D:true};
Index: node_modules/caniuse-lite/data/features/css-exclusions.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-exclusions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-exclusions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","33":"A B"},B:{"2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","33":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"33":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Exclusions Level 1",D:true};
Index: node_modules/caniuse-lite/data/features/css-featurequeries.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-featurequeries.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-featurequeries.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B C ID JD KD LD OC wC MD"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS Feature Queries",D:true};
Index: node_modules/caniuse-lite/data/features/css-file-selector-button.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-file-selector-button.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-file-selector-button.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","33":"C L M G N O P Q H R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R 3C 4C"},M:{"1":"NC"},A:{"2":"K D E F yC","33":"A B"},F:{"1":"0 1 2 3 4 5 6 7 8 JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"HD","33":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D","33":"J sD tD uD vD wD bC xD yD zD 0D"},I:{"1":"I","2":"UC J mD nD oD pD xC","33":"qD rD"}},B:6,C:"::file-selector-button CSS pseudo-element",D:undefined};
Index: node_modules/caniuse-lite/data/features/css-filter-function.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-filter-function.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-filter-function.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD","33":"SD TD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS filter() function",D:true};
Index: node_modules/caniuse-lite/data/features/css-filters.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-filters.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-filters.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","1028":"L M G N O P","1346":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C","196":"gB","516":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O","33":"9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","33":"K D E F 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"E PD QD RD SD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","33":"qD rD"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","33":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"CSS Filter Effects",D:true};
Index: node_modules/caniuse-lite/data/features/css-first-letter.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-first-letter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-first-letter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","16":"yC","516":"E","1540":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","132":"UC","260":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"aB K D E","132":"J"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"aB 5C","132":"J aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","16":"F ID","260":"B JD KD LD OC wC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC"},H:{"1":"lD"},I:{"1":"UC J I pD xC qD rD","16":"mD nD","132":"oD"},J:{"1":"D A"},K:{"1":"C H PC","260":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"::first-letter CSS pseudo-element selector",D:true};
Index: node_modules/caniuse-lite/data/features/css-first-line.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-first-line.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-first-line.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","132":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS first-line pseudo-element",D:true};
Index: node_modules/caniuse-lite/data/features/css-fixed.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-fixed.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-fixed.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"D E F A B","2":"yC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","1025":"9C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","132":"OD PD QD"},H:{"2":"lD"},I:{"1":"UC I qD rD","260":"mD nD oD","513":"J pD xC"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS position:fixed",D:true};
Index: node_modules/caniuse-lite/data/features/css-focus-visible.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-focus-visible.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-focus-visible.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","328":"Q H R S T U"},C:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","161":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T"},D:{"1":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC","328":"BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD BD","578":"G CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B ID JD KD LD OC wC MD PC","328":"AC BC CC DC EC FC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD","578":"gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"161":"5D 6D"}},B:5,C:":focus-visible CSS pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-focus-within.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-focus-within.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-focus-within.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B","194":"VC"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB ID JD KD LD OC wC MD PC","194":"sB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:7,C:":focus-within CSS pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-font-palette.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-font-palette.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-font-palette.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V ID JD KD LD OC wC MD PC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 2D","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS font-palette",D:true};
Index: node_modules/caniuse-lite/data/features/css-font-rendering-controls.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-font-rendering-controls.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-font-rendering-controls.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB 3C 4C","194":"sB tB uB vB wB xB yB zB 0B 1B 2B 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB","66":"vB wB xB yB zB 0B 1B 2B 3B 4B VC"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC","66":"iB jB kB lB mB nB oB pB qB rB sB"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","66":"sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","194":"5D"}},B:5,C:"CSS font-display",D:true};
Index: node_modules/caniuse-lite/data/features/css-font-stretch.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-font-stretch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-font-stretch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"CSS font-stretch",D:true};
Index: node_modules/caniuse-lite/data/features/css-gencontent.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-gencontent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-gencontent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D yC","132":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS Generated content for pseudo-elements",D:true};
Index: node_modules/caniuse-lite/data/features/css-gradients.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-gradients.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-gradients.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C","260":"9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB","292":"J aB K D E F A B C L M G 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 A B C L M G N O P bB AB BB CB DB EB","548":"J aB K D E F"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC","260":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC","292":"K 6C","804":"J aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD","33":"C MD","164":"OC wC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","260":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC","292":"OD PD","804":"aC ND xC"},H:{"2":"lD"},I:{"1":"I qD rD","33":"J pD xC","548":"UC mD nD oD"},J:{"1":"A","548":"D"},K:{"1":"H PC","2":"A B","33":"C","164":"OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS Gradients",D:true};
Index: node_modules/caniuse-lite/data/features/css-grid-animation.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-grid-animation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-grid-animation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p"},C:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b ID JD KD LD OC wC MD PC"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"AB BB CB DB EB FB GB HB IB","2":"9 J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"CSS Grid animation",D:false};
Index: node_modules/caniuse-lite/data/features/css-grid.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-grid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-grid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","8":"F","292":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","292":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O P 3C 4C","8":"9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB","584":"mB nB oB pB qB rB sB tB uB vB wB xB","1025":"yB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB","8":"EB FB GB HB","200":"IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B","1025":"3B"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","8":"K D E F A 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB ID JD KD LD OC wC MD PC","200":"HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","8":"E PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD","8":"xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"292":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"sD","8":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS Grid Layout (level 1)",D:true};
Index: node_modules/caniuse-lite/data/features/css-hanging-punctuation.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-hanging-punctuation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-hanging-punctuation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F 5C aC 6C 7C 8C 9C","132":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD","132":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:4,C:"CSS hanging-punctuation",D:true};
Index: node_modules/caniuse-lite/data/features/css-has.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-has.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-has.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l 3C 4C","322":"0 1 2 3 m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j","194":"k l m n"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z ID JD KD LD OC wC MD PC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:":has() CSS relational pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-hyphens.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-hyphens.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-hyphens.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","33":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","33":"C L M G N O P","132":"Q H R S T U V W","260":"X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C","33":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B","132":"1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W"},E:{"1":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","33":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED"},F:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB ID JD KD LD OC wC MD PC","132":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z"},G:{"1":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND","33":"E xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","132":"sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS Hyphenation",D:true};
Index: node_modules/caniuse-lite/data/features/css-if.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-if.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-if.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"UB VB WB XB YB ZB I","2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"UB VB WB XB YB ZB I YC ZC NC","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"4","2":"0 1 2 3 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS if() function",D:true};
Index: node_modules/caniuse-lite/data/features/css-image-orientation.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-image-orientation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-image-orientation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H","257":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H","257":"R S T U V W X"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC ID JD KD LD OC wC MD PC","257":"CC DC EC FC GC HC IC JC KC"},G:{"1":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD","257":"zD 0D"},Q:{"2":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 image-orientation",D:true};
Index: node_modules/caniuse-lite/data/features/css-image-set.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-image-set.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-image-set.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","164":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v","2049":"w"},C:{"1":"0 1 2 3 4 5 6 7 8 w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U 3C 4C","66":"V W","2305":"Y Z a b c d e f g h i j k l m n o p q r s t u v","2820":"X"},D:{"1":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB","164":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v","2049":"w"},E:{"1":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","132":"A B C L bC OC PC AD","164":"K D E F 7C 8C 9C","1540":"M G BD CD cC dC QC DD RC eC fC gC hC iC ED"},F:{"1":"0 1 2 3 4 5 6 7 8 j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","164":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h","2049":"i"},G:{"1":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","132":"UD VD WD XD YD ZD aD bD cD dD","164":"E PD QD RD SD TD","1540":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","164":"qD rD"},J:{"2":"D","164":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"164":"QC"},P:{"1":"CB DB EB FB GB HB IB","164":"9 J AB BB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"164":"3D"},R:{"164":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS image-set",D:true};
Index: node_modules/caniuse-lite/data/features/css-in-out-of-range.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-in-out-of-range.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-in-out-of-range.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C","260":"L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C","516":"IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB"},D:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J","16":"aB K D E F A B C L M","260":"yB","772":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","16":"aB","772":"K D E F A 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F ID","260":"B C lB JD KD LD OC wC MD PC","772":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","772":"E OD PD QD RD SD TD UD"},H:{"132":"lD"},I:{"1":"I","2":"UC mD nD oD","260":"J pD xC qD rD"},J:{"2":"D","260":"A"},K:{"1":"H","260":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","260":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","516":"5D"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes",D:true};
Index: node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","132":"A B","388":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","16":"zC UC 3C 4C","132":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","388":"J aB"},D:{"1":"0 1 2 3 4 5 6 7 8 lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","132":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB K 5C aC","132":"D E F A 7C 8C 9C","388":"6C"},F:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F B ID JD KD LD OC wC","132":"9 G N O P bB AB BB CB DB EB","516":"C MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC OD PD","132":"E QD RD SD TD UD"},H:{"516":"lD"},I:{"1":"I","16":"UC mD nD oD rD","132":"qD","388":"J pD xC"},J:{"16":"D","132":"A"},K:{"1":"H","16":"A B C OC wC","516":"PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","132":"5D"}},B:5,C:":indeterminate CSS pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-initial-letter.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-initial-letter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-initial-letter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"0 1 2 3 4 5 6 7 8 t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"0 1 2 3 4 5 6 7 8 t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E 5C aC 6C 7C 8C","260":"F","292":"rC GD sC tC uC vC HD","420":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g ID JD KD LD OC wC MD PC","260":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD","292":"rC kD sC tC uC vC","420":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","260":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","260":"H"},L:{"260":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","260":"AB BB CB DB EB FB GB HB IB"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Initial Letter",D:true};
Index: node_modules/caniuse-lite/data/features/css-initial-value.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-initial-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-initial-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","33":"J aB K D E F A B C L M G N O P 3C 4C","164":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS initial value",D:true};
Index: node_modules/caniuse-lite/data/features/css-lch-lab.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-lch-lab.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-lch-lab.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","322":"t"},C:{"1":"0 1 2 3 4 5 6 7 8 w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t 3C 4C","194":"u v"},D:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","322":"t"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g ID JD KD LD OC wC MD PC"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"BB CB DB EB FB GB HB IB","2":"9 J AB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:4,C:"LCH and Lab color values",D:true};
Index: node_modules/caniuse-lite/data/features/css-letter-spacing.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-letter-spacing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-letter-spacing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","16":"yC","132":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C","132":"J aB K aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F ID","132":"B C G N JD KD LD OC wC MD PC"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"2":"lD"},I:{"1":"I qD rD","16":"mD nD","132":"UC J oD pD xC"},J:{"132":"D A"},K:{"1":"H","132":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"letter-spacing CSS property",D:true};
Index: node_modules/caniuse-lite/data/features/css-line-clamp.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-line-clamp.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-line-clamp.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N","33":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC 3C 4C","33":"0 1 2 3 4 5 6 7 8 CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"16":"J aB K D E F A B C L","33":"0 1 2 3 4 5 6 7 8 9 M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J 5C aC","33":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","33":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"aC ND xC","33":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"16":"mD nD","33":"UC J I oD pD xC qD rD"},J:{"33":"D A"},K:{"2":"A B C OC wC PC","33":"H"},L:{"33":"I"},M:{"33":"NC"},N:{"2":"A B"},O:{"33":"QC"},P:{"33":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"33":"3D"},R:{"33":"4D"},S:{"2":"5D","33":"6D"}},B:5,C:"CSS line-clamp",D:true};
Index: node_modules/caniuse-lite/data/features/css-logical-props.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-logical-props.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-logical-props.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","1028":"W X","1540":"Q H R S T U V"},C:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC","164":"9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB 3C 4C","1540":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","292":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC","1028":"W X","1540":"DC EC FC GC HC IC JC KC LC MC Q H R S T U V"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","292":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC","1540":"L M PC AD","3076":"BD"},F:{"1":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","292":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B","1028":"IC JC","1540":"2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","292":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD","1540":"ZD aD bD cD dD eD","3076":"fD"},H:{"2":"lD"},I:{"1":"I","292":"UC J mD nD oD pD xC qD rD"},J:{"292":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D","292":"J sD tD uD vD wD","1540":"bC xD yD zD 0D"},Q:{"1540":"3D"},R:{"1":"4D"},S:{"1":"6D","1540":"5D"}},B:5,C:"CSS Logical Properties",D:true};
Index: node_modules/caniuse-lite/data/features/css-marker-pseudo.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-marker-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-marker-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U"},C:{"1":"0 1 2 3 4 5 6 7 8 CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U"},E:{"1":"HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC","132":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC"},F:{"1":"0 1 2 3 4 5 6 7 8 GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD","132":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"CSS ::marker pseudo-element",D:true};
Index: node_modules/caniuse-lite/data/features/css-masks.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-masks.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-masks.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N","164":"0 1 2 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","3138":"O","12292":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","260":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 3C 4C"},D:{"1":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","164":"0 1 2 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC","164":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","164":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","164":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","164":"qD rD","676":"UC J mD nD oD pD xC"},J:{"164":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"164":"QC"},P:{"1":"EB FB GB HB IB","164":"9 J AB BB CB DB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"164":"3D"},R:{"164":"4D"},S:{"1":"6D","260":"5D"}},B:4,C:"CSS Masks",D:true};
Index: node_modules/caniuse-lite/data/features/css-matches-pseudo.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-matches-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-matches-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","1220":"Q H R S T U V W"},C:{"1":"0 1 2 3 4 5 6 7 8 MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","548":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC"},D:{"1":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","164":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B","196":"9B AC BC","1220":"CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W"},E:{"1":"M G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","16":"aB","164":"K D E 6C 7C 8C","260":"F A B C L 9C bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","164":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","196":"yB zB 0B","1220":"1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},G:{"1":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC OD PD","164":"E QD RD","260":"SD TD UD VD WD XD YD ZD aD bD cD dD"},H:{"2":"lD"},I:{"1":"I","16":"UC mD nD oD","164":"J pD xC qD rD"},J:{"16":"D","164":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D","164":"J sD tD uD vD wD bC xD yD zD 0D"},Q:{"1220":"3D"},R:{"1":"4D"},S:{"1":"6D","548":"5D"}},B:5,C:":is() CSS pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-math-functions.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-math-functions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-math-functions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC","132":"C L OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B ID JD KD LD OC wC MD PC"},G:{"1":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD","132":"XD YD ZD aD bD cD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"CSS math functions min(), max() and clamp()",D:true};
Index: node_modules/caniuse-lite/data/features/css-media-interaction.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-media-interaction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-media-interaction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"Media Queries: interaction media features",D:true};
Index: node_modules/caniuse-lite/data/features/css-media-range-syntax.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-media-range-syntax.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-media-range-syntax.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z ID JD KD LD OC wC MD PC"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"Media Queries: Range Syntax",D:true};
Index: node_modules/caniuse-lite/data/features/css-media-resolution.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-media-resolution.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-media-resolution.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","1028":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","260":"J aB K D E F A B C L M G 3C 4C","1028":"9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC"},D:{"1":"0 1 2 3 4 5 6 7 8 CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","548":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB","1028":"IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC","548":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F","548":"B C ID JD KD LD OC wC MD","1028":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC","548":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"132":"lD"},I:{"1":"I","16":"mD nD","548":"UC J oD pD xC","1028":"qD rD"},J:{"548":"D A"},K:{"1":"H PC","548":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","1028":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Media Queries: resolution feature",D:true};
Index: node_modules/caniuse-lite/data/features/css-media-scripting.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-media-scripting.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-media-scripting.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"Media Queries: scripting media feature",D:false};
Index: node_modules/caniuse-lite/data/features/css-mediaqueries.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-mediaqueries.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-mediaqueries.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"8":"K D E yC","129":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","129":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","129":"J aB K 6C","388":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","129":"aC ND xC OD PD"},H:{"1":"lD"},I:{"1":"I qD rD","129":"UC J mD nD oD pD xC"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"129":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS3 Media Queries",D:true};
Index: node_modules/caniuse-lite/data/features/css-mixblendmode.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-mixblendmode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-mixblendmode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB","194":"IB cB dB eB fB gB hB iB jB kB lB mB"},E:{"2":"J aB K D 5C aC 6C 7C","260":"E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB ID JD KD LD OC wC MD PC"},G:{"2":"aC ND xC OD PD QD","260":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Blending of HTML/SVG elements",D:true};
Index: node_modules/caniuse-lite/data/features/css-module-scripts.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-module-scripts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-module-scripts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b","132":"0 1 2 3 4 5 c d e f g h i j k l m n o p q r s t u v w x y z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b","132":"0 1 2 3 4 5 c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"194":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:1,C:"CSS Module Scripts",D:false};
Index: node_modules/caniuse-lite/data/features/css-motion-paths.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-motion-paths.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-motion-paths.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB","194":"pB qB rB"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB ID JD KD LD OC wC MD PC","194":"cB dB eB"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"CSS Motion Path",D:true};
Index: node_modules/caniuse-lite/data/features/css-namespaces.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-namespaces.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-namespaces.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS namespaces",D:true};
Index: node_modules/caniuse-lite/data/features/css-nesting.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-nesting.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-nesting.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r","194":"s t u","516":"0 1 2 v w x y z"},C:{"1":"0 1 2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x 3C 4C","322":"y z"},D:{"1":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r","194":"s t u","516":"0 1 2 v w x y z"},E:{"1":"kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC","516":"iC ED SC jC"},F:{"1":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d ID JD KD LD OC wC MD PC","194":"e f g","516":"h i j k l m n o"},G:{"1":"kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC","516":"iC iD SC jC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"EB FB GB HB IB","2":"9 J AB BB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","516":"CB DB"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Nesting",D:true};
Index: node_modules/caniuse-lite/data/features/css-not-sel-list.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-not-sel-list.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-not-sel-list.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P H R S T U V W","16":"Q"},C:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D"},Q:{"2":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"selector list argument of :not()",D:true};
Index: node_modules/caniuse-lite/data/features/css-nth-child-of.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-nth-child-of.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-nth-child-of.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t"},C:{"1":"0 1 2 3 4 5 6 7 8 w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"BB CB DB EB FB GB HB IB","2":"9 J AB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes",D:true};
Index: node_modules/caniuse-lite/data/features/css-opacity.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-opacity.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-opacity.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","4":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS3 Opacity",D:true};
Index: node_modules/caniuse-lite/data/features/css-optional-pseudo.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-optional-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-optional-pseudo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F ID","132":"B C JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"132":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"H","132":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:":optional CSS pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-overflow-anchor.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-overflow-anchor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-overflow-anchor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)",D:true};
Index: node_modules/caniuse-lite/data/features/css-overflow-overlay.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-overflow-overlay.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-overflow-overlay.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w","2":"C L M G N O P","130":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w","16":"J aB K D E F A B C L M","130":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B 6C 7C 8C 9C bC OC","16":"5C aC","130":"C L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i","2":"F B C ID JD KD LD OC wC MD PC","130":"0 1 2 3 4 5 6 7 8 j k l m n o p q r s t u v w x y z"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD","16":"aC","130":"YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J mD nD oD pD xC qD rD","130":"I"},J:{"16":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"130":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"CSS overflow: overlay",D:true};
Index: node_modules/caniuse-lite/data/features/css-overflow.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-overflow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-overflow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"388":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"Q H R S T U V W X Y","388":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","260":"WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H","388":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","260":"CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y","388":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","260":"M G AD BD CD cC dC QC DD","388":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","260":"1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC","388":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B ID JD KD LD OC wC MD PC"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","260":"dD eD fD gD cC dC QC hD","388":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD"},H:{"388":"lD"},I:{"1":"I","388":"UC J mD nD oD pD xC qD rD"},J:{"388":"D A"},K:{"1":"H","388":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"388":"A B"},O:{"388":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D","388":"J sD tD uD vD wD bC xD yD zD 0D"},Q:{"388":"3D"},R:{"1":"4D"},S:{"1":"6D","388":"5D"}},B:5,C:"CSS overflow property",D:true};
Index: node_modules/caniuse-lite/data/features/css-overscroll-behavior.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-overscroll-behavior.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-overscroll-behavior.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C L M G N O","516":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B","260":"7B 8B"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD","1090":"G BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB ID JD KD LD OC wC MD PC","260":"wB xB"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD","1090":"fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"CSS overscroll-behavior",D:true};
Index: node_modules/caniuse-lite/data/features/css-page-break.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-page-break.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-page-break.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"388":"A B","900":"K D E F yC"},B:{"388":"C L M G N O P","641":"0 1 2 3 4 5 6 7 8 r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","900":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},C:{"772":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","900":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 3C 4C"},D:{"641":"0 1 2 3 4 5 6 7 8 r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","900":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},E:{"772":"A","900":"J aB K D E F B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"16":"F ID","129":"B C JD KD LD OC wC MD PC","641":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z","900":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c"},G:{"900":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"129":"lD"},I:{"641":"I","900":"UC J mD nD oD pD xC qD rD"},J:{"900":"D A"},K:{"129":"A B C OC wC PC","641":"H"},L:{"900":"I"},M:{"772":"NC"},N:{"388":"A B"},O:{"900":"QC"},P:{"641":"AB BB CB DB EB FB GB HB IB","900":"9 J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"900":"3D"},R:{"900":"4D"},S:{"772":"6D","900":"5D"}},B:2,C:"CSS page-break properties",D:true};
Index: node_modules/caniuse-lite/data/features/css-paged-media.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-paged-media.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-paged-media.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D yC","132":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O P 3C 4C","132":"9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","132":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC"},H:{"16":"lD"},I:{"16":"UC J I mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"1":"H","16":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"258":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"132":"5D 6D"}},B:5,C:"CSS Paged Media (@page)",D:true};
Index: node_modules/caniuse-lite/data/features/css-paint-api.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-paint-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-paint-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B"},E:{"2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC","194":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:4,C:"CSS Painting API",D:true};
Index: node_modules/caniuse-lite/data/features/css-placeholder-shown.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-placeholder-shown.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-placeholder-shown.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","292":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","164":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},D:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","164":"5D"}},B:5,C:":placeholder-shown CSS pseudo-class",D:true};
Index: node_modules/caniuse-lite/data/features/css-placeholder.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-placeholder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-placeholder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","36":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","33":"9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","130":"zC UC J aB K D E F A B C L M G N O P 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","36":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","36":"aB K D E F A 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","36":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND","36":"E xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","36":"UC J mD nD oD pD xC qD rD"},J:{"36":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"36":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","36":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","33":"5D"}},B:5,C:"::placeholder CSS pseudo-element",D:true};
Index: node_modules/caniuse-lite/data/features/css-print-color-adjust.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-print-color-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-print-color-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N","33":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB"},L:{"1":"I"},B:{"1":"TB UB VB WB XB YB ZB I","2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB"},C:{"1":"0 1 2 3 4 5 6 7 8 g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB 3C 4C","33":"uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"4 5 6 7 8","2":"F B C ID JD KD LD OC wC MD PC","33":"0 1 2 3 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},K:{"2":"A B C OC wC PC","33":"H"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"J aB 5C aC 6C HD","33":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},P:{"1":"IB","33":"9 J AB BB CB DB EB FB GB HB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},I:{"1":"I","2":"UC J mD nD oD pD xC","33":"qD rD"}},B:6,C:"print-color-adjust property",D:undefined};
Index: node_modules/caniuse-lite/data/features/css-read-only-write.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-read-only-write.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-read-only-write.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","16":"zC","33":"9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","132":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C aC","132":"J aB K D E 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F B ID JD KD LD OC","132":"9 C G N O P bB AB BB wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND","132":"E xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","16":"mD nD","132":"UC J oD pD xC qD rD"},J:{"1":"A","132":"D"},K:{"1":"H","2":"A B OC","132":"C wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","33":"5D"}},B:1,C:"CSS :read-only and :read-write selectors",D:true};
Index: node_modules/caniuse-lite/data/features/css-rebeccapurple.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-rebeccapurple.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-rebeccapurple.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C","16":"7C"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB ID JD KD LD OC wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Rebeccapurple color",D:true};
Index: node_modules/caniuse-lite/data/features/css-reflections.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-reflections.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-reflections.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"33":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"5C aC","33":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","33":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"33":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"33":"UC J I mD nD oD pD xC qD rD"},J:{"33":"D A"},K:{"2":"A B C OC wC PC","33":"H"},L:{"33":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"33":"QC"},P:{"33":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"33":"3D"},R:{"33":"4D"},S:{"2":"5D 6D"}},B:7,C:"CSS Reflections",D:true};
Index: node_modules/caniuse-lite/data/features/css-regions.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-regions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-regions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","420":"A B"},B:{"2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","420":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 J aB K D E F A B C L M hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","36":"G N O P","66":"9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB"},E:{"2":"J aB K C L M G 5C aC 6C OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"D E F A B 7C 8C 9C bC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"aC ND xC OD PD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"E QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"420":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Regions",D:true};
Index: node_modules/caniuse-lite/data/features/css-relative-colors.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-relative-colors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-relative-colors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"0 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"1","260":"2 3 4 5 6 7 8 JB KB LB MB NB"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB 3C 4C","260":"LB MB NB OB PB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"0 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"1","260":"2 3 4 5 6 7 8 JB KB LB MB NB"},E:{"1":"TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC","260":"hC iC ED SC jC kC lC mC nC FD"},F:{"1":"0 1 2 3 4 5 6 7 8","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m ID JD KD LD OC wC MD PC","194":"n o","260":"p q r s t u v w x y z"},G:{"1":"TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC","260":"hC iC iD SC jC kC lC mC nC jD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","260":"H"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","260":"EB FB GB HB IB"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Relative color syntax",D:true};
Index: node_modules/caniuse-lite/data/features/css-repeating-gradients.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-repeating-gradients.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-repeating-gradients.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C","33":"J aB K D E F A B C L M G 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F","33":"9 A B C L M G N O P bB AB BB CB DB EB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","33":"K 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD","33":"C MD","36":"OC wC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","33":"OD PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC mD nD oD","33":"J pD xC"},J:{"1":"A","2":"D"},K:{"1":"H PC","2":"A B","33":"C","36":"OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS Repeating Gradients",D:true};
Index: node_modules/caniuse-lite/data/features/css-resize.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-resize.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-resize.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","33":"J"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD","132":"PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:2,C:"CSS resize property",D:true};
Index: node_modules/caniuse-lite/data/features/css-revert-value.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-revert-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-revert-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC ID JD KD LD OC wC MD PC"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"CSS revert value",D:true};
Index: node_modules/caniuse-lite/data/features/css-rrggbbaa.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-rrggbbaa.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-rrggbbaa.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","194":"yB zB 0B 1B 2B 3B 4B VC 5B WC"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB ID JD KD LD OC wC MD PC","194":"lB mB nB oB pB qB rB sB tB uB vB wB xB"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","194":"sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"#rrggbbaa hex color notation",D:true};
Index: node_modules/caniuse-lite/data/features/css-scroll-behavior.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-scroll-behavior.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-scroll-behavior.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB","129":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","450":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC AD","578":"M G BD CD cC"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB ID JD KD LD OC wC MD PC","129":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","450":"HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD","578":"fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"129":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"129":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"CSS Scroll-behavior",D:true};
Index: node_modules/caniuse-lite/data/features/css-scrollbar.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-scrollbar.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-scrollbar.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"132":"K D E F A B yC"},B:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","292":"0 1 2 3 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},C:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 3C 4C","3138":"7B"},D:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","292":"0 1 2 3 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"16":"J aB 5C aC","292":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","292":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p"},G:{"2":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC OD PD","292":"QD","804":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD"},H:{"2":"lD"},I:{"16":"mD nD","292":"UC J I oD pD xC qD rD"},J:{"292":"D A"},K:{"2":"A B C OC wC PC","292":"H"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"292":"QC"},P:{"1":"EB FB GB HB IB","292":"9 J AB BB CB DB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"292":"3D"},R:{"292":"4D"},S:{"2":"5D 6D"}},B:4,C:"CSS scrollbar styling",D:true};
Index: node_modules/caniuse-lite/data/features/css-sel2.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-sel2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-sel2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"D E F A B","2":"yC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS 2.1 selectors",D:true};
Index: node_modules/caniuse-lite/data/features/css-sel3.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-sel3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-sel3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"yC","8":"K","132":"D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS3 selectors",D:true};
Index: node_modules/caniuse-lite/data/features/css-selection.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-selection.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-selection.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","33":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"C H wC PC","16":"A B OC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","33":"5D"}},B:5,C:"::selection CSS pseudo-element",D:true};
Index: node_modules/caniuse-lite/data/features/css-shapes.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-shapes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-shapes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB 3C 4C","322":"xB yB zB 0B 1B 2B 3B 4B VC 5B WC"},D:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB","194":"gB hB iB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C","33":"E F A 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","33":"E RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"CSS Shapes Level 1",D:true};
Index: node_modules/caniuse-lite/data/features/css-snappoints.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-snappoints.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-snappoints.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","6308":"A","6436":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","6436":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB 3C 4C","2052":"lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC"},D:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B","8258":"AC BC CC"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C","3108":"F A 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB ID JD KD LD OC wC MD PC","8258":"0B 1B 2B 3B 4B 5B 6B 7B"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD","3108":"SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2052":"5D"}},B:4,C:"CSS Scroll Snap",D:true};
Index: node_modules/caniuse-lite/data/features/css-sticky.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-sticky.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-sticky.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G","1028":"Q H R S T U V W X Y Z","4100":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB 3C 4C","194":"FB GB HB IB cB dB","516":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","322":"CB DB EB FB GB HB IB cB dB eB fB gB hB iB yB zB 0B 1B","1028":"2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C","33":"E F A B C 8C 9C bC OC PC","2084":"D 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB ID JD KD LD OC wC MD PC","322":"lB mB nB","1028":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"E RD SD TD UD VD WD XD YD ZD","2084":"PD QD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"1028":"3D"},R:{"1":"4D"},S:{"1":"6D","516":"5D"}},B:5,C:"CSS position:sticky",D:true};
Index: node_modules/caniuse-lite/data/features/css-subgrid.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-subgrid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-subgrid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w","194":"x y z"},C:{"1":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w","194":"x y z"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i ID JD KD LD OC wC MD PC","194":"j k l"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"DB EB FB GB HB IB","2":"9 J AB BB CB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"CSS Subgrid",D:true};
Index: node_modules/caniuse-lite/data/features/css-supports-api.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-supports-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-supports-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O P bB 3C 4C","66":"9 AB","260":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB","260":"HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD","132":"PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"132":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC","132":"PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS.supports() API",D:true};
Index: node_modules/caniuse-lite/data/features/css-table.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-table.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-table.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","2":"K D yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","132":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS Table display",D:true};
Index: node_modules/caniuse-lite/data/features/css-text-align-last.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-text-align-last.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-text-align-last.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"132":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","4":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B 3C 4C","33":"9 C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},D:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB","322":"hB iB jB kB lB mB nB oB pB qB rB sB"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB ID JD KD LD OC wC MD PC","578":"BB CB DB EB FB GB HB IB cB dB eB fB"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","33":"5D"}},B:4,C:"CSS3 text-align-last",D:true};
Index: node_modules/caniuse-lite/data/features/css-text-box-trim.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-text-box-trim.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-text-box-trim.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"PB QB RB SB TB UB VB WB XB YB ZB I","2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB","322":"LB MB NB OB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB","322":"LB MB NB OB PB"},E:{"1":"pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC","194":"hC iC ED SC jC kC lC mC nC FD TC oC"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","322":"0 1 2 3 4 5 6 7 8"},G:{"1":"pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC","194":"hC iC iD SC jC kC lC mC nC jD TC oC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Text Box",D:true};
Index: node_modules/caniuse-lite/data/features/css-text-indent.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-text-indent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-text-indent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"132":"K D E F A B yC"},B:{"132":"C L M G N O P","388":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","132":"0 1 2 3 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB","388":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","132":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"132":"9 F B C G N O P bB AB BB CB DB ID JD KD LD OC wC MD PC","388":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"132":"lD"},I:{"132":"UC J mD nD oD pD xC qD rD","388":"I"},J:{"132":"D A"},K:{"132":"A B C OC wC PC","388":"H"},L:{"388":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"388":"QC"},P:{"132":"J","388":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"388":"3D"},R:{"388":"4D"},S:{"132":"5D 6D"}},B:4,C:"CSS text-indent",D:true};
Index: node_modules/caniuse-lite/data/features/css-text-justify.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-text-justify.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-text-justify.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"16":"K D yC","132":"E F A B"},B:{"132":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 3C 4C","1025":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","1602":"0B"},D:{"1":"ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB","322":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB ID JD KD LD OC wC MD PC","322":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","322":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","322":"H"},L:{"322":"I"},M:{"1025":"NC"},N:{"132":"A B"},O:{"322":"QC"},P:{"2":"J","322":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"322":"3D"},R:{"322":"4D"},S:{"2":"5D","1025":"6D"}},B:4,C:"CSS text-justify",D:true};
Index: node_modules/caniuse-lite/data/features/css-text-orientation.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-text-orientation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-text-orientation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB 3C 4C","194":"kB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},E:{"1":"M G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C","16":"A","33":"B C L bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS text-orientation",D:true};
Index: node_modules/caniuse-lite/data/features/css-text-spacing.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-text-spacing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-text-spacing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D yC","161":"E F A B"},B:{"2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","161":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"16":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS Text 4 text-spacing",D:false};
Index: node_modules/caniuse-lite/data/features/css-text-wrap-balance.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-text-wrap-balance.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-text-wrap-balance.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w","132":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB"},C:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w","132":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB"},E:{"1":"nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC"},F:{"1":"0 1 2 3 4 5 6 7 8 z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h ID JD KD LD OC wC MD PC","132":"i j k l m n o p q r s t u v w x y"},G:{"1":"nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","132":"H"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","132":"CB DB EB FB GB HB IB"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS text-wrap: balance",D:true};
Index: node_modules/caniuse-lite/data/features/css-textshadow.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-textshadow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-textshadow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","260":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"4":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"A","4":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"129":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 Text-shadow",D:true};
Index: node_modules/caniuse-lite/data/features/css-touch-action.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-touch-action.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-touch-action.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F yC","289":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C","194":"IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","1025":"yB zB 0B 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},E:{"2050":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB ID JD KD LD OC wC MD PC"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD","516":"TD UD VD WD XD YD ZD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","289":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","194":"5D"}},B:2,C:"CSS touch-action property",D:true};
Index: node_modules/caniuse-lite/data/features/css-transitions.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-transitions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-transitions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","33":"aB K D E F A B C L M G","164":"J"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"K 6C","164":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F ID JD","33":"C","164":"B KD LD OC wC MD"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"PD","164":"aC ND xC OD"},H:{"2":"lD"},I:{"1":"I qD rD","33":"UC J mD nD oD pD xC"},J:{"1":"A","33":"D"},K:{"1":"H PC","33":"C","164":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"CSS3 Transitions",D:true};
Index: node_modules/caniuse-lite/data/features/css-unicode-bidi.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-unicode-bidi.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-unicode-bidi.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"132":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","33":"9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","132":"zC UC J aB K D E F 3C 4C","292":"A B C L M G N"},D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"J aB K D E F A B C L M G N","548":"9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},E:{"132":"J aB K D E 5C aC 6C 7C 8C","548":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"132":"E aC ND xC OD PD QD RD","548":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"16":"lD"},I:{"1":"I","16":"UC J mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"1":"H","16":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","16":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","33":"5D"}},B:4,C:"CSS unicode-bidi property",D:false};
Index: node_modules/caniuse-lite/data/features/css-unset-value.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-unset-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-unset-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB ID JD KD LD OC wC MD PC"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS unset value",D:true};
Index: node_modules/caniuse-lite/data/features/css-variables.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-variables.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-variables.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M","260":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB","194":"uB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C","260":"9C"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB ID JD KD LD OC wC MD PC","194":"hB"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD","260":"TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS Variables (Custom Properties)",D:true};
Index: node_modules/caniuse-lite/data/features/css-when-else.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-when-else.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-when-else.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS @when / @else conditional rules",D:true};
Index: node_modules/caniuse-lite/data/features/css-widows-orphans.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-widows-orphans.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-widows-orphans.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D yC","129":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","129":"F B ID JD KD LD OC wC MD"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H PC","2":"A B C OC wC"},L:{"1":"I"},M:{"2":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:2,C:"CSS widows & orphans",D:true};
Index: node_modules/caniuse-lite/data/features/css-width-stretch.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-width-stretch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-width-stretch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB","33":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB"},L:{"1":"I"},B:{"1":"VB WB XB YB ZB I","2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC 3C 4C","33":"NC 0C 1C 2C"},M:{"33":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"5 6 7 8","2":"F B C ID JD KD LD OC wC MD PC","33":"0 1 2 3 4 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},K:{"2":"A B C OC wC PC","33":"H"},E:{"2":"J aB K 5C aC 6C 7C HD","33":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC"},G:{"2":"aC ND xC OD PD","33":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},P:{"2":"J","33":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},I:{"1":"I","2":"UC J mD nD oD pD xC","33":"qD rD"}},B:6,C:"width: stretch property",D:undefined};
Index: node_modules/caniuse-lite/data/features/css-writing-mode.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-writing-mode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-writing-mode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"132":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB 3C 4C","322":"iB jB kB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K","16":"D","33":"9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","16":"aB","33":"K D E F A 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC","33":"E OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"mD nD oD","33":"UC J pD xC qD rD"},J:{"33":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"36":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","33":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS writing-mode property",D:true};
Index: node_modules/caniuse-lite/data/features/css-zoom.js
===================================================================
--- node_modules/caniuse-lite/data/features/css-zoom.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css-zoom.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D yC","129":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC"},H:{"2":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"129":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"CSS zoom",D:true};
Index: node_modules/caniuse-lite/data/features/css3-attr.js
===================================================================
--- node_modules/caniuse-lite/data/features/css3-attr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css3-attr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"QB RB SB TB UB VB WB XB YB ZB I","2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"CSS3 attr() function for all properties",D:true};
Index: node_modules/caniuse-lite/data/features/css3-boxsizing.js
===================================================================
--- node_modules/caniuse-lite/data/features/css3-boxsizing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css3-boxsizing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","8":"K D yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","33":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"J aB K D E F"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"aC ND xC"},H:{"1":"lD"},I:{"1":"J I pD xC qD rD","33":"UC mD nD oD"},J:{"1":"A","33":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"CSS3 Box-sizing",D:true};
Index: node_modules/caniuse-lite/data/features/css3-colors.js
===================================================================
--- node_modules/caniuse-lite/data/features/css3-colors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css3-colors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","4":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","2":"F","4":"ID"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS3 Colors",D:true};
Index: node_modules/caniuse-lite/data/features/css3-cursors-grab.js
===================================================================
--- node_modules/caniuse-lite/data/features/css3-cursors-grab.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css3-cursors-grab.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","33":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"J aB K D E F A 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 C 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F B ID JD KD LD OC wC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"33":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:2,C:"CSS grab & grabbing cursors",D:true};
Index: node_modules/caniuse-lite/data/features/css3-cursors-newer.js
===================================================================
--- node_modules/caniuse-lite/data/features/css3-cursors-newer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css3-cursors-newer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","33":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 C DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F B ID JD KD LD OC wC","33":"9 G N O P bB AB BB CB"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"33":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out",D:true};
Index: node_modules/caniuse-lite/data/features/css3-cursors.js
===================================================================
--- node_modules/caniuse-lite/data/features/css3-cursors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css3-cursors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","132":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","4":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"J"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","4":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","260":"F B C ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:2,C:"CSS3 Cursors (original values)",D:true};
Index: node_modules/caniuse-lite/data/features/css3-tabsize.js
===================================================================
--- node_modules/caniuse-lite/data/features/css3-tabsize.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/css3-tabsize.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","33":"zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z","164":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB","132":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C","132":"D E F A B C L 7C 8C 9C bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F ID JD KD","132":"9 G N O P bB AB BB CB DB EB FB GB HB","164":"B C LD OC wC MD PC"},G:{"1":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD","132":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD"},H:{"164":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","132":"qD rD"},J:{"132":"D A"},K:{"1":"H","2":"A","164":"B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"164":"5D 6D"}},B:4,C:"CSS3 tab-size",D:true};
Index: node_modules/caniuse-lite/data/features/currentcolor.js
===================================================================
--- node_modules/caniuse-lite/data/features/currentcolor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/currentcolor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS currentColor value",D:true};
Index: node_modules/caniuse-lite/data/features/custom-elements.js
===================================================================
--- node_modules/caniuse-lite/data/features/custom-elements.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/custom-elements.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","8":"A B"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","8":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","66":"CB DB EB FB GB HB IB","72":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B"},D:{"1":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","66":"GB HB IB cB dB eB"},E:{"2":"J aB 5C aC 6C","8":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC","2":"0 1 2 3 4 5 6 7 8 F B C BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","66":"G N O P bB"},G:{"2":"aC ND xC OD PD","8":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"rD","2":"UC J I mD nD oD pD xC qD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"J sD tD uD vD wD bC xD yD","2":"9 AB BB CB DB EB FB GB HB IB zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"2":"4D"},S:{"2":"6D","72":"5D"}},B:7,C:"Custom Elements (deprecated V0 spec)",D:true};
Index: node_modules/caniuse-lite/data/features/custom-elementsv1.js
===================================================================
--- node_modules/caniuse-lite/data/features/custom-elementsv1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/custom-elementsv1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","8":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB 3C 4C","8":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","456":"wB xB yB zB 0B 1B 2B 3B 4B","712":"VC 5B WC 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","8":"yB zB","132":"0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC"},E:{"2":"J aB K D 5C aC 6C 7C 8C","8":"E F A 9C","132":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB ID JD KD LD OC wC MD PC","132":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD","132":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","132":"sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","8":"5D"}},B:1,C:"Custom Elements (V1)",D:true};
Index: node_modules/caniuse-lite/data/features/customevent.js
===================================================================
--- node_modules/caniuse-lite/data/features/customevent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/customevent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C","132":"K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J","16":"aB K D E L M","388":"F A B C"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","16":"aB K","388":"6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F ID JD KD LD","132":"B OC wC"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"ND","16":"aC xC","388":"OD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"mD nD oD","388":"UC J pD xC"},J:{"1":"A","388":"D"},K:{"1":"C H PC","2":"A","132":"B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"CustomEvent",D:true};
Index: node_modules/caniuse-lite/data/features/datalist.js
===================================================================
--- node_modules/caniuse-lite/data/features/datalist.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/datalist.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M G","1284":"N O P"},C:{"8":"zC UC 3C 4C","516":"l m n o p q r s","4612":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k","8196":"0 1 2 3 4 5 6 7 8 t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","8":"J aB K D E F A B C L M G N O P bB","132":"9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 F B C 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","132":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B"},G:{"8":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD","18436":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I rD","8":"UC J mD nD oD pD xC qD"},J:{"1":"A","8":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"8":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:1,C:"Datalist element",D:true};
Index: node_modules/caniuse-lite/data/features/dataset.js
===================================================================
--- node_modules/caniuse-lite/data/features/dataset.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/dataset.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","4":"K D E F A yC"},B:{"1":"C L M G N","129":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","4":"zC UC J aB 3C 4C","129":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"rB sB tB uB vB wB xB yB zB 0B","4":"J aB K","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"4":"J aB 5C aC","129":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"C eB fB gB hB iB jB kB lB mB nB OC wC MD PC","4":"F B ID JD KD LD","129":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"4":"aC ND xC","129":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"4":"lD"},I:{"4":"mD nD oD","129":"UC J I pD xC qD rD"},J:{"129":"D A"},K:{"1":"C OC wC PC","4":"A B","129":"H"},L:{"129":"I"},M:{"129":"NC"},N:{"1":"B","4":"A"},O:{"129":"QC"},P:{"129":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"129":"3D"},R:{"129":"4D"},S:{"1":"5D","129":"6D"}},B:1,C:"dataset & data-* attributes",D:true};
Index: node_modules/caniuse-lite/data/features/datauri.js
===================================================================
--- node_modules/caniuse-lite/data/features/datauri.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/datauri.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D yC","132":"E","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L G N O P","772":"M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"260":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Data URIs",D:true};
Index: node_modules/caniuse-lite/data/features/date-tolocaledatestring.js
===================================================================
--- node_modules/caniuse-lite/data/features/date-tolocaledatestring.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/date-tolocaledatestring.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"16":"yC","132":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","132":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C","260":"yB zB 0B 1B","772":"IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB","260":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC","772":"DB EB FB GB HB IB cB dB eB fB gB hB iB jB"},E:{"1":"C L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC","132":"K D E F A 6C 7C 8C 9C","260":"B bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F B C ID JD KD LD OC wC MD","132":"PC","260":"EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B","772":"9 G N O P bB AB BB CB DB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC OD","132":"E PD QD RD SD TD UD"},H:{"132":"lD"},I:{"1":"I","16":"UC mD nD oD","132":"J pD xC","772":"qD rD"},J:{"132":"D A"},K:{"1":"H","16":"A B C OC wC","132":"PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","260":"J sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","132":"5D"}},B:6,C:"Date.prototype.toLocaleDateString",D:true};
Index: node_modules/caniuse-lite/data/features/declarative-shadow-dom.js
===================================================================
--- node_modules/caniuse-lite/data/features/declarative-shadow-dom.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/declarative-shadow-dom.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z","132":"a b c d e f g h i j k l m n o p q r s t"},C:{"1":"6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T","66":"U V W X Y","132":"Z a b c d e f g h i j k l m n o p q r s t"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC ID JD KD LD OC wC MD PC","132":"LC MC Q H R XC S T U V W X Y Z a b c d e f"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"BB CB DB EB FB GB HB IB","2":"J sD tD uD vD wD bC xD yD zD 0D","16":"1D","132":"9 AB RC SC TC 2D"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:1,C:"Declarative Shadow DOM",D:true};
Index: node_modules/caniuse-lite/data/features/decorators.js
===================================================================
--- node_modules/caniuse-lite/data/features/decorators.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/decorators.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Decorators",D:true};
Index: node_modules/caniuse-lite/data/features/details.js
===================================================================
--- node_modules/caniuse-lite/data/features/details.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/details.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"F A B yC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC","8":"9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 3C 4C","194":"tB uB"},D:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","8":"J aB K D E F A B","257":"9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB","769":"C L M G N O P"},E:{"1":"C L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J aB 5C aC 6C","257":"K D E F A 7C 8C 9C","1025":"B bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"C OC wC MD PC","8":"F B ID JD KD LD"},G:{"1":"E PD QD RD SD TD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"aC ND xC OD","1025":"UD VD WD"},H:{"8":"lD"},I:{"1":"J I pD xC qD rD","8":"UC mD nD oD"},J:{"1":"A","8":"D"},K:{"1":"H","8":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Details & Summary elements",D:true};
Index: node_modules/caniuse-lite/data/features/deviceorientation.js
===================================================================
--- node_modules/caniuse-lite/data/features/deviceorientation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/deviceorientation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","132":"B"},B:{"1":"C L M G N O P","4":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"zC UC 3C","4":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"J aB 4C"},D:{"2":"J aB K","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","4":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"aC ND","4":"E xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"mD nD oD","4":"UC J I pD xC qD rD"},J:{"2":"D","4":"A"},K:{"1":"C PC","2":"A B OC wC","4":"H"},L:{"4":"I"},M:{"4":"NC"},N:{"1":"B","2":"A"},O:{"4":"QC"},P:{"4":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"4":"3D"},R:{"4":"4D"},S:{"4":"5D 6D"}},B:4,C:"DeviceOrientation & DeviceMotion events",D:true};
Index: node_modules/caniuse-lite/data/features/devicepixelratio.js
===================================================================
--- node_modules/caniuse-lite/data/features/devicepixelratio.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/devicepixelratio.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F B ID JD KD LD OC wC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"C H PC","2":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Window.devicePixelRatio",D:true};
Index: node_modules/caniuse-lite/data/features/dialog.js
===================================================================
--- node_modules/caniuse-lite/data/features/dialog.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/dialog.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 3C 4C","194":"zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q","1218":"H R XC S T U V W X Y Z a b c d e f g"},D:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB","322":"eB fB gB hB iB"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G N O P ID JD KD LD OC wC MD PC","578":"9 bB AB BB CB"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:1,C:"Dialog element",D:true};
Index: node_modules/caniuse-lite/data/features/dispatchevent.js
===================================================================
--- node_modules/caniuse-lite/data/features/dispatchevent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/dispatchevent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","16":"yC","129":"F A","130":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","16":"F"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","129":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"EventTarget.dispatchEvent",D:true};
Index: node_modules/caniuse-lite/data/features/dnssec.js
===================================================================
--- node_modules/caniuse-lite/data/features/dnssec.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/dnssec.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"132":"K D E F A B yC"},B:{"132":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"132":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"132":"0 1 2 3 4 5 6 7 8 J aB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","388":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB"},E:{"132":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"132":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"132":"lD"},I:{"132":"UC J I mD nD oD pD xC qD rD"},J:{"132":"D A"},K:{"132":"A B C H OC wC PC"},L:{"132":"I"},M:{"132":"NC"},N:{"132":"A B"},O:{"132":"QC"},P:{"132":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"132":"3D"},R:{"132":"4D"},S:{"132":"5D 6D"}},B:6,C:"DNSSEC and DANE",D:true};
Index: node_modules/caniuse-lite/data/features/do-not-track.js
===================================================================
--- node_modules/caniuse-lite/data/features/do-not-track.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/do-not-track.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","164":"F A","260":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E 3C 4C","516":"9 F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB"},E:{"1":"K A B C 6C 9C bC OC","2":"J aB L M G 5C aC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","1028":"D E F 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD OC wC MD"},G:{"1":"SD TD UD VD WD XD YD","2":"aC ND xC OD PD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","1028":"E QD RD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"16":"D","1028":"A"},K:{"1":"H PC","16":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"164":"A","260":"B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:7,C:"Do Not Track API",D:true};
Index: node_modules/caniuse-lite/data/features/document-currentscript.js
===================================================================
--- node_modules/caniuse-lite/data/features/document-currentscript.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/document-currentscript.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB"},E:{"1":"E F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G ID JD KD LD OC wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"document.currentScript",D:true};
Index: node_modules/caniuse-lite/data/features/document-evaluate-xpath.js
===================================================================
--- node_modules/caniuse-lite/data/features/document-evaluate-xpath.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/document-evaluate-xpath.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","16":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","16":"F"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:7,C:"document.evaluate & XPath",D:true};
Index: node_modules/caniuse-lite/data/features/document-execcommand.js
===================================================================
--- node_modules/caniuse-lite/data/features/document-execcommand.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/document-execcommand.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","16":"F ID"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND","16":"xC OD PD"},H:{"2":"lD"},I:{"1":"I pD xC qD rD","2":"UC J mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:7,C:"Document.execCommand()",D:true};
Index: node_modules/caniuse-lite/data/features/document-policy.js
===================================================================
--- node_modules/caniuse-lite/data/features/document-policy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/document-policy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P Q H R S T","132":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T","132":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC ID JD KD LD OC wC MD PC","132":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","132":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","132":"H"},L:{"132":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"132":"4D"},S:{"2":"5D 6D"}},B:7,C:"Document Policy",D:true};
Index: node_modules/caniuse-lite/data/features/document-scrollingelement.js
===================================================================
--- node_modules/caniuse-lite/data/features/document-scrollingelement.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/document-scrollingelement.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"document.scrollingElement",D:true};
Index: node_modules/caniuse-lite/data/features/documenthead.js
===================================================================
--- node_modules/caniuse-lite/data/features/documenthead.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/documenthead.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","16":"aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F ID JD KD LD"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"document.head",D:true};
Index: node_modules/caniuse-lite/data/features/dom-manip-convenience.js
===================================================================
--- node_modules/caniuse-lite/data/features/dom-manip-convenience.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/dom-manip-convenience.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","194":"yB zB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB ID JD KD LD OC wC MD PC","194":"mB"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"DOM manipulation convenience methods",D:true};
Index: node_modules/caniuse-lite/data/features/dom-range.js
===================================================================
--- node_modules/caniuse-lite/data/features/dom-range.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/dom-range.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"yC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Document Object Model Range",D:true};
Index: node_modules/caniuse-lite/data/features/domcontentloaded.js
===================================================================
--- node_modules/caniuse-lite/data/features/domcontentloaded.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/domcontentloaded.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"DOMContentLoaded",D:true};
Index: node_modules/caniuse-lite/data/features/dommatrix.js
===================================================================
--- node_modules/caniuse-lite/data/features/dommatrix.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/dommatrix.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","132":"A B"},B:{"132":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB 3C 4C","1028":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2564":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB","3076":"vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC"},D:{"16":"J aB K D","132":"9 F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B","388":"E","1028":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"16":"J 5C aC","132":"aB K D E F A 6C 7C 8C 9C bC","1028":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","132":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB","1028":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"16":"aC ND xC","132":"E OD PD QD RD SD TD UD VD","1028":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"132":"J pD xC qD rD","292":"UC mD nD oD","1028":"I"},J:{"16":"D","132":"A"},K:{"2":"A B C OC wC PC","1028":"H"},L:{"1028":"I"},M:{"1028":"NC"},N:{"132":"A B"},O:{"1028":"QC"},P:{"132":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1028":"3D"},R:{"1028":"4D"},S:{"1028":"6D","2564":"5D"}},B:4,C:"DOMMatrix",D:true};
Index: node_modules/caniuse-lite/data/features/download.js
===================================================================
--- node_modules/caniuse-lite/data/features/download.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/download.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O P bB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Download attribute",D:true};
Index: node_modules/caniuse-lite/data/features/dragndrop.js
===================================================================
--- node_modules/caniuse-lite/data/features/dragndrop.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/dragndrop.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"644":"K D E F yC","772":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","8":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","8":"F B ID JD KD LD OC wC MD"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","1025":"I"},J:{"2":"D A"},K:{"1":"PC","8":"A B C OC wC","1025":"H"},L:{"1025":"I"},M:{"2":"NC"},N:{"1":"A B"},O:{"1025":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:1,C:"Drag and Drop",D:true};
Index: node_modules/caniuse-lite/data/features/element-closest.js
===================================================================
--- node_modules/caniuse-lite/data/features/element-closest.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/element-closest.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Element.closest()",D:true};
Index: node_modules/caniuse-lite/data/features/element-from-point.js
===================================================================
--- node_modules/caniuse-lite/data/features/element-from-point.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/element-from-point.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","16":"yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","16":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","16":"F ID JD KD LD"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"C H PC","16":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"document.elementFromPoint()",D:true};
Index: node_modules/caniuse-lite/data/features/element-scroll-methods.js
===================================================================
--- node_modules/caniuse-lite/data/features/element-scroll-methods.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/element-scroll-methods.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B"},E:{"1":"M G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C","132":"A B C L bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB ID JD KD LD OC wC MD PC"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD","132":"UD VD WD XD YD ZD aD bD cD dD eD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)",D:true};
Index: node_modules/caniuse-lite/data/features/eme.js
===================================================================
--- node_modules/caniuse-lite/data/features/eme.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/eme.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB","132":"hB iB jB kB lB mB nB"},E:{"1":"C L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C","164":"D E F A B 8C 9C bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB ID JD KD LD OC wC MD PC","132":"BB CB DB EB FB GB HB"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Encrypted Media Extensions",D:true};
Index: node_modules/caniuse-lite/data/features/eot.js
===================================================================
--- node_modules/caniuse-lite/data/features/eot.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/eot.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","2":"yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"EOT - Embedded OpenType fonts",D:true};
Index: node_modules/caniuse-lite/data/features/es5.js
===================================================================
--- node_modules/caniuse-lite/data/features/es5.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/es5.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D yC","260":"F","1026":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","4":"zC UC 3C 4C","132":"9 J aB K D E F A B C L M G N O P bB"},D:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"J aB K D E F A B C L M G N O P","132":"9 bB AB BB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","4":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","4":"F B C ID JD KD LD OC wC MD","132":"PC"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","4":"aC ND xC OD"},H:{"132":"lD"},I:{"1":"I qD rD","4":"UC mD nD oD","132":"pD xC","900":"J"},J:{"1":"A","4":"D"},K:{"1":"H","4":"A B C OC wC","132":"PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"ECMAScript 5",D:true};
Index: node_modules/caniuse-lite/data/features/es6-class.js
===================================================================
--- node_modules/caniuse-lite/data/features/es6-class.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/es6-class.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB","132":"oB pB qB rB sB tB uB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB ID JD KD LD OC wC MD PC","132":"IB cB dB eB fB gB hB"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"ES6 classes",D:true};
Index: node_modules/caniuse-lite/data/features/es6-generators.js
===================================================================
--- node_modules/caniuse-lite/data/features/es6-generators.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/es6-generators.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"ES6 Generators",D:true};
Index: node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js
===================================================================
--- node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B 3C 4C","194":"AC"},D:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"JavaScript modules: dynamic import()",D:true};
Index: node_modules/caniuse-lite/data/features/es6-module.js
===================================================================
--- node_modules/caniuse-lite/data/features/es6-module.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/es6-module.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M","2049":"N O P","2242":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 3C 4C","322":"0B 1B 2B 3B 4B VC"},D:{"1":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC","194":"5B"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C","1540":"bC"},F:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB ID JD KD LD OC wC MD PC","194":"tB"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD","1540":"VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"JavaScript modules via script tag",D:true};
Index: node_modules/caniuse-lite/data/features/es6-number.js
===================================================================
--- node_modules/caniuse-lite/data/features/es6-number.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/es6-number.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G 3C 4C","132":"9 N O P bB AB BB CB DB","260":"EB FB GB HB IB cB","516":"dB"},D:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O P","1028":"9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","1028":"9 G N O P bB"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD","1028":"pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"ES6 Number",D:true};
Index: node_modules/caniuse-lite/data/features/es6-string-includes.js
===================================================================
--- node_modules/caniuse-lite/data/features/es6-string-includes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/es6-string-includes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"String.prototype.includes",D:true};
Index: node_modules/caniuse-lite/data/features/es6.js
===================================================================
--- node_modules/caniuse-lite/data/features/es6.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/es6.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","388":"B"},B:{"257":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M","769":"G N O P"},C:{"2":"zC UC J aB 3C 4C","4":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB","257":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB","4":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","257":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C","4":"E F 8C 9C"},F:{"2":"F B C ID JD KD LD OC wC MD PC","4":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB","257":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD","4":"E QD RD SD TD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC","4":"qD rD","257":"I"},J:{"2":"D","4":"A"},K:{"2":"A B C OC wC PC","257":"H"},L:{"257":"I"},M:{"257":"NC"},N:{"2":"A","388":"B"},O:{"257":"QC"},P:{"4":"J","257":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"257":"3D"},R:{"257":"4D"},S:{"4":"5D","257":"6D"}},B:6,C:"ECMAScript 2015 (ES6)",D:true};
Index: node_modules/caniuse-lite/data/features/eventsource.js
===================================================================
--- node_modules/caniuse-lite/data/features/eventsource.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/eventsource.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","4":"F ID JD KD LD"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"D A"},K:{"1":"C H OC wC PC","4":"A B"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Server-sent events",D:true};
Index: node_modules/caniuse-lite/data/features/extended-system-fonts.js
===================================================================
--- node_modules/caniuse-lite/data/features/extended-system-fonts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/extended-system-fonts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family",D:true};
Index: node_modules/caniuse-lite/data/features/feature-policy.js
===================================================================
--- node_modules/caniuse-lite/data/features/feature-policy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/feature-policy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"Q H R S T U V W","2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC 3C 4C","260":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"IC JC KC LC MC Q H R S T U V W","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC","132":"5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC","1025":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC","772":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"6B 7B 8B 9B AC BC CC DC EC FC GC HC IC","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB ID JD KD LD OC wC MD PC","132":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B","1025":"0 1 2 3 4 5 6 7 8 JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD","772":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","1025":"H"},L:{"1025":"I"},M:{"260":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD","132":"vD wD bC"},Q:{"132":"3D"},R:{"1025":"4D"},S:{"2":"5D","260":"6D"}},B:7,C:"Feature Policy",D:true};
Index: node_modules/caniuse-lite/data/features/fetch.js
===================================================================
--- node_modules/caniuse-lite/data/features/fetch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/fetch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB 3C 4C","1025":"lB","1218":"gB hB iB jB kB"},D:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB","260":"mB","772":"nB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB ID JD KD LD OC wC MD PC","260":"GB","772":"HB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Fetch",D:true};
Index: node_modules/caniuse-lite/data/features/fieldset-disabled.js
===================================================================
--- node_modules/caniuse-lite/data/features/fieldset-disabled.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/fieldset-disabled.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"16":"yC","132":"E F","388":"K D A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G","16":"N O P bB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","16":"F ID"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD"},H:{"388":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A","260":"B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"disabled attribute of the fieldset element",D:true};
Index: node_modules/caniuse-lite/data/features/fileapi.js
===================================================================
--- node_modules/caniuse-lite/data/features/fileapi.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/fileapi.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C","260":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB","260":"9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB","388":"K D E F A B C"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","260":"K D E F 7C 8C 9C","388":"6C"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B ID JD KD LD","260":"9 C G N O P bB AB BB CB DB OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","260":"E PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I rD","2":"mD nD oD","260":"qD","388":"UC J pD xC"},J:{"260":"A","388":"D"},K:{"1":"H","2":"A B","260":"C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A","260":"B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"File API",D:true};
Index: node_modules/caniuse-lite/data/features/filereader.js
===================================================================
--- node_modules/caniuse-lite/data/features/filereader.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/filereader.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","2":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F B ID JD KD LD"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"C H OC wC PC","2":"A B"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"FileReader API",D:true};
Index: node_modules/caniuse-lite/data/features/filereadersync.js
===================================================================
--- node_modules/caniuse-lite/data/features/filereadersync.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/filereadersync.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F ID JD","16":"B KD LD OC wC"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"C H wC PC","2":"A","16":"B OC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"FileReaderSync",D:true};
Index: node_modules/caniuse-lite/data/features/filesystem.js
===================================================================
--- node_modules/caniuse-lite/data/features/filesystem.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/filesystem.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"J aB K D","33":"0 1 2 3 4 5 6 7 8 9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","36":"E F A B C"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","33":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D","33":"A"},K:{"2":"A B C OC wC PC","33":"H"},L:{"33":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"33":"QC"},P:{"2":"J","33":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"33":"4D"},S:{"2":"5D 6D"}},B:7,C:"Filesystem & FileWriter API",D:true};
Index: node_modules/caniuse-lite/data/features/flac.js
===================================================================
--- node_modules/caniuse-lite/data/features/flac.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/flac.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","16":"qB rB sB","388":"tB uB vB wB xB yB zB 0B 1B"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","516":"B C OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"mD nD oD","16":"UC J pD xC qD rD"},J:{"1":"A","2":"D"},K:{"1":"H PC","16":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","129":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"FLAC audio format",D:true};
Index: node_modules/caniuse-lite/data/features/flexbox-gap.js
===================================================================
--- node_modules/caniuse-lite/data/features/flexbox-gap.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/flexbox-gap.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S"},E:{"1":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC ID JD KD LD OC wC MD PC"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"gap property for Flexbox",D:true};
Index: node_modules/caniuse-lite/data/features/flexbox.js
===================================================================
--- node_modules/caniuse-lite/data/features/flexbox.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/flexbox.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","1028":"B","1316":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","164":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C","516":"BB CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"AB BB CB DB EB FB GB HB","164":"9 J aB K D E F A B C L M G N O P bB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"D E 7C 8C","164":"J aB K 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B C ID JD KD LD OC wC MD","33":"G N"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"E QD RD","164":"aC ND xC OD PD"},H:{"1":"lD"},I:{"1":"I qD rD","164":"UC J mD nD oD pD xC"},J:{"1":"A","164":"D"},K:{"1":"H PC","2":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","292":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS Flexible Box Layout Module",D:true};
Index: node_modules/caniuse-lite/data/features/flow-root.js
===================================================================
--- node_modules/caniuse-lite/data/features/flow-root.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/flow-root.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB ID JD KD LD OC wC MD PC"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"display: flow-root",D:true};
Index: node_modules/caniuse-lite/data/features/focusin-focusout-events.js
===================================================================
--- node_modules/caniuse-lite/data/features/focusin-focusout-events.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/focusin-focusout-events.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","2":"yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F ID JD KD LD","16":"B OC wC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"J I pD xC qD rD","2":"mD nD oD","16":"UC"},J:{"1":"D A"},K:{"1":"C H PC","2":"A","16":"B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"focusin & focusout events",D:true};
Index: node_modules/caniuse-lite/data/features/font-family-system-ui.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-family-system-ui.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-family-system-ui.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB 3C 4C","132":"pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a"},D:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB","260":"zB 0B 1B"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C","16":"F","132":"A 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD","132":"SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"132":"5D 6D"}},B:5,C:"system-ui value for font-family",D:true};
Index: node_modules/caniuse-lite/data/features/font-feature.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-feature.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-feature.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB","164":"J aB K D E F A B C L M"},D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G","33":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB","292":"9 N O P bB"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"D E F 5C aC 7C 8C","4":"J aB K 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E QD RD SD","4":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","33":"qD rD"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","33":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS font-feature-settings",D:true};
Index: node_modules/caniuse-lite/data/features/font-kerning.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-kerning.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-kerning.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB 3C 4C","194":"DB EB FB GB HB IB cB dB eB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB","33":"IB cB dB eB"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C","33":"D E F 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G ID JD KD LD OC wC MD PC","33":"N O P bB"},G:{"1":"YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","33":"E RD SD TD UD VD WD XD"},H:{"2":"lD"},I:{"1":"I rD","2":"UC J mD nD oD pD xC","33":"qD"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 font-kerning",D:true};
Index: node_modules/caniuse-lite/data/features/font-loading.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-loading.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-loading.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB 3C 4C","194":"hB iB jB kB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"CSS Font Loading",D:true};
Index: node_modules/caniuse-lite/data/features/font-size-adjust.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-size-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-size-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","194":"0 1 2 3 4 5 6 7 8 JB","962":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},C:{"1":"1 2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC","516":"0 b c d e f g h i j k l m n o p q r s t u v w x y z","772":"9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a 3C 4C"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB","194":"3 4 5 6 7 8 JB","962":"0 1 2 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC","772":"hC iC ED"},F:{"1":"0 1 2 3 4 5 6 7 8 w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB ID JD KD LD OC wC MD PC","194":"l m n o p q r s t u v","962":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k"},G:{"1":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC","772":"hC iC iD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"194":"3D"},R:{"2":"4D"},S:{"2":"5D","516":"6D"}},B:2,C:"CSS font-size-adjust",D:true};
Index: node_modules/caniuse-lite/data/features/font-smooth.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-smooth.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-smooth.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","676":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB 3C 4C","804":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB","1828":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"J","676":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"5C aC","676":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","676":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"804":"5D 6D"}},B:7,C:"CSS font-smooth",D:true};
Index: node_modules/caniuse-lite/data/features/font-unicode-range.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-unicode-range.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-unicode-range.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","4":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","4":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB 3C 4C","194":"iB jB kB lB mB nB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","4":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","4":"9 G N O P bB AB BB"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","4":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","4":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","4":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"4":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","4":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Font unicode-range subsetting",D:true};
Index: node_modules/caniuse-lite/data/features/font-variant-alternates.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-variant-alternates.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-variant-alternates.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","130":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","130":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t"},C:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","130":"9 J aB K D E F A B C L M G N O P bB AB BB CB","322":"DB EB FB GB HB IB cB dB eB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G","130":"9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"D E F 5C aC 7C 8C","130":"J aB K 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","130":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC QD RD SD","130":"ND xC OD PD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","130":"qD rD"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"130":"QC"},P:{"1":"BB CB DB EB FB GB HB IB","130":"9 J AB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"130":"3D"},R:{"130":"4D"},S:{"1":"5D 6D"}},B:5,C:"CSS font-variant-alternates",D:true};
Index: node_modules/caniuse-lite/data/features/font-variant-numeric.js
===================================================================
--- node_modules/caniuse-lite/data/features/font-variant-numeric.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/font-variant-numeric.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB ID JD KD LD OC wC MD PC"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS font-variant-numeric",D:true};
Index: node_modules/caniuse-lite/data/features/fontface.js
===================================================================
--- node_modules/caniuse-lite/data/features/fontface.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/fontface.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","132":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","2":"F ID"},G:{"1":"E xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","260":"aC ND"},H:{"2":"lD"},I:{"1":"J I pD xC qD rD","2":"mD","4":"UC nD oD"},J:{"1":"A","4":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"@font-face Web fonts",D:true};
Index: node_modules/caniuse-lite/data/features/form-attribute.js
===================================================================
--- node_modules/caniuse-lite/data/features/form-attribute.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/form-attribute.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","16":"aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"1":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Form attribute",D:true};
Index: node_modules/caniuse-lite/data/features/form-submit-attributes.js
===================================================================
--- node_modules/caniuse-lite/data/features/form-submit-attributes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/form-submit-attributes.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","2":"F ID","16":"JD KD"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"1":"lD"},I:{"1":"J I pD xC qD rD","2":"mD nD oD","16":"UC"},J:{"1":"A","2":"D"},K:{"1":"B C H OC wC PC","16":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Attributes for form submission",D:true};
Index: node_modules/caniuse-lite/data/features/form-validation.js
===================================================================
--- node_modules/caniuse-lite/data/features/form-validation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/form-validation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","132":"aB K D E F A 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","2":"F ID"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC","132":"E ND xC OD PD QD RD SD TD UD"},H:{"516":"lD"},I:{"1":"I rD","2":"UC mD nD oD","132":"J pD xC qD"},J:{"1":"A","132":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"132":"NC"},N:{"260":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","132":"5D"}},B:1,C:"Form validation",D:true};
Index: node_modules/caniuse-lite/data/features/forms.js
===================================================================
--- node_modules/caniuse-lite/data/features/forms.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/forms.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","4":"A B","8":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","4":"C L M G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B"},E:{"4":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 F B C yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","4":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},G:{"2":"aC","4":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","4":"qD rD"},J:{"2":"D","4":"A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"4":"NC"},N:{"4":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","4":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"4":"5D 6D"}},B:1,C:"HTML5 form features",D:false};
Index: node_modules/caniuse-lite/data/features/fullscreen.js
===================================================================
--- node_modules/caniuse-lite/data/features/fullscreen.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/fullscreen.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","548":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","516":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F 3C 4C","676":"9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB","1700":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M","676":"G N O P bB","804":"9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","548":"dC QC DD RC eC fC gC","676":"6C","804":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B C ID JD KD LD OC wC MD","804":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD","2052":"YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D","292":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A","548":"B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","804":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Fullscreen API",D:true};
Index: node_modules/caniuse-lite/data/features/gamepad.js
===================================================================
--- node_modules/caniuse-lite/data/features/gamepad.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/gamepad.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB","33":"AB BB CB DB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"Gamepad API",D:true};
Index: node_modules/caniuse-lite/data/features/geolocation.js
===================================================================
--- node_modules/caniuse-lite/data/features/geolocation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/geolocation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"yC","8":"K D E"},B:{"1":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 3C 4C","8":"zC UC","129":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","4":"J","129":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K D E F B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J 5C aC","129":"A"},F:{"1":"9 B C N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB LD OC wC MD PC","2":"F G ID","8":"JD KD","129":"0 1 2 3 4 5 6 7 8 lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"E aC ND xC OD PD QD RD SD TD","129":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J mD nD oD pD xC qD rD","129":"I"},J:{"1":"D A"},K:{"1":"B C OC wC PC","8":"A","129":"H"},L:{"129":"I"},M:{"129":"NC"},N:{"1":"A B"},O:{"129":"QC"},P:{"1":"J","129":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"129":"3D"},R:{"129":"4D"},S:{"1":"5D","129":"6D"}},B:2,C:"Geolocation",D:true};
Index: node_modules/caniuse-lite/data/features/getboundingclientrect.js
===================================================================
--- node_modules/caniuse-lite/data/features/getboundingclientrect.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/getboundingclientrect.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"644":"K D yC","2049":"F A B","2692":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2049":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC","260":"J aB K D E F A B","1156":"UC","1284":"3C","1796":"4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","16":"F ID","132":"JD KD"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","132":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"2049":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Element.getBoundingClientRect()",D:true};
Index: node_modules/caniuse-lite/data/features/getcomputedstyle.js
===================================================================
--- node_modules/caniuse-lite/data/features/getcomputedstyle.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/getcomputedstyle.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC","132":"UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","260":"J aB K D E F A"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","260":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","260":"F ID JD KD"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","260":"aC ND xC"},H:{"260":"lD"},I:{"1":"J I pD xC qD rD","260":"UC mD nD oD"},J:{"1":"A","260":"D"},K:{"1":"B C H OC wC PC","260":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"getComputedStyle",D:true};
Index: node_modules/caniuse-lite/data/features/getelementsbyclassname.js
===================================================================
--- node_modules/caniuse-lite/data/features/getelementsbyclassname.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/getelementsbyclassname.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"yC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","8":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"getElementsByClassName",D:true};
Index: node_modules/caniuse-lite/data/features/getrandomvalues.js
===================================================================
--- node_modules/caniuse-lite/data/features/getrandomvalues.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/getrandomvalues.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","33":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A","33":"B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"crypto.getRandomValues()",D:true};
Index: node_modules/caniuse-lite/data/features/gyroscope.js
===================================================================
--- node_modules/caniuse-lite/data/features/gyroscope.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/gyroscope.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","194":"4B VC 5B WC 6B 7B 8B 9B AC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:4,C:"Gyroscope",D:true};
Index: node_modules/caniuse-lite/data/features/hardwareconcurrency.js
===================================================================
--- node_modules/caniuse-lite/data/features/hardwareconcurrency.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/hardwareconcurrency.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB"},E:{"2":"J aB K D B C L M G 5C aC 6C 7C 8C OC PC AD BD CD cC","129":"bC","194":"E F A 9C","257":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB ID JD KD LD OC wC MD PC"},G:{"2":"aC ND xC OD PD QD WD XD YD ZD aD bD cD dD eD fD gD cC","129":"VD","194":"E RD SD TD UD","257":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"navigator.hardwareConcurrency",D:true};
Index: node_modules/caniuse-lite/data/features/hashchange.js
===================================================================
--- node_modules/caniuse-lite/data/features/hashchange.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/hashchange.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","8":"K D yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","8":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","8":"J"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","8":"F ID JD KD"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC"},H:{"2":"lD"},I:{"1":"UC J I nD oD pD xC qD rD","2":"mD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","8":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Hashchange event",D:true};
Index: node_modules/caniuse-lite/data/features/heif.js
===================================================================
--- node_modules/caniuse-lite/data/features/heif.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/heif.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","130":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD iD","130":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"HEIF/HEIC image format",D:true};
Index: node_modules/caniuse-lite/data/features/hevc.js
===================================================================
--- node_modules/caniuse-lite/data/features/hevc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/hevc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","132":"B"},B:{"132":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C","4098":"3","8258":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB","16388":"UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","2052":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","516":"B C OC PC"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c ID JD KD LD OC wC MD PC","2052":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","2052":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","258":"H"},L:{"2052":"I"},M:{"16388":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"AB BB CB DB EB FB GB HB IB","2":"J","258":"9 sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:6,C:"HEVC/H.265 video format",D:true};
Index: node_modules/caniuse-lite/data/features/hidden.js
===================================================================
--- node_modules/caniuse-lite/data/features/hidden.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/hidden.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F B ID JD KD LD"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"1":"lD"},I:{"1":"J I pD xC qD rD","2":"UC mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"C H OC wC PC","2":"A B"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"hidden attribute",D:true};
Index: node_modules/caniuse-lite/data/features/high-resolution-time.js
===================================================================
--- node_modules/caniuse-lite/data/features/high-resolution-time.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/high-resolution-time.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B","2":"zC UC J aB K D E F A B C L M 3C 4C","129":"1B 2B 3B","769":"4B VC","1281":"0 1 2 3 4 5 6 7 8 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O P bB","33":"9 AB BB CB"},E:{"1":"E F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"High Resolution Time API",D:true};
Index: node_modules/caniuse-lite/data/features/history.js
===================================================================
--- node_modules/caniuse-lite/data/features/history.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/history.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","4":"aB 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z wC MD PC","2":"F B ID JD KD LD OC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND","4":"xC"},H:{"2":"lD"},I:{"1":"I nD oD xC qD rD","2":"UC J mD pD"},J:{"1":"D A"},K:{"1":"C H OC wC PC","2":"A B"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Session history management",D:true};
Index: node_modules/caniuse-lite/data/features/html-media-capture.js
===================================================================
--- node_modules/caniuse-lite/data/features/html-media-capture.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/html-media-capture.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"aC ND xC OD","129":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD","257":"nD oD"},J:{"1":"A","16":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"516":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:2,C:"HTML Media Capture",D:true};
Index: node_modules/caniuse-lite/data/features/html5semantic.js
===================================================================
--- node_modules/caniuse-lite/data/features/html5semantic.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/html5semantic.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC","132":"UC 3C 4C","260":"9 J aB K D E F A B C L M G N O P bB"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"J aB","260":"9 K D E F A B C L M G N O P bB AB BB CB DB EB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","132":"J 5C aC","260":"aB K 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","132":"F B ID JD KD LD","260":"C OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"aC","260":"ND xC OD PD"},H:{"132":"lD"},I:{"1":"I qD rD","132":"mD","260":"UC J nD oD pD xC"},J:{"260":"D A"},K:{"1":"H","132":"A","260":"B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"260":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"HTML5 semantic elements",D:true};
Index: node_modules/caniuse-lite/data/features/http-live-streaming.js
===================================================================
--- node_modules/caniuse-lite/data/features/http-live-streaming.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/http-live-streaming.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"ZB I YC ZC NC","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"HTTP Live Streaming (HLS)",D:true};
Index: node_modules/caniuse-lite/data/features/http2.js
===================================================================
--- node_modules/caniuse-lite/data/features/http2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/http2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","132":"B"},B:{"1":"C L M G N O P","513":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB 3C 4C","513":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"nB oB pB qB rB sB tB uB vB wB","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB","513":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C","260":"F A 9C bC"},F:{"1":"HB IB cB dB eB fB gB hB iB jB","2":"9 F B C G N O P bB AB BB CB DB EB FB GB ID JD KD LD OC wC MD PC","513":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","513":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","513":"H"},L:{"513":"I"},M:{"513":"NC"},N:{"2":"A B"},O:{"513":"QC"},P:{"1":"J","513":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"513":"3D"},R:{"513":"4D"},S:{"1":"5D","513":"6D"}},B:6,C:"HTTP/2 protocol",D:true};
Index: node_modules/caniuse-lite/data/features/http3.js
===================================================================
--- node_modules/caniuse-lite/data/features/http3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/http3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","322":"Q H R S T","578":"U V"},C:{"1":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC 3C 4C","194":"GC HC IC JC KC LC MC Q H R XC S T U V W"},D:{"1":"0 1 2 3 4 5 6 7 8 W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","322":"Q H R S T","578":"U V"},E:{"1":"TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC AD","2049":"hC iC ED SC jC kC lC mC nC FD","2113":"RC eC fC gC","3140":"M G BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC ID JD KD LD OC wC MD PC","578":"HC"},G:{"1":"TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD","2049":"hC iC iD SC jC kC lC mC nC jD","2113":"RC eC fC gC","2116":"eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"uD","2":"9 J AB BB CB DB EB FB GB sD tD vD wD bC xD yD zD 0D 1D RC SC TC 2D","4098":"HB IB"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:6,C:"HTTP/3 protocol",D:true};
Index: node_modules/caniuse-lite/data/features/iframe-sandbox.js
===================================================================
--- node_modules/caniuse-lite/data/features/iframe-sandbox.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/iframe-sandbox.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N 3C 4C","4":"9 O P bB AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC"},H:{"2":"lD"},I:{"1":"UC J I nD oD pD xC qD rD","2":"mD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"sandbox attribute for iframes",D:true};
Index: node_modules/caniuse-lite/data/features/iframe-seamless.js
===================================================================
--- node_modules/caniuse-lite/data/features/iframe-seamless.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/iframe-seamless.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 J aB K D E F A B C L M G N O P bB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","66":"9 AB BB CB DB EB FB"},E:{"2":"J aB K E F A B C L M G 5C aC 6C 7C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","130":"D 8C"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","130":"QD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"seamless attribute for iframes",D:true};
Index: node_modules/caniuse-lite/data/features/iframe-srcdoc.js
===================================================================
--- node_modules/caniuse-lite/data/features/iframe-srcdoc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/iframe-srcdoc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC","8":"9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L","8":"M G N O P bB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC","8":"J aB 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B ID JD KD LD","8":"C OC wC MD PC"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC","8":"ND xC OD"},H:{"2":"lD"},I:{"1":"I qD rD","8":"UC J mD nD oD pD xC"},J:{"1":"A","8":"D"},K:{"1":"H","2":"A B","8":"C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"8":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"srcdoc attribute for iframes",D:true};
Index: node_modules/caniuse-lite/data/features/imagecapture.js
===================================================================
--- node_modules/caniuse-lite/data/features/imagecapture.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/imagecapture.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB 3C 4C","194":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB","322":"zB 0B 1B 2B 3B 4B"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","516":"HD"},F:{"1":"0 1 2 3 4 5 6 7 8 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB ID JD KD LD OC wC MD PC","322":"mB nB oB pB qB rB"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"194":"5D 6D"}},B:5,C:"ImageCapture API",D:true};
Index: node_modules/caniuse-lite/data/features/ime.js
===================================================================
--- node_modules/caniuse-lite/data/features/ime.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ime.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","161":"B"},B:{"2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","161":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A","161":"B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Input Method Editor API",D:true};
Index: node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js
===================================================================
--- node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"naturalWidth & naturalHeight image properties",D:true};
Index: node_modules/caniuse-lite/data/features/import-maps.js
===================================================================
--- node_modules/caniuse-lite/data/features/import-maps.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/import-maps.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","194":"Q H R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k 3C 4C","322":"l m n o p q"},D:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC","194":"IC JC KC LC MC Q H R S T U V W X"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC","194":"6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"Import maps",D:true};
Index: node_modules/caniuse-lite/data/features/imports.js
===================================================================
--- node_modules/caniuse-lite/data/features/imports.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/imports.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","8":"A B"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","8":"C L M G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB 3C 4C","8":"0 1 2 3 4 5 6 7 8 cB dB 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","72":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},D:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","66":"cB dB eB fB gB","72":"hB"},E:{"2":"J aB 5C aC 6C","8":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC","2":"0 1 2 3 4 5 6 7 8 F B C G N BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","66":"9 O P bB AB","72":"BB"},G:{"2":"aC ND xC OD PD","8":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"8":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"J sD tD uD vD wD bC xD yD","2":"9 AB BB CB DB EB FB GB HB IB zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"2":"4D"},S:{"1":"5D","8":"6D"}},B:5,C:"HTML Imports",D:true};
Index: node_modules/caniuse-lite/data/features/indeterminate-checkbox.js
===================================================================
--- node_modules/caniuse-lite/data/features/indeterminate-checkbox.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/indeterminate-checkbox.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","16":"yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","2":"zC UC","16":"3C"},D:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F B ID JD KD LD OC wC"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"indeterminate checkbox",D:true};
Index: node_modules/caniuse-lite/data/features/indexeddb.js
===================================================================
--- node_modules/caniuse-lite/data/features/indexeddb.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/indexeddb.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","33":"A B C L M G","36":"J aB K D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"A","8":"J aB K D E F","33":"CB","36":"9 B C L M G N O P bB AB BB"},E:{"1":"A B C L M G bC OC PC AD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J aB K D 5C aC 6C 7C","260":"E F 8C 9C","516":"BD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F ID JD","8":"B C KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"aC ND xC OD PD QD","260":"E RD SD TD","516":"fD"},H:{"2":"lD"},I:{"1":"I qD rD","8":"UC J mD nD oD pD xC"},J:{"1":"A","8":"D"},K:{"1":"H","2":"A","8":"B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"IndexedDB",D:true};
Index: node_modules/caniuse-lite/data/features/indexeddb2.js
===================================================================
--- node_modules/caniuse-lite/data/features/indexeddb2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/indexeddb2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB 3C 4C","132":"qB rB sB","260":"tB uB vB wB"},D:{"1":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB","132":"uB vB wB xB","260":"yB zB 0B 1B 2B 3B"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB ID JD KD LD OC wC MD PC","132":"hB iB jB kB","260":"lB mB nB oB pB qB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD","16":"UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","260":"sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","260":"5D"}},B:2,C:"IndexedDB 2.0",D:true};
Index: node_modules/caniuse-lite/data/features/inline-block.js
===================================================================
--- node_modules/caniuse-lite/data/features/inline-block.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/inline-block.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","4":"yC","132":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","36":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS inline-block",D:true};
Index: node_modules/caniuse-lite/data/features/innertext.js
===================================================================
--- node_modules/caniuse-lite/data/features/innertext.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/innertext.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","16":"yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","16":"F"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"HTMLElement.innerText",D:true};
Index: node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A yC","132":"B"},B:{"132":"C L M G N O P","260":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB 3C 4C","516":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"9 O P bB AB BB CB DB EB FB","2":"J aB K D E F A B C L M G N","132":"GB HB IB cB dB eB fB gB hB iB jB kB lB mB","260":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"K 6C 7C","2":"J aB 5C aC","2052":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"aC ND xC","1025":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1025":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2052":"A B"},O:{"1025":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"260":"3D"},R:{"1":"4D"},S:{"516":"5D 6D"}},B:1,C:"autocomplete attribute: on & off values",D:true};
Index: node_modules/caniuse-lite/data/features/input-color.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-color.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-color.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O P bB"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F G N ID JD KD LD"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD","129":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"Color input type",D:true};
Index: node_modules/caniuse-lite/data/features/input-datetime.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-datetime.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-datetime.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 3C 4C","1090":"zB 0B 1B 2B","2052":"3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b","4100":"0 1 2 3 4 5 6 7 8 c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O P bB","2052":"9 AB BB CB DB"},E:{"2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD","4100":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"aC ND xC","260":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC","8193":"pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC mD nD oD","514":"J pD xC"},J:{"1":"A","2":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"4100":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2052":"5D 6D"}},B:1,C:"Date and time input types",D:true};
Index: node_modules/caniuse-lite/data/features/input-email-tel-url.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-email-tel-url.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-email-tel-url.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","132":"mD nD oD"},J:{"1":"A","132":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Email, telephone & URL input types",D:true};
Index: node_modules/caniuse-lite/data/features/input-event.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-event.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-event.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","2561":"A B","2692":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2561":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","16":"zC","1537":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB 4C","1796":"UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","1025":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B","1537":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB K 5C aC","1025":"D E F A B C 7C 8C 9C bC OC","1537":"6C","4097":"L PC"},F:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","16":"F B C ID JD KD LD OC wC","260":"MD","1025":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","1537":"9 G N O P bB AB"},G:{"1":"bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC","1025":"E RD SD TD UD VD WD XD YD","1537":"OD PD QD","4097":"ZD aD"},H:{"2":"lD"},I:{"16":"mD nD","1025":"I rD","1537":"UC J oD pD xC qD"},J:{"1025":"A","1537":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2561":"A B"},O:{"1":"QC"},P:{"1025":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","1537":"5D"}},B:1,C:"input event",D:true};
Index: node_modules/caniuse-lite/data/features/input-file-accept.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-file-accept.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-file-accept.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J","16":"aB K D E AB BB CB DB EB","132":"9 F A B C L M G N O P bB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","132":"K D E F A B 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"2":"PD QD","132":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","514":"aC ND xC OD"},H:{"2":"lD"},I:{"2":"mD nD oD","260":"UC J pD xC","514":"I qD rD"},J:{"132":"A","260":"D"},K:{"2":"A B C OC wC PC","514":"H"},L:{"260":"I"},M:{"2":"NC"},N:{"514":"A","1028":"B"},O:{"2":"QC"},P:{"260":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"260":"3D"},R:{"260":"4D"},S:{"1":"5D 6D"}},B:1,C:"accept attribute for file input",D:true};
Index: node_modules/caniuse-lite/data/features/input-file-directory.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-file-directory.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-file-directory.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G N ID JD KD LD OC wC MD PC"},G:{"1":"rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Directory selection from file input",D:true};
Index: node_modules/caniuse-lite/data/features/input-file-multiple.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-file-multiple.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-file-multiple.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","2":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","2":"F ID JD KD"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD"},H:{"130":"lD"},I:{"130":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","130":"A B C OC wC PC"},L:{"132":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"130":"QC"},P:{"130":"J","132":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"132":"3D"},R:{"132":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"Multiple file selection",D:true};
Index: node_modules/caniuse-lite/data/features/input-inputmode.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-inputmode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-inputmode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N 3C 4C","4":"9 O P bB","194":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d"},D:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B","66":"2B 3B 4B VC 5B WC 6B 7B 8B 9B"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB ID JD KD LD OC wC MD PC","66":"pB qB rB sB tB uB vB wB xB yB"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"194":"5D 6D"}},B:1,C:"inputmode attribute",D:true};
Index: node_modules/caniuse-lite/data/features/input-minlength.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-minlength.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-minlength.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"Minimum length attribute for input fields",D:true};
Index: node_modules/caniuse-lite/data/features/input-number.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-number.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-number.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"C L","1025":"M G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C","513":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"388":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC mD nD oD","388":"J I pD xC qD rD"},J:{"2":"D","388":"A"},K:{"1":"A B C OC wC PC","388":"H"},L:{"388":"I"},M:{"641":"NC"},N:{"388":"A B"},O:{"388":"QC"},P:{"388":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"388":"3D"},R:{"388":"4D"},S:{"513":"5D 6D"}},B:1,C:"Number input type",D:true};
Index: node_modules/caniuse-lite/data/features/input-pattern.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-pattern.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-pattern.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","16":"aB","388":"K D E F A 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC","388":"E OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I rD","2":"UC J mD nD oD pD xC qD"},J:{"1":"A","2":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Pattern attribute for input fields",D:true};
Index: node_modules/caniuse-lite/data/features/input-placeholder.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-placeholder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-placeholder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","132":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z wC MD PC","2":"F ID JD KD LD","132":"B OC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC I mD nD oD xC qD rD","4":"J pD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"input placeholder attribute",D:true};
Index: node_modules/caniuse-lite/data/features/input-range.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-range.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-range.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"I xC qD rD","4":"UC J mD nD oD pD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Range input type",D:true};
Index: node_modules/caniuse-lite/data/features/input-search.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-search.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-search.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"C L M G N O P"},C:{"2":"zC UC 3C 4C","129":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M AB BB CB DB EB","129":"9 G N O P bB"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F ID JD KD LD","16":"B OC wC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC"},H:{"129":"lD"},I:{"1":"I qD rD","16":"mD nD","129":"UC J oD pD xC"},J:{"1":"D","129":"A"},K:{"1":"C H","2":"A","16":"B OC wC","129":"PC"},L:{"1":"I"},M:{"129":"NC"},N:{"129":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"129":"5D 6D"}},B:1,C:"Search input type",D:true};
Index: node_modules/caniuse-lite/data/features/input-selection.js
===================================================================
--- node_modules/caniuse-lite/data/features/input-selection.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/input-selection.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","16":"F ID JD KD"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"2":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Selection controls for input & textarea",D:true};
Index: node_modules/caniuse-lite/data/features/insert-adjacent.js
===================================================================
--- node_modules/caniuse-lite/data/features/insert-adjacent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/insert-adjacent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","16":"yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","16":"F"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()",D:true};
Index: node_modules/caniuse-lite/data/features/insertadjacenthtml.js
===================================================================
--- node_modules/caniuse-lite/data/features/insertadjacenthtml.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/insertadjacenthtml.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","16":"yC","132":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","16":"F ID"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Element.insertAdjacentHTML()",D:true};
Index: node_modules/caniuse-lite/data/features/internationalization.js
===================================================================
--- node_modules/caniuse-lite/data/features/internationalization.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/internationalization.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"Internationalization API",D:true};
Index: node_modules/caniuse-lite/data/features/intersectionobserver-v2.js
===================================================================
--- node_modules/caniuse-lite/data/features/intersectionobserver-v2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/intersectionobserver-v2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"IntersectionObserver V2",D:true};
Index: node_modules/caniuse-lite/data/features/intersectionobserver.js
===================================================================
--- node_modules/caniuse-lite/data/features/intersectionobserver.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/intersectionobserver.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"N O P","2":"C L M","260":"G","513":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB 3C 4C","194":"yB zB 0B"},D:{"1":"4B VC 5B WC 6B 7B 8B","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","260":"xB yB zB 0B 1B 2B 3B","513":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC"},F:{"1":"rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB ID JD KD LD OC wC MD PC","260":"kB lB mB nB oB pB qB","513":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","513":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","513":"H"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","260":"sD tD"},Q:{"513":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"IntersectionObserver",D:true};
Index: node_modules/caniuse-lite/data/features/intl-pluralrules.js
===================================================================
--- node_modules/caniuse-lite/data/features/intl-pluralrules.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/intl-pluralrules.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O","130":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB ID JD KD LD OC wC MD PC"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"Intl.PluralRules API",D:true};
Index: node_modules/caniuse-lite/data/features/intrinsic-width.js
===================================================================
--- node_modules/caniuse-lite/data/features/intrinsic-width.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/intrinsic-width.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","1537":"Q H R S T U V W X Y Z a b c"},C:{"2":"zC","932":"9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B 3C 4C","2308":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB","545":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB","1025":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","1537":"sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C","516":"B C L M G OC PC AD BD CD cC dC QC DD","548":"F A 9C bC","676":"D E 7C 8C"},F:{"2":"F B C ID JD KD LD OC wC MD PC","513":"gB","545":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB","1025":"0 1 2 3 4 5 6 7 8 e f g h i j k l m n o p q r s t u v w x y z","1537":"fB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD","516":"eD fD gD cC dC QC hD","548":"SD TD UD VD WD XD YD ZD aD bD cD dD","676":"E QD RD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC","545":"qD rD","1025":"I"},J:{"2":"D","545":"A"},K:{"2":"A B C OC wC PC","1025":"H"},L:{"1025":"I"},M:{"2308":"NC"},N:{"2":"A B"},O:{"1537":"QC"},P:{"545":"J","1025":"9 AB BB CB DB EB FB GB HB IB SC TC 2D","1537":"sD tD uD vD wD bC xD yD zD 0D 1D RC"},Q:{"1537":"3D"},R:{"1537":"4D"},S:{"932":"5D","2308":"6D"}},B:5,C:"Intrinsic & Extrinsic Sizing",D:true};
Index: node_modules/caniuse-lite/data/features/jpeg2000.js
===================================================================
--- node_modules/caniuse-lite/data/features/jpeg2000.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/jpeg2000.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD","2":"J 5C aC TC oC pC qC rC GD sC tC uC vC HD","129":"aB 6C"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD","2":"aC ND xC TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"JPEG 2000 image format",D:true};
Index: node_modules/caniuse-lite/data/features/jpegxl.js
===================================================================
--- node_modules/caniuse-lite/data/features/jpegxl.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/jpegxl.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","578":"a b c d e f g h i j k l m n o p q r s"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y 3C 4C","2370":"0 1 2 3 4 5 6 7 8 Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","194":"a b c d e f g h i j k l m n o p q r s"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED","3076":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","194":"LC MC Q H R XC S T U V W X Y Z a b c d e"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD","3076":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"JPEG XL image format",D:true};
Index: node_modules/caniuse-lite/data/features/jpegxr.js
===================================================================
--- node_modules/caniuse-lite/data/features/jpegxr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/jpegxr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"1":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"JPEG XR image format",D:true};
Index: node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js
===================================================================
--- node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB ID JD KD LD OC wC MD PC"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"Lookbehind in JS regular expressions",D:true};
Index: node_modules/caniuse-lite/data/features/json.js
===================================================================
--- node_modules/caniuse-lite/data/features/json.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/json.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D yC","129":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"JSON parsing",D:true};
Index: node_modules/caniuse-lite/data/features/justify-content-space-evenly.js
===================================================================
--- node_modules/caniuse-lite/data/features/justify-content-space-evenly.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/justify-content-space-evenly.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G","132":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B","132":"3B 4B VC"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C","132":"bC"},F:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB ID JD KD LD OC wC MD PC","132":"qB rB sB"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD","132":"VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD","132":"uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","132":"5D"}},B:5,C:"CSS justify-content: space-evenly",D:true};
Index: node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js
===================================================================
--- node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND"},H:{"2":"lD"},I:{"1":"I qD rD","2":"mD nD oD","132":"UC J pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:7,C:"High-quality kerning pairs & ligatures",D:true};
Index: node_modules/caniuse-lite/data/features/keyboardevent-charcode.js
===================================================================
--- node_modules/caniuse-lite/data/features/keyboardevent-charcode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/keyboardevent-charcode.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","16":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD OC wC MD","16":"C"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"H PC","2":"A B OC wC","16":"C"},L:{"1":"I"},M:{"130":"NC"},N:{"130":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:7,C:"KeyboardEvent.charCode",D:true};
Index: node_modules/caniuse-lite/data/features/keyboardevent-code.js
===================================================================
--- node_modules/caniuse-lite/data/features/keyboardevent-code.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/keyboardevent-code.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB","194":"oB pB qB rB sB tB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB ID JD KD LD OC wC MD PC","194":"IB cB dB eB fB gB"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"194":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"J","194":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"194":"4D"},S:{"1":"5D 6D"}},B:5,C:"KeyboardEvent.code",D:true};
Index: node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js
===================================================================
--- node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B G N ID JD KD LD OC wC MD","16":"C"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H PC","2":"A B OC wC","16":"C"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"KeyboardEvent.getModifierState()",D:true};
Index: node_modules/caniuse-lite/data/features/keyboardevent-key.js
===================================================================
--- node_modules/caniuse-lite/data/features/keyboardevent-key.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/keyboardevent-key.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB 3C 4C","132":"CB DB EB FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"9 F B G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB ID JD KD LD OC wC MD","16":"C"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"1":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H PC","2":"A B OC wC","16":"C"},L:{"1":"I"},M:{"1":"NC"},N:{"260":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"KeyboardEvent.key",D:true};
Index: node_modules/caniuse-lite/data/features/keyboardevent-location.js
===================================================================
--- node_modules/caniuse-lite/data/features/keyboardevent-location.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/keyboardevent-location.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"K 5C aC","132":"J aB 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD OC wC MD","16":"C","132":"G N"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC","132":"OD PD QD"},H:{"2":"lD"},I:{"1":"I qD rD","16":"mD nD","132":"UC J oD pD xC"},J:{"132":"D A"},K:{"1":"H PC","2":"A B OC wC","16":"C"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"KeyboardEvent.location",D:true};
Index: node_modules/caniuse-lite/data/features/keyboardevent-which.js
===================================================================
--- node_modules/caniuse-lite/data/features/keyboardevent-which.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/keyboardevent-which.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","16":"aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","16":"F ID"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC","16":"mD nD","132":"qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"132":"I"},M:{"132":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"2":"J","132":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"132":"4D"},S:{"1":"5D 6D"}},B:7,C:"KeyboardEvent.which",D:true};
Index: node_modules/caniuse-lite/data/features/lazyload.js
===================================================================
--- node_modules/caniuse-lite/data/features/lazyload.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/lazyload.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"1":"B","2":"A"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Resource Hints: Lazyload",D:true};
Index: node_modules/caniuse-lite/data/features/let.js
===================================================================
--- node_modules/caniuse-lite/data/features/let.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/let.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","2052":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","194":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O P","322":"9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB","516":"nB oB pB qB rB sB tB uB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C","1028":"A bC"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","322":"9 G N O P bB AB BB CB DB EB FB GB","516":"HB IB cB dB eB fB gB hB"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD","1028":"UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","516":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"let",D:true};
Index: node_modules/caniuse-lite/data/features/link-icon-png.js
===================================================================
--- node_modules/caniuse-lite/data/features/link-icon-png.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/link-icon-png.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","130":"E aC ND xC OD PD QD RD SD TD UD VD WD XD"},H:{"130":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D","130":"A"},K:{"1":"H","130":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"130":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"PNG favicons",D:true};
Index: node_modules/caniuse-lite/data/features/link-icon-svg.js
===================================================================
--- node_modules/caniuse-lite/data/features/link-icon-svg.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/link-icon-svg.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P Q","1537":"0 1 2 3 4 5 6 7 8 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"zC UC 3C 4C","260":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB","513":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q","1537":"0 1 2 3 4 5 6 7 8 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD"},F:{"1":"qB rB sB tB uB vB wB xB yB zB","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC ID JD KD LD OC wC MD PC","1537":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"sC tC uC vC","2":"YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD","130":"E aC ND xC OD PD QD RD SD TD UD VD WD XD"},H:{"130":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D","130":"A"},K:{"130":"A B C OC wC PC","1537":"H"},L:{"1537":"I"},M:{"2":"NC"},N:{"130":"A B"},O:{"2":"QC"},P:{"2":"J sD tD uD vD wD bC xD yD","1537":"9 AB BB CB DB EB FB GB HB IB zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"1537":"4D"},S:{"513":"5D 6D"}},B:1,C:"SVG favicons",D:true};
Index: node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js
===================================================================
--- node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E yC","132":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","260":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"sC tC uC vC","16":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD"},H:{"2":"lD"},I:{"16":"UC J I mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"1":"H","16":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","16":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Resource Hints: dns-prefetch",D:true};
Index: node_modules/caniuse-lite/data/features/link-rel-modulepreload.js
===================================================================
--- node_modules/caniuse-lite/data/features/link-rel-modulepreload.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/link-rel-modulepreload.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B"},E:{"1":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED"},F:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB ID JD KD LD OC wC MD PC"},G:{"1":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:1,C:"Resource Hints: modulepreload",D:true};
Index: node_modules/caniuse-lite/data/features/link-rel-preconnect.js
===================================================================
--- node_modules/caniuse-lite/data/features/link-rel-preconnect.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/link-rel-preconnect.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M","260":"G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB 3C 4C","129":"lB","514":"FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Resource Hints: preconnect",D:true};
Index: node_modules/caniuse-lite/data/features/link-rel-prefetch.js
===================================================================
--- node_modules/caniuse-lite/data/features/link-rel-prefetch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/link-rel-prefetch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D"},E:{"2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC","194":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD","194":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"J I qD rD","2":"UC mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Resource Hints: prefetch",D:true};
Index: node_modules/caniuse-lite/data/features/link-rel-preload.js
===================================================================
--- node_modules/caniuse-lite/data/features/link-rel-preload.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/link-rel-preload.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N","1028":"O P"},C:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 3C 4C","132":"2B","578":"3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T"},D:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","322":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD","322":"WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:4,C:"Resource Hints: preload",D:true};
Index: node_modules/caniuse-lite/data/features/link-rel-prerender.js
===================================================================
--- node_modules/caniuse-lite/data/features/link-rel-prerender.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/link-rel-prerender.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"Resource Hints: prerender",D:true};
Index: node_modules/caniuse-lite/data/features/loading-lazy-attr.js
===================================================================
--- node_modules/caniuse-lite/data/features/loading-lazy-attr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/loading-lazy-attr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC 3C 4C","132":"0 1 2 3 JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC","66":"JC KC"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC","322":"M G AD BD CD cC","580":"dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC","66":"6B 7B"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD","322":"dD eD fD gD cC","580":"dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D","132":"6D"}},B:1,C:"Lazy loading via attribute for images & iframes",D:true};
Index: node_modules/caniuse-lite/data/features/localecompare.js
===================================================================
--- node_modules/caniuse-lite/data/features/localecompare.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/localecompare.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","16":"yC","132":"K D E F A"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","132":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","132":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F B C ID JD KD LD OC wC MD","132":"PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"E aC ND xC OD PD QD RD SD TD"},H:{"132":"lD"},I:{"1":"I qD rD","132":"UC J mD nD oD pD xC"},J:{"132":"D A"},K:{"1":"H","16":"A B C OC wC","132":"PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","132":"A"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","132":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","4":"5D"}},B:6,C:"localeCompare()",D:true};
Index: node_modules/caniuse-lite/data/features/magnetometer.js
===================================================================
--- node_modules/caniuse-lite/data/features/magnetometer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/magnetometer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","194":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB ID JD KD LD OC wC MD PC","194":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"194":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:4,C:"Magnetometer",D:true};
Index: node_modules/caniuse-lite/data/features/matchesselector.js
===================================================================
--- node_modules/caniuse-lite/data/features/matchesselector.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/matchesselector.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","36":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","36":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C","36":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","36":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB"},E:{"1":"E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","36":"aB K D 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B ID JD KD LD OC","36":"9 C G N O P bB wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC","36":"ND xC OD PD QD"},H:{"2":"lD"},I:{"1":"I","2":"mD","36":"UC J nD oD pD xC qD rD"},J:{"36":"D A"},K:{"1":"H","2":"A B","36":"C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"36":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","36":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"matches() DOM method",D:true};
Index: node_modules/caniuse-lite/data/features/matchmedia.js
===================================================================
--- node_modules/caniuse-lite/data/features/matchmedia.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/matchmedia.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B C ID JD KD LD OC wC MD"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"1":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"H PC","2":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"matchMedia",D:true};
Index: node_modules/caniuse-lite/data/features/mathml.js
===================================================================
--- node_modules/caniuse-lite/data/features/mathml.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mathml.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"F A B yC","8":"K D E"},B:{"2":"C L M G N O P","8":"Q H R S T U V W X Y Z a b c d e f","584":"g h i j k l m n o p q r","1025":"0 1 2 3 4 5 6 7 8 s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","129":"zC UC 3C 4C"},D:{"1":"DB","8":"9 J aB K D E F A B C L M G N O P bB AB BB CB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f","584":"g h i j k l m n o p q r","1025":"0 1 2 3 4 5 6 7 8 s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","260":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"2":"F","8":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC","584":"S T U V W X Y Z a b c d","1025":"0 1 2 3 4 5 6 7 8 e f g h i j k l m n o p q r s t u v w x y z","2052":"B C ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"aC ND xC"},H:{"8":"lD"},I:{"8":"UC J mD nD oD pD xC qD rD","1025":"I"},J:{"1":"A","8":"D"},K:{"8":"A B C OC wC PC","1025":"H"},L:{"1025":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"8":"QC"},P:{"1":"AB BB CB DB EB FB GB HB IB","8":"9 J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"8":"3D"},R:{"8":"4D"},S:{"1":"5D 6D"}},B:2,C:"MathML",D:true};
Index: node_modules/caniuse-lite/data/features/maxlength.js
===================================================================
--- node_modules/caniuse-lite/data/features/maxlength.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/maxlength.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","16":"yC","900":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","1025":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","900":"zC UC 3C 4C","1025":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"aB 5C","900":"J aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F","132":"B C ID JD KD LD OC wC MD PC"},G:{"1":"ND xC OD PD QD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC","2052":"E RD"},H:{"132":"lD"},I:{"1":"UC J oD pD xC qD rD","16":"mD nD","4097":"I"},J:{"1":"D A"},K:{"132":"A B C OC wC PC","4097":"H"},L:{"4097":"I"},M:{"4097":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"4097":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1025":"5D 6D"}},B:1,C:"maxlength attribute for input and textarea elements",D:true};
Index: node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js
===================================================================
--- node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB","33":"eB fB gB hB iB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","33":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 3C 4C"},M:{"1":"NC"},A:{"2":"K D E F A yC","33":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G N O P ID JD KD LD OC wC MD PC","33":"9 bB AB BB CB"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC HD"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},I:{"1":"I","2":"UC J mD nD oD pD xC","33":"qD rD"}},B:6,C:"CSS ::backdrop pseudo-element",D:undefined};
Index: node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js
===================================================================
--- node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N 3C 4C","33":"9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB ID JD KD LD OC wC MD PC"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"J aB K 5C aC 6C 7C HD","33":"D E F A 8C 9C bC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD","33":"E QD RD SD TD UD VD"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"}},B:6,C:"isolate-override from unicode-bidi",D:undefined};
Index: node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js
===================================================================
--- node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G","33":"9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F 3C 4C","33":"9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"J aB 5C aC 6C HD","33":"K D E F A 7C 8C 9C bC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"E PD QD RD SD TD UD VD"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"}},B:6,C:"isolate from unicode-bidi",D:undefined};
Index: node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js
===================================================================
--- node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F 3C 4C","33":"9 A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB ID JD KD LD OC wC MD PC"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"J aB 5C aC 6C HD","33":"K D E F A 7C 8C 9C bC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"E PD QD RD SD TD UD VD"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"}},B:6,C:"plaintext from unicode-bidi",D:undefined};
Index: node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js
===================================================================
--- node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C","33":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB ID JD KD LD OC wC MD PC"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"J aB K D 5C aC 6C 7C 8C HD","33":"E F A B C 9C bC OC"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","33":"E RD SD TD UD VD WD XD YD"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"}},B:6,C:"text-decoration-color property",D:undefined};
Index: node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js
===================================================================
--- node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C","33":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB ID JD KD LD OC wC MD PC"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"J aB K D 5C aC 6C 7C 8C HD","33":"E F A B C 9C bC OC"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","33":"E RD SD TD UD VD WD XD YD"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"}},B:6,C:"text-decoration-line property",D:undefined};
Index: node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js
===================================================================
--- node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB ID JD KD LD OC wC MD PC"},K:{"1":"H","2":"A B C OC wC PC"},E:{"2":"J aB K D 5C aC 6C 7C 8C HD","33":"E F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC"},G:{"2":"aC ND xC OD PD QD","33":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"}},B:6,C:"text-decoration shorthand property",D:undefined};
Index: node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js
===================================================================
--- node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C","33":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},M:{"1":"NC"},A:{"2":"K D E F A B yC"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB ID JD KD LD OC wC MD PC"},K:{"1":"H","2":"A B C OC wC PC"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC","2":"J aB K D 5C aC 6C 7C 8C HD","33":"E F A B C 9C bC OC"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","33":"E RD SD TD UD VD WD XD YD"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"}},B:6,C:"text-decoration-style property",D:undefined};
Index: node_modules/caniuse-lite/data/features/media-fragments.js
===================================================================
--- node_modules/caniuse-lite/data/features/media-fragments.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/media-fragments.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB 3C 4C","132":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"J aB K D E F A B C L M G N O","132":"0 1 2 3 4 5 6 7 8 9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB 5C aC 6C","132":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","132":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"aC ND xC OD PD QD","132":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC","132":"I qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","132":"H"},L:{"132":"I"},M:{"132":"NC"},N:{"132":"A B"},O:{"132":"QC"},P:{"2":"J sD","132":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"132":"3D"},R:{"132":"4D"},S:{"132":"5D 6D"}},B:2,C:"Media Fragments",D:true};
Index: node_modules/caniuse-lite/data/features/mediacapture-fromelement.js
===================================================================
--- node_modules/caniuse-lite/data/features/mediacapture-fromelement.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mediacapture-fromelement.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB 3C 4C","260":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","324":"xB yB zB 0B 1B 2B 3B 4B VC 5B WC"},E:{"2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","132":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC","324":"iB jB kB lB mB nB oB pB qB rB sB tB"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"260":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","132":"sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"260":"5D 6D"}},B:5,C:"Media Capture from DOM Elements API",D:true};
Index: node_modules/caniuse-lite/data/features/mediarecorder.js
===================================================================
--- node_modules/caniuse-lite/data/features/mediarecorder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mediarecorder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB","194":"tB uB"},E:{"1":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC","322":"L M PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB ID JD KD LD OC wC MD PC","194":"gB hB"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD","578":"YD ZD aD bD cD dD eD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"MediaRecorder API",D:true};
Index: node_modules/caniuse-lite/data/features/mediasource.js
===================================================================
--- node_modules/caniuse-lite/data/features/mediasource.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mediasource.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB 3C 4C","66":"EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N","33":"CB DB EB FB GB HB IB cB","66":"9 O P bB AB BB"},E:{"1":"E F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD","260":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I rD","2":"UC J mD nD oD pD xC qD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Media Source Extensions",D:true};
Index: node_modules/caniuse-lite/data/features/menu.js
===================================================================
--- node_modules/caniuse-lite/data/features/menu.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/menu.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"zC UC J aB K D 3C 4C","132":"9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T","450":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","66":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","66":"hB iB jB kB lB mB nB oB pB qB rB sB"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"450":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Context menu item (menuitem element)",D:true};
Index: node_modules/caniuse-lite/data/features/meta-theme-color.js
===================================================================
--- node_modules/caniuse-lite/data/features/meta-theme-color.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/meta-theme-color.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB","132":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","258":"lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD BD","2052":"sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD","1026":"sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"516":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","16":"sD"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:1,C:"theme-color Meta Tag",D:true};
Index: node_modules/caniuse-lite/data/features/meter.js
===================================================================
--- node_modules/caniuse-lite/data/features/meter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/meter.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F ID JD KD LD"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"meter element",D:true};
Index: node_modules/caniuse-lite/data/features/midi.js
===================================================================
--- node_modules/caniuse-lite/data/features/midi.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/midi.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"Web MIDI API",D:true};
Index: node_modules/caniuse-lite/data/features/minmaxwh.js
===================================================================
--- node_modules/caniuse-lite/data/features/minmaxwh.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/minmaxwh.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","8":"K yC","129":"D","257":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS min/max-width/height",D:true};
Index: node_modules/caniuse-lite/data/features/mp3.js
===================================================================
--- node_modules/caniuse-lite/data/features/mp3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mp3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","132":"9 J aB K D E F A B C L M G N O P bB AB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","2":"mD nD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"MP3 audio format",D:true};
Index: node_modules/caniuse-lite/data/features/mpeg-dash.js
===================================================================
--- node_modules/caniuse-lite/data/features/mpeg-dash.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mpeg-dash.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","386":"AB BB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)",D:true};
Index: node_modules/caniuse-lite/data/features/mpeg4.js
===================================================================
--- node_modules/caniuse-lite/data/features/mpeg4.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mpeg4.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB 3C 4C","4":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I qD rD","4":"UC J mD nD pD xC","132":"oD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"MPEG-4/H.264 video format",D:true};
Index: node_modules/caniuse-lite/data/features/multibackgrounds.js
===================================================================
--- node_modules/caniuse-lite/data/features/multibackgrounds.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/multibackgrounds.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","2":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 Multiple backgrounds",D:true};
Index: node_modules/caniuse-lite/data/features/multicolumn.js
===================================================================
--- node_modules/caniuse-lite/data/features/multicolumn.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/multicolumn.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"C L M G N O P","516":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"132":"yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B","164":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB 3C 4C","516":"9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a","1028":"0 1 2 3 4 5 6 7 8 b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"420":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","516":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","132":"F 9C","164":"D E 8C","420":"J aB K 5C aC 6C 7C"},F:{"1":"C OC wC MD PC","2":"F B ID JD KD LD","420":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB","516":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"SD TD","164":"E QD RD","420":"aC ND xC OD PD"},H:{"1":"lD"},I:{"420":"UC J mD nD oD pD xC qD rD","516":"I"},J:{"420":"D A"},K:{"1":"C OC wC PC","2":"A B","516":"H"},L:{"516":"I"},M:{"1028":"NC"},N:{"1":"A B"},O:{"516":"QC"},P:{"420":"J","516":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"516":"3D"},R:{"516":"4D"},S:{"164":"5D 6D"}},B:4,C:"CSS3 Multiple column layout",D:true};
Index: node_modules/caniuse-lite/data/features/mutation-events.js
===================================================================
--- node_modules/caniuse-lite/data/features/mutation-events.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mutation-events.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","260":"F A B"},B:{"2":"UB VB WB XB YB ZB I","66":"KB LB MB NB OB PB QB RB SB TB","132":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB","260":"C L M G N O P"},C:{"2":"zC UC J aB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","260":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},D:{"2":"SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M","66":"KB LB MB NB OB PB QB RB","132":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB"},E:{"2":"sC tC uC vC HD","16":"5C aC","132":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD"},F:{"1":"C MD PC","2":"F ID JD KD LD","16":"B OC wC","66":"0 1 2 3 4 5 6 7 8 w x y z","132":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v"},G:{"2":"sC tC uC vC","16":"aC ND","132":"E xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD"},H:{"2":"lD"},I:{"2":"I","16":"mD nD","132":"UC J oD pD xC qD rD"},J:{"132":"D A"},K:{"1":"C PC","2":"A","16":"B OC wC","132":"H"},L:{"2":"I"},M:{"2":"NC"},N:{"260":"A B"},O:{"132":"QC"},P:{"132":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"132":"3D"},R:{"132":"4D"},S:{"260":"5D 6D"}},B:7,C:"Mutation events",D:true};
Index: node_modules/caniuse-lite/data/features/mutationobserver.js
===================================================================
--- node_modules/caniuse-lite/data/features/mutationobserver.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/mutationobserver.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E yC","8":"F A"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O","33":"9 P bB AB BB CB DB EB FB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","33":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC mD nD oD","8":"J pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","8":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Mutation Observer",D:true};
Index: node_modules/caniuse-lite/data/features/namevalue-storage.js
===================================================================
--- node_modules/caniuse-lite/data/features/namevalue-storage.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/namevalue-storage.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","2":"yC","8":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","4":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Web Storage - name/value pairs",D:true};
Index: node_modules/caniuse-lite/data/features/native-filesystem-api.js
===================================================================
--- node_modules/caniuse-lite/data/features/native-filesystem-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/native-filesystem-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","194":"Q H R S T U","260":"V W X Y Z a b c d e f g h i j k l m n"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC","194":"IC JC KC LC MC Q H R S T U","260":"V W X Y Z a b c d e f g h i j k l m n"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC","194":"6B 7B 8B 9B AC BC CC DC EC FC","260":"GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"File System Access API",D:true};
Index: node_modules/caniuse-lite/data/features/nav-timing.js
===================================================================
--- node_modules/caniuse-lite/data/features/nav-timing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/nav-timing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB","33":"K D E F A B C"},E:{"1":"E F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"J I pD xC qD rD","2":"UC mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Navigation Timing API",D:true};
Index: node_modules/caniuse-lite/data/features/netinfo.js
===================================================================
--- node_modules/caniuse-lite/data/features/netinfo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/netinfo.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B","1028":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB ID JD KD LD OC wC MD PC","1028":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"mD qD rD","132":"UC J nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","132":"J","516":"sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"6D","260":"5D"}},B:7,C:"Network Information API",D:true};
Index: node_modules/caniuse-lite/data/features/notifications.js
===================================================================
--- node_modules/caniuse-lite/data/features/notifications.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/notifications.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J","36":"9 aB K D E F A B C L M G N O P bB AB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC","516":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC","36":"I qD rD"},J:{"1":"A","2":"D"},K:{"2":"A B C OC wC PC","36":"H"},L:{"257":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"36":"J","130":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"130":"4D"},S:{"1":"5D 6D"}},B:1,C:"Web Notifications",D:true};
Index: node_modules/caniuse-lite/data/features/object-entries.js
===================================================================
--- node_modules/caniuse-lite/data/features/object-entries.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/object-entries.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Object.entries",D:true};
Index: node_modules/caniuse-lite/data/features/object-fit.js
===================================================================
--- node_modules/caniuse-lite/data/features/object-fit.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/object-fit.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G","260":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C","132":"E F 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F G N O P ID JD KD","33":"B C LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","132":"E RD SD TD"},H:{"33":"lD"},I:{"1":"I rD","2":"UC J mD nD oD pD xC qD"},J:{"2":"D A"},K:{"1":"H","2":"A","33":"B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 object-fit/object-position",D:true};
Index: node_modules/caniuse-lite/data/features/object-observe.js
===================================================================
--- node_modules/caniuse-lite/data/features/object-observe.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/object-observe.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"CB DB EB FB GB HB IB cB dB eB fB gB hB iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"J","2":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Object.observe data binding",D:true};
Index: node_modules/caniuse-lite/data/features/object-values.js
===================================================================
--- node_modules/caniuse-lite/data/features/object-values.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/object-values.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"8":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","8":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","8":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"E aC ND xC OD PD QD RD SD TD UD"},H:{"8":"lD"},I:{"1":"I","8":"UC J mD nD oD pD xC qD rD"},J:{"8":"D A"},K:{"1":"H","8":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"8":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","8":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Object.values method",D:true};
Index: node_modules/caniuse-lite/data/features/objectrtc.js
===================================================================
--- node_modules/caniuse-lite/data/features/objectrtc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/objectrtc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"L M G N O P","2":"0 1 2 3 4 5 6 7 8 C Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"Object RTC (ORTC) API for WebRTC",D:true};
Index: node_modules/caniuse-lite/data/features/offline-apps.js
===================================================================
--- node_modules/caniuse-lite/data/features/offline-apps.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/offline-apps.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"F yC","8":"K D E"},B:{"1":"C L M G N O P Q H R S T","2":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S 3C 4C","2":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","4":"UC","8":"zC"},D:{"1":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T","2":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M 6C 7C 8C 9C bC OC PC AD BD","2":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"5C aC"},F:{"1":"9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC LD OC wC MD PC","2":"0 1 2 3 4 5 6 7 8 F HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID","8":"JD KD"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD","2":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J mD nD oD pD xC qD rD","2":"I"},J:{"1":"D A"},K:{"1":"B C OC wC PC","2":"A H"},L:{"2":"I"},M:{"2":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"2":"4D"},S:{"1":"5D","2":"6D"}},B:7,C:"Offline web applications",D:true};
Index: node_modules/caniuse-lite/data/features/offscreencanvas.js
===================================================================
--- node_modules/caniuse-lite/data/features/offscreencanvas.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/offscreencanvas.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB 3C 4C","194":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","322":"4B VC 5B WC 6B 7B 8B 9B AC BC CC"},E:{"1":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC","516":"fC gC hC iC ED"},F:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB ID JD KD LD OC wC MD PC","322":"rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B"},G:{"1":"SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC","516":"fC gC hC iC iD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"194":"5D 6D"}},B:1,C:"OffscreenCanvas",D:true};
Index: node_modules/caniuse-lite/data/features/ogg-vorbis.js
===================================================================
--- node_modules/caniuse-lite/data/features/ogg-vorbis.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ogg-vorbis.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD","260":"SC jC kC lC mC nC FD TC oC pC qC","388":"G BD CD cC dC QC DD RC eC fC gC hC iC ED"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1":"rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC","260":"mC nC jD TC oC pC qC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"A","2":"D"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Ogg Vorbis audio format",D:true};
Index: node_modules/caniuse-lite/data/features/ogv.js
===================================================================
--- node_modules/caniuse-lite/data/features/ogv.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ogv.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","8":"F A B"},B:{"1":"0 1 2 3 4 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","8":"C L M G N","194":"5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB 3C 4C","2":"zC UC NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o KD LD OC wC MD PC","2":"F ID JD","194":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"1":"NC"},N:{"8":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"2":"4D"},S:{"1":"5D 6D"}},B:6,C:"Ogg/Theora video format",D:true};
Index: node_modules/caniuse-lite/data/features/ol-reversed.js
===================================================================
--- node_modules/caniuse-lite/data/features/ol-reversed.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ol-reversed.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G","16":"N O P bB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","16":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD OC wC MD","16":"C"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Reversed attribute of ordered lists",D:true};
Index: node_modules/caniuse-lite/data/features/once-event-listener.js
===================================================================
--- node_modules/caniuse-lite/data/features/once-event-listener.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/once-event-listener.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"\"once\" event listener option",D:true};
Index: node_modules/caniuse-lite/data/features/online-status.js
===================================================================
--- node_modules/caniuse-lite/data/features/online-status.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/online-status.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D yC","260":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC","516":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L"},E:{"1":"aB K E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","1025":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD","4":"PC"},G:{"1":"E xC OD PD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND","1025":"QD"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"A","132":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Online/offline status",D:true};
Index: node_modules/caniuse-lite/data/features/opus.js
===================================================================
--- node_modules/caniuse-lite/data/features/opus.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/opus.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB"},E:{"2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","132":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC","260":"mC","516":"nC FD TC oC pC qC","1028":"rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G N O P bB ID JD KD LD OC wC MD PC"},G:{"1":"rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD","132":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC","260":"mC","516":"nC jD TC oC pC qC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Opus audio format",D:true};
Index: node_modules/caniuse-lite/data/features/orientation-sensor.js
===================================================================
--- node_modules/caniuse-lite/data/features/orientation-sensor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/orientation-sensor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","194":"4B VC 5B WC 6B 7B 8B 9B AC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:4,C:"Orientation Sensor",D:true};
Index: node_modules/caniuse-lite/data/features/outline.js
===================================================================
--- node_modules/caniuse-lite/data/features/outline.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/outline.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D yC","260":"E","388":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","388":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD","129":"PC","260":"F B ID JD KD LD OC wC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"C H PC","260":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"388":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS outline properties",D:true};
Index: node_modules/caniuse-lite/data/features/pad-start-end.js
===================================================================
--- node_modules/caniuse-lite/data/features/pad-start-end.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/pad-start-end.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()",D:true};
Index: node_modules/caniuse-lite/data/features/page-transition-events.js
===================================================================
--- node_modules/caniuse-lite/data/features/page-transition-events.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/page-transition-events.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"PageTransitionEvent",D:true};
Index: node_modules/caniuse-lite/data/features/pagevisibility.js
===================================================================
--- node_modules/caniuse-lite/data/features/pagevisibility.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/pagevisibility.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F 3C 4C","33":"A B C L M G N O"},D:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L","33":"9 M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B C ID JD KD LD OC wC MD","33":"G N O P bB"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","33":"qD rD"},J:{"1":"A","2":"D"},K:{"1":"H PC","2":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","33":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Page Visibility",D:true};
Index: node_modules/caniuse-lite/data/features/passive-event-listener.js
===================================================================
--- node_modules/caniuse-lite/data/features/passive-event-listener.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/passive-event-listener.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"Passive event listeners",D:true};
Index: node_modules/caniuse-lite/data/features/passkeys.js
===================================================================
--- node_modules/caniuse-lite/data/features/passkeys.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/passkeys.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},C:{"1":"5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},E:{"1":"eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC"},F:{"1":"0 1 2 3 4 5 6 7 8 g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f ID JD KD LD OC wC MD PC"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"AB BB CB DB EB FB GB HB IB","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","16":"9"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"Passkeys",D:true};
Index: node_modules/caniuse-lite/data/features/passwordrules.js
===================================================================
--- node_modules/caniuse-lite/data/features/passwordrules.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/passwordrules.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","16":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 3C 4C","16":"0C 1C 2C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"YC ZC NC"},E:{"1":"C L PC","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC OC","16":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB ID JD KD LD OC wC MD PC","16":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"16":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","16":"I"},J:{"2":"D","16":"A"},K:{"2":"A B C OC wC PC","16":"H"},L:{"16":"I"},M:{"16":"NC"},N:{"2":"A","16":"B"},O:{"16":"QC"},P:{"2":"J sD tD","16":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D 6D"}},B:1,C:"Password Rules",D:false};
Index: node_modules/caniuse-lite/data/features/path2d.js
===================================================================
--- node_modules/caniuse-lite/data/features/path2d.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/path2d.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L","132":"M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB 3C 4C","132":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB","132":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C 7C","132":"E F 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB ID JD KD LD OC wC MD PC","132":"CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","16":"E","132":"RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","132":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Path2D",D:true};
Index: node_modules/caniuse-lite/data/features/payment-request.js
===================================================================
--- node_modules/caniuse-lite/data/features/payment-request.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/payment-request.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L","322":"M","8196":"G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 3C 4C","4162":"1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B","16452":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB","194":"zB 0B 1B 2B 3B 4B","1090":"VC 5B","8196":"WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C","514":"A B bC","8196":"C OC"},F:{"1":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB ID JD KD LD OC wC MD PC","194":"mB nB oB pB qB rB sB tB","8196":"uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD","514":"UD VD WD","8196":"XD YD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"2049":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB yD zD 0D 1D RC SC TC 2D","2":"J","8196":"sD tD uD vD wD bC xD"},Q:{"8196":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:2,C:"Payment Request API",D:true};
Index: node_modules/caniuse-lite/data/features/pdf-viewer.js
===================================================================
--- node_modules/caniuse-lite/data/features/pdf-viewer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/pdf-viewer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O P 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD OC wC MD"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"16":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"Built-in PDF viewer",D:true};
Index: node_modules/caniuse-lite/data/features/permissions-api.js
===================================================================
--- node_modules/caniuse-lite/data/features/permissions-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/permissions-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB ID JD KD LD OC wC MD PC"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Permissions API",D:true};
Index: node_modules/caniuse-lite/data/features/permissions-policy.js
===================================================================
--- node_modules/caniuse-lite/data/features/permissions-policy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/permissions-policy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","258":"Q H R S T U","322":"V W","388":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC 3C 4C","258":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC","258":"5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U","322":"V W","388":"0 1 2 3 4 5 6 7 8 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC","258":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB ID JD KD LD OC wC MD PC","258":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC","322":"GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d","388":"0 1 2 3 4 5 6 7 8 e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD","258":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","258":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","388":"H"},L:{"388":"I"},M:{"258":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"J sD tD uD","258":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"258":"3D"},R:{"388":"4D"},S:{"2":"5D","258":"6D"}},B:5,C:"Permissions Policy",D:true};
Index: node_modules/caniuse-lite/data/features/picture-in-picture.js
===================================================================
--- node_modules/caniuse-lite/data/features/picture-in-picture.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/picture-in-picture.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC 3C 4C","132":"0 1 2 3 4 5 6 7 8 GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","1090":"BC","1412":"FC","1668":"CC DC EC"},D:{"1":"0 1 2 3 4 5 6 7 8 EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC","2114":"DC"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C","4100":"A B C L bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB ID JD KD LD OC wC MD PC","8196":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},G:{"1":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD","4100":"SD TD UD VD WD XD YD ZD aD bD cD dD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"16388":"I"},M:{"16388":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"Picture-in-Picture",D:true};
Index: node_modules/caniuse-lite/data/features/picture.js
===================================================================
--- node_modules/caniuse-lite/data/features/picture.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/picture.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB 3C 4C","578":"gB hB iB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB","194":"jB"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB ID JD KD LD OC wC MD PC","322":"DB"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Picture element",D:true};
Index: node_modules/caniuse-lite/data/features/ping.js
===================================================================
--- node_modules/caniuse-lite/data/features/ping.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ping.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N"},C:{"2":"zC","194":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"194":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"194":"5D 6D"}},B:1,C:"Ping attribute",D:true};
Index: node_modules/caniuse-lite/data/features/png-alpha.js
===================================================================
--- node_modules/caniuse-lite/data/features/png-alpha.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/png-alpha.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"D E F A B","2":"yC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"PNG alpha transparency",D:true};
Index: node_modules/caniuse-lite/data/features/pointer-events.js
===================================================================
--- node_modules/caniuse-lite/data/features/pointer-events.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/pointer-events.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","2":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:7,C:"CSS pointer-events (for HTML)",D:true};
Index: node_modules/caniuse-lite/data/features/pointer.js
===================================================================
--- node_modules/caniuse-lite/data/features/pointer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/pointer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F yC","164":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C","8":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB","328":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB","8":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","584":"yB zB 0B"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C","8":"D E F A B C 7C 8C 9C bC OC","1096":"PC"},F:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","8":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB","584":"lB mB nB"},G:{"1":"bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD","6148":"aD"},H:{"2":"lD"},I:{"1":"I","8":"UC J mD nD oD pD xC qD rD"},J:{"8":"D A"},K:{"1":"H","2":"A","8":"B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","36":"A"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"sD","8":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","328":"5D"}},B:2,C:"Pointer events",D:true};
Index: node_modules/caniuse-lite/data/features/pointerlock.js
===================================================================
--- node_modules/caniuse-lite/data/features/pointerlock.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/pointerlock.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L 3C 4C","33":"9 M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB"},D:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G","33":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB","66":"9 N O P bB AB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","16":"H"},L:{"2":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"16":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Pointer Lock API",D:true};
Index: node_modules/caniuse-lite/data/features/portals.js
===================================================================
--- node_modules/caniuse-lite/data/features/portals.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/portals.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P Q H R S T","322":"0 1 2 3 4 5 6 7 8 Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC","194":"JC KC LC MC Q H R S T","322":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","450":"U"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC","194":"6B 7B 8B 9B AC BC CC DC EC FC GC","322":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"450":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Portals",D:true};
Index: node_modules/caniuse-lite/data/features/prefers-color-scheme.js
===================================================================
--- node_modules/caniuse-lite/data/features/prefers-color-scheme.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/prefers-color-scheme.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},E:{"1":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"prefers-color-scheme media query",D:true};
Index: node_modules/caniuse-lite/data/features/prefers-reduced-motion.js
===================================================================
--- node_modules/caniuse-lite/data/features/prefers-reduced-motion.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/prefers-reduced-motion.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"prefers-reduced-motion media query",D:true};
Index: node_modules/caniuse-lite/data/features/progress.js
===================================================================
--- node_modules/caniuse-lite/data/features/progress.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/progress.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F ID JD KD LD"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD","132":"QD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"progress element",D:true};
Index: node_modules/caniuse-lite/data/features/promise-finally.js
===================================================================
--- node_modules/caniuse-lite/data/features/promise-finally.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/promise-finally.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"Promise.prototype.finally",D:true};
Index: node_modules/caniuse-lite/data/features/promises.js
===================================================================
--- node_modules/caniuse-lite/data/features/promises.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/promises.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"8":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","4":"GB HB","8":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"eB","8":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB"},E:{"1":"E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J aB K D 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","4":"bB","8":"F B C G N O P ID JD KD LD OC wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"aC ND xC OD PD QD"},H:{"8":"lD"},I:{"1":"I rD","8":"UC J mD nD oD pD xC qD"},J:{"8":"D A"},K:{"1":"H","8":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"8":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Promises",D:true};
Index: node_modules/caniuse-lite/data/features/proximity.js
===================================================================
--- node_modules/caniuse-lite/data/features/proximity.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/proximity.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"5D 6D"}},B:4,C:"Proximity API",D:true};
Index: node_modules/caniuse-lite/data/features/proxy.js
===================================================================
--- node_modules/caniuse-lite/data/features/proxy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/proxy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O P kB lB mB nB oB pB qB rB sB tB uB","66":"9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC","66":"9 G N O P bB AB BB CB DB"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Proxy object",D:true};
Index: node_modules/caniuse-lite/data/features/publickeypinning.js
===================================================================
--- node_modules/caniuse-lite/data/features/publickeypinning.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/publickeypinning.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B","2":"0 1 2 3 4 5 6 7 8 F B C G N O P bB AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","4":"CB","16":"9 AB BB DB"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"J sD tD uD vD wD bC","2":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"5D","2":"6D"}},B:6,C:"HTTP Public Key Pinning",D:true};
Index: node_modules/caniuse-lite/data/features/push-api.js
===================================================================
--- node_modules/caniuse-lite/data/features/push-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/push-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"O P","2":"C L M G N","257":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB 3C 4C","257":"0 1 2 3 4 5 6 7 8 qB sB tB uB vB wB xB zB 0B 1B 2B 3B 4B VC WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","1281":"rB yB 5B"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","257":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","388":"qB rB sB tB uB vB"},E:{"2":"J aB K 5C aC 6C 7C","514":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC","4609":"TC oC pC qC rC GD sC tC uC vC HD","6660":"eC fC gC hC iC ED SC jC kC lC mC nC FD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB ID JD KD LD OC wC MD PC","16":"jB kB lB mB nB","257":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC","8196":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"2":"4D"},S:{"257":"5D 6D"}},B:5,C:"Push API",D:true};
Index: node_modules/caniuse-lite/data/features/queryselector.js
===================================================================
--- node_modules/caniuse-lite/data/features/queryselector.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/queryselector.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"yC","8":"K D","132":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","8":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","8":"F ID"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"querySelector/querySelectorAll",D:true};
Index: node_modules/caniuse-lite/data/features/readonly-attr.js
===================================================================
--- node_modules/caniuse-lite/data/features/readonly-attr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/readonly-attr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","16":"yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","16":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F ID","132":"B C JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC OD PD"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"H","132":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"257":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"readonly attribute of input and textarea elements",D:true};
Index: node_modules/caniuse-lite/data/features/referrer-policy.js
===================================================================
--- node_modules/caniuse-lite/data/features/referrer-policy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/referrer-policy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C L M G N O P","513":"Q H R S T"},C:{"1":"W X Y Z a","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB 3C 4C","513":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V","2049":"0 1 2 3 4 5 6 7 8 b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB","260":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B","513":"WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T"},E:{"2":"J aB K D 5C aC 6C 7C","132":"E F A B 8C 9C bC","513":"C OC PC","1025":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","1537":"L M AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","513":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},G:{"2":"aC ND xC OD PD QD","132":"E RD SD TD UD VD WD XD","513":"YD ZD aD bD","1025":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","1537":"cD dD eD fD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2049":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J","513":"sD tD uD vD wD bC xD yD zD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"513":"5D 6D"}},B:4,C:"Referrer Policy",D:true};
Index: node_modules/caniuse-lite/data/features/registerprotocolhandler.js
===================================================================
--- node_modules/caniuse-lite/data/features/registerprotocolhandler.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/registerprotocolhandler.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC"},D:{"2":"J aB K D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B ID JD KD LD OC wC","129":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D","129":"A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:1,C:"Custom protocol handling",D:true};
Index: node_modules/caniuse-lite/data/features/rel-noopener.js
===================================================================
--- node_modules/caniuse-lite/data/features/rel-noopener.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/rel-noopener.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"rel=noopener",D:true};
Index: node_modules/caniuse-lite/data/features/rel-noreferrer.js
===================================================================
--- node_modules/caniuse-lite/data/features/rel-noreferrer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/rel-noreferrer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M G"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Link type \"noreferrer\"",D:true};
Index: node_modules/caniuse-lite/data/features/rellist.js
===================================================================
--- node_modules/caniuse-lite/data/features/rellist.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/rellist.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N","132":"O"},C:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","132":"wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB ID JD KD LD OC wC MD PC","132":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","132":"sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"relList (DOMTokenList)",D:true};
Index: node_modules/caniuse-lite/data/features/rem.js
===================================================================
--- node_modules/caniuse-lite/data/features/rem.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/rem.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E yC","132":"F A"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","2":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F B ID JD KD LD OC wC"},G:{"1":"E ND xC PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC","260":"OD"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"C H PC","2":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"rem (root em) units",D:true};
Index: node_modules/caniuse-lite/data/features/requestanimationframe.js
===================================================================
--- node_modules/caniuse-lite/data/features/requestanimationframe.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/requestanimationframe.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","33":"9 B C L M G N O P bB AB BB","164":"J aB K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F","33":"BB CB","164":"9 P bB AB","420":"A B C L M G N O"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","33":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","33":"PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"requestAnimationFrame",D:true};
Index: node_modules/caniuse-lite/data/features/requestidlecallback.js
===================================================================
--- node_modules/caniuse-lite/data/features/requestidlecallback.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/requestidlecallback.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 3C 4C","194":"zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB"},E:{"1":"HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC","322":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC"},F:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD","322":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"requestIdleCallback",D:true};
Index: node_modules/caniuse-lite/data/features/resizeobserver.js
===================================================================
--- node_modules/caniuse-lite/data/features/resizeobserver.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/resizeobserver.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB","194":"0B 1B 2B 3B 4B VC 5B WC 6B 7B"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC PC","66":"L"},F:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB ID JD KD LD OC wC MD PC","194":"nB oB pB qB rB sB tB uB vB wB xB"},G:{"1":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"Resize Observer",D:true};
Index: node_modules/caniuse-lite/data/features/resource-timing.js
===================================================================
--- node_modules/caniuse-lite/data/features/resource-timing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/resource-timing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB 3C 4C","194":"dB eB fB gB"},D:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Resource Timing (basic support)",D:true};
Index: node_modules/caniuse-lite/data/features/rest-parameters.js
===================================================================
--- node_modules/caniuse-lite/data/features/rest-parameters.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/rest-parameters.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","194":"qB rB sB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB ID JD KD LD OC wC MD PC","194":"dB eB fB"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Rest parameters",D:true};
Index: node_modules/caniuse-lite/data/features/rtcpeerconnection.js
===================================================================
--- node_modules/caniuse-lite/data/features/rtcpeerconnection.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/rtcpeerconnection.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M","260":"G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C","33":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB","33":"CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G N O ID JD KD LD OC wC MD PC","33":"9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","33":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"WebRTC Peer-to-peer connections",D:true};
Index: node_modules/caniuse-lite/data/features/ruby.js
===================================================================
--- node_modules/caniuse-lite/data/features/ruby.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ruby.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"4":"K D E yC","132":"F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB 3C 4C"},D:{"4":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","8":"J"},E:{"4":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J 5C aC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","8":"F B C ID JD KD LD OC wC MD PC"},G:{"4":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"aC ND xC"},H:{"8":"lD"},I:{"4":"UC J I pD xC qD rD","8":"mD nD oD"},J:{"4":"A","8":"D"},K:{"4":"H","8":"A B C OC wC PC"},L:{"4":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"4":"QC"},P:{"4":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"4":"3D"},R:{"4":"4D"},S:{"1":"5D 6D"}},B:1,C:"Ruby annotation",D:true};
Index: node_modules/caniuse-lite/data/features/run-in.js
===================================================================
--- node_modules/caniuse-lite/data/features/run-in.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/run-in.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","2":"K D yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB","2":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K 6C","2":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"7C","129":"J 5C aC"},F:{"1":"F B C G N O P ID JD KD LD OC wC MD PC","2":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"ND xC OD PD QD","2":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","129":"aC"},H:{"1":"lD"},I:{"1":"UC J mD nD oD pD xC qD","2":"I rD"},J:{"1":"D A"},K:{"1":"A B C OC wC PC","2":"H"},L:{"2":"I"},M:{"2":"NC"},N:{"1":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:4,C:"display: run-in",D:true};
Index: node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js
===================================================================
--- node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","388":"B"},B:{"1":"P Q H R S T U","2":"C L M G","129":"N O","513":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 3C 4C"},D:{"1":"xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","513":"0 1 2 3 4 5 6 7 8 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC OC","2052":"M BD","3076":"C L PC AD"},F:{"1":"lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB ID JD KD LD OC wC MD PC","513":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD","2052":"YD ZD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","513":"H"},L:{"513":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"16":"3D"},R:{"513":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"'SameSite' cookie attribute",D:true};
Index: node_modules/caniuse-lite/data/features/screen-orientation.js
===================================================================
--- node_modules/caniuse-lite/data/features/screen-orientation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/screen-orientation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","36":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O 3C 4C","36":"9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB ID JD KD LD OC wC MD PC"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A","36":"B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","16":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"Screen Orientation",D:true};
Index: node_modules/caniuse-lite/data/features/script-async.js
===================================================================
--- node_modules/caniuse-lite/data/features/script-async.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/script-async.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","2":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","132":"aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"async attribute for external scripts",D:true};
Index: node_modules/caniuse-lite/data/features/script-defer.js
===================================================================
--- node_modules/caniuse-lite/data/features/script-defer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/script-defer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","132":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","257":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"defer attribute for external scripts",D:true};
Index: node_modules/caniuse-lite/data/features/scrollintoview.js
===================================================================
--- node_modules/caniuse-lite/data/features/scrollintoview.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/scrollintoview.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D yC","132":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","132":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","132":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F ID JD KD LD","16":"B OC wC","132":"9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB MD PC"},G:{"1":"RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC","132":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"1":"I","16":"mD nD","132":"UC J oD pD xC qD rD"},J:{"132":"D A"},K:{"1":"H","132":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","132":"J sD tD uD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"scrollIntoView",D:true};
Index: node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js
===================================================================
--- node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"Element.scrollIntoViewIfNeeded()",D:true};
Index: node_modules/caniuse-lite/data/features/sdch.js
===================================================================
--- node_modules/caniuse-lite/data/features/sdch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/sdch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B","2":"0 1 2 3 4 5 6 7 8 VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC","2":"0 1 2 3 4 5 6 7 8 F B C HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding",D:true};
Index: node_modules/caniuse-lite/data/features/selection-api.js
===================================================================
--- node_modules/caniuse-lite/data/features/selection-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/selection-api.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","16":"yC","260":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","132":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB 3C 4C","2180":"pB qB rB sB tB uB vB wB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","132":"F B C ID JD KD LD OC wC MD PC"},G:{"16":"xC","132":"aC ND","516":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I qD rD","16":"UC J mD nD oD pD","1025":"xC"},J:{"1":"A","16":"D"},K:{"1":"H","16":"A B C OC wC","132":"PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","16":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2180":"5D"}},B:5,C:"Selection API",D:true};
Index: node_modules/caniuse-lite/data/features/selectlist.js
===================================================================
--- node_modules/caniuse-lite/data/features/selectlist.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/selectlist.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f","194":"0 1 2 3 4 5 6 7 8 g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f","194":"0 1 2 3 4 5 6 7 8 g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC ID JD KD LD OC wC MD PC","194":"0 1 2 3 4 5 6 7 8 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","194":"H"},L:{"194":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Customizable Select element",D:true};
Index: node_modules/caniuse-lite/data/features/server-timing.js
===================================================================
--- node_modules/caniuse-lite/data/features/server-timing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/server-timing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC","196":"5B WC 6B 7B","324":"8B"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC","516":"L M G PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB ID JD KD LD OC wC MD PC"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"Server Timing",D:true};
Index: node_modules/caniuse-lite/data/features/serviceworkers.js
===================================================================
--- node_modules/caniuse-lite/data/features/serviceworkers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/serviceworkers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M","322":"G N"},C:{"1":"VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB 3C 4C","194":"fB gB hB iB jB kB lB mB nB oB pB","1025":"0 1 2 3 4 5 6 7 8 qB sB tB uB vB wB xB zB 0B 1B 2B 3B 4B VC WC 6B 7B 8B 9B AC BC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB","1537":"rB yB 5B CC"},D:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB","4":"mB nB oB pB qB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB ID JD KD LD OC wC MD PC","4":"GB HB IB cB dB"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","4":"I"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"Service Workers",D:true};
Index: node_modules/caniuse-lite/data/features/setimmediate.js
===================================================================
--- node_modules/caniuse-lite/data/features/setimmediate.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/setimmediate.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"1":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Efficient Script Yielding: setImmediate()",D:true};
Index: node_modules/caniuse-lite/data/features/shadowdom.js
===================================================================
--- node_modules/caniuse-lite/data/features/shadowdom.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/shadowdom.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 C L M G N O P H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","66":"IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B"},D:{"1":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"EB FB GB HB IB cB dB eB fB gB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC","2":"0 1 2 3 4 5 6 7 8 F B C BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC","33":"qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"sD tD uD vD wD bC xD yD","2":"9 AB BB CB DB EB FB GB HB IB zD 0D 1D RC SC TC 2D","33":"J"},Q:{"1":"3D"},R:{"2":"4D"},S:{"1":"5D","2":"6D"}},B:7,C:"Shadow DOM (deprecated V0 spec)",D:true};
Index: node_modules/caniuse-lite/data/features/shadowdomv1.js
===================================================================
--- node_modules/caniuse-lite/data/features/shadowdomv1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/shadowdomv1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 3C 4C","322":"4B","578":"VC 5B WC 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB"},E:{"1":"A B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD","132":"UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","4":"sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"Shadow DOM (V1)",D:true};
Index: node_modules/caniuse-lite/data/features/sharedarraybuffer.js
===================================================================
--- node_modules/caniuse-lite/data/features/sharedarraybuffer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/sharedarraybuffer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"Q H R S T U V W X Y Z","2":"C L M G","194":"N O P","513":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3C 4C","194":"3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC","450":"IC JC KC LC MC","513":"0 1 2 3 4 5 6 7 8 Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC","194":"5B WC 6B 7B 8B 9B AC BC","513":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A 5C aC 6C 7C 8C 9C","194":"B C L M G bC OC PC AD BD CD","513":"cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC LC","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB ID JD KD LD OC wC MD PC","194":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B","513":"0 1 2 3 4 5 6 7 8 MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD","194":"VD WD XD YD ZD aD bD cD dD eD fD gD","513":"cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","513":"H"},L:{"513":"I"},M:{"513":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"J sD tD uD vD wD bC xD yD zD 0D","513":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"513":"4D"},S:{"2":"5D","513":"6D"}},B:6,C:"Shared Array Buffer",D:true};
Index: node_modules/caniuse-lite/data/features/sharedworkers.js
===================================================================
--- node_modules/caniuse-lite/data/features/sharedworkers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/sharedworkers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"aB K 6C RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J D E F A B C L M G 5C aC 7C 8C 9C bC OC PC AD BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","2":"F ID JD KD"},G:{"1":"OD PD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"B C OC wC PC","2":"H","16":"A"},L:{"2":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"J","2":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"5D 6D"}},B:1,C:"Shared Web Workers",D:true};
Index: node_modules/caniuse-lite/data/features/sni.js
===================================================================
--- node_modules/caniuse-lite/data/features/sni.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/sni.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K yC","132":"D E"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC"},H:{"1":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Server Name Indication",D:true};
Index: node_modules/caniuse-lite/data/features/spdy.js
===================================================================
--- node_modules/caniuse-lite/data/features/spdy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/spdy.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F A yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","2":"0 1 2 3 4 5 6 7 8 zC UC J aB K D E F A B C xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","2":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"E F A B C 9C bC OC","2":"J aB K D 5C aC 6C 7C 8C","129":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB oB qB PC","2":"0 1 2 3 4 5 6 7 8 F B C mB nB pB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD"},G:{"1":"E RD SD TD UD VD WD XD YD","2":"aC ND xC OD PD QD","257":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J pD xC qD rD","2":"I mD nD oD"},J:{"2":"D A"},K:{"1":"PC","2":"A B C H OC wC"},L:{"2":"I"},M:{"2":"NC"},N:{"1":"B","2":"A"},O:{"2":"QC"},P:{"1":"J","2":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"5D","2":"6D"}},B:7,C:"SPDY protocol",D:true};
Index: node_modules/caniuse-lite/data/features/speech-recognition.js
===================================================================
--- node_modules/caniuse-lite/data/features/speech-recognition.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/speech-recognition.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","514":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C","322":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB","164":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD","1060":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB ID JD KD LD OC wC MD PC","514":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD","1060":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","164":"H"},L:{"164":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"164":"QC"},P:{"164":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"164":"3D"},R:{"164":"4D"},S:{"322":"5D 6D"}},B:7,C:"Speech Recognition API",D:true};
Index: node_modules/caniuse-lite/data/features/speech-synthesis.js
===================================================================
--- node_modules/caniuse-lite/data/features/speech-synthesis.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/speech-synthesis.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"M G N O P","2":"C L","257":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB 3C 4C","194":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},D:{"1":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB","257":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C"},F:{"1":"GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B","2":"9 F B C G N O P bB AB BB CB DB EB FB ID JD KD LD OC wC MD PC","257":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"2":"4D"},S:{"1":"5D 6D"}},B:7,C:"Speech Synthesis API",D:true};
Index: node_modules/caniuse-lite/data/features/spellcheck-attribute.js
===================================================================
--- node_modules/caniuse-lite/data/features/spellcheck-attribute.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/spellcheck-attribute.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"4":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"4":"lD"},I:{"4":"UC J I mD nD oD pD xC qD rD"},J:{"1":"A","4":"D"},K:{"4":"A B C H OC wC PC"},L:{"4":"I"},M:{"4":"NC"},N:{"4":"A B"},O:{"4":"QC"},P:{"4":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"4":"4D"},S:{"2":"5D 6D"}},B:1,C:"Spellcheck attribute",D:true};
Index: node_modules/caniuse-lite/data/features/sql-storage.js
===================================================================
--- node_modules/caniuse-lite/data/features/sql-storage.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/sql-storage.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"Q H R S T U V W X Y Z a b c d e f g h i j","2":"7 8 C L M G N O P JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"k l m n o p q r s","385":"0 1 2 3 4 5 6 t u v w x y z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j","2":"7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","129":"k l m n o p q r s","385":"0 1 t u v w x y z","897":"2 3 4 5 6"},E:{"1":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC PC","2":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z KD LD OC wC MD PC","2":"0 1 2 3 4 5 6 7 8 F t u v w x y z ID JD","257":"a b c d e f g h i j k l m n o p q r s"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD","2":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J mD nD oD pD xC qD rD","2":"I"},J:{"1":"D A"},K:{"1":"B C OC wC PC","2":"A","257":"H"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"Web SQL Database",D:true};
Index: node_modules/caniuse-lite/data/features/srcset.js
===================================================================
--- node_modules/caniuse-lite/data/features/srcset.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/srcset.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C","514":"L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB 3C 4C","194":"eB fB gB hB iB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB","260":"gB hB iB jB"},E:{"2":"J aB K D 5C aC 6C 7C","260":"E 8C","1028":"F A 9C bC","3076":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB ID JD KD LD OC wC MD PC","260":"AB BB CB DB"},G:{"2":"aC ND xC OD PD QD","260":"E RD","1028":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Srcset and sizes attributes",D:true};
Index: node_modules/caniuse-lite/data/features/stream.js
===================================================================
--- node_modules/caniuse-lite/data/features/stream.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/stream.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N 3C 4C","129":"iB jB kB lB mB nB","420":"9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},D:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB","420":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B G N O ID JD KD LD OC wC MD","420":"9 C P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD","513":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","1537":"WD XD YD ZD aD bD cD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","420":"A"},K:{"1":"H","2":"A B OC wC","420":"C PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","420":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:4,C:"getUserMedia/Stream API",D:true};
Index: node_modules/caniuse-lite/data/features/streams.js
===================================================================
--- node_modules/caniuse-lite/data/features/streams.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/streams.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","130":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"C L","260":"M G","1028":"Q H R S T U V W X","5124":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3C 4C","5124":"j k","7172":"9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i","7746":"3B 4B VC 5B WC 6B 7B 8B"},D:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","260":"yB zB 0B 1B 2B 3B 4B","1028":"VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X"},E:{"2":"J aB K D E F 5C aC 6C 7C 8C 9C","1028":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","3076":"A B C L M bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB ID JD KD LD OC wC MD PC","260":"lB mB nB oB pB qB rB","1028":"sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},G:{"2":"E aC ND xC OD PD QD RD SD TD","16":"UD","1028":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 1D RC SC TC 2D","2":"J sD tD","1028":"uD vD wD bC xD yD zD 0D"},Q:{"1028":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:1,C:"Streams",D:true};
Index: node_modules/caniuse-lite/data/features/stricttransportsecurity.js
===================================================================
--- node_modules/caniuse-lite/data/features/stricttransportsecurity.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/stricttransportsecurity.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A yC","129":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F B ID JD KD LD OC wC MD"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Strict Transport Security",D:true};
Index: node_modules/caniuse-lite/data/features/style-scoped.js
===================================================================
--- node_modules/caniuse-lite/data/features/style-scoped.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/style-scoped.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","322":"1B 2B 3B 4B VC 5B"},D:{"2":"0 1 2 3 4 5 6 7 8 J aB K D E F A B C L M G N O P bB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","194":"9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"5D","2":"6D"}},B:7,C:"Scoped attribute",D:true};
Index: node_modules/caniuse-lite/data/features/subresource-bundling.js
===================================================================
--- node_modules/caniuse-lite/data/features/subresource-bundling.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/subresource-bundling.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Subresource Loading with Web Bundles",D:false};
Index: node_modules/caniuse-lite/data/features/subresource-integrity.js
===================================================================
--- node_modules/caniuse-lite/data/features/subresource-integrity.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/subresource-integrity.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD","194":"WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Subresource Integrity",D:true};
Index: node_modules/caniuse-lite/data/features/svg-css.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg-css.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg-css.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","516":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","260":"9 J aB K D E F A B C L M G N O P bB AB BB CB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"J"},E:{"1":"aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C","132":"J aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"aC ND"},H:{"260":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"D A"},K:{"1":"H","260":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"SVG in CSS backgrounds",D:true};
Index: node_modules/caniuse-lite/data/features/svg-filters.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg-filters.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg-filters.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J","4":"aB K D"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"SVG filters",D:true};
Index: node_modules/caniuse-lite/data/features/svg-fonts.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg-fonts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg-fonts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"F A B yC","8":"K D E"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB","2":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","130":"kB lB mB nB oB pB qB rB sB tB uB vB wB"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C"},F:{"1":"9 F B C G N O P bB AB BB CB DB ID JD KD LD OC wC MD PC","2":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","130":"EB FB GB HB IB cB dB eB fB gB hB iB"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"258":"lD"},I:{"1":"UC J pD xC qD rD","2":"I mD nD oD"},J:{"1":"D A"},K:{"1":"A B C OC wC PC","2":"H"},L:{"130":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"J","130":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"130":"4D"},S:{"2":"5D 6D"}},B:2,C:"SVG fonts",D:true};
Index: node_modules/caniuse-lite/data/features/svg-fragment.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg-fragment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg-fragment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB","132":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D F A B 5C aC 6C 7C 9C bC","132":"E 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"9 G N O P bB AB BB","4":"B C JD KD LD OC wC MD","16":"F ID","132":"CB DB EB FB GB HB IB cB dB eB fB gB hB iB"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD SD TD UD VD WD","132":"E RD"},H:{"1":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D","132":"A"},K:{"1":"H PC","4":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","132":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"SVG fragment identifiers",D:true};
Index: node_modules/caniuse-lite/data/features/svg-html.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg-html.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg-html.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","388":"F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC","4":"UC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"5C aC","4":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"4":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC","4":"I qD rD"},J:{"1":"A","2":"D"},K:{"4":"A B C H OC wC PC"},L:{"4":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"4":"QC"},P:{"4":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"4":"3D"},R:{"4":"4D"},S:{"1":"5D 6D"}},B:2,C:"SVG effects for HTML",D:true};
Index: node_modules/caniuse-lite/data/features/svg-html5.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg-html5.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg-html5.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E","129":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","8":"J aB K"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"J aB 5C aC","129":"K D E 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"B LD OC wC","8":"F ID JD KD"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","8":"aC ND xC","129":"E OD PD QD RD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"mD nD oD","129":"UC J pD xC"},J:{"1":"A","129":"D"},K:{"1":"C H PC","8":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"129":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Inline SVG in HTML5",D:true};
Index: node_modules/caniuse-lite/data/features/svg-img.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg-img.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg-img.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C","4":"aC","132":"J aB K D E 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"E aC ND xC OD PD QD RD"},H:{"1":"lD"},I:{"1":"I qD rD","2":"mD nD oD","132":"UC J pD xC"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"SVG in HTML img element",D:true};
Index: node_modules/caniuse-lite/data/features/svg-smil.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg-smil.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg-smil.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"J"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"5C aC","132":"J aB 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"aC ND xC OD"},H:{"2":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"8":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"SVG SMIL animation",D:true};
Index: node_modules/caniuse-lite/data/features/svg.js
===================================================================
--- node_modules/caniuse-lite/data/features/svg.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/svg.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E","772":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","513":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","4":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","4":"5C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"I qD rD","2":"mD nD oD","132":"UC J pD xC"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"257":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"SVG (basic support)",D:true};
Index: node_modules/caniuse-lite/data/features/sxg.js
===================================================================
--- node_modules/caniuse-lite/data/features/sxg.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/sxg.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC","132":"FC GC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:6,C:"Signed HTTP Exchanges (SXG)",D:true};
Index: node_modules/caniuse-lite/data/features/tabindex-attr.js
===================================================================
--- node_modules/caniuse-lite/data/features/tabindex-attr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/tabindex-attr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"D E F A B","16":"K yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"16":"zC UC 3C 4C","129":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"16":"J aB 5C aC","257":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","16":"F"},G:{"769":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"16":"lD"},I:{"16":"UC J I mD nD oD pD xC qD rD"},J:{"16":"D A"},K:{"1":"H","16":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"16":"A B"},O:{"1":"QC"},P:{"16":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"129":"5D 6D"}},B:1,C:"tabindex global attribute",D:true};
Index: node_modules/caniuse-lite/data/features/template-literals.js
===================================================================
--- node_modules/caniuse-lite/data/features/template-literals.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/template-literals.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB"},E:{"1":"A B L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C","129":"C"},F:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB ID JD KD LD OC wC MD PC"},G:{"1":"SD TD UD VD WD XD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD","129":"YD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"ES6 Template Literals (Template Strings)",D:true};
Index: node_modules/caniuse-lite/data/features/template.js
===================================================================
--- node_modules/caniuse-lite/data/features/template.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/template.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C","388":"L M"},C:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB","132":"FB GB HB IB cB dB eB fB gB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D 5C aC 6C","388":"E 8C","514":"7C"},F:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","132":"9 G N O P bB AB"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD","388":"E RD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"HTML templates",D:true};
Index: node_modules/caniuse-lite/data/features/temporal.js
===================================================================
--- node_modules/caniuse-lite/data/features/temporal.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/temporal.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB 3C 4C","194":"SB TB UB VB"},D:{"1":"YC ZC NC","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"Temporal",D:true};
Index: node_modules/caniuse-lite/data/features/testfeat.js
===================================================================
--- node_modules/caniuse-lite/data/features/testfeat.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/testfeat.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E A B yC","16":"F"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","16":"J aB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"B C"},E:{"2":"J K 5C aC 6C","16":"aB D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD wC MD PC","16":"OC"},G:{"2":"aC ND xC OD PD","16":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD pD xC qD rD","16":"oD"},J:{"2":"A","16":"D"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Test feature - updated",D:false};
Index: node_modules/caniuse-lite/data/features/text-decoration.js
===================================================================
--- node_modules/caniuse-lite/data/features/text-decoration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/text-decoration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","2052":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"zC UC J aB 3C 4C","1028":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","1060":"9 K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB","226":"FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B","2052":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D 5C aC 6C 7C","772":"L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","804":"E F A B C 9C bC OC","1316":"8C"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB ID JD KD LD OC wC MD PC","226":"hB iB jB kB lB mB nB oB pB","2052":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"aC ND xC OD PD QD","292":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","2052":"H"},L:{"2052":"I"},M:{"1028":"NC"},N:{"2":"A B"},O:{"2052":"QC"},P:{"2":"J sD tD","2052":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2052":"3D"},R:{"2052":"4D"},S:{"1028":"5D 6D"}},B:4,C:"text-decoration styling",D:true};
Index: node_modules/caniuse-lite/data/features/text-emphasis.js
===================================================================
--- node_modules/caniuse-lite/data/features/text-emphasis.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/text-emphasis.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","164":"Q H R S T U V W X Y Z a b c d e f g h"},C:{"1":"0 1 2 3 4 5 6 7 8 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB 3C 4C","322":"rB"},D:{"1":"0 1 2 3 4 5 6 7 8 i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB","164":"EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h"},E:{"1":"E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C","164":"D 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","164":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC","164":"qD rD"},J:{"2":"D","164":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB TC 2D","164":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC"},Q:{"164":"3D"},R:{"164":"4D"},S:{"1":"5D 6D"}},B:4,C:"text-emphasis styling",D:true};
Index: node_modules/caniuse-lite/data/features/text-overflow.js
===================================================================
--- node_modules/caniuse-lite/data/features/text-overflow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/text-overflow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B","2":"yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","8":"zC UC J aB K 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","33":"F ID JD KD LD"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"H PC","33":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"CSS3 Text-overflow",D:true};
Index: node_modules/caniuse-lite/data/features/text-size-adjust.js
===================================================================
--- node_modules/caniuse-lite/data/features/text-size-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/text-size-adjust.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","33":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB","258":"FB"},E:{"2":"J aB K D E F A B C L M G 5C aC 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","258":"6C"},F:{"1":"0 1 2 3 4 5 6 7 8 pB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB qB ID JD KD LD OC wC MD PC"},G:{"2":"aC ND xC","33":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"33":"NC"},N:{"161":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"CSS text-size-adjust",D:true};
Index: node_modules/caniuse-lite/data/features/text-stroke.js
===================================================================
--- node_modules/caniuse-lite/data/features/text-stroke.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/text-stroke.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M","33":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","161":"G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB 3C 4C","161":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","450":"uB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"33":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","33":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"33":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","36":"aC"},H:{"2":"lD"},I:{"2":"UC","33":"J I mD nD oD pD xC qD rD"},J:{"33":"D A"},K:{"2":"A B C OC wC PC","33":"H"},L:{"33":"I"},M:{"161":"NC"},N:{"2":"A B"},O:{"33":"QC"},P:{"33":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"33":"3D"},R:{"33":"4D"},S:{"161":"5D 6D"}},B:7,C:"CSS text-stroke and text-fill",D:true};
Index: node_modules/caniuse-lite/data/features/textcontent.js
===================================================================
--- node_modules/caniuse-lite/data/features/textcontent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/textcontent.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","16":"F"},G:{"1":"E ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Node.textContent",D:true};
Index: node_modules/caniuse-lite/data/features/textencoder.js
===================================================================
--- node_modules/caniuse-lite/data/features/textencoder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/textencoder.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O P 3C 4C","132":"bB"},D:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"TextEncoder & TextDecoder",D:true};
Index: node_modules/caniuse-lite/data/features/tls1-1.js
===================================================================
--- node_modules/caniuse-lite/data/features/tls1-1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/tls1-1.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D yC","66":"E F A"},B:{"1":"C L M G N O P Q H R S T","2":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","1540":"U V W X Y Z a b c d e f g"},C:{"1":"DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","66":"CB","129":"CC DC EC FC GC HC IC JC KC LC","388":"MC Q H R XC S T U V W X Y Z a b c d e f"},D:{"1":"BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T","2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","1540":"U V W X Y Z a b c d e f g"},E:{"1":"D E F A B C L 8C 9C bC OC PC","2":"J aB K 5C aC 6C 7C","513":"M AD","1028":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC PC","2":"0 1 2 3 4 5 6 7 8 F B C T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD","1540":"HC IC JC KC LC MC Q H R XC S"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD","2":"aC ND xC","1028":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"16":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"1":"A","2":"D"},K:{"1":"PC","2":"A B C H OC wC"},L:{"2":"I"},M:{"2":"NC"},N:{"1":"B","66":"A"},O:{"2":"QC"},P:{"1":"J sD tD uD vD wD","2":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"16":"4D"},S:{"1":"5D 6D"}},B:7,C:"TLS 1.1",D:true};
Index: node_modules/caniuse-lite/data/features/tls1-2.js
===================================================================
--- node_modules/caniuse-lite/data/features/tls1-2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/tls1-2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D yC","66":"E F A"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB 3C 4C","66":"DB EB FB"},D:{"1":"0 1 2 3 4 5 6 7 8 IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F G ID","66":"B C JD KD LD OC wC MD PC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"1":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"1":"A","2":"D"},K:{"1":"H PC","2":"A B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","66":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"TLS 1.2",D:true};
Index: node_modules/caniuse-lite/data/features/tls1-3.js
===================================================================
--- node_modules/caniuse-lite/data/features/tls1-3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/tls1-3.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB 3C 4C","132":"5B WC 6B","450":"xB yB zB 0B 1B 2B 3B 4B VC"},D:{"1":"0 1 2 3 4 5 6 7 8 EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB","706":"0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC"},E:{"1":"M G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC","1028":"L PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB ID JD KD LD OC wC MD PC","706":"0B 1B 2B"},G:{"1":"ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:6,C:"TLS 1.3",D:true};
Index: node_modules/caniuse-lite/data/features/touch.js
===================================================================
--- node_modules/caniuse-lite/data/features/touch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/touch.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","8":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","578":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P bB AB BB CB DB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","4":"J aB K D E F A B C L M G N O","194":"EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"8":"A","260":"B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:2,C:"Touch events",D:true};
Index: node_modules/caniuse-lite/data/features/transforms2d.js
===================================================================
--- node_modules/caniuse-lite/data/features/transforms2d.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/transforms2d.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E","129":"A B","161":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","33":"J aB K D E F A B C L M G 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","33":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F ID JD","33":"9 B C G N O P bB AB BB KD LD OC wC MD"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","33":"UC J mD nD oD pD xC qD rD"},J:{"33":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 2D Transforms",D:true};
Index: node_modules/caniuse-lite/data/features/transforms3d.js
===================================================================
--- node_modules/caniuse-lite/data/features/transforms3d.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/transforms3d.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F 3C 4C","33":"A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B","33":"9 C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC","33":"J aB K D E 6C 7C 8C","257":"F A B C L M G 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","33":"E aC ND xC OD PD QD RD","257":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"mD nD oD","33":"UC J pD xC qD rD"},J:{"33":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:5,C:"CSS3 3D Transforms",D:true};
Index: node_modules/caniuse-lite/data/features/trusted-types.js
===================================================================
--- node_modules/caniuse-lite/data/features/trusted-types.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/trusted-types.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC 3C 4C","194":"ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R"},E:{"1":"sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD"},F:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC ID JD KD LD OC wC MD PC"},G:{"1":"sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"Trusted Types for DOM manipulation",D:true};
Index: node_modules/caniuse-lite/data/features/ttf.js
===================================================================
--- node_modules/caniuse-lite/data/features/ttf.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/ttf.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JD KD LD OC wC MD PC","2":"F ID"},G:{"1":"E xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND"},H:{"2":"lD"},I:{"1":"UC J I nD oD pD xC qD rD","2":"mD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"TTF/OTF - TrueType and OpenType font support",D:true};
Index: node_modules/caniuse-lite/data/features/typedarrays.js
===================================================================
--- node_modules/caniuse-lite/data/features/typedarrays.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/typedarrays.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"B","2":"K D E F yC","132":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","260":"6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F B ID JD KD LD OC wC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND","260":"xC"},H:{"1":"lD"},I:{"1":"J I pD xC qD rD","2":"UC mD nD oD"},J:{"1":"A","2":"D"},K:{"1":"C H PC","2":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"132":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Typed Arrays",D:true};
Index: node_modules/caniuse-lite/data/features/u2f.js
===================================================================
--- node_modules/caniuse-lite/data/features/u2f.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/u2f.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","513":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o"},C:{"1":"BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","322":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC v w"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","130":"kB lB mB","513":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g","578":"h i j k l m n o"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC PC"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB nB ID JD KD LD OC wC MD PC","513":"0 1 2 3 4 5 6 7 8 mB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"1":"6D","322":"5D"}},B:7,C:"FIDO U2F API",D:true};
Index: node_modules/caniuse-lite/data/features/unhandledrejection.js
===================================================================
--- node_modules/caniuse-lite/data/features/unhandledrejection.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/unhandledrejection.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC"},G:{"1":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD","16":"WD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:1,C:"unhandledrejection/rejectionhandled events",D:true};
Index: node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js
===================================================================
--- node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Upgrade Insecure Requests",D:true};
Index: node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js
===================================================================
--- node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","66":"Q H R"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC","66":"IC JC KC LC MC Q H"},E:{"1":"eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC"},F:{"1":"0 1 2 3 4 5 6 7 8 CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B ID JD KD LD OC wC MD PC","66":"AC BC"},G:{"1":"eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"URL Scroll-To-Text Fragment",D:true};
Index: node_modules/caniuse-lite/data/features/url.js
===================================================================
--- node_modules/caniuse-lite/data/features/url.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/url.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB","130":"CB DB EB FB GB HB IB cB dB"},E:{"1":"E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C 7C","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","130":"G N O P"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD","130":"QD"},H:{"2":"lD"},I:{"1":"I rD","2":"UC J mD nD oD pD xC","130":"qD"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"URL API",D:true};
Index: node_modules/caniuse-lite/data/features/urlsearchparams.js
===================================================================
--- node_modules/caniuse-lite/data/features/urlsearchparams.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/urlsearchparams.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C","132":"IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},E:{"1":"B C L M G bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C"},F:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC"},G:{"1":"VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"URLSearchParams",D:true};
Index: node_modules/caniuse-lite/data/features/use-strict.js
===================================================================
--- node_modules/caniuse-lite/data/features/use-strict.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/use-strict.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","132":"aB 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F B ID JD KD LD OC wC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"1":"lD"},I:{"1":"UC J I pD xC qD rD","2":"mD nD oD"},J:{"1":"D A"},K:{"1":"C H wC PC","2":"A B OC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"ECMAScript 5 Strict Mode",D:true};
Index: node_modules/caniuse-lite/data/features/user-select-none.js
===================================================================
--- node_modules/caniuse-lite/data/features/user-select-none.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/user-select-none.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","33":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","33":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","33":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","33":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"33":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","33":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB"},G:{"33":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","33":"UC J mD nD oD pD xC qD rD"},J:{"33":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"33":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","33":"J sD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","33":"5D"}},B:5,C:"CSS user-select: none",D:true};
Index: node_modules/caniuse-lite/data/features/user-timing.js
===================================================================
--- node_modules/caniuse-lite/data/features/user-timing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/user-timing.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"User Timing API",D:true};
Index: node_modules/caniuse-lite/data/features/variable-fonts.js
===================================================================
--- node_modules/caniuse-lite/data/features/variable-fonts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/variable-fonts.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 3C 4C","4609":"6B 7B 8B 9B AC BC CC DC EC","4674":"WC","5698":"5B","7490":"zB 0B 1B 2B 3B","7746":"4B VC","8705":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B","4097":"AC","4290":"VC 5B WC","6148":"6B 7B 8B 9B"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","4609":"B C OC PC","8193":"L M AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB ID JD KD LD OC wC MD PC","4097":"zB","6148":"vB wB xB yB"},G:{"1":"aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD","4097":"WD XD YD ZD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"4097":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"J sD tD uD","4097":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:5,C:"Variable fonts",D:true};
Index: node_modules/caniuse-lite/data/features/vector-effect.js
===================================================================
--- node_modules/caniuse-lite/data/features/vector-effect.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/vector-effect.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K D E F A B C L M"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","2":"F B ID JD KD LD OC wC"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC"},H:{"1":"lD"},I:{"1":"I qD rD","16":"UC J mD nD oD pD xC"},J:{"16":"D A"},K:{"1":"C H PC","2":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"SVG vector-effect: non-scaling-stroke",D:true};
Index: node_modules/caniuse-lite/data/features/vibration.js
===================================================================
--- node_modules/caniuse-lite/data/features/vibration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/vibration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB","2":"zC UC J aB K D E F A MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","33":"B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C G N ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"Vibration API",D:true};
Index: node_modules/caniuse-lite/data/features/video.js
===================================================================
--- node_modules/caniuse-lite/data/features/video.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/video.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","260":"J aB K D E F A B C L M G N O P bB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","513":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1025":"E aC ND xC OD PD QD RD SD TD UD VD","1537":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","132":"mD nD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Video element",D:true};
Index: node_modules/caniuse-lite/data/features/videotracks.js
===================================================================
--- node_modules/caniuse-lite/data/features/videotracks.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/videotracks.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB 3C 4C","194":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB","322":"0 1 2 3 4 5 6 7 8 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K 5C aC 6C"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB ID JD KD LD OC wC MD PC","322":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","322":"H"},L:{"322":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"322":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"322":"3D"},R:{"322":"4D"},S:{"194":"5D 6D"}},B:1,C:"Video Tracks",D:true};
Index: node_modules/caniuse-lite/data/features/view-transitions.js
===================================================================
--- node_modules/caniuse-lite/data/features/view-transitions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/view-transitions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t"},C:{"1":"YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB 3C 4C","194":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t"},E:{"1":"TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD"},F:{"1":"0 1 2 3 4 5 6 7 8 g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f ID JD KD LD OC wC MD PC"},G:{"1":"TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"CB DB EB FB GB HB IB","2":"9 J AB BB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"View Transitions API (single-document)",D:true};
Index: node_modules/caniuse-lite/data/features/viewport-unit-variants.js
===================================================================
--- node_modules/caniuse-lite/data/features/viewport-unit-variants.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/viewport-unit-variants.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","194":"o p q"},C:{"1":"0 1 2 3 4 5 6 7 8 k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i","194":"j k l m n o p q"},E:{"1":"dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC"},F:{"1":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z ID JD KD LD OC wC MD PC","194":"a b c"},G:{"1":"dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"AB BB CB DB EB FB GB HB IB","2":"9 J sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:5,C:"Small, Large, and Dynamic viewport units",D:true};
Index: node_modules/caniuse-lite/data/features/viewport-units.js
===================================================================
--- node_modules/caniuse-lite/data/features/viewport-units.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/viewport-units.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","132":"F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","260":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M G N O P 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O P bB","260":"9 AB BB CB DB EB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C","260":"K"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD","516":"QD","772":"PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"260":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"Viewport units: vw, vh, vmin, vmax",D:true};
Index: node_modules/caniuse-lite/data/features/wai-aria.js
===================================================================
--- node_modules/caniuse-lite/data/features/wai-aria.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wai-aria.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D yC","4":"E F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"4":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"4":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"5C aC","4":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"4":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"4":"lD"},I:{"2":"UC J mD nD oD pD xC","4":"I qD rD"},J:{"2":"D A"},K:{"4":"A B C H OC wC PC"},L:{"4":"I"},M:{"4":"NC"},N:{"4":"A B"},O:{"4":"QC"},P:{"4":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"4":"3D"},R:{"4":"4D"},S:{"4":"5D 6D"}},B:2,C:"WAI-ARIA Accessibility features",D:true};
Index: node_modules/caniuse-lite/data/features/wake-lock.js
===================================================================
--- node_modules/caniuse-lite/data/features/wake-lock.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wake-lock.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","194":"Q H R S T U V W X Y"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C","322":"7 8"},D:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC","194":"FC GC HC IC JC KC LC MC Q H R S T"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B ID JD KD LD OC wC MD PC","194":"4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:4,C:"Screen Wake Lock API",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-bigint.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-bigint.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-bigint.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T"},C:{"1":"0 1 2 3 4 5 6 7 8 MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T"},E:{"1":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC ID JD KD LD OC wC MD PC"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly BigInt to i64 conversion in JS API",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-bulk-memory.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-bulk-memory.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-bulk-memory.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Bulk Memory Operations",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-extended-const.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-extended-const.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-extended-const.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},C:{"1":"0 1 2 3 4 5 6 7 8 v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},E:{"1":"mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC"},F:{"1":"0 1 2 3 4 5 6 7 8 j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i ID JD KD LD OC wC MD PC"},G:{"1":"mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"CB DB EB FB GB HB IB","2":"9 J AB BB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Extended Constant Expressions",D:false};
Index: node_modules/caniuse-lite/data/features/wasm-gc.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-gc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-gc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"0 1 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},C:{"1":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"1":"2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"0 1 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Garbage Collection",D:false};
Index: node_modules/caniuse-lite/data/features/wasm-multi-memory.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-multi-memory.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-multi-memory.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"0 1 2 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},C:{"1":"8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"1":"2 3 4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"0 1 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Multi-Memory",D:false};
Index: node_modules/caniuse-lite/data/features/wasm-multi-value.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-multi-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-multi-value.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T"},C:{"1":"0 1 2 3 4 5 6 7 8 MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T"},E:{"1":"M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC ID JD KD LD OC wC MD PC"},G:{"1":"bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Multi-Value",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-mutable-globals.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-mutable-globals.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-mutable-globals.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},E:{"1":"C L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B 5C aC 6C 7C 8C 9C bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B ID JD KD LD OC wC MD PC"},G:{"1":"YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Import/Export of Mutable Globals",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Non-trapping float-to-int Conversion",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-reference-types.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-reference-types.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-reference-types.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e"},C:{"1":"0 1 2 3 4 5 6 7 8 Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R ID JD KD LD OC wC MD PC"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Reference Types",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g 3C 4C","194":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"CB DB EB FB GB HB IB","2":"9 J AB BB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Relaxed SIMD",D:false};
Index: node_modules/caniuse-lite/data/features/wasm-signext.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-signext.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-signext.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},E:{"1":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Sign Extension Operators",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-simd.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-simd.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-simd.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z"},C:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z"},E:{"1":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC"},F:{"1":"0 1 2 3 4 5 6 7 8 LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC ID JD KD LD OC wC MD PC"},G:{"1":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB RC SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D 1D"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly SIMD",D:true};
Index: node_modules/caniuse-lite/data/features/wasm-tail-calls.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-tail-calls.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-tail-calls.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},C:{"1":"4 5 6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"CB DB EB FB GB HB IB","2":"9 J AB BB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Tail Calls",D:false};
Index: node_modules/caniuse-lite/data/features/wasm-threads.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm-threads.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm-threads.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},E:{"1":"G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L M 5C aC 6C 7C 8C 9C bC OC PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B ID JD KD LD OC wC MD PC"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD vD wD bC"},Q:{"16":"3D"},R:{"16":"4D"},S:{"2":"5D","16":"6D"}},B:5,C:"WebAssembly Threads and Atomics",D:true};
Index: node_modules/caniuse-lite/data/features/wasm.js
===================================================================
--- node_modules/caniuse-lite/data/features/wasm.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wasm.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M","578":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 3C 4C","194":"tB uB vB wB xB","1025":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","322":"xB yB zB 0B 1B 2B"},E:{"1":"B C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC"},F:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB ID JD KD LD OC wC MD PC","322":"kB lB mB nB oB pB"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","194":"5D"}},B:6,C:"WebAssembly",D:true};
Index: node_modules/caniuse-lite/data/features/wav.js
===================================================================
--- node_modules/caniuse-lite/data/features/wav.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wav.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z KD LD OC wC MD PC","2":"F ID JD"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","16":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"Wav audio format",D:true};
Index: node_modules/caniuse-lite/data/features/wbr-element.js
===================================================================
--- node_modules/caniuse-lite/data/features/wbr-element.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wbr-element.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D yC","2":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"5C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","16":"F"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC"},H:{"1":"lD"},I:{"1":"UC J I oD pD xC qD rD","16":"mD nD"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"wbr (word break opportunity) element",D:true};
Index: node_modules/caniuse-lite/data/features/web-animation.js
===================================================================
--- node_modules/caniuse-lite/data/features/web-animation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/web-animation.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","260":"Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB 3C 4C","260":"VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC","516":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B","580":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB","2049":"JC KC LC MC Q H"},D:{"1":"0 1 2 3 4 5 6 7 8 T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB","132":"iB jB kB","260":"lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C bC","1090":"B C L OC PC","2049":"M AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB ID JD KD LD OC wC MD PC","132":"CB DB EB","260":"FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD","1090":"WD XD YD ZD aD bD cD","2049":"dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB 0D 1D RC SC TC 2D","260":"J sD tD uD vD wD bC xD yD zD"},Q:{"260":"3D"},R:{"1":"4D"},S:{"1":"6D","516":"5D"}},B:5,C:"Web Animations API",D:true};
Index: node_modules/caniuse-lite/data/features/web-app-manifest.js
===================================================================
--- node_modules/caniuse-lite/data/features/web-app-manifest.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/web-app-manifest.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N","130":"O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","578":"KC LC MC Q H R XC S T U"},D:{"1":"0 1 2 3 4 5 6 7 8 lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED","4":"SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD","4":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","260":"XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"Add to home screen (A2HS)",D:false};
Index: node_modules/caniuse-lite/data/features/web-bluetooth.js
===================================================================
--- node_modules/caniuse-lite/data/features/web-bluetooth.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/web-bluetooth.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB","194":"rB sB tB uB vB wB xB yB","706":"zB 0B 1B","1025":"0 1 2 3 4 5 6 7 8 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB ID JD KD LD OC wC MD PC","450":"iB jB kB lB","706":"mB nB oB","1025":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD rD","1025":"I"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","1025":"H"},L:{"1025":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1025":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD"},Q:{"2":"3D"},R:{"1025":"4D"},S:{"2":"5D 6D"}},B:7,C:"Web Bluetooth",D:true};
Index: node_modules/caniuse-lite/data/features/web-serial.js
===================================================================
--- node_modules/caniuse-lite/data/features/web-serial.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/web-serial.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","66":"Q H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC","66":"MC Q H R S T U V W X"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B ID JD KD LD OC wC MD PC","66":"9B AC BC CC DC EC FC GC HC IC JC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"129":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"Web Serial API",D:true};
Index: node_modules/caniuse-lite/data/features/web-share.js
===================================================================
--- node_modules/caniuse-lite/data/features/web-share.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/web-share.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H","516":"R S T U V W X Y Z a b c d"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D E F A B C L M G N O EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X","130":"9 P bB AB BB CB DB","1028":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB"},E:{"1":"M G BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC","2049":"L PC AD"},F:{"1":"0 1 2 3 4 5 6 7 8 x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w ID JD KD LD OC wC MD PC"},G:{"1":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD","2049":"ZD aD bD cD dD"},H:{"2":"lD"},I:{"2":"UC J mD nD oD pD xC qD","258":"I rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J","258":"sD tD uD"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:4,C:"Web Share API",D:true};
Index: node_modules/caniuse-lite/data/features/webauthn.js
===================================================================
--- node_modules/caniuse-lite/data/features/webauthn.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webauthn.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C","226":"L M G N O"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 3C 4C","4100":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","5124":"5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC"},E:{"1":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC","322":"PC"},F:{"1":"0 1 2 3 4 5 6 7 8 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB ID JD KD LD OC wC MD PC"},G:{"1":"fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD","578":"bD","2052":"eD","3076":"cD dD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"8196":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2":"5D"}},B:2,C:"Web Authentication API",D:true};
Index: node_modules/caniuse-lite/data/features/webcodecs.js
===================================================================
--- node_modules/caniuse-lite/data/features/webcodecs.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webcodecs.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c"},E:{"1":"sC tC uC vC HD","2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC","132":"hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD"},F:{"1":"0 1 2 3 4 5 6 7 8 H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q ID JD KD LD OC wC MD PC"},G:{"1":"sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC","132":"hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB SC TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"WebCodecs API",D:true};
Index: node_modules/caniuse-lite/data/features/webgl.js
===================================================================
--- node_modules/caniuse-lite/data/features/webgl.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webgl.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"yC","8":"K D E F A","129":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","129":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","129":"9 J aB K D E F A B C L M G N O P bB AB BB CB"},D:{"1":"0 1 2 3 4 5 6 7 8 fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB K D","129":"9 E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB"},E:{"1":"E F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC","129":"K D 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B ID JD KD LD OC wC MD","129":"C G N O P PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD QD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"1":"A","2":"D"},K:{"1":"C H PC","2":"A B OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"8":"A","129":"B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","129":"5D"}},B:6,C:"WebGL - 3D Canvas graphics",D:true};
Index: node_modules/caniuse-lite/data/features/webgl2.js
===================================================================
--- node_modules/caniuse-lite/data/features/webgl2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webgl2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB 3C 4C","194":"oB pB qB","450":"EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB","2242":"rB sB tB uB vB wB"},D:{"1":"0 1 2 3 4 5 6 7 8 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB","578":"pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},E:{"1":"G CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A 5C aC 6C 7C 8C 9C","1090":"B C L M bC OC PC AD BD"},F:{"1":"0 1 2 3 4 5 6 7 8 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB ID JD KD LD OC wC MD PC"},G:{"1":"gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD","1090":"YD ZD aD bD cD dD eD fD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","2242":"5D"}},B:6,C:"WebGL 2.0",D:true};
Index: node_modules/caniuse-lite/data/features/webgpu.js
===================================================================
--- node_modules/caniuse-lite/data/features/webgpu.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webgpu.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q","578":"H R S T U V W X Y Z a b c","1602":"d e f g h i j k l m n o p q r s t u v"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 3C 4C","194":"0 1 2 3 4 5 6 7 8 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","4292":"YB ZB I YC","16580":"ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q","578":"H R S T U V W X Y Z a b c","1602":"d e f g h i j k l m n o p q r s t u v","2049":"0 1 2 3 4 5 6 7 8 w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B G 5C aC 6C 7C 8C 9C bC CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC","322":"C L M OC PC AD BD mC nC FD TC oC pC qC rC GD","8452":"sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC ID JD KD LD OC wC MD PC","578":"HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h","2049":"0 1 2 3 4 5 6 7 8 i j k l m n o p q r s t u v w x y z"},G:{"1":"sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC","322":"mC nC jD TC oC pC qC rC kD"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","2049":"H"},L:{"1":"I"},M:{"194":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"1":"DB EB FB GB HB IB","2":"9 J AB BB CB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D","194":"6D"}},B:5,C:"WebGPU",D:true};
Index: node_modules/caniuse-lite/data/features/webhid.js
===================================================================
--- node_modules/caniuse-lite/data/features/webhid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webhid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P","66":"Q H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC","66":"MC Q H R S T U V W X"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B ID JD KD LD OC wC MD PC","66":"AC BC CC DC EC FC GC HC IC JC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"WebHID API",D:true};
Index: node_modules/caniuse-lite/data/features/webkit-user-drag.js
===================================================================
--- node_modules/caniuse-lite/data/features/webkit-user-drag.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webkit-user-drag.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"16":"J aB K D E F A B C L M G","132":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"F B C ID JD KD LD OC wC MD PC","132":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","132":"H"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"CSS -webkit-user-drag property",D:true};
Index: node_modules/caniuse-lite/data/features/webm.js
===================================================================
--- node_modules/caniuse-lite/data/features/webm.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webm.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E yC","520":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","8":"C L","388":"M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB","132":"9 K D E F A B C L M G N O P bB AB BB CB DB"},E:{"2":"5C","8":"J aB aC 6C","520":"K D E F A B C 7C 8C 9C bC OC","16385":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","17412":"L PC AD","23556":"M","24580":"G BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F ID JD KD","132":"B C G LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD","16385":"mC nC jD TC oC pC qC rC kD sC tC uC vC","17412":"ZD aD bD cD dD","19460":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC"},H:{"2":"lD"},I:{"1":"I","2":"mD nD","132":"UC J oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"8":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","132":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:6,C:"WebM video format",D:true};
Index: node_modules/caniuse-lite/data/features/webnfc.js
===================================================================
--- node_modules/caniuse-lite/data/features/webnfc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webnfc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","450":"H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","450":"H R S T U V W X"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","450":"BC CC DC EC FC GC HC IC JC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"257":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"Web NFC",D:true};
Index: node_modules/caniuse-lite/data/features/webp.js
===================================================================
--- node_modules/caniuse-lite/data/features/webp.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webp.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","8":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B"},D:{"1":"0 1 2 3 4 5 6 7 8 eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J aB","8":"K D E","132":"9 F A B C L M G N O P bB AB BB","260":"CB DB EB FB GB HB IB cB dB"},E:{"1":"RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F A B C L 5C aC 6C 7C 8C 9C bC OC PC AD","516":"M G BD CD cC dC QC DD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F ID JD KD","8":"B LD","132":"OC wC MD","260":"C G N O P PC"},G:{"1":"eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD"},H:{"1":"lD"},I:{"1":"I xC qD rD","2":"UC mD nD oD","132":"J pD"},J:{"2":"D A"},K:{"1":"C H OC wC PC","2":"A","132":"B"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","8":"5D"}},B:6,C:"WebP image format",D:true};
Index: node_modules/caniuse-lite/data/features/websockets.js
===================================================================
--- node_modules/caniuse-lite/data/features/websockets.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/websockets.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC 3C 4C","132":"J aB","292":"K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"J aB K D E F A B C L M","260":"G"},E:{"1":"D E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","132":"aB 6C","260":"K 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F ID JD KD LD","132":"B C OC wC MD"},G:{"1":"E PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND","132":"xC OD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","129":"D"},K:{"1":"H PC","2":"A","132":"B C OC wC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Web Sockets",D:true};
Index: node_modules/caniuse-lite/data/features/webtransport.js
===================================================================
--- node_modules/caniuse-lite/data/features/webtransport.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webtransport.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g"},C:{"1":"0 1 2 3 4 5 6 7 8 x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z e f","66":"a b c d"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB TC 2D","2":"J sD tD uD vD wD bC xD yD zD 0D 1D RC SC"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:5,C:"WebTransport",D:true};
Index: node_modules/caniuse-lite/data/features/webusb.js
===================================================================
--- node_modules/caniuse-lite/data/features/webusb.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webusb.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB","66":"0B 1B 2B 3B 4B VC 5B"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB ID JD KD LD OC wC MD PC","66":"nB oB pB qB rB sB tB"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB vD wD bC xD yD zD 0D 1D RC SC TC 2D","2":"J sD tD uD"},Q:{"2":"3D"},R:{"1":"4D"},S:{"2":"5D 6D"}},B:7,C:"WebUSB",D:true};
Index: node_modules/caniuse-lite/data/features/webvr.js
===================================================================
--- node_modules/caniuse-lite/data/features/webvr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webvr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"0 1 2 3 4 5 6 7 8 C L M H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","66":"Q","257":"G N O P"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 3C 4C","129":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","194":"0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","66":"3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","66":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"2":"I"},M:{"2":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"513":"J","516":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:7,C:"WebVR API",D:true};
Index: node_modules/caniuse-lite/data/features/webvtt.js
===================================================================
--- node_modules/caniuse-lite/data/features/webvtt.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webvtt.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB 3C 4C","66":"DB EB FB GB HB IB cB","129":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B","257":"0 1 2 3 4 5 6 7 8 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB"},E:{"1":"K D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC OD PD"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC J mD nD oD pD xC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"B","2":"A"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"129":"5D 6D"}},B:4,C:"WebVTT - Web Video Text Tracks",D:true};
Index: node_modules/caniuse-lite/data/features/webworkers.js
===================================================================
--- node_modules/caniuse-lite/data/features/webworkers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webworkers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","2":"yC","8":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","8":"zC UC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","8":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z LD OC wC MD PC","2":"F ID","8":"JD KD"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"I mD qD rD","2":"UC J nD oD pD xC"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","8":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Web Workers",D:true};
Index: node_modules/caniuse-lite/data/features/webxr.js
===================================================================
--- node_modules/caniuse-lite/data/features/webxr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/webxr.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC 3C 4C","322":"0 1 2 3 4 5 6 7 8 LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C"},D:{"2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B","66":"9B AC BC CC DC EC FC GC HC IC JC KC LC MC","132":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"2":"J aB K D E F A B C 5C aC 6C 7C 8C 9C bC OC PC","578":"L M G AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB ID JD KD LD OC wC MD PC","66":"yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B","132":"0 1 2 3 4 5 6 7 8 AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"2":"lD"},I:{"2":"UC J I mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C OC wC PC","132":"H"},L:{"132":"I"},M:{"322":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"J sD tD uD vD wD bC xD","132":"9 AB BB CB DB EB FB GB HB IB yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D","322":"6D"}},B:4,C:"WebXR Device API",D:true};
Index: node_modules/caniuse-lite/data/features/will-change.js
===================================================================
--- node_modules/caniuse-lite/data/features/will-change.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/will-change.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB 3C 4C","194":"IB cB dB eB fB gB hB"},D:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},E:{"1":"A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB CB ID JD KD LD OC wC MD PC"},G:{"1":"TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS will-change property",D:true};
Index: node_modules/caniuse-lite/data/features/woff.js
===================================================================
--- node_modules/caniuse-lite/data/features/woff.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/woff.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 4C","2":"zC UC 3C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"J"},E:{"1":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB 5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z OC wC MD PC","2":"F B ID JD KD LD"},G:{"1":"E OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC"},H:{"2":"lD"},I:{"1":"I qD rD","2":"UC mD nD oD pD xC","130":"J"},J:{"1":"D A"},K:{"1":"B C H OC wC PC","2":"A"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"WOFF - Web Open Font Format",D:true};
Index: node_modules/caniuse-lite/data/features/woff2.js
===================================================================
--- node_modules/caniuse-lite/data/features/woff2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/woff2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB"},E:{"1":"C L M G PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J aB K D E F 5C aC 6C 7C 8C 9C","132":"A B bC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"9 F B C G N O P bB AB BB ID JD KD LD OC wC MD PC"},G:{"1":"UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"E aC ND xC OD PD QD RD SD TD"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:2,C:"WOFF 2.0 - Web Open Font Format",D:true};
Index: node_modules/caniuse-lite/data/features/word-break.js
===================================================================
--- node_modules/caniuse-lite/data/features/word-break.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/word-break.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC J aB K D E F A B C L M 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},E:{"1":"F A B C L M G 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","4":"J aB K D E 5C aC 6C 7C 8C"},F:{"1":"0 1 2 3 4 5 6 7 8 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B C ID JD KD LD OC wC MD PC","4":"9 G N O P bB AB BB CB DB EB FB GB HB IB cB"},G:{"1":"SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","4":"E aC ND xC OD PD QD RD"},H:{"2":"lD"},I:{"1":"I","4":"UC J mD nD oD pD xC qD rD"},J:{"4":"D A"},K:{"1":"H","2":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"CSS3 word-break",D:true};
Index: node_modules/caniuse-lite/data/features/wordwrap.js
===================================================================
--- node_modules/caniuse-lite/data/features/wordwrap.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/wordwrap.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"4":"K D E F A B yC"},B:{"1":"0 1 2 3 4 5 6 7 8 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","4":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","4":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","4":"9 J aB K D E F A B C L M G N O P bB AB BB"},E:{"1":"D E F A B C L M G 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","4":"J aB K 5C aC 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z PC","2":"F ID JD","4":"B C KD LD OC wC MD"},G:{"1":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","4":"aC ND xC OD PD"},H:{"4":"lD"},I:{"1":"I qD rD","4":"UC J mD nD oD pD xC"},J:{"1":"A","4":"D"},K:{"1":"H","4":"A B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"4":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"6D","4":"5D"}},B:4,C:"CSS3 Overflow-wrap",D:true};
Index: node_modules/caniuse-lite/data/features/x-doc-messaging.js
===================================================================
--- node_modules/caniuse-lite/data/features/x-doc-messaging.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/x-doc-messaging.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D yC","132":"E F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C","2":"zC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"5C aC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC","2":"F"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"4":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"Cross-document messaging",D:true};
Index: node_modules/caniuse-lite/data/features/x-frame-options.js
===================================================================
--- node_modules/caniuse-lite/data/features/x-frame-options.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/x-frame-options.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"E F A B","2":"K D yC"},B:{"1":"C L M G N O P","4":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC","4":"0 1 2 3 4 5 6 7 8 J aB K D E F A B C L M G N O EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","16":"zC UC 3C 4C"},D:{"4":"0 1 2 3 4 5 6 7 8 FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB"},E:{"4":"K D E F A B C L M G 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","16":"J aB 5C aC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z MD PC","16":"F B ID JD KD LD OC wC"},G:{"4":"E QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","16":"aC ND xC OD PD"},H:{"2":"lD"},I:{"4":"J I pD xC qD rD","16":"UC mD nD oD"},J:{"4":"D A"},K:{"4":"H PC","16":"A B C OC wC"},L:{"4":"I"},M:{"4":"NC"},N:{"1":"A B"},O:{"4":"QC"},P:{"4":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"4":"3D"},R:{"4":"4D"},S:{"1":"5D","4":"6D"}},B:6,C:"X-Frame-Options HTTP header",D:true};
Index: node_modules/caniuse-lite/data/features/xhr2.js
===================================================================
--- node_modules/caniuse-lite/data/features/xhr2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/xhr2.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F yC","1156":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","1028":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"zC UC","1028":"9 C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB","1284":"A B","1412":"K D E F","1924":"J aB 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","16":"J aB K","1028":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","1156":"IB cB","1412":"9 D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB"},E:{"1":"C L M G OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","2":"J 5C aC","1028":"E F A B 8C 9C bC","1156":"D 7C","1412":"aB K 6C"},F:{"1":"0 1 2 3 4 5 6 7 8 jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","2":"F B ID JD KD LD OC wC MD","132":"G N O","1028":"9 C P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB PC"},G:{"1":"WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","2":"aC ND xC","1028":"E RD SD TD UD VD","1156":"QD","1412":"OD PD"},H:{"2":"lD"},I:{"1":"I","2":"mD nD oD","1028":"rD","1412":"qD","1924":"UC J pD xC"},J:{"1156":"A","1412":"D"},K:{"1":"H","2":"A B OC wC","1028":"C PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1156":"A B"},O:{"1":"QC"},P:{"1":"9 AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D","1028":"J"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"XMLHttpRequest advanced features",D:true};
Index: node_modules/caniuse-lite/data/features/xhtml.js
===================================================================
--- node_modules/caniuse-lite/data/features/xhtml.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/xhtml.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"F A B","2":"K D E yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"1":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"1":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"1":"lD"},I:{"1":"UC J I mD nD oD pD xC qD rD"},J:{"1":"D A"},K:{"1":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:1,C:"XHTML served as application/xhtml+xml",D:true};
Index: node_modules/caniuse-lite/data/features/xhtmlsmil.js
===================================================================
--- node_modules/caniuse-lite/data/features/xhtmlsmil.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/xhtmlsmil.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"F A B yC","4":"K D E"},B:{"2":"C L M G N O P","8":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"8":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C 3C 4C"},D:{"8":"0 1 2 3 4 5 6 7 8 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC"},E:{"8":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ID JD KD LD OC wC MD PC"},G:{"8":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC"},H:{"8":"lD"},I:{"8":"UC J I mD nD oD pD xC qD rD"},J:{"8":"D A"},K:{"8":"A B C H OC wC PC"},L:{"8":"I"},M:{"8":"NC"},N:{"2":"A B"},O:{"8":"QC"},P:{"8":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"8":"3D"},R:{"8":"4D"},S:{"8":"5D 6D"}},B:7,C:"XHTML+SMIL animation",D:true};
Index: node_modules/caniuse-lite/data/features/xml-serializer.js
===================================================================
--- node_modules/caniuse-lite/data/features/xml-serializer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/xml-serializer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"1":"A B","260":"K D E F yC"},B:{"1":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","132":"B","260":"zC UC J aB K D 3C 4C","516":"E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","132":"9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB"},E:{"1":"E F A B C L M G 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD sC tC uC vC HD","132":"J aB K D 5C aC 6C 7C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","16":"F ID","132":"B C G N O JD KD LD OC wC MD PC"},G:{"1":"E RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD sC tC uC vC","132":"aC ND xC OD PD QD"},H:{"132":"lD"},I:{"1":"I qD rD","132":"UC J mD nD oD pD xC"},J:{"132":"D A"},K:{"1":"H","16":"A","132":"B C OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"1":"A B"},O:{"1":"QC"},P:{"1":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"1":"3D"},R:{"1":"4D"},S:{"1":"5D 6D"}},B:4,C:"DOM Parsing and Serialization",D:true};
Index: node_modules/caniuse-lite/data/features/zstd.js
===================================================================
--- node_modules/caniuse-lite/data/features/zstd.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/features/zstd.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={A:{A:{"2":"K D E F A B yC"},B:{"1":"6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I","2":"0 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"1 2 3 4 5"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC 0C 1C 2C","2":"0 1 2 3 4 5 6 7 8 9 zC UC J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z 3C 4C"},D:{"1":"6 7 8 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB I YC ZC NC","2":"0 9 J aB K D E F A B C L M G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B VC 5B WC 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z","194":"1 2 3 4 5"},E:{"2":"J aB K D E F A B C L M G 5C aC 6C 7C 8C 9C bC OC PC AD BD CD cC dC QC DD RC eC fC gC hC iC ED SC jC kC lC mC nC FD TC oC pC qC rC GD","260":"sC tC uC vC HD"},F:{"1":"0 1 2 3 4 5 6 7 8 s t u v w x y z","2":"9 F B C G N O P bB AB BB CB DB EB FB GB HB IB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC Q H R XC S T U V W X Y Z a b c d e f g h i j k l m n o p q r ID JD KD LD OC wC MD PC"},G:{"2":"E aC ND xC OD PD QD RD SD TD UD VD WD XD YD ZD aD bD cD dD eD fD gD cC dC QC hD RC eC fC gC hC iC iD SC jC kC lC mC nC jD TC oC pC qC rC kD","260":"sC tC uC vC"},H:{"2":"lD"},I:{"1":"I","2":"UC J mD nD oD pD xC qD rD"},J:{"2":"D A"},K:{"2":"A B C H OC wC PC"},L:{"1":"I"},M:{"1":"NC"},N:{"2":"A B"},O:{"2":"QC"},P:{"2":"9 J AB BB CB DB EB FB GB HB IB sD tD uD vD wD bC xD yD zD 0D 1D RC SC TC 2D"},Q:{"2":"3D"},R:{"2":"4D"},S:{"2":"5D 6D"}},B:6,C:"zstd (Zstandard) content-encoding",D:true};
Index: node_modules/caniuse-lite/data/regions/AD.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.0048,"108":0.00961,"113":0.0048,"115":0.20177,"128":0.03363,"130":0.01441,"132":0.0048,"134":0.0048,"135":0.04324,"136":0.00961,"137":0.01441,"138":0.0048,"139":0.01441,"140":0.06726,"143":0.02402,"144":1.11933,"145":1.5613,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 114 116 117 118 119 120 121 122 123 124 125 126 127 129 131 133 141 142 146 147 148 3.5 3.6"},D:{"79":0.03363,"83":0.0048,"85":0.0048,"90":0.01441,"97":0.0048,"98":0.00961,"99":0.0048,"103":0.09608,"105":0.0048,"108":0.0048,"109":0.1153,"111":0.01441,"112":0.0048,"114":0.00961,"116":0.15373,"120":0.03363,"121":0.0048,"122":0.06245,"124":0.0048,"125":0.07686,"126":0.02882,"128":0.03363,"129":0.02402,"130":0.00961,"131":0.44677,"132":0.06726,"133":0.03843,"134":0.13451,"135":0.05765,"136":0.05284,"137":0.14412,"138":0.30746,"139":0.07686,"140":0.19696,"141":4.89047,"142":12.15412,"143":0.0048,"144":0.0048,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 86 87 88 89 91 92 93 94 95 96 100 101 102 104 106 107 110 113 115 117 118 119 123 127 145 146"},F:{"92":0.01922,"93":0.0048,"102":0.01922,"114":0.02402,"117":0.01441,"120":0.0048,"122":0.61011,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01441,"92":0.01441,"108":0.01922,"114":0.0048,"128":0.01922,"129":0.0048,"131":0.03363,"132":0.02402,"133":0.00961,"134":0.04324,"135":0.01441,"136":0.04324,"137":0.03363,"138":0.0048,"139":0.00961,"140":0.01922,"141":0.3651,"142":2.77671,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 130 143"},E:{"14":0.02402,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.4 15.5","13.1":0.02882,"14.1":0.03363,"15.1":0.00961,"15.2-15.3":0.02402,"15.6":0.50442,"16.0":0.0048,"16.1":0.07206,"16.2":0.05284,"16.3":0.17294,"16.4":0.01922,"16.5":0.07686,"16.6":1.06649,"17.0":0.04804,"17.1":1.18178,"17.2":0.09128,"17.3":0.28344,"17.4":0.19216,"17.5":0.47079,"17.6":1.28747,"18.0":0.02882,"18.1":0.14892,"18.2":0.10569,"18.3":0.15853,"18.4":0.22098,"18.5-18.6":0.80227,"26.0":1.9264,"26.1":2.13298,"26.2":0.08647},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00355,"5.0-5.1":0,"6.0-6.1":0.01421,"7.0-7.1":0.01065,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03196,"10.0-10.2":0.00355,"10.3":0.05683,"11.0-11.2":0.6606,"11.3-11.4":0.02131,"12.0-12.1":0.0071,"12.2-12.5":0.16693,"13.0-13.1":0,"13.2":0.01776,"13.3":0.0071,"13.4-13.7":0.03196,"14.0-14.4":0.05327,"14.5-14.8":0.06748,"15.0-15.1":0.05683,"15.2-15.3":0.04617,"15.4":0.04972,"15.5":0.05327,"15.6-15.8":0.7707,"16.0":0.09589,"16.1":0.17758,"16.2":0.09234,"16.3":0.17048,"16.4":0.04262,"16.5":0.07103,"16.6-16.7":1.04063,"17.0":0.08879,"17.1":0.10655,"17.2":0.07814,"17.3":0.1101,"17.4":0.18113,"17.5":0.34451,"17.6-17.7":0.84529,"18.0":0.18824,"18.1":0.39778,"18.2":0.2131,"18.3":0.69257,"18.4":0.35516,"18.5-18.7":24.80103,"26.0":1.70123,"26.1":1.55206},P:{"4":0.01059,"26":0.01059,"28":0.02117,"29":1.10099,_:"20 21 22 23 24 25 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.01038,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.07796,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.03843,"9":0.0048,"10":0.0048,"11":0.00961,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":15.50699},R:{_:"0"},M:{"0":0.29623}};
Index: node_modules/caniuse-lite/data/regions/AE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00563,"104":0.00282,"115":0.01409,"127":0.00282,"128":0.00282,"133":0.00282,"136":0.00282,"139":0.00282,"140":0.00563,"141":0.00282,"142":0.00282,"143":0.01409,"144":0.21409,"145":0.22818,"146":0.00845,"147":0.01409,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 134 135 137 138 148 3.5 3.6"},D:{"41":0.00282,"49":0.00282,"68":0.00282,"69":0.00563,"73":0.00282,"76":0.00282,"79":0.01127,"83":0.00282,"87":0.01409,"88":0.00282,"90":0.00282,"91":0.00845,"93":0.0169,"98":0.00282,"99":0.00282,"100":0.00282,"103":0.08169,"104":0.01409,"106":0.00282,"108":0.00845,"109":0.13522,"110":0.00282,"111":0.01127,"112":2.42544,"113":0.00282,"114":0.00845,"115":0.00282,"116":0.05352,"117":0.00282,"118":0.00282,"119":0.00845,"120":0.01409,"121":0.00563,"122":0.02817,"123":0.00563,"124":0.01127,"125":1.68175,"126":0.32396,"127":0.18874,"128":0.03099,"129":0.00845,"130":0.13803,"131":0.04226,"132":0.03099,"133":0.0338,"134":0.02254,"135":0.19719,"136":0.02817,"137":0.04507,"138":0.1493,"139":0.20564,"140":0.25635,"141":2.66207,"142":6.78615,"143":0.01409,"144":0.00282,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 72 74 75 77 78 80 81 84 85 86 89 92 94 95 96 97 101 102 105 107 145 146"},F:{"46":0.00282,"91":0.00282,"92":0.12958,"93":0.01972,"95":0.00282,"100":0.00282,"114":0.00282,"120":0.00845,"122":0.1155,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00282,"92":0.00282,"109":0.00282,"114":0.06197,"122":0.00282,"126":0.00282,"130":0.00563,"131":0.00563,"132":0.00282,"133":0.00845,"134":0.00282,"135":0.00282,"136":0.00563,"137":0.00282,"138":0.00563,"139":0.01127,"140":0.02535,"141":0.20846,"142":1.59161,"143":0.00563,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 127 128 129"},E:{"14":0.00563,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3","13.1":0.00563,"14.1":0.00563,"15.4":0.00563,"15.5":0.00282,"15.6":0.05071,"16.0":0.00845,"16.1":0.01127,"16.2":0.01409,"16.3":0.00845,"16.4":0.00282,"16.5":0.00563,"16.6":0.05634,"17.0":0.00845,"17.1":0.03944,"17.2":0.01127,"17.3":0.01409,"17.4":0.02535,"17.5":0.03099,"17.6":0.11831,"18.0":0.01127,"18.1":0.02254,"18.2":0.0169,"18.3":0.03944,"18.4":0.02254,"18.5-18.6":0.09578,"26.0":0.2479,"26.1":0.18874,"26.2":0.00563},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0008,"5.0-5.1":0,"6.0-6.1":0.0032,"7.0-7.1":0.0024,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00719,"10.0-10.2":0.0008,"10.3":0.01279,"11.0-11.2":0.14868,"11.3-11.4":0.0048,"12.0-12.1":0.0016,"12.2-12.5":0.03757,"13.0-13.1":0,"13.2":0.004,"13.3":0.0016,"13.4-13.7":0.00719,"14.0-14.4":0.01199,"14.5-14.8":0.01519,"15.0-15.1":0.01279,"15.2-15.3":0.01039,"15.4":0.01119,"15.5":0.01199,"15.6-15.8":0.17346,"16.0":0.02158,"16.1":0.03997,"16.2":0.02078,"16.3":0.03837,"16.4":0.00959,"16.5":0.01599,"16.6-16.7":0.23421,"17.0":0.01998,"17.1":0.02398,"17.2":0.01759,"17.3":0.02478,"17.4":0.04077,"17.5":0.07754,"17.6-17.7":0.19025,"18.0":0.04237,"18.1":0.08953,"18.2":0.04796,"18.3":0.15587,"18.4":0.07994,"18.5-18.7":5.58191,"26.0":0.38289,"26.1":0.34932},P:{"22":0.01026,"23":0.01026,"24":0.01026,"25":0.01026,"26":0.02052,"27":0.04104,"28":0.14364,"29":1.09782,_:"4 20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02052},I:{"0":0.02152,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":1.28558,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01972,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":1.2784},H:{"0":0},L:{"0":66.87765},R:{_:"0"},M:{"0":0.10773}};
Index: node_modules/caniuse-lite/data/regions/AF.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"43":0.00174,"44":0.00174,"50":0.00522,"57":0.00174,"70":0.00174,"73":0.00174,"84":0.00174,"90":0.00174,"94":0.00174,"99":0.0348,"102":0.00174,"115":0.15312,"123":0.00174,"127":0.00522,"128":0.00696,"131":0.00174,"135":0.00174,"137":0.00174,"140":0.01566,"141":0.00174,"142":0.00348,"143":0.00522,"144":0.15138,"145":0.20532,"146":0.00174,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 45 46 47 48 49 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 71 72 74 75 76 77 78 79 80 81 82 83 85 86 87 88 89 91 92 93 95 96 97 98 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 124 125 126 129 130 132 133 134 136 138 139 147 148 3.5 3.6"},D:{"38":0.00174,"39":0.00522,"45":0.00348,"47":0.00174,"48":0.00174,"49":0.00174,"50":0.00348,"51":0.00174,"52":0.00174,"54":0.00174,"58":0.00174,"61":0.00174,"62":0.01218,"63":0.00348,"64":0.00174,"66":0.00348,"67":0.00174,"68":0.00174,"69":0.00696,"70":0.0087,"71":0.0174,"72":0.00522,"73":0.00696,"74":0.00522,"75":0.0087,"76":0.00174,"77":0.00522,"78":0.0261,"79":0.09396,"80":0.0087,"81":0.00174,"83":0.00696,"84":0.00348,"85":0.00174,"86":0.01218,"87":0.0174,"89":0.00348,"90":0.00174,"91":0.00174,"92":0.01044,"93":0.01044,"94":0.00348,"96":0.00696,"97":0.00348,"98":0.00348,"99":0.00522,"100":0.00174,"101":0.00522,"102":0.00174,"103":0.00522,"104":0.00522,"105":0.00696,"106":0.00348,"107":0.02436,"108":0.0087,"109":1.09446,"110":0.00174,"111":0.01218,"112":0.00174,"113":0.01218,"114":0.00348,"115":0.00174,"116":0.0087,"117":0.00522,"118":0.00522,"119":0.01218,"120":0.01218,"121":0.00522,"122":0.0174,"123":0.00174,"124":0.00522,"125":0.02436,"126":0.02088,"127":0.01044,"128":0.01392,"129":0.0087,"130":0.01392,"131":0.1044,"132":0.02262,"133":0.01044,"134":0.03132,"135":0.0261,"136":0.02958,"137":0.05568,"138":0.1044,"139":0.09396,"140":0.16008,"141":1.5138,"142":4.35522,"143":0.01566,"144":0.00174,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 46 53 55 56 57 59 60 65 88 95 145 146"},F:{"15":0.01044,"79":0.00174,"90":0.00522,"92":0.00348,"95":0.0261,"102":0.00522,"120":0.00696,"121":0.00174,"122":0.06786,_:"9 11 12 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00348,"14":0.00522,"16":0.01218,"17":0.0087,"18":0.0261,"81":0.00348,"84":0.00348,"88":0.00174,"89":0.00348,"90":0.01218,"92":0.1044,"100":0.02262,"109":0.01566,"114":0.00696,"122":0.0087,"124":0.00174,"130":0.00174,"131":0.00174,"132":0.00174,"133":0.00174,"135":0.00348,"136":0.0087,"137":0.00348,"138":0.00522,"139":0.00696,"140":0.04176,"141":0.14094,"142":1.04922,"143":0.00174,_:"13 15 79 80 83 85 86 87 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 125 126 127 128 129 134"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.2-15.3 16.0","5.1":0.00348,"13.1":0.03132,"15.1":0.00348,"15.4":0.00348,"15.5":0.01044,"15.6":0.0435,"16.1":0.01044,"16.2":0.00522,"16.3":0.01044,"16.4":0.06264,"16.5":0.01392,"16.6":0.10962,"17.0":0.01044,"17.1":0.06612,"17.2":0.0087,"17.3":0.01218,"17.4":0.01914,"17.5":0.05916,"17.6":0.18792,"18.0":0.01392,"18.1":0.02262,"18.2":0.00696,"18.3":0.05046,"18.4":0.02784,"18.5-18.6":0.09222,"26.0":0.29232,"26.1":0.35496,"26.2":0.01044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00097,"5.0-5.1":0,"6.0-6.1":0.00389,"7.0-7.1":0.00292,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00876,"10.0-10.2":0.00097,"10.3":0.01557,"11.0-11.2":0.18096,"11.3-11.4":0.00584,"12.0-12.1":0.00195,"12.2-12.5":0.04573,"13.0-13.1":0,"13.2":0.00486,"13.3":0.00195,"13.4-13.7":0.00876,"14.0-14.4":0.01459,"14.5-14.8":0.01849,"15.0-15.1":0.01557,"15.2-15.3":0.01265,"15.4":0.01362,"15.5":0.01459,"15.6-15.8":0.21112,"16.0":0.02627,"16.1":0.04865,"16.2":0.0253,"16.3":0.0467,"16.4":0.01167,"16.5":0.01946,"16.6-16.7":0.28506,"17.0":0.02432,"17.1":0.02919,"17.2":0.0214,"17.3":0.03016,"17.4":0.04962,"17.5":0.09437,"17.6-17.7":0.23155,"18.0":0.05156,"18.1":0.10897,"18.2":0.05837,"18.3":0.18972,"18.4":0.09729,"18.5-18.7":6.79383,"26.0":0.46602,"26.1":0.42516},P:{"4":0.04094,"20":0.04094,"21":0.03071,"22":0.02047,"23":0.02047,"24":0.05118,"25":0.04094,"26":0.11259,"27":0.14329,"28":0.35823,"29":0.48105,"5.0-5.4":0.03071,"6.2-6.4":0.02047,"7.2-7.4":0.08188,"8.2":0.01024,"9.2":0.04094,_:"10.1 12.0 14.0 15.0","11.1-11.2":0.05118,"13.0":0.04094,"16.0":0.02047,"17.0":0.01024,"18.0":0.01024,"19.0":0.01024},I:{"0":0.05773,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.40295,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0261,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.30558},H:{"0":0.01},L:{"0":74.4284},R:{_:"0"},M:{"0":0.10737}};
Index: node_modules/caniuse-lite/data/regions/AG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01858,"78":0.00743,"88":0.00743,"115":0.02229,"127":0.00372,"136":0.03344,"140":0.01486,"143":0.01115,"144":0.15603,"145":0.24519,"146":0.05201,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 128 129 130 131 132 133 134 135 137 138 139 141 142 147 148 3.5 3.6"},D:{"69":0.02229,"76":0.00372,"79":0.01486,"83":0.00372,"90":0.00372,"93":0.02601,"97":0.00372,"103":0.09659,"108":0.00372,"109":1.09593,"111":0.02601,"112":0.00372,"116":0.03344,"118":0.00372,"119":0.01858,"120":0.00372,"121":0.01486,"122":0.03715,"123":0.00743,"124":0.00372,"125":0.39751,"126":0.04087,"127":0.01486,"128":0.03344,"129":0.08173,"130":0.01115,"131":0.03344,"132":0.34178,"133":0.00372,"134":0.02601,"135":0.00743,"137":0.0483,"138":0.18947,"139":0.08916,"140":0.21919,"141":4.19052,"142":12.44525,"143":0.00743,"144":0.01115,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 77 78 80 81 84 85 86 87 88 89 91 92 94 95 96 98 99 100 101 102 104 105 106 107 110 113 114 115 117 136 145 146"},F:{"92":0.04458,"122":0.10774,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"100":0.00372,"104":0.00372,"109":0.01486,"114":0.03715,"131":0.00743,"134":0.00372,"135":0.00372,"137":0.01115,"138":0.00372,"139":0.02229,"140":0.02972,"141":0.78015,"142":5.30502,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132 133 136 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 17.0 26.2","13.1":0.00372,"14.1":0.01486,"15.6":0.12631,"16.1":0.11517,"16.3":0.00372,"16.4":0.00372,"16.5":0.00372,"16.6":0.07802,"17.1":0.07059,"17.2":0.00372,"17.3":0.01858,"17.4":0.05201,"17.5":0.07802,"17.6":0.30835,"18.0":0.02601,"18.1":0.02229,"18.2":0.02601,"18.3":0.12631,"18.4":0.01858,"18.5-18.6":0.13003,"26.0":0.28606,"26.1":0.32692},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00218,"5.0-5.1":0,"6.0-6.1":0.00874,"7.0-7.1":0.00655,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01966,"10.0-10.2":0.00218,"10.3":0.03494,"11.0-11.2":0.40623,"11.3-11.4":0.0131,"12.0-12.1":0.00437,"12.2-12.5":0.10265,"13.0-13.1":0,"13.2":0.01092,"13.3":0.00437,"13.4-13.7":0.01966,"14.0-14.4":0.03276,"14.5-14.8":0.0415,"15.0-15.1":0.03494,"15.2-15.3":0.02839,"15.4":0.03058,"15.5":0.03276,"15.6-15.8":0.47394,"16.0":0.05897,"16.1":0.1092,"16.2":0.05678,"16.3":0.10483,"16.4":0.02621,"16.5":0.04368,"16.6-16.7":0.63992,"17.0":0.0546,"17.1":0.06552,"17.2":0.04805,"17.3":0.06771,"17.4":0.11139,"17.5":0.21185,"17.6-17.7":0.5198,"18.0":0.11575,"18.1":0.24461,"18.2":0.13104,"18.3":0.42589,"18.4":0.2184,"18.5-18.7":15.25113,"26.0":1.04615,"26.1":0.95442},P:{"4":0.01029,"21":0.12349,"24":0.04116,"25":0.03087,"26":0.06175,"27":0.13378,"28":0.45281,"29":4.5075,_:"20 22 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 17.0 18.0 19.0","7.2-7.4":0.01029,"11.1-11.2":0.01029,"16.0":0.01029},I:{"0":0.00628,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.06914,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.0483,_:"6 7 8 9 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00629},H:{"0":0},L:{"0":41.6498},R:{_:"0"},M:{"0":0.03771}};
Index: node_modules/caniuse-lite/data/regions/AI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01719,"113":0.00573,"144":0.48705,"145":0.08022,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"69":0.02292,"83":0.09741,"87":0.00573,"98":0.18336,"103":0.00573,"108":0.00573,"109":0.13752,"111":0.03438,"116":0.01719,"125":0.81939,"126":0.02292,"127":0.82512,"129":0.04584,"131":0.06303,"132":0.00573,"134":0.04011,"136":0.00573,"138":0.02292,"139":0.2292,"140":0.79647,"141":14.68026,"142":13.81503,"143":0.09741,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 84 85 86 88 89 90 91 92 93 94 95 96 97 99 100 101 102 104 105 106 107 110 112 113 114 115 117 118 119 120 121 122 123 124 128 130 133 135 137 144 145 146"},F:{"105":0.00573,"122":0.02292,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.01719,"114":0.04011,"132":0.01719,"133":0.01719,"134":0.00573,"137":0.02292,"139":0.00573,"140":0.00573,"141":0.65895,"142":6.26289,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 135 136 138 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 13.1 14.1 15.2-15.3 15.4 16.0 16.2","9.1":0.00573,"15.1":0.12033,"15.5":0.04011,"15.6":1.27779,"16.1":0.20055,"16.3":0.0573,"16.4":0.00573,"16.5":0.00573,"16.6":1.39812,"17.0":0.04584,"17.1":0.97983,"17.2":0.02292,"17.3":0.00573,"17.4":0.20055,"17.5":0.09741,"17.6":2.09145,"18.0":0.16617,"18.1":0.06303,"18.2":0.04011,"18.3":0.10314,"18.4":0.18336,"18.5-18.6":0.13752,"26.0":0.38964,"26.1":0.42402,"26.2":0.03438},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00247,"5.0-5.1":0,"6.0-6.1":0.00987,"7.0-7.1":0.00741,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02222,"10.0-10.2":0.00247,"10.3":0.0395,"11.0-11.2":0.45914,"11.3-11.4":0.01481,"12.0-12.1":0.00494,"12.2-12.5":0.11602,"13.0-13.1":0,"13.2":0.01234,"13.3":0.00494,"13.4-13.7":0.02222,"14.0-14.4":0.03703,"14.5-14.8":0.0469,"15.0-15.1":0.0395,"15.2-15.3":0.03209,"15.4":0.03456,"15.5":0.03703,"15.6-15.8":0.53566,"16.0":0.06665,"16.1":0.12342,"16.2":0.06418,"16.3":0.11849,"16.4":0.02962,"16.5":0.04937,"16.6-16.7":0.72327,"17.0":0.06171,"17.1":0.07405,"17.2":0.05431,"17.3":0.07652,"17.4":0.12589,"17.5":0.23944,"17.6-17.7":0.5875,"18.0":0.13083,"18.1":0.27647,"18.2":0.14811,"18.3":0.48135,"18.4":0.24685,"18.5-18.7":17.23744,"26.0":1.18241,"26.1":1.07873},P:{"4":0.0633,"22":0.96,"24":0.01055,"25":0.70681,"26":0.0211,"27":0.0211,"28":0.24264,"29":1.32923,_:"20 21 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.05275},I:{"0":0.00853,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.05978,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":19.20307},R:{_:"0"},M:{"0":0.03416}};
Index: node_modules/caniuse-lite/data/regions/AL.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0152,"60":0.0076,"69":0.0038,"78":0.0114,"113":0.0038,"115":0.1862,"123":0.0038,"125":0.0114,"128":0.019,"140":0.1824,"142":0.0038,"143":0.019,"144":0.5358,"145":0.5662,"146":0.0076,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 124 126 127 129 130 131 132 133 134 135 136 137 138 139 141 147 148 3.5 3.6"},D:{"27":0.0038,"32":0.0038,"58":0.0038,"59":0.0038,"69":0.019,"75":0.0152,"79":0.0152,"83":0.0076,"86":0.0038,"87":0.0076,"91":0.0038,"98":0.0114,"99":0.0076,"101":0.0038,"103":0.0076,"104":0.0038,"105":0.0076,"107":0.0038,"108":0.0038,"109":0.6574,"111":0.0152,"112":15.9182,"114":0.0038,"116":0.0228,"118":0.0494,"119":0.0076,"120":0.0228,"121":0.0076,"122":0.0532,"123":0.0038,"124":0.0418,"125":1.6378,"126":2.5954,"127":0.0038,"128":0.0152,"129":0.0114,"130":0.0152,"131":0.1026,"132":0.0266,"133":0.095,"134":0.0152,"135":0.0152,"136":0.0228,"137":0.019,"138":0.114,"139":0.2546,"140":0.2432,"141":2.0026,"142":4.8754,"143":0.0304,"144":0.0038,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 61 62 63 64 65 66 67 68 70 71 72 73 74 76 77 78 80 81 84 85 88 89 90 92 93 94 95 96 97 100 102 106 110 113 115 117 145 146"},F:{"40":0.0076,"46":0.0038,"63":0.0038,"67":0.0038,"92":0.0114,"93":0.0038,"95":0.0076,"109":0.0038,"114":0.019,"118":0.0038,"120":0.0038,"122":0.114,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0076,"92":0.0038,"109":0.0038,"113":0.0076,"114":0.1824,"124":0.0038,"133":0.0038,"137":0.0038,"138":0.0076,"140":0.019,"141":0.1634,"142":0.8474,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 119 120 121 122 123 125 126 127 128 129 130 131 132 134 135 136 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 16.2","13.1":0.0038,"14.1":0.0076,"15.4":0.0038,"15.5":0.0038,"15.6":0.0874,"16.1":0.0114,"16.3":0.0114,"16.4":0.0038,"16.5":0.0152,"16.6":0.1824,"17.0":0.0038,"17.1":0.057,"17.2":0.0076,"17.3":0.0076,"17.4":0.0304,"17.5":0.0418,"17.6":0.1064,"18.0":0.0076,"18.1":0.019,"18.2":0.0152,"18.3":0.057,"18.4":0.0646,"18.5-18.6":0.1026,"26.0":0.2546,"26.1":0.2584,"26.2":0.0076},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00307,"5.0-5.1":0,"6.0-6.1":0.01226,"7.0-7.1":0.0092,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02759,"10.0-10.2":0.00307,"10.3":0.04905,"11.0-11.2":0.57026,"11.3-11.4":0.0184,"12.0-12.1":0.00613,"12.2-12.5":0.1441,"13.0-13.1":0,"13.2":0.01533,"13.3":0.00613,"13.4-13.7":0.02759,"14.0-14.4":0.04599,"14.5-14.8":0.05825,"15.0-15.1":0.04905,"15.2-15.3":0.03986,"15.4":0.04292,"15.5":0.04599,"15.6-15.8":0.6653,"16.0":0.08278,"16.1":0.1533,"16.2":0.07971,"16.3":0.14716,"16.4":0.03679,"16.5":0.06132,"16.6-16.7":0.89831,"17.0":0.07665,"17.1":0.09198,"17.2":0.06745,"17.3":0.09504,"17.4":0.15636,"17.5":0.29739,"17.6-17.7":0.72968,"18.0":0.16249,"18.1":0.34338,"18.2":0.18395,"18.3":0.59785,"18.4":0.30659,"18.5-18.7":21.40918,"26.0":1.46857,"26.1":1.3398},P:{"4":0.0607,"23":0.02023,"24":0.02023,"25":0.05058,"26":0.03035,"27":0.05058,"28":0.35409,"29":2.16503,_:"20 21 22 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.04047,"8.2":0.01012},I:{"0":0.01238,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.1426,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0456,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.0248,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":30.8198},R:{_:"0"},M:{"0":0.2108}};
Index: node_modules/caniuse-lite/data/regions/AM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00716,"113":0.00716,"115":0.15748,"125":0.02863,"127":0.00716,"128":0.00716,"135":0.00716,"136":0.05011,"139":0.02147,"140":0.04295,"142":0.02147,"143":0.07158,"144":0.9377,"145":0.27916,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 123 124 126 129 130 131 132 133 134 137 138 141 146 147 148 3.5 3.6"},D:{"45":1.12381,"48":0.00716,"49":0.02863,"51":0.03579,"69":0.00716,"79":0.00716,"87":0.00716,"91":0.00716,"93":0.00716,"97":0.00716,"98":0.00716,"101":0.00716,"102":0.00716,"103":0.01432,"104":0.00716,"106":0.00716,"109":1.61055,"110":0.00716,"111":0.01432,"112":8.18875,"113":0.00716,"114":0.07874,"116":0.07874,"117":0.00716,"118":0.00716,"119":0.00716,"120":0.02147,"121":0.02147,"122":0.03579,"123":0.01432,"124":0.07158,"125":24.54478,"126":1.48171,"127":0.04295,"128":0.29348,"129":0.02863,"130":0.01432,"131":0.11453,"132":0.05011,"133":0.31495,"134":0.15032,"135":0.03579,"136":0.09305,"137":0.31495,"138":0.272,"139":0.20042,"140":0.62275,"141":6.02704,"142":13.35683,"143":0.02863,"144":0.01432,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 92 94 95 96 99 100 105 107 108 115 145 146"},F:{"46":0.00716,"79":0.05726,"90":0.01432,"92":0.00716,"95":0.02147,"116":0.00716,"119":0.01432,"120":0.01432,"122":0.30779,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00716,"109":0.00716,"114":0.11453,"127":0.00716,"131":0.00716,"132":0.00716,"133":0.04295,"134":0.06442,"135":0.00716,"137":0.02147,"138":0.07158,"139":0.00716,"140":0.05011,"141":0.60127,"142":2.19751,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 128 129 130 136 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.5 26.2","11.1":0.00716,"14.1":0.00716,"15.6":0.05011,"16.0":0.00716,"16.1":0.00716,"16.2":0.00716,"16.3":0.00716,"16.4":0.00716,"16.6":0.06442,"17.0":0.00716,"17.1":0.02863,"17.2":0.03579,"17.3":0.04295,"17.4":0.10021,"17.5":0.05726,"17.6":0.0859,"18.0":0.01432,"18.1":0.01432,"18.2":0.16463,"18.3":0.22906,"18.4":0.14316,"18.5-18.6":0.43664,"26.0":0.28632,"26.1":0.31495},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00083,"5.0-5.1":0,"6.0-6.1":0.00331,"7.0-7.1":0.00248,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00744,"10.0-10.2":0.00083,"10.3":0.01323,"11.0-11.2":0.15383,"11.3-11.4":0.00496,"12.0-12.1":0.00165,"12.2-12.5":0.03887,"13.0-13.1":0,"13.2":0.00414,"13.3":0.00165,"13.4-13.7":0.00744,"14.0-14.4":0.01241,"14.5-14.8":0.01571,"15.0-15.1":0.01323,"15.2-15.3":0.01075,"15.4":0.01158,"15.5":0.01241,"15.6-15.8":0.17946,"16.0":0.02233,"16.1":0.04135,"16.2":0.0215,"16.3":0.0397,"16.4":0.00992,"16.5":0.01654,"16.6-16.7":0.24232,"17.0":0.02068,"17.1":0.02481,"17.2":0.01819,"17.3":0.02564,"17.4":0.04218,"17.5":0.08022,"17.6-17.7":0.19683,"18.0":0.04383,"18.1":0.09263,"18.2":0.04962,"18.3":0.16127,"18.4":0.0827,"18.5-18.7":5.77509,"26.0":0.39614,"26.1":0.36141},P:{"4":0.0103,"22":0.0103,"23":0.0206,"24":0.0103,"25":0.04121,"26":0.0103,"27":0.07212,"28":0.14423,"29":0.82418,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.0103},I:{"0":0.00568,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.5043,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03579,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00284,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.03979},H:{"0":0.03},L:{"0":19.81412},R:{_:"0"},M:{"0":0.20747}};
Index: node_modules/caniuse-lite/data/regions/AO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03193,"34":0.00532,"78":0.00532,"108":0.00532,"112":0.00532,"113":0.00532,"114":0.00532,"115":0.09046,"127":0.00532,"128":0.00532,"136":0.00532,"137":0.00532,"138":0.00532,"139":0.00532,"140":0.01596,"141":0.00532,"142":0.00532,"143":0.01064,"144":0.3299,"145":0.36183,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 134 135 146 147 148 3.5 3.6"},D:{"38":0.00532,"39":0.00532,"40":0.00532,"41":0.00532,"42":0.00532,"43":0.01064,"44":0.00532,"45":0.00532,"46":0.01064,"47":0.02128,"48":0.00532,"49":0.01596,"50":0.00532,"51":0.00532,"52":0.00532,"53":0.00532,"54":0.00532,"55":0.00532,"56":0.00532,"57":0.00532,"58":0.00532,"59":0.00532,"60":0.00532,"62":0.00532,"65":0.00532,"66":0.02128,"68":0.00532,"69":0.03193,"70":0.00532,"72":0.03193,"73":0.03725,"77":0.01064,"78":0.00532,"79":0.02128,"80":0.00532,"81":0.01064,"83":0.01596,"84":0.00532,"85":0.00532,"86":0.03193,"87":0.09578,"89":0.00532,"90":0.01064,"92":0.00532,"93":0.00532,"95":0.02128,"97":0.00532,"98":0.02128,"99":0.00532,"101":0.00532,"102":0.01064,"103":0.02128,"105":0.00532,"106":0.01596,"108":0.01596,"109":0.70237,"111":0.03725,"112":15.64906,"113":0.01064,"114":0.02128,"115":0.01064,"116":0.07982,"117":0.00532,"119":0.05321,"120":0.02128,"121":0.00532,"122":0.09046,"123":0.02128,"124":0.01064,"125":0.40972,"126":2.69775,"127":0.02128,"128":0.09578,"129":0.00532,"130":0.01596,"131":0.06917,"132":0.05321,"133":0.03193,"134":0.03193,"135":0.03193,"136":0.02661,"137":0.05321,"138":0.20752,"139":0.27669,"140":0.55871,"141":2.50619,"142":7.22592,"143":0.22348,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 61 63 64 67 71 74 75 76 88 91 94 96 100 104 107 110 118 144 145 146"},F:{"34":0.00532,"35":0.01064,"37":0.00532,"42":0.00532,"79":0.00532,"90":0.00532,"92":0.01064,"93":0.00532,"95":0.05321,"114":0.00532,"117":0.00532,"120":0.00532,"122":0.2288,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00532,"14":0.01064,"15":0.00532,"16":0.02128,"17":0.00532,"18":0.04257,"84":0.01064,"85":0.00532,"89":0.01596,"90":0.02661,"92":0.09578,"100":0.01064,"108":0.00532,"109":0.02128,"114":0.57467,"116":0.00532,"118":0.02128,"120":0.00532,"122":0.01064,"126":0.00532,"130":0.01064,"131":0.02661,"132":0.00532,"133":0.00532,"134":0.03725,"135":0.02128,"136":0.01064,"137":0.02128,"138":0.06385,"139":0.04257,"140":0.05853,"141":0.47889,"142":3.43205,"143":0.00532,_:"13 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111 112 113 115 117 119 121 123 124 125 127 128 129"},E:{"12":0.00532,"13":0.00532,_:"0 4 5 6 7 8 9 10 11 14 15 3.1 3.2 6.1 7.1 9.1 10.1 15.1 15.2-15.3 16.0 16.1 16.2 16.4 16.5 17.0 17.3","5.1":0.00532,"11.1":0.00532,"12.1":0.00532,"13.1":0.02661,"14.1":0.02661,"15.4":0.00532,"15.5":0.00532,"15.6":0.08514,"16.3":0.00532,"16.6":0.09046,"17.1":0.04257,"17.2":0.00532,"17.4":0.00532,"17.5":0.02128,"17.6":0.13303,"18.0":0.00532,"18.1":0.03193,"18.2":0.00532,"18.3":0.01064,"18.4":0.01064,"18.5-18.6":0.03193,"26.0":0.11706,"26.1":0.10642,"26.2":0.02128},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00065,"5.0-5.1":0,"6.0-6.1":0.00261,"7.0-7.1":0.00195,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00586,"10.0-10.2":0.00065,"10.3":0.01042,"11.0-11.2":0.12114,"11.3-11.4":0.00391,"12.0-12.1":0.0013,"12.2-12.5":0.03061,"13.0-13.1":0,"13.2":0.00326,"13.3":0.0013,"13.4-13.7":0.00586,"14.0-14.4":0.00977,"14.5-14.8":0.01238,"15.0-15.1":0.01042,"15.2-15.3":0.00847,"15.4":0.00912,"15.5":0.00977,"15.6-15.8":0.14134,"16.0":0.01759,"16.1":0.03257,"16.2":0.01693,"16.3":0.03126,"16.4":0.00782,"16.5":0.01303,"16.6-16.7":0.19084,"17.0":0.01628,"17.1":0.01954,"17.2":0.01433,"17.3":0.02019,"17.4":0.03322,"17.5":0.06318,"17.6-17.7":0.15501,"18.0":0.03452,"18.1":0.07295,"18.2":0.03908,"18.3":0.12701,"18.4":0.06513,"18.5-18.7":4.54815,"26.0":0.31198,"26.1":0.28463},P:{"4":0.05194,"21":0.02077,"22":0.05194,"23":0.04155,"24":0.12465,"25":0.11426,"26":0.13504,"27":0.13504,"28":0.51937,"29":1.16339,_:"20 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 18.0","5.0-5.4":0.01039,"7.2-7.4":0.17659,"11.1-11.2":0.01039,"16.0":0.01039,"17.0":0.02077,"19.0":0.01039},I:{"0":0.14485,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.83342,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.08514,_:"6 7 8 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.01404,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.02807},O:{"0":0.19184},H:{"0":0.21},L:{"0":47.98191},R:{_:"0"},M:{"0":0.06551}};
Index: node_modules/caniuse-lite/data/regions/AR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01277,"52":0.00639,"59":0.00639,"88":0.01277,"91":0.00639,"103":0.00639,"113":0.00639,"115":0.17245,"120":0.01277,"135":0.00639,"136":0.01916,"137":0.00639,"138":0.00639,"139":0.00639,"140":0.01916,"141":0.00639,"142":0.00639,"143":0.0511,"144":0.40238,"145":0.47264,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 114 116 117 118 119 121 122 123 124 125 126 127 128 129 130 131 132 133 134 146 147 148 3.5 3.6"},D:{"49":0.00639,"63":0.00639,"66":0.03194,"69":0.01277,"79":0.01277,"86":0.00639,"87":0.00639,"97":0.00639,"99":0.00639,"102":0.00639,"103":0.01916,"104":0.00639,"105":0.00639,"106":0.00639,"107":0.00639,"108":0.00639,"109":1.36043,"111":0.05748,"112":27.93035,"114":0.01277,"116":0.03194,"119":0.0511,"120":0.01916,"121":0.01277,"122":0.07026,"123":0.01277,"124":0.04471,"125":0.75367,"126":4.16432,"127":0.03832,"128":0.02555,"129":0.01277,"130":0.01916,"131":0.15968,"132":0.03832,"133":0.02555,"134":0.03194,"135":0.03832,"136":0.05748,"137":0.03194,"138":0.10858,"139":0.10858,"140":0.26825,"141":4.20903,"142":14.81145,"143":0.03832,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 67 68 70 71 72 73 74 75 76 77 78 80 81 83 84 85 88 89 90 91 92 93 94 95 96 98 100 101 110 113 115 117 118 144 145 146"},F:{"92":0.00639,"95":0.01916,"120":0.02555,"122":0.50457,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00639,"92":0.00639,"109":0.01916,"114":0.04471,"117":0.00639,"128":0.00639,"131":0.00639,"134":0.00639,"136":0.00639,"137":0.00639,"138":0.00639,"139":0.02555,"140":0.01916,"141":0.25548,"142":2.05661,"143":0.00639,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 118 119 120 121 122 123 124 125 126 127 129 130 132 133 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 16.5 17.0 17.3 18.0 26.2","11.1":0.00639,"14.1":0.00639,"15.6":0.01916,"16.3":0.00639,"16.6":0.03194,"17.1":0.01916,"17.2":0.00639,"17.4":0.00639,"17.5":0.00639,"17.6":0.02555,"18.1":0.00639,"18.2":0.00639,"18.3":0.01277,"18.4":0.00639,"18.5-18.6":0.03194,"26.0":0.0511,"26.1":0.05748},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00033,"5.0-5.1":0,"6.0-6.1":0.00132,"7.0-7.1":0.00099,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00298,"10.0-10.2":0.00033,"10.3":0.00529,"11.0-11.2":0.06154,"11.3-11.4":0.00199,"12.0-12.1":0.00066,"12.2-12.5":0.01555,"13.0-13.1":0,"13.2":0.00165,"13.3":0.00066,"13.4-13.7":0.00298,"14.0-14.4":0.00496,"14.5-14.8":0.00629,"15.0-15.1":0.00529,"15.2-15.3":0.0043,"15.4":0.00463,"15.5":0.00496,"15.6-15.8":0.0718,"16.0":0.00893,"16.1":0.01654,"16.2":0.0086,"16.3":0.01588,"16.4":0.00397,"16.5":0.00662,"16.6-16.7":0.09694,"17.0":0.00827,"17.1":0.00993,"17.2":0.00728,"17.3":0.01026,"17.4":0.01687,"17.5":0.03209,"17.6-17.7":0.07874,"18.0":0.01754,"18.1":0.03706,"18.2":0.01985,"18.3":0.06452,"18.4":0.03309,"18.5-18.7":2.31039,"26.0":0.15848,"26.1":0.14459},P:{"21":0.01039,"22":0.01039,"23":0.01039,"24":0.02078,"25":0.02078,"26":0.05195,"27":0.02078,"28":0.1039,"29":1.26762,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 19.0","7.2-7.4":0.06234,"17.0":0.01039,"18.0":0.01039},I:{"0":0.01803,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.0614,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03832,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00722},H:{"0":0},L:{"0":33.55228},R:{_:"0"},M:{"0":0.0903}};
Index: node_modules/caniuse-lite/data/regions/AS.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.00362,"144":0.00725,"145":0.00725,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"58":0.00362,"74":0.00362,"93":0.00725,"103":0.02898,"109":0.00362,"116":0.00725,"125":0.02174,"126":0.00362,"127":0.00362,"128":0.00362,"131":0.00362,"134":0.00725,"135":0.01812,"136":0.00725,"137":0.00725,"138":0.01087,"139":0.02898,"140":0.06884,"141":0.37679,"142":0.57243,"143":0.00725,"144":0.00362,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 112 113 114 115 117 118 119 120 121 122 123 124 129 130 132 133 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00362,"114":0.00362,"120":0.00362,"136":0.00725,"140":0.00362,"141":0.02898,"142":0.24999,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 16.0","13.1":0.00362,"14.1":0.00362,"15.1":0.00362,"15.2-15.3":0.00362,"15.4":0.00362,"15.5":0.06159,"15.6":0.74996,"16.1":0.22463,"16.2":0.0471,"16.3":0.4565,"16.4":0.35868,"16.5":0.43838,"16.6":1.83686,"17.0":0.01812,"17.1":2.35857,"17.2":0.09782,"17.3":0.05435,"17.4":0.29709,"17.5":0.48548,"17.6":1.37674,"18.0":0.18115,"18.1":0.221,"18.2":0.14492,"18.3":0.42027,"18.4":0.08695,"18.5-18.6":1.20284,"26.0":1.60861,"26.1":1.87671,"26.2":0.15941},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00622,"5.0-5.1":0,"6.0-6.1":0.02489,"7.0-7.1":0.01867,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05601,"10.0-10.2":0.00622,"10.3":0.09957,"11.0-11.2":1.15748,"11.3-11.4":0.03734,"12.0-12.1":0.01245,"12.2-12.5":0.29248,"13.0-13.1":0,"13.2":0.03112,"13.3":0.01245,"13.4-13.7":0.05601,"14.0-14.4":0.09335,"14.5-14.8":0.11824,"15.0-15.1":0.09957,"15.2-15.3":0.0809,"15.4":0.08712,"15.5":0.09335,"15.6-15.8":1.35039,"16.0":0.16802,"16.1":0.31115,"16.2":0.1618,"16.3":0.2987,"16.4":0.07468,"16.5":0.12446,"16.6-16.7":1.82334,"17.0":0.15558,"17.1":0.18669,"17.2":0.13691,"17.3":0.19291,"17.4":0.31737,"17.5":0.60363,"17.6-17.7":1.48108,"18.0":0.32982,"18.1":0.69698,"18.2":0.37338,"18.3":1.21349,"18.4":0.6223,"18.5-18.7":43.45531,"26.0":2.98082,"26.1":2.71946},P:{"28":0.00986,"29":0.07886,_:"4 20 21 22 23 24 25 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","17.0":0.01971},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.00638,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00638},H:{"0":0},L:{"0":1.62805},R:{_:"0"},M:{"0":0.08291}};
Index: node_modules/caniuse-lite/data/regions/AT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.00556,"52":0.02222,"53":0.01111,"60":0.01667,"68":0.06112,"78":0.02778,"91":0.00556,"102":0.00556,"104":0.00556,"112":0.00556,"113":0.00556,"115":0.38892,"125":0.00556,"127":0.00556,"128":0.11112,"129":0.00556,"131":0.00556,"132":0.00556,"133":0.00556,"134":0.02222,"135":0.01667,"136":0.03334,"137":0.02222,"138":0.03889,"139":0.02778,"140":0.91674,"141":0.02222,"142":0.03334,"143":0.09445,"144":2.60021,"145":3.09469,"146":0.01111,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 105 106 107 108 109 110 111 114 116 117 118 119 120 121 122 123 124 126 130 147 148 3.5 3.6"},D:{"39":0.00556,"40":0.00556,"41":0.00556,"42":0.01111,"43":0.00556,"44":0.00556,"45":0.00556,"46":0.00556,"47":0.06112,"48":0.00556,"49":0.01111,"50":0.00556,"51":0.00556,"52":0.00556,"53":0.00556,"54":0.00556,"55":0.00556,"56":0.00556,"57":0.00556,"58":0.00556,"59":0.00556,"60":0.00556,"69":0.00556,"79":0.06112,"80":0.02778,"81":0.00556,"87":0.05,"88":0.01111,"90":0.00556,"96":0.00556,"102":0.00556,"103":0.01667,"104":0.02222,"106":0.00556,"108":0.01667,"109":0.53338,"110":0.00556,"111":0.01111,"112":0.86118,"114":0.03334,"115":0.01667,"116":0.0889,"117":0.00556,"118":0.14446,"119":0.01667,"120":0.01667,"121":0.01111,"122":0.05,"123":0.53338,"124":0.02778,"125":0.38336,"126":0.15001,"127":0.02222,"128":0.04445,"129":0.05556,"130":0.02222,"131":0.09445,"132":0.03889,"133":0.03889,"134":0.03334,"135":0.15557,"136":0.05,"137":0.08334,"138":0.17224,"139":0.26669,"140":0.47782,"141":5.50044,"142":14.1178,"143":0.02222,"144":0.00556,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 83 84 85 86 89 91 92 93 94 95 97 98 99 100 101 105 107 113 145 146"},F:{"46":0.01111,"79":0.00556,"85":0.01111,"92":0.06667,"93":0.00556,"95":0.05,"114":0.00556,"117":0.00556,"119":0.00556,"120":0.01111,"122":1.28899,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00556,"109":0.06667,"120":0.00556,"122":0.00556,"126":0.00556,"128":0.00556,"129":0.00556,"130":0.00556,"131":0.01111,"132":0.00556,"133":0.00556,"134":0.00556,"135":0.03334,"136":0.01667,"137":0.01111,"138":0.02778,"139":0.01667,"140":0.16668,"141":0.9223,"142":9.06739,"143":0.00556,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 121 123 124 125 127"},E:{"14":0.01111,"15":0.01111,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3","12.1":0.00556,"13.1":0.02778,"14.1":0.03334,"15.1":0.01111,"15.4":0.00556,"15.5":0.00556,"15.6":0.15557,"16.0":0.01667,"16.1":0.01111,"16.2":0.01111,"16.3":0.02222,"16.4":0.02222,"16.5":0.01111,"16.6":0.1889,"17.0":0.00556,"17.1":0.12223,"17.2":0.02222,"17.3":0.01667,"17.4":0.03334,"17.5":0.13334,"17.6":0.30002,"18.0":0.02778,"18.1":0.03889,"18.2":0.01667,"18.3":0.07223,"18.4":0.06112,"18.5-18.6":0.20557,"26.0":0.44448,"26.1":0.60005,"26.2":0.01111},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00162,"5.0-5.1":0,"6.0-6.1":0.00649,"7.0-7.1":0.00486,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01459,"10.0-10.2":0.00162,"10.3":0.02594,"11.0-11.2":0.30161,"11.3-11.4":0.00973,"12.0-12.1":0.00324,"12.2-12.5":0.07621,"13.0-13.1":0,"13.2":0.00811,"13.3":0.00324,"13.4-13.7":0.01459,"14.0-14.4":0.02432,"14.5-14.8":0.03081,"15.0-15.1":0.02594,"15.2-15.3":0.02108,"15.4":0.0227,"15.5":0.02432,"15.6-15.8":0.35187,"16.0":0.04378,"16.1":0.08108,"16.2":0.04216,"16.3":0.07783,"16.4":0.01946,"16.5":0.03243,"16.6-16.7":0.47511,"17.0":0.04054,"17.1":0.04865,"17.2":0.03567,"17.3":0.05027,"17.4":0.0827,"17.5":0.15729,"17.6-17.7":0.38593,"18.0":0.08594,"18.1":0.18161,"18.2":0.09729,"18.3":0.3162,"18.4":0.16215,"18.5-18.7":11.32319,"26.0":0.77672,"26.1":0.70861},P:{"4":0.07268,"20":0.01038,"21":0.01038,"22":0.01038,"23":0.02077,"24":0.03115,"25":0.02077,"26":0.05191,"27":0.08306,"28":0.32187,"29":3.41594,"5.0-5.4":0.01038,"6.2-6.4":0.01038,"7.2-7.4":0.0623,_:"8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","9.2":0.01038},I:{"0":0.02219,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.3445,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02222,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.04001},H:{"0":0.06},L:{"0":24.48959},R:{_:"0"},M:{"0":0.96457}};
Index: node_modules/caniuse-lite/data/regions/AU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.01043,"78":0.01565,"115":0.11473,"125":0.01565,"128":0.01043,"132":0.00522,"133":0.01043,"134":0.01043,"135":0.00522,"136":0.01043,"137":0.00522,"138":0.00522,"139":0.00522,"140":0.05737,"141":0.00522,"142":0.02086,"143":0.05215,"144":0.9022,"145":1.01693,"146":0.00522,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 147 148 3.5 3.6"},D:{"25":0.01565,"34":0.01565,"38":0.04694,"39":0.01565,"40":0.01565,"41":0.01565,"42":0.01565,"43":0.01565,"44":0.01565,"45":0.01565,"46":0.01565,"47":0.01565,"48":0.01565,"49":0.02086,"50":0.01565,"51":0.01565,"52":0.02608,"53":0.01565,"54":0.01565,"55":0.01565,"56":0.01565,"57":0.01565,"58":0.01565,"59":0.01565,"60":0.01565,"66":0.00522,"79":0.03651,"80":0.00522,"81":0.00522,"85":0.02086,"86":0.00522,"87":0.03651,"88":0.01043,"93":0.00522,"94":0.00522,"97":0.00522,"98":0.00522,"99":0.01043,"101":0.00522,"102":0.00522,"103":0.0678,"104":0.01043,"105":0.02608,"107":0.00522,"108":0.02608,"109":0.34941,"110":0.00522,"111":0.03651,"112":0.01043,"113":0.01565,"114":0.04694,"115":0.00522,"116":0.15645,"117":0.00522,"118":0.00522,"119":0.01565,"120":0.03651,"121":0.02608,"122":0.07301,"123":0.03651,"124":0.06258,"125":0.86569,"126":0.04694,"127":0.02086,"128":0.14602,"129":0.05737,"130":0.82397,"131":0.09909,"132":0.07823,"133":0.06258,"134":0.06258,"135":0.08344,"136":0.09387,"137":0.13559,"138":0.485,"139":0.45371,"140":0.75096,"141":6.12763,"142":17.55369,"143":0.03129,"144":0.01565,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 35 36 37 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 83 84 89 90 91 92 95 96 100 106 145 146"},F:{"46":0.01043,"92":0.01565,"95":0.00522,"102":0.00522,"119":0.00522,"120":0.05215,"121":0.00522,"122":0.43285,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00522,"85":0.01043,"109":0.03129,"113":0.00522,"114":0.00522,"117":0.00522,"120":0.01043,"121":0.00522,"122":0.00522,"123":0.00522,"124":0.00522,"125":0.00522,"126":0.00522,"128":0.00522,"129":0.00522,"130":0.00522,"131":0.01043,"132":0.01043,"133":0.00522,"134":0.01565,"135":0.01565,"136":0.01043,"137":0.01043,"138":0.02608,"139":0.02608,"140":0.09909,"141":0.91784,"142":6.52918,"143":0.01043,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 115 116 118 119 127"},E:{"13":0.00522,"14":0.02608,"15":0.00522,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00522,"12.1":0.02086,"13.1":0.05215,"14.1":0.09387,"15.1":0.01043,"15.2-15.3":0.01043,"15.4":0.01565,"15.5":0.03651,"15.6":0.30769,"16.0":0.01565,"16.1":0.05215,"16.2":0.04172,"16.3":0.07823,"16.4":0.02608,"16.5":0.03129,"16.6":0.44849,"17.0":0.00522,"17.1":0.40677,"17.2":0.03129,"17.3":0.04694,"17.4":0.07301,"17.5":0.11995,"17.6":0.36505,"18.0":0.02608,"18.1":0.0678,"18.2":0.05215,"18.3":0.14081,"18.4":0.0678,"18.5-18.6":0.33376,"26.0":0.54758,"26.1":0.59973,"26.2":0.02086},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00224,"5.0-5.1":0,"6.0-6.1":0.00895,"7.0-7.1":0.00671,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02013,"10.0-10.2":0.00224,"10.3":0.03578,"11.0-11.2":0.41599,"11.3-11.4":0.01342,"12.0-12.1":0.00447,"12.2-12.5":0.10512,"13.0-13.1":0,"13.2":0.01118,"13.3":0.00447,"13.4-13.7":0.02013,"14.0-14.4":0.03355,"14.5-14.8":0.04249,"15.0-15.1":0.03578,"15.2-15.3":0.02907,"15.4":0.03131,"15.5":0.03355,"15.6-15.8":0.48532,"16.0":0.06039,"16.1":0.11183,"16.2":0.05815,"16.3":0.10735,"16.4":0.02684,"16.5":0.04473,"16.6-16.7":0.6553,"17.0":0.05591,"17.1":0.0671,"17.2":0.0492,"17.3":0.06933,"17.4":0.11406,"17.5":0.21694,"17.6-17.7":0.53229,"18.0":0.11853,"18.1":0.25049,"18.2":0.13419,"18.3":0.43612,"18.4":0.22365,"18.5-18.7":15.61754,"26.0":1.07129,"26.1":0.97735},P:{"4":0.0653,"21":0.03265,"22":0.01088,"23":0.01088,"24":0.03265,"25":0.02177,"26":0.04354,"27":0.0653,"28":0.29386,"29":2.61212,_:"20 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01088,"7.2-7.4":0.01088},I:{"0":0.01911,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.11963,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.12035,"11":0.01003,_:"6 7 8 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00479},O:{"0":0.0335},H:{"0":0},L:{"0":23.32038},R:{_:"0"},M:{"0":0.44501}};
Index: node_modules/caniuse-lite/data/regions/AW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00283,"78":0.01982,"113":0.00283,"115":0.01982,"122":0.00283,"137":0.00849,"140":0.00849,"142":0.00283,"143":0.00283,"144":0.18402,"145":0.19817,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 123 124 125 126 127 128 129 130 131 132 133 134 135 136 138 139 141 146 147 148 3.5 3.6"},D:{"69":0.00283,"94":0.00283,"98":0.00283,"99":0.00283,"103":0.08493,"104":0.00283,"106":0.00283,"108":0.00283,"109":0.49259,"111":0.00283,"113":0.00283,"116":0.03963,"119":0.00283,"120":0.00283,"121":0.00566,"122":0.03114,"123":0.00566,"124":0.00283,"125":0.08493,"126":0.05662,"127":0.00849,"128":0.05096,"129":0.05662,"130":0.01132,"131":0.00566,"132":0.07361,"133":0.00283,"134":0.02548,"135":0.03114,"136":0.01416,"137":0.04247,"138":0.10475,"139":0.09625,"140":0.19251,"141":2.42051,"142":8.11365,"143":0.01132,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96 97 100 101 102 105 107 110 112 114 115 117 118 144 145 146"},F:{"92":0.01132,"95":0.00566,"120":0.00283,"122":0.13872,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"108":0.00283,"109":0.00566,"114":0.01132,"120":0.00283,"121":0.00283,"122":0.00283,"128":0.03397,"131":0.00283,"132":0.00283,"135":0.00566,"136":0.00283,"138":0.02265,"139":0.02831,"140":0.05379,"141":0.603,"142":5.66483,"143":0.00283,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 115 116 117 118 119 123 124 125 126 127 129 130 133 134 137"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.5","12.1":0.00283,"13.1":0.00283,"14.1":0.01416,"15.2-15.3":0.00283,"15.4":0.00283,"15.6":0.03114,"16.0":0.00283,"16.1":0.00566,"16.2":0.00283,"16.3":0.06228,"16.4":0.00283,"16.5":0.00566,"16.6":0.11324,"17.0":0.01132,"17.1":0.20949,"17.2":0.00849,"17.3":0.00849,"17.4":0.04813,"17.5":0.03114,"17.6":0.13872,"18.0":0.02265,"18.1":0.02265,"18.2":0.00849,"18.3":0.06794,"18.4":0.03114,"18.5-18.6":0.13589,"26.0":0.21799,"26.1":0.2463,"26.2":0.05096},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00313,"5.0-5.1":0,"6.0-6.1":0.01253,"7.0-7.1":0.00939,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02818,"10.0-10.2":0.00313,"10.3":0.0501,"11.0-11.2":0.58244,"11.3-11.4":0.01879,"12.0-12.1":0.00626,"12.2-12.5":0.14718,"13.0-13.1":0,"13.2":0.01566,"13.3":0.00626,"13.4-13.7":0.02818,"14.0-14.4":0.04697,"14.5-14.8":0.0595,"15.0-15.1":0.0501,"15.2-15.3":0.04071,"15.4":0.04384,"15.5":0.04697,"15.6-15.8":0.67952,"16.0":0.08455,"16.1":0.15657,"16.2":0.08142,"16.3":0.15031,"16.4":0.03758,"16.5":0.06263,"16.6-16.7":0.91751,"17.0":0.07829,"17.1":0.09394,"17.2":0.06889,"17.3":0.09707,"17.4":0.1597,"17.5":0.30375,"17.6-17.7":0.74528,"18.0":0.16597,"18.1":0.35072,"18.2":0.18789,"18.3":0.61063,"18.4":0.31314,"18.5-18.7":21.8667,"26.0":1.49995,"26.1":1.36843},P:{"4":0.03047,"21":0.03047,"22":0.01016,"23":0.02031,"24":0.01016,"25":0.02031,"26":0.03047,"27":0.08124,"28":0.42652,"29":6.49936,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 16.0 17.0 18.0","7.2-7.4":0.04062,"15.0":0.01016,"19.0":0.03047},I:{"0":0.00716,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.1147,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":37.73132},R:{_:"0"},M:{"0":0.18639}};
Index: node_modules/caniuse-lite/data/regions/AX.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AX.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AX.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.25344,"135":0.00576,"139":0.02304,"140":0.04032,"141":0.02304,"142":0.24768,"143":0.10368,"144":0.5472,"145":0.94464,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 136 137 138 146 147 148 3.5 3.6"},D:{"76":0.29952,"87":0.1152,"90":0.00576,"103":0.01152,"109":0.39744,"111":0.00576,"116":0.03456,"120":0.00576,"122":0.01728,"123":0.00576,"125":0.19008,"126":0.00576,"127":0.08064,"128":0.01152,"130":0.02304,"131":0.01728,"133":0.01728,"135":0.04608,"136":0.42624,"137":0.02304,"138":0.10368,"139":3.9168,"140":0.16128,"141":6.08256,"142":24.18624,"143":0.00576,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 83 84 85 86 88 89 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 112 113 114 115 117 118 119 121 124 129 132 134 144 145 146"},F:{"92":0.00576,"120":0.01152,"122":0.28224,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00576,"132":0.00576,"134":0.03456,"135":0.02304,"136":0.01152,"138":0.04032,"139":0.33408,"140":0.04608,"141":1.05408,"142":9.57888,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 133 137 143"},E:{"12":0.00576,"14":0.00576,_:"0 4 5 6 7 8 9 10 11 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.1 16.2 17.0 17.2 17.5 18.2 26.2","13.1":0.01152,"14.1":0.00576,"15.4":0.01152,"15.6":0.04032,"16.0":0.00576,"16.3":0.00576,"16.4":0.00576,"16.5":0.00576,"16.6":0.10944,"17.1":0.01728,"17.3":0.01152,"17.4":0.00576,"17.6":0.01728,"18.0":0.01728,"18.1":0.01728,"18.3":0.00576,"18.4":0.01152,"18.5-18.6":0.19584,"26.0":0.1152,"26.1":0.36864},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0007,"5.0-5.1":0,"6.0-6.1":0.00279,"7.0-7.1":0.00209,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00627,"10.0-10.2":0.0007,"10.3":0.01115,"11.0-11.2":0.12957,"11.3-11.4":0.00418,"12.0-12.1":0.00139,"12.2-12.5":0.03274,"13.0-13.1":0,"13.2":0.00348,"13.3":0.00139,"13.4-13.7":0.00627,"14.0-14.4":0.01045,"14.5-14.8":0.01324,"15.0-15.1":0.01115,"15.2-15.3":0.00906,"15.4":0.00975,"15.5":0.01045,"15.6-15.8":0.15117,"16.0":0.01881,"16.1":0.03483,"16.2":0.01811,"16.3":0.03344,"16.4":0.00836,"16.5":0.01393,"16.6-16.7":0.20411,"17.0":0.01742,"17.1":0.0209,"17.2":0.01533,"17.3":0.0216,"17.4":0.03553,"17.5":0.06757,"17.6-17.7":0.1658,"18.0":0.03692,"18.1":0.07802,"18.2":0.0418,"18.3":0.13584,"18.4":0.06966,"18.5-18.7":4.86458,"26.0":0.33369,"26.1":0.30443},P:{"22":0.01131,"28":0.23751,"29":4.41094,_:"4 20 21 23 24 25 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.08045,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.05512,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":31.87},R:{_:"0"},M:{"0":2.34472}};
Index: node_modules/caniuse-lite/data/regions/AZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/AZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/AZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01729,"68":0.00576,"69":0.00576,"115":0.03458,"123":0.00576,"125":0.01153,"132":0.38612,"140":0.01729,"142":0.00576,"143":0.02882,"144":0.35731,"145":0.1556,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 124 126 127 128 129 130 131 133 134 135 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"27":0.00576,"32":0.00576,"49":0.00576,"51":0.01153,"58":0.00576,"65":0.00576,"68":0.00576,"69":0.02305,"75":0.00576,"79":0.0461,"83":0.01153,"87":0.06339,"89":0.00576,"90":0.00576,"94":0.00576,"98":0.00576,"100":0.00576,"101":0.00576,"103":0.00576,"106":0.00576,"107":0.01153,"108":0.02305,"109":1.1065,"110":0.00576,"111":0.06339,"112":17.98632,"113":0.00576,"114":0.00576,"115":0.00576,"116":0.01153,"117":0.00576,"118":0.00576,"119":0.00576,"120":0.01153,"121":0.00576,"122":0.05763,"123":0.00576,"124":0.01153,"125":10.50019,"126":3.74595,"127":0.00576,"128":0.01153,"129":0.01153,"130":0.30544,"131":0.03458,"132":0.02882,"133":0.02882,"134":0.02305,"135":0.01729,"136":0.01729,"137":0.02305,"138":0.13831,"139":0.10373,"140":0.36307,"141":3.27915,"142":8.76552,"143":0.01729,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 59 60 61 62 63 64 66 67 70 71 72 73 74 76 77 78 80 81 84 85 86 88 91 92 93 95 96 97 99 102 104 105 144 145 146"},F:{"46":0.00576,"63":0.00576,"67":0.00576,"79":0.00576,"84":0.00576,"85":0.14984,"92":0.06339,"93":0.01153,"95":0.09221,"109":0.00576,"114":0.33425,"120":0.02882,"122":0.19594,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00576,"92":0.00576,"109":0.01153,"113":0.00576,"114":0.29391,"121":0.02305,"124":0.00576,"133":0.00576,"136":0.00576,"137":0.00576,"138":0.01153,"139":0.00576,"140":0.02882,"141":0.30544,"142":1.34278,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 119 120 122 123 125 126 127 128 129 130 131 132 134 135 143"},E:{"14":0.00576,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.4 16.5 17.0","5.1":0.00576,"14.1":0.01153,"15.6":0.05187,"16.1":0.00576,"16.3":0.00576,"16.6":0.01153,"17.1":0.01729,"17.2":0.02305,"17.3":0.01729,"17.4":0.02305,"17.5":0.02305,"17.6":0.04034,"18.0":0.08068,"18.1":0.00576,"18.2":0.06339,"18.3":0.06916,"18.4":0.06339,"18.5-18.6":0.09221,"26.0":0.12102,"26.1":0.1095,"26.2":0.00576},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0,"6.0-6.1":0.00249,"7.0-7.1":0.00186,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00559,"10.0-10.2":0.00062,"10.3":0.00994,"11.0-11.2":0.11558,"11.3-11.4":0.00373,"12.0-12.1":0.00124,"12.2-12.5":0.02921,"13.0-13.1":0,"13.2":0.00311,"13.3":0.00124,"13.4-13.7":0.00559,"14.0-14.4":0.00932,"14.5-14.8":0.01181,"15.0-15.1":0.00994,"15.2-15.3":0.00808,"15.4":0.0087,"15.5":0.00932,"15.6-15.8":0.13485,"16.0":0.01678,"16.1":0.03107,"16.2":0.01616,"16.3":0.02983,"16.4":0.00746,"16.5":0.01243,"16.6-16.7":0.18208,"17.0":0.01554,"17.1":0.01864,"17.2":0.01367,"17.3":0.01926,"17.4":0.03169,"17.5":0.06028,"17.6-17.7":0.1479,"18.0":0.03294,"18.1":0.0696,"18.2":0.03729,"18.3":0.12118,"18.4":0.06214,"18.5-18.7":4.33938,"26.0":0.29766,"26.1":0.27156},P:{"4":0.1504,"20":0.01003,"21":0.01003,"22":0.01003,"23":0.02005,"24":0.02005,"25":0.03008,"26":0.06016,"27":0.05013,"28":0.29078,"29":1.59429,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 14.0 15.0 16.0 18.0","6.2-6.4":0.04011,"7.2-7.4":0.05013,"12.0":0.01003,"13.0":0.01003,"17.0":0.01003,"19.0":0.01003},I:{"0":0.00423,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":1.00817,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.06586,"11":0.02635,_:"6 7 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.09743},H:{"0":0},L:{"0":35.71027},R:{_:"0"},M:{"0":0.12708}};
Index: node_modules/caniuse-lite/data/regions/BA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00464,"52":0.06953,"88":0.00464,"115":0.29664,"125":0.02318,"127":0.00464,"128":0.00927,"133":0.00464,"137":0.00464,"138":0.05099,"139":0.00464,"140":0.02318,"141":0.01391,"142":0.00927,"143":0.03708,"144":0.69062,"145":0.88065,"146":0.00464,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 129 130 131 132 134 135 136 147 148 3.5 3.6"},D:{"49":0.01854,"53":0.01391,"55":0.00464,"64":0.01391,"69":0.00927,"70":0.00464,"71":0.00927,"72":0.00464,"75":0.00464,"76":0.01854,"78":0.01854,"79":0.57474,"80":0.00464,"83":0.01854,"85":0.00464,"86":0.00464,"87":0.29201,"88":0.00464,"89":0.00927,"91":0.02318,"93":0.00464,"94":0.06026,"96":0.00464,"98":0.00927,"99":0.00927,"100":0.00464,"101":0.00464,"103":0.02781,"106":0.02318,"108":0.02781,"109":2.27115,"111":0.04172,"112":5.92353,"113":0.00464,"114":0.02781,"116":0.03708,"118":0.00464,"119":0.03245,"120":0.02781,"121":0.02781,"122":0.06026,"123":0.01391,"124":0.01391,"125":0.45423,"126":0.75087,"127":0.01391,"128":0.01854,"129":0.01391,"130":0.02318,"131":0.05562,"132":0.06489,"133":0.03708,"134":0.13442,"135":0.05099,"136":0.04635,"137":0.06953,"138":0.18077,"139":0.16223,"140":0.37544,"141":4.8992,"142":15.57824,"143":0.01854,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 56 57 58 59 60 61 62 63 65 66 67 68 73 74 77 81 84 90 92 95 97 102 104 105 107 110 115 117 144 145 146"},F:{"28":0.00464,"36":0.00464,"40":0.00927,"46":0.08343,"69":0.00464,"79":0.00464,"85":0.00464,"92":0.02781,"93":0.00464,"95":0.06489,"119":0.00464,"122":0.66281,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00464,"92":0.00464,"109":0.01854,"114":0.06489,"118":0.00464,"122":0.00464,"129":0.00464,"131":0.00927,"133":0.00464,"134":0.00464,"136":0.00464,"137":0.00464,"138":0.00927,"139":0.01391,"140":0.04172,"141":0.19467,"142":2.32214,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 120 121 123 124 125 126 127 128 130 132 135 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.1 15.2-15.3 15.4 15.5 16.0 16.4 17.2 26.2","11.1":0.00464,"12.1":0.01854,"13.1":0.02781,"14.1":0.00464,"15.6":0.06026,"16.1":0.00464,"16.2":0.00927,"16.3":0.00927,"16.5":0.00927,"16.6":0.05562,"17.0":0.00464,"17.1":0.05562,"17.3":0.00464,"17.4":0.00927,"17.5":0.01854,"17.6":0.06953,"18.0":0.00464,"18.1":0.00464,"18.2":0.00927,"18.3":0.01391,"18.4":0.02318,"18.5-18.6":0.08343,"26.0":0.08807,"26.1":0.08343},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00078,"5.0-5.1":0,"6.0-6.1":0.00311,"7.0-7.1":0.00233,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00699,"10.0-10.2":0.00078,"10.3":0.01243,"11.0-11.2":0.14449,"11.3-11.4":0.00466,"12.0-12.1":0.00155,"12.2-12.5":0.03651,"13.0-13.1":0,"13.2":0.00388,"13.3":0.00155,"13.4-13.7":0.00699,"14.0-14.4":0.01165,"14.5-14.8":0.01476,"15.0-15.1":0.01243,"15.2-15.3":0.0101,"15.4":0.01088,"15.5":0.01165,"15.6-15.8":0.16858,"16.0":0.02098,"16.1":0.03884,"16.2":0.0202,"16.3":0.03729,"16.4":0.00932,"16.5":0.01554,"16.6-16.7":0.22762,"17.0":0.01942,"17.1":0.02331,"17.2":0.01709,"17.3":0.02408,"17.4":0.03962,"17.5":0.07535,"17.6-17.7":0.18489,"18.0":0.04117,"18.1":0.08701,"18.2":0.04661,"18.3":0.15149,"18.4":0.07769,"18.5-18.7":5.42476,"26.0":0.37211,"26.1":0.33948},P:{"4":0.47588,"20":0.01035,"21":0.01035,"22":0.01035,"23":0.03104,"24":0.02069,"25":0.02069,"26":0.08276,"27":0.12414,"28":0.39311,"29":3.05181,"5.0-5.4":0.06207,"6.2-6.4":0.10345,"7.2-7.4":0.34139,"8.2":0.02069,_:"9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.4286,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00021},K:{"0":0.13949,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01854,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00537},H:{"0":0},L:{"0":45.44947},R:{_:"0"},M:{"0":0.1073}};
Index: node_modules/caniuse-lite/data/regions/BB.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BB.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BB.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.10668,"115":0.00508,"116":0.00508,"136":0.00508,"140":0.127,"142":0.02032,"143":0.01016,"144":0.71628,"145":0.77724,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 141 146 147 148 3.5 3.6"},D:{"43":0.00508,"62":0.00508,"69":0.11684,"80":0.0254,"87":0.01524,"91":0.00508,"93":0.00508,"101":0.00508,"103":0.29464,"106":0.00508,"109":0.15748,"111":0.10668,"116":0.01524,"119":0.00508,"122":0.02032,"124":0.00508,"125":5.51688,"126":0.06096,"127":0.01016,"128":0.09652,"129":0.02032,"130":0.01016,"131":0.10668,"132":0.11684,"133":0.00508,"134":0.01524,"135":0.01524,"137":0.02032,"138":0.29464,"139":0.3302,"140":1.08712,"141":4.5974,"142":17.33296,"143":0.03048,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 81 83 84 85 86 88 89 90 92 94 95 96 97 98 99 100 102 104 105 107 108 110 112 113 114 115 117 118 120 121 123 136 144 145 146"},F:{"92":0.0254,"93":0.00508,"95":0.05588,"122":0.30988,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00508,"114":0.11684,"136":0.00508,"137":0.00508,"138":0.00508,"139":0.00508,"140":0.09144,"141":0.77216,"142":7.42696,"143":0.00508,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.5 16.0 17.0","13.1":0.01016,"14.1":0.01524,"15.2-15.3":0.00508,"15.4":0.00508,"15.6":0.0762,"16.1":0.38608,"16.2":0.00508,"16.3":0.00508,"16.4":0.03556,"16.5":0.00508,"16.6":0.06604,"17.1":0.21844,"17.2":0.01524,"17.3":0.01016,"17.4":0.01524,"17.5":0.0254,"17.6":0.16256,"18.0":0.0508,"18.1":0.23876,"18.2":0.01524,"18.3":0.04064,"18.4":0.03048,"18.5-18.6":0.16764,"26.0":0.36068,"26.1":0.27432,"26.2":0.01016},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00121,"5.0-5.1":0,"6.0-6.1":0.00483,"7.0-7.1":0.00362,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01087,"10.0-10.2":0.00121,"10.3":0.01933,"11.0-11.2":0.22466,"11.3-11.4":0.00725,"12.0-12.1":0.00242,"12.2-12.5":0.05677,"13.0-13.1":0,"13.2":0.00604,"13.3":0.00242,"13.4-13.7":0.01087,"14.0-14.4":0.01812,"14.5-14.8":0.02295,"15.0-15.1":0.01933,"15.2-15.3":0.0157,"15.4":0.01691,"15.5":0.01812,"15.6-15.8":0.26211,"16.0":0.03261,"16.1":0.06039,"16.2":0.0314,"16.3":0.05798,"16.4":0.01449,"16.5":0.02416,"16.6-16.7":0.3539,"17.0":0.0302,"17.1":0.03624,"17.2":0.02657,"17.3":0.03744,"17.4":0.0616,"17.5":0.11716,"17.6-17.7":0.28747,"18.0":0.06402,"18.1":0.13528,"18.2":0.07247,"18.3":0.23553,"18.4":0.12079,"18.5-18.7":8.43449,"26.0":0.57856,"26.1":0.52783},P:{"21":0.0213,"22":0.06389,"23":0.01065,"24":0.03194,"25":0.0213,"26":0.03194,"27":0.0213,"28":0.29815,"29":5.36674,_:"4 20 5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.03194,"9.2":0.01065,"17.0":0.05324},I:{"0":0.03439,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.15744,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00492},O:{"0":0.00984},H:{"0":0},L:{"0":33.31036},R:{_:"0"},M:{"0":1.71216}};
Index: node_modules/caniuse-lite/data/regions/BD.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.02505,"115":0.83285,"127":0.00626,"128":0.00626,"131":0.00626,"133":0.00626,"134":0.00626,"135":0.00626,"136":0.00626,"137":0.00626,"138":0.00626,"139":0.02505,"140":0.10019,"141":0.00626,"142":0.01252,"143":0.04383,"144":0.71387,"145":2.7678,"146":0.08767,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 132 147 148 3.5 3.6"},D:{"66":0.00626,"69":0.03131,"73":0.00626,"75":0.00626,"79":0.00626,"86":0.00626,"87":0.00626,"93":0.00626,"103":0.02505,"104":0.06888,"107":0.00626,"108":0.00626,"109":1.34633,"111":0.02505,"112":24.12122,"114":0.00626,"116":0.00626,"119":0.01252,"120":0.00626,"121":0.00626,"122":0.09393,"123":0.00626,"124":0.01879,"125":0.73265,"126":2.1416,"127":0.01252,"128":0.02505,"129":0.01879,"130":0.04383,"131":0.10019,"132":0.07514,"133":0.04383,"134":0.48844,"135":0.06262,"136":0.05636,"137":0.04383,"138":0.16281,"139":3.09343,"140":0.16907,"141":2.23553,"142":15.14778,"143":0.08141,"144":0.01879,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 70 71 72 74 76 77 78 80 81 83 84 85 88 89 90 91 92 94 95 96 97 98 99 100 101 102 105 106 110 113 115 117 118 145 146"},F:{"91":0.00626,"92":0.03131,"93":0.01252,"95":0.01252,"114":0.00626,"122":0.08141,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00626,"92":0.01252,"109":0.00626,"114":0.20038,"131":0.01879,"132":0.01252,"133":0.00626,"134":0.00626,"135":0.00626,"136":0.01252,"137":0.00626,"138":0.00626,"139":0.00626,"140":0.00626,"141":0.07514,"142":1.04575,"143":0.00626,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 17.0 17.1 17.2 17.3 18.0 18.1 18.2 26.2","15.6":0.00626,"16.5":0.00626,"16.6":0.01252,"17.4":0.00626,"17.5":0.00626,"17.6":0.01252,"18.3":0.00626,"18.4":0.00626,"18.5-18.6":0.01252,"26.0":0.03757,"26.1":0.03757},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00016,"5.0-5.1":0,"6.0-6.1":0.00062,"7.0-7.1":0.00047,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0014,"10.0-10.2":0.00016,"10.3":0.00249,"11.0-11.2":0.02899,"11.3-11.4":0.00094,"12.0-12.1":0.00031,"12.2-12.5":0.00733,"13.0-13.1":0,"13.2":0.00078,"13.3":0.00031,"13.4-13.7":0.0014,"14.0-14.4":0.00234,"14.5-14.8":0.00296,"15.0-15.1":0.00249,"15.2-15.3":0.00203,"15.4":0.00218,"15.5":0.00234,"15.6-15.8":0.03382,"16.0":0.00421,"16.1":0.00779,"16.2":0.00405,"16.3":0.00748,"16.4":0.00187,"16.5":0.00312,"16.6-16.7":0.04567,"17.0":0.0039,"17.1":0.00468,"17.2":0.00343,"17.3":0.00483,"17.4":0.00795,"17.5":0.01512,"17.6-17.7":0.0371,"18.0":0.00826,"18.1":0.01746,"18.2":0.00935,"18.3":0.0304,"18.4":0.01559,"18.5-18.7":1.08847,"26.0":0.07466,"26.1":0.06812},P:{"4":0.02222,"25":0.01111,"26":0.01111,"27":0.01111,"28":0.04444,"29":0.26664,_:"20 21 22 23 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.02222,"17.0":0.01111},I:{"0":0.03733,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.99543,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0616,"9":0.0088,"10":0.0088,"11":0.24642,_:"6 7 5.5"},N:{_:"10 11"},S:{"2.5":0.01495,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00374},O:{"0":0.50089},H:{"0":0.04},L:{"0":38.02869},R:{_:"0"},M:{"0":0.10093}};
Index: node_modules/caniuse-lite/data/regions/BE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.00484,"52":0.00968,"60":0.00484,"78":0.01452,"88":0.00484,"102":0.00968,"110":0.00484,"113":0.00484,"115":0.15007,"123":0.00968,"125":0.00484,"128":0.01452,"130":0.00484,"132":0.00968,"135":0.00484,"136":0.00968,"137":0.00484,"138":0.00484,"139":0.00484,"140":0.12587,"141":0.00484,"142":0.03873,"143":0.03873,"144":1.20057,"145":1.40389,"146":0.01452,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 111 112 114 116 117 118 119 120 121 122 124 126 127 129 131 133 134 147 148 3.5 3.6"},D:{"39":0.01452,"40":0.01452,"41":0.01452,"42":0.01452,"43":0.01452,"44":0.01452,"45":0.01452,"46":0.01452,"47":0.01452,"48":0.01452,"49":0.02421,"50":0.01452,"51":0.01452,"52":0.01452,"53":0.01452,"54":0.01452,"55":0.01452,"56":0.01452,"57":0.01452,"58":0.01452,"59":0.01452,"60":0.01452,"70":0.29046,"74":0.00968,"79":0.00968,"80":0.00484,"87":0.01936,"90":0.00484,"96":0.00968,"100":0.00484,"101":0.00484,"102":0.00484,"103":0.02905,"104":0.00484,"108":0.00968,"109":0.37276,"111":0.00484,"112":0.00484,"114":0.01452,"115":0.00484,"116":0.1065,"117":0.00484,"118":0.00484,"119":0.00968,"120":0.01452,"121":0.01452,"122":0.07262,"123":0.01452,"124":0.01452,"125":0.19364,"126":0.02905,"127":0.00968,"128":0.09682,"129":0.01452,"130":0.13071,"131":0.06777,"132":0.04841,"133":0.06293,"134":0.04357,"135":0.04841,"136":0.05325,"137":0.09198,"138":0.30498,"139":0.21785,"140":0.43085,"141":5.14598,"142":15.52509,"143":0.02421,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 69 71 72 73 75 76 77 78 81 83 84 85 86 88 89 91 92 93 94 95 97 98 99 105 106 107 110 113 144 145 146"},F:{"46":0.00968,"92":0.01936,"93":0.00484,"95":0.00968,"113":0.00484,"114":0.00484,"120":0.00484,"121":0.01936,"122":0.43085,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.03873,"114":0.00484,"120":0.00968,"121":0.00484,"122":0.00484,"124":0.00484,"125":0.00484,"126":0.00484,"128":0.00968,"129":0.00484,"130":0.00484,"131":0.01452,"132":0.00484,"133":0.00484,"134":0.00968,"135":0.00968,"136":0.01452,"137":0.00968,"138":0.01936,"139":0.01936,"140":0.09198,"141":0.74551,"142":6.62733,"143":0.00968,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 123 127"},E:{"14":0.01452,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00968,"13.1":0.03389,"14.1":0.03873,"15.1":0.00484,"15.2-15.3":0.00484,"15.4":0.01452,"15.5":0.01452,"15.6":0.30982,"16.0":0.02905,"16.1":0.03873,"16.2":0.01936,"16.3":0.05809,"16.4":0.01936,"16.5":0.03389,"16.6":0.32919,"17.0":0.01936,"17.1":0.33887,"17.2":0.04841,"17.3":0.04357,"17.4":0.08714,"17.5":0.15975,"17.6":0.51315,"18.0":0.05809,"18.1":0.09198,"18.2":0.04841,"18.3":0.16944,"18.4":0.13071,"18.5-18.6":0.4599,"26.0":0.68258,"26.1":1.01177,"26.2":0.01936},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00211,"5.0-5.1":0,"6.0-6.1":0.00846,"7.0-7.1":0.00634,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01903,"10.0-10.2":0.00211,"10.3":0.03383,"11.0-11.2":0.39323,"11.3-11.4":0.01268,"12.0-12.1":0.00423,"12.2-12.5":0.09937,"13.0-13.1":0,"13.2":0.01057,"13.3":0.00423,"13.4-13.7":0.01903,"14.0-14.4":0.03171,"14.5-14.8":0.04017,"15.0-15.1":0.03383,"15.2-15.3":0.02748,"15.4":0.0296,"15.5":0.03171,"15.6-15.8":0.45877,"16.0":0.05708,"16.1":0.10571,"16.2":0.05497,"16.3":0.10148,"16.4":0.02537,"16.5":0.04228,"16.6-16.7":0.61945,"17.0":0.05285,"17.1":0.06342,"17.2":0.04651,"17.3":0.06554,"17.4":0.10782,"17.5":0.20507,"17.6-17.7":0.50317,"18.0":0.11205,"18.1":0.23679,"18.2":0.12685,"18.3":0.41226,"18.4":0.21142,"18.5-18.7":14.76317,"26.0":1.01268,"26.1":0.92389},P:{"4":0.01057,"21":0.01057,"22":0.01057,"23":0.01057,"24":0.01057,"25":0.01057,"26":0.05286,"27":0.05286,"28":0.22203,"29":3.01324,_:"20 5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01057,"9.2":0.01057},I:{"0":0.03606,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.13413,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03873,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01548},H:{"0":0},L:{"0":28.85204},R:{_:"0"},M:{"0":0.34565}};
Index: node_modules/caniuse-lite/data/regions/BF.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.02142,"43":0.00306,"45":0.00306,"47":0.00306,"48":0.00306,"56":0.00306,"60":0.00306,"62":0.00306,"70":0.0153,"72":0.00918,"78":0.00918,"79":0.00306,"104":0.00306,"112":0.00306,"115":0.10098,"127":0.0306,"128":0.00306,"130":0.00306,"131":0.00306,"134":0.00306,"136":0.00306,"137":0.00306,"138":0.14382,"139":0.00306,"140":0.02448,"141":0.00612,"142":0.01836,"143":0.0306,"144":0.92106,"145":1.2393,"146":0.00918,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 49 50 51 52 53 54 55 57 58 59 61 63 64 65 66 67 68 69 71 73 74 75 76 77 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 132 133 135 147 148 3.5 3.6"},D:{"43":0.00306,"49":0.00306,"51":0.00306,"58":0.00306,"60":0.00306,"64":0.00306,"67":0.00306,"68":0.00306,"69":0.02754,"72":0.00306,"73":0.0153,"74":0.01224,"75":0.02754,"79":0.0153,"80":0.00306,"81":0.00612,"83":0.00918,"84":0.00306,"86":0.02448,"87":0.0459,"89":0.00306,"90":0.00306,"92":0.00306,"93":0.00612,"94":0.01224,"95":0.00306,"97":0.00306,"98":0.02142,"103":0.01224,"106":0.01836,"108":0.00612,"109":0.89352,"110":0.00612,"111":0.02448,"113":0.00612,"114":0.00918,"115":0.00612,"116":0.01836,"119":0.01224,"120":0.00306,"121":0.00612,"122":0.0306,"123":0.00918,"124":0.00612,"125":0.44064,"126":0.1989,"127":0.02448,"128":0.03672,"129":0.01224,"130":0.0153,"131":0.02754,"132":0.04284,"133":0.04284,"134":0.03366,"135":0.03366,"136":0.03978,"137":0.05814,"138":0.1683,"139":0.10098,"140":0.2142,"141":1.78398,"142":5.83542,"143":0.00918,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 52 53 54 55 56 57 59 61 62 63 65 66 70 71 76 77 78 85 88 91 96 99 100 101 102 104 105 107 112 117 118 144 145 146"},F:{"46":0.00612,"63":0.00306,"64":0.00306,"79":0.00612,"92":0.05814,"93":0.00306,"95":0.04896,"102":0.00306,"113":0.00306,"114":0.00306,"120":0.0153,"122":0.2754,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00306,"13":0.00306,"14":0.00306,"17":0.00306,"18":0.02142,"84":0.00306,"85":0.00306,"89":0.00306,"90":0.01224,"92":0.05814,"100":0.00306,"101":0.00306,"109":0.00612,"111":0.00306,"113":0.10098,"114":0.41922,"122":0.00612,"128":0.00306,"131":0.00306,"133":0.00306,"134":0.00306,"135":0.00612,"136":0.00306,"137":0.02754,"138":0.01224,"139":0.0153,"140":0.02142,"141":0.30906,"142":3.1671,"143":0.0153,_:"15 16 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 102 103 104 105 106 107 108 110 112 115 116 117 118 119 120 121 123 124 125 126 127 129 130 132"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.2 17.4 18.0 18.2","5.1":0.00306,"12.1":0.00306,"13.1":0.01224,"14.1":0.00306,"15.1":0.00306,"15.6":0.02448,"16.6":0.03366,"17.0":0.00306,"17.1":0.00306,"17.3":0.00612,"17.5":0.00306,"17.6":0.05202,"18.1":0.01224,"18.3":0.00306,"18.4":0.01224,"18.5-18.6":0.02754,"26.0":0.04284,"26.1":0.10404,"26.2":0.00306},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00039,"5.0-5.1":0,"6.0-6.1":0.00156,"7.0-7.1":0.00117,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00351,"10.0-10.2":0.00039,"10.3":0.00624,"11.0-11.2":0.07255,"11.3-11.4":0.00234,"12.0-12.1":0.00078,"12.2-12.5":0.01833,"13.0-13.1":0,"13.2":0.00195,"13.3":0.00078,"13.4-13.7":0.00351,"14.0-14.4":0.00585,"14.5-14.8":0.00741,"15.0-15.1":0.00624,"15.2-15.3":0.00507,"15.4":0.00546,"15.5":0.00585,"15.6-15.8":0.08464,"16.0":0.01053,"16.1":0.0195,"16.2":0.01014,"16.3":0.01872,"16.4":0.00468,"16.5":0.0078,"16.6-16.7":0.11428,"17.0":0.00975,"17.1":0.0117,"17.2":0.00858,"17.3":0.01209,"17.4":0.01989,"17.5":0.03783,"17.6-17.7":0.09283,"18.0":0.02067,"18.1":0.04368,"18.2":0.0234,"18.3":0.07606,"18.4":0.039,"18.5-18.7":2.72357,"26.0":0.18682,"26.1":0.17044},P:{"4":0.01061,"24":0.01061,"25":0.02123,"26":0.01061,"27":0.03184,"28":0.15921,"29":0.27597,_:"20 21 22 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02123},I:{"0":0.13168,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":2.3884,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.04164},O:{"0":0.04164},H:{"0":0.11},L:{"0":72.6891},R:{_:"0"},M:{"0":0.1041}};
Index: node_modules/caniuse-lite/data/regions/BG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.03907,"68":0.00391,"78":0.00391,"84":0.04298,"86":0.00391,"88":0.00391,"89":0.02344,"100":0.00391,"102":0.00391,"104":0.00391,"107":0.00391,"113":0.00391,"115":0.47275,"122":0.00391,"124":0.00391,"125":0.02344,"127":0.00781,"128":0.01563,"130":0.00391,"132":0.00391,"133":0.00391,"134":0.00391,"135":0.00781,"136":0.02344,"137":0.00781,"138":0.00781,"139":0.00781,"140":0.12502,"141":0.00781,"142":0.02735,"143":0.05079,"144":1.19164,"145":1.37917,"146":0.00391,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 87 90 91 92 93 94 95 96 97 98 99 101 103 105 106 108 109 110 111 112 114 116 117 118 119 120 121 123 126 129 131 147 148 3.5 3.6"},D:{"32":0.01172,"38":0.00391,"39":0.01172,"40":0.01172,"41":0.01563,"42":0.01172,"43":0.01172,"44":0.01172,"45":0.01172,"46":0.01172,"47":0.01172,"48":0.01172,"49":0.02344,"50":0.01172,"51":0.01172,"52":0.01172,"53":0.01563,"54":0.01172,"55":0.01172,"56":0.01172,"57":0.01172,"58":0.01172,"59":0.01172,"60":0.01172,"69":0.00391,"73":0.00391,"75":0.00391,"77":0.00391,"79":0.05861,"81":0.00391,"83":0.00781,"85":0.00391,"86":0.00391,"87":0.04688,"88":0.00391,"89":0.00391,"91":0.02344,"93":0.00391,"94":0.00391,"97":0.00391,"98":2.79351,"99":0.00391,"100":0.00781,"102":0.00781,"103":0.01172,"104":0.03907,"106":0.00391,"107":0.00391,"108":0.04298,"109":1.48075,"110":0.00391,"111":0.02735,"112":1.34792,"113":0.00391,"114":0.01954,"115":0.00781,"116":0.01563,"117":0.00391,"118":0.00391,"119":0.01172,"120":0.03516,"121":0.02344,"122":0.04298,"123":0.01172,"124":0.06251,"125":0.03907,"126":0.28521,"127":0.01563,"128":0.04688,"129":0.01172,"130":0.01172,"131":0.03907,"132":0.02735,"133":0.01954,"134":0.03516,"135":0.04688,"136":0.03907,"137":0.04688,"138":0.12893,"139":0.10549,"140":0.2227,"141":5.48152,"142":12.11561,"143":0.02344,"144":0.00391,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 61 62 63 64 65 66 67 68 70 71 72 74 76 78 80 84 90 92 95 96 101 105 145 146"},F:{"46":0.01172,"85":0.00781,"86":0.00391,"90":0.00391,"92":0.03516,"93":0.00781,"95":0.05079,"120":0.00781,"122":0.28521,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01172,"109":0.04688,"114":0.03126,"124":0.00391,"129":0.00391,"131":0.00391,"133":0.00391,"134":0.00781,"135":0.00391,"136":0.00781,"137":0.00391,"138":0.00781,"139":0.01172,"140":0.01563,"141":0.26568,"142":2.5669,"143":0.00391,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 125 126 127 128 130 132"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.4 17.0","13.1":0.00391,"14.1":0.01172,"15.6":0.02344,"16.0":0.00391,"16.1":0.00391,"16.2":0.00391,"16.3":0.00391,"16.5":0.00391,"16.6":0.03516,"17.1":0.02735,"17.2":0.00391,"17.3":0.00391,"17.4":0.01172,"17.5":0.00781,"17.6":0.04688,"18.0":0.00391,"18.1":0.00781,"18.2":0.00391,"18.3":0.01172,"18.4":0.00781,"18.5-18.6":0.03516,"26.0":0.06642,"26.1":0.08595,"26.2":0.00391},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00099,"5.0-5.1":0,"6.0-6.1":0.00397,"7.0-7.1":0.00298,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00894,"10.0-10.2":0.00099,"10.3":0.01589,"11.0-11.2":0.1847,"11.3-11.4":0.00596,"12.0-12.1":0.00199,"12.2-12.5":0.04667,"13.0-13.1":0,"13.2":0.00496,"13.3":0.00199,"13.4-13.7":0.00894,"14.0-14.4":0.01489,"14.5-14.8":0.01887,"15.0-15.1":0.01589,"15.2-15.3":0.01291,"15.4":0.0139,"15.5":0.01489,"15.6-15.8":0.21548,"16.0":0.02681,"16.1":0.04965,"16.2":0.02582,"16.3":0.04766,"16.4":0.01192,"16.5":0.01986,"16.6-16.7":0.29095,"17.0":0.02482,"17.1":0.02979,"17.2":0.02185,"17.3":0.03078,"17.4":0.05064,"17.5":0.09632,"17.6-17.7":0.23633,"18.0":0.05263,"18.1":0.11122,"18.2":0.05958,"18.3":0.19363,"18.4":0.0993,"18.5-18.7":6.93409,"26.0":0.47565,"26.1":0.43394},P:{"4":0.08193,"20":0.01024,"21":0.01024,"22":0.02048,"23":0.04096,"24":0.04096,"25":0.04096,"26":0.04096,"27":0.10241,"28":0.46084,"29":2.65238,"5.0-5.4":0.01024,_:"6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.03072,"8.2":0.01024,"19.0":0.01024},I:{"0":0.073,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.28023,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01954,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02437},H:{"0":0},L:{"0":51.42372},R:{_:"0"},M:{"0":0.29242}};
Index: node_modules/caniuse-lite/data/regions/BH.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00773,"115":0.01545,"138":0.00386,"140":0.00386,"142":0.00386,"144":0.19315,"145":0.22405,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 139 141 143 146 147 148 3.5 3.6"},D:{"41":0.00386,"52":0.00386,"64":0.00386,"65":0.00386,"68":0.00386,"69":0.00773,"79":0.06181,"80":0.00386,"83":0.00386,"87":0.05022,"91":0.00773,"94":0.01545,"95":0.01932,"98":0.00773,"99":0.00386,"101":0.00386,"103":0.06567,"104":0.0309,"108":0.00386,"109":0.27427,"110":0.00386,"111":0.02318,"112":12.21481,"114":0.00386,"116":0.01932,"118":0.00386,"119":0.04636,"120":0.01159,"121":0.00773,"122":0.05022,"123":0.00386,"124":0.00773,"125":0.18542,"126":1.95082,"127":0.03477,"128":0.0309,"129":0.00386,"130":0.01159,"131":0.03863,"132":0.03477,"133":0.01545,"134":0.01932,"135":0.01545,"136":0.01545,"137":0.0309,"138":0.46356,"139":0.0734,"140":0.27814,"141":3.41876,"142":7.35129,"143":0.01545,"144":0.00386,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 66 67 70 71 72 73 74 75 76 77 78 81 84 85 86 88 89 90 92 93 96 97 100 102 105 106 107 113 115 117 145 146"},F:{"46":0.00386,"92":0.08112,"93":0.00773,"122":0.24723,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00386,"114":0.13134,"122":0.00386,"126":0.00386,"130":0.00386,"131":0.00386,"132":0.00386,"134":0.00386,"138":0.00386,"139":0.00386,"140":0.02704,"141":0.29745,"142":2.56503,"143":0.00386,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 123 124 125 127 128 129 133 135 136 137"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 17.0","13.1":0.00386,"14.1":0.00773,"15.5":0.00386,"15.6":0.02318,"16.1":0.00773,"16.2":0.00386,"16.3":0.01932,"16.4":0.00386,"16.5":0.01159,"16.6":0.03863,"17.1":0.02318,"17.2":0.00386,"17.3":0.00773,"17.4":0.00386,"17.5":0.01545,"17.6":0.05795,"18.0":0.00386,"18.1":0.01159,"18.2":0.01159,"18.3":0.0309,"18.4":0.01159,"18.5-18.6":0.08112,"26.0":0.14679,"26.1":0.10816,"26.2":0.00386},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0026,"5.0-5.1":0,"6.0-6.1":0.01041,"7.0-7.1":0.00781,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02342,"10.0-10.2":0.0026,"10.3":0.04164,"11.0-11.2":0.4841,"11.3-11.4":0.01562,"12.0-12.1":0.00521,"12.2-12.5":0.12233,"13.0-13.1":0,"13.2":0.01301,"13.3":0.00521,"13.4-13.7":0.02342,"14.0-14.4":0.03904,"14.5-14.8":0.04945,"15.0-15.1":0.04164,"15.2-15.3":0.03384,"15.4":0.03644,"15.5":0.03904,"15.6-15.8":0.56479,"16.0":0.07027,"16.1":0.13014,"16.2":0.06767,"16.3":0.12493,"16.4":0.03123,"16.5":0.05205,"16.6-16.7":0.76259,"17.0":0.06507,"17.1":0.07808,"17.2":0.05726,"17.3":0.08068,"17.4":0.13274,"17.5":0.25246,"17.6-17.7":0.61944,"18.0":0.13794,"18.1":0.2915,"18.2":0.15616,"18.3":0.50753,"18.4":0.26027,"18.5-18.7":18.17467,"26.0":1.24669,"26.1":1.13738},P:{"4":0.03076,"25":0.09228,"26":0.09228,"27":0.13329,"28":0.50241,"29":2.49155,_:"20 21 22 23 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02051},I:{"0":0.01839,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.55847,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0309,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.64439},H:{"0":0},L:{"0":36.15235},R:{_:"0"},M:{"0":0.47255}};
Index: node_modules/caniuse-lite/data/regions/BI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01281,"49":0.00427,"59":0.00854,"75":0.00854,"80":0.01708,"82":0.00427,"89":0.01281,"94":0.02135,"96":0.00854,"104":0.00427,"110":0.00427,"112":0.00427,"113":0.06404,"115":0.0683,"116":0.00854,"127":0.02988,"128":0.01281,"129":0.00854,"130":0.01281,"134":0.00854,"136":0.03842,"139":0.02561,"140":0.05123,"141":0.01281,"142":0.16649,"143":0.03415,"144":0.91357,"145":0.73427,"146":0.01708,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 81 83 84 85 86 87 88 90 91 92 93 95 97 98 99 100 101 102 103 105 106 107 108 109 111 114 117 118 119 120 121 122 123 124 125 126 131 132 133 135 137 138 147 148 3.5 3.6"},D:{"39":0.00854,"43":0.00427,"46":0.00427,"55":0.00427,"59":0.00427,"63":0.01708,"64":0.02561,"67":0.02561,"68":0.00427,"69":0.06404,"70":0.01281,"71":0.01281,"74":0.00427,"77":0.00427,"78":0.00427,"79":0.01281,"80":0.11526,"81":0.00427,"84":0.02988,"87":0.00427,"88":0.00854,"93":0.01281,"94":0.07684,"97":0.01708,"98":0.00854,"99":0.01281,"100":0.00854,"101":0.01281,"102":0.02561,"103":0.08538,"105":0.01708,"106":0.01708,"107":0.00427,"108":0.00854,"109":0.96053,"111":0.01708,"112":0.00854,"113":0.02135,"114":0.01281,"116":0.11953,"117":0.00427,"119":0.01281,"120":0.02561,"122":0.02988,"123":0.07257,"124":0.00427,"125":0.20918,"126":0.04696,"127":0.01281,"128":0.01708,"129":0.00854,"130":0.01281,"131":0.0683,"132":0.03842,"133":0.08538,"134":0.03842,"135":0.06404,"136":0.11953,"137":0.19637,"138":0.5507,"139":0.44398,"140":0.53363,"141":5.16976,"142":8.42701,"143":0.00854,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 44 45 47 48 49 50 51 52 53 54 56 57 58 60 61 62 65 66 72 73 75 76 83 85 86 89 90 91 92 95 96 104 110 115 118 121 144 145 146"},F:{"46":0.00427,"79":0.02561,"92":0.04696,"95":0.02988,"114":0.00854,"118":0.00427,"119":0.00427,"120":0.01281,"122":0.56778,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.01281,"16":0.01708,"17":0.01281,"18":0.08965,"84":0.01281,"85":0.01708,"89":0.01281,"90":0.01281,"92":0.08538,"100":0.05123,"103":0.00854,"106":0.01281,"109":0.11953,"114":0.06404,"122":0.03415,"131":0.00854,"132":0.00427,"133":0.00854,"136":0.01281,"137":0.00427,"138":0.0555,"139":0.02988,"140":0.07257,"141":0.5507,"142":2.6852,_:"12 13 15 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 134 135 143"},E:{"14":0.00854,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.4 16.5 17.2 17.3 17.4 18.0 26.2","11.1":0.17503,"12.1":0.00427,"13.1":0.00854,"14.1":0.02561,"15.6":0.01708,"16.1":0.01281,"16.6":0.17503,"17.0":0.01281,"17.1":0.01281,"17.5":0.02561,"17.6":0.00427,"18.1":0.26895,"18.2":0.00427,"18.3":0.00854,"18.4":0.01281,"18.5-18.6":0.00854,"26.0":0.10246,"26.1":0.20918},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00053,"5.0-5.1":0,"6.0-6.1":0.00211,"7.0-7.1":0.00158,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00475,"10.0-10.2":0.00053,"10.3":0.00845,"11.0-11.2":0.09819,"11.3-11.4":0.00317,"12.0-12.1":0.00106,"12.2-12.5":0.02481,"13.0-13.1":0,"13.2":0.00264,"13.3":0.00106,"13.4-13.7":0.00475,"14.0-14.4":0.00792,"14.5-14.8":0.01003,"15.0-15.1":0.00845,"15.2-15.3":0.00686,"15.4":0.00739,"15.5":0.00792,"15.6-15.8":0.11456,"16.0":0.01425,"16.1":0.0264,"16.2":0.01373,"16.3":0.02534,"16.4":0.00634,"16.5":0.01056,"16.6-16.7":0.15468,"17.0":0.0132,"17.1":0.01584,"17.2":0.01161,"17.3":0.01637,"17.4":0.02692,"17.5":0.05121,"17.6-17.7":0.12564,"18.0":0.02798,"18.1":0.05913,"18.2":0.03168,"18.3":0.10294,"18.4":0.05279,"18.5-18.7":3.68645,"26.0":0.25287,"26.1":0.2307},P:{"4":0.01021,"21":0.01021,"22":0.02042,"23":0.01021,"24":0.11228,"25":0.05104,"26":0.02042,"27":0.06125,"28":0.24498,"29":0.67371,_:"20 5.0-5.4 8.2 10.1 12.0 14.0 15.0 17.0","6.2-6.4":0.02042,"7.2-7.4":0.12249,"9.2":0.01021,"11.1-11.2":0.03062,"13.0":0.02042,"16.0":0.05104,"18.0":0.01021,"19.0":0.01021},I:{"0":0.04579,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":4.03468,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.03842,_:"6 7 8 9 11 5.5"},N:{_:"10 11"},S:{"2.5":0.0172,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.08025},O:{"0":0.05732},H:{"0":1.64},L:{"0":58.4204},R:{_:"0"},M:{"0":0.08598}};
Index: node_modules/caniuse-lite/data/regions/BJ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BJ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BJ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.011,"16":0.00367,"43":0.00367,"47":0.00367,"69":0.00367,"72":0.011,"75":0.00734,"80":0.00367,"82":0.00367,"84":0.01834,"92":0.00367,"105":0.00367,"111":0.00367,"112":0.00734,"115":0.1027,"125":0.011,"127":0.03668,"128":0.00734,"129":0.00734,"136":0.00734,"139":0.00367,"140":0.04768,"141":0.00734,"142":0.01834,"143":0.05502,"144":0.83264,"145":0.83997,"146":0.00734,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 76 77 78 79 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 113 114 116 117 118 119 120 121 122 123 124 126 130 131 132 133 134 135 137 138 147 148 3.5 3.6"},D:{"47":0.02568,"51":0.00367,"54":0.00367,"57":0.00734,"58":0.00367,"59":0.00367,"64":0.00367,"68":0.00367,"69":0.01467,"70":0.00367,"71":0.00734,"72":0.00367,"73":0.04768,"74":0.04768,"75":0.011,"76":0.00734,"77":0.01467,"78":0.01467,"79":0.011,"80":0.00367,"81":0.01467,"83":0.02201,"84":0.00367,"85":0.011,"86":0.00734,"87":0.01834,"89":0.00367,"91":0.00367,"93":0.00734,"94":0.01467,"95":0.00734,"98":0.00734,"103":0.01834,"104":0.00734,"105":0.00367,"106":0.00734,"108":0.00734,"109":0.75561,"111":0.02201,"113":0.00367,"114":0.011,"115":0.00367,"116":0.03668,"117":0.00367,"118":0.00367,"119":0.011,"120":0.00734,"121":0.00367,"122":0.04035,"123":0.03668,"124":0.00734,"125":0.14305,"126":0.07336,"127":0.011,"128":0.04768,"129":0.00734,"130":0.00734,"131":0.03301,"132":0.02934,"133":0.01834,"134":0.03301,"135":0.03301,"136":0.08803,"137":0.05135,"138":0.24576,"139":0.26776,"140":0.33012,"141":2.77668,"142":10.78392,"143":0.03301,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 52 53 55 56 60 61 62 63 65 66 67 88 90 92 96 97 99 100 101 102 107 110 112 144 145 146"},F:{"80":0.00367,"89":0.00367,"90":0.00367,"91":0.02934,"92":0.15406,"93":0.02201,"95":0.10637,"108":0.00367,"114":0.00367,"117":0.00367,"119":0.00367,"120":0.01467,"122":0.35213,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 84 85 86 87 88 94 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 115 116 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.011,"16":0.00367,"17":0.00367,"18":0.04035,"84":0.00734,"85":0.00734,"89":0.00734,"90":0.06236,"92":0.05869,"100":0.01467,"107":0.01467,"109":0.00734,"110":0.00734,"114":0.1944,"122":0.011,"131":0.011,"132":0.00367,"133":0.02934,"134":0.00367,"136":0.01834,"137":0.00367,"138":0.02201,"139":0.01834,"140":0.06969,"141":0.42549,"142":2.93073,"143":0.00734,_:"13 14 15 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 135"},E:{"14":0.00367,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.4 15.5 16.0 16.1 18.0","5.1":0.00734,"13.1":0.011,"14.1":0.05135,"15.2-15.3":0.02201,"15.6":0.13205,"16.2":0.00367,"16.3":0.00734,"16.4":0.011,"16.5":0.00367,"16.6":0.11738,"17.0":0.00367,"17.1":0.06969,"17.2":0.00367,"17.3":0.00734,"17.4":0.00367,"17.5":0.011,"17.6":0.24209,"18.1":0.00367,"18.2":0.00734,"18.3":0.011,"18.4":0.00367,"18.5-18.6":0.02568,"26.0":0.10637,"26.1":0.1027,"26.2":0.00367},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00095,"5.0-5.1":0,"6.0-6.1":0.00379,"7.0-7.1":0.00284,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00853,"10.0-10.2":0.00095,"10.3":0.01516,"11.0-11.2":0.17619,"11.3-11.4":0.00568,"12.0-12.1":0.00189,"12.2-12.5":0.04452,"13.0-13.1":0,"13.2":0.00474,"13.3":0.00189,"13.4-13.7":0.00853,"14.0-14.4":0.01421,"14.5-14.8":0.018,"15.0-15.1":0.01516,"15.2-15.3":0.01231,"15.4":0.01326,"15.5":0.01421,"15.6-15.8":0.20556,"16.0":0.02558,"16.1":0.04736,"16.2":0.02463,"16.3":0.04547,"16.4":0.01137,"16.5":0.01895,"16.6-16.7":0.27755,"17.0":0.02368,"17.1":0.02842,"17.2":0.02084,"17.3":0.02937,"17.4":0.04831,"17.5":0.09188,"17.6-17.7":0.22545,"18.0":0.05021,"18.1":0.10609,"18.2":0.05684,"18.3":0.18472,"18.4":0.09473,"18.5-18.7":6.61477,"26.0":0.45374,"26.1":0.41396},P:{"4":0.01037,"22":0.01037,"23":0.05186,"24":0.01037,"25":0.01037,"26":0.01037,"27":0.01037,"28":0.16594,"29":0.26966,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.03111,"11.1-11.2":0.01037,"17.0":0.01037},I:{"0":0.04426,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":4.1289,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.02533,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00633},O:{"0":0.27861},H:{"0":4.28},L:{"0":54.54896},R:{_:"0"},M:{"0":0.15197}};
Index: node_modules/caniuse-lite/data/regions/BM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"143":0.00281,"144":0.00561,"145":0.01964,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 146 147 148 3.5 3.6"},D:{"109":0.01964,"116":0.00281,"125":0.00842,"137":0.00281,"138":0.00281,"139":0.00281,"140":0.01964,"141":0.10098,"142":0.23282,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 117 118 119 120 121 122 123 124 126 127 128 129 130 131 132 133 134 135 136 143 144 145 146"},F:{"122":0.00281,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.01403,"141":0.01683,"142":0.12062,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.2-15.3","14.1":0.02244,"15.1":0.01122,"15.4":0.01964,"15.5":0.07293,"15.6":0.6704,"16.0":0.01683,"16.1":0.08696,"16.2":0.13184,"16.3":0.26367,"16.4":0.05049,"16.5":0.12342,"16.6":1.59605,"17.0":0.02805,"17.1":1.38567,"17.2":0.0533,"17.3":0.07854,"17.4":0.15147,"17.5":0.22721,"17.6":0.85833,"18.0":0.05891,"18.1":0.29172,"18.2":0.08976,"18.3":0.47124,"18.4":0.21599,"18.5-18.6":0.94809,"26.0":1.2903,"26.1":1.82606,"26.2":0.06452},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00716,"5.0-5.1":0,"6.0-6.1":0.02866,"7.0-7.1":0.02149,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06448,"10.0-10.2":0.00716,"10.3":0.11464,"11.0-11.2":1.33265,"11.3-11.4":0.04299,"12.0-12.1":0.01433,"12.2-12.5":0.33674,"13.0-13.1":0,"13.2":0.03582,"13.3":0.01433,"13.4-13.7":0.06448,"14.0-14.4":0.10747,"14.5-14.8":0.13613,"15.0-15.1":0.11464,"15.2-15.3":0.09314,"15.4":0.10031,"15.5":0.10747,"15.6-15.8":1.55476,"16.0":0.19345,"16.1":0.35824,"16.2":0.18628,"16.3":0.34391,"16.4":0.08598,"16.5":0.1433,"16.6-16.7":2.09928,"17.0":0.17912,"17.1":0.21494,"17.2":0.15763,"17.3":0.22211,"17.4":0.3654,"17.5":0.69498,"17.6-17.7":1.70522,"18.0":0.37973,"18.1":0.80246,"18.2":0.42989,"18.3":1.39713,"18.4":0.71648,"18.5-18.7":50.03167,"26.0":3.43193,"26.1":3.13101},P:{"29":0.04317,_:"4 20 21 22 23 24 25 26 27 28 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":0.26988},R:{_:"0"},M:{"0":0.0072}};
Index: node_modules/caniuse-lite/data/regions/BN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00573,"115":0.12615,"140":0.00573,"141":0.00573,"143":0.02294,"144":0.44725,"145":0.55046,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 142 146 147 148 3.5 3.6"},D:{"47":0.00573,"50":0.00573,"55":0.00573,"65":0.0172,"68":0.00573,"69":0.00573,"70":0.0172,"79":0.01147,"81":0.11468,"83":0.00573,"86":0.00573,"87":0.01147,"91":0.01147,"92":0.00573,"94":0.01147,"101":0.00573,"103":0.02867,"108":0.00573,"109":0.80276,"111":0.01147,"112":18.78458,"114":0.01147,"115":0.00573,"116":0.02867,"119":0.0172,"120":0.00573,"121":0.00573,"122":0.05161,"123":0.00573,"124":0.0172,"125":0.73395,"126":1.33029,"127":0.01147,"128":0.02867,"129":0.00573,"130":0.00573,"131":0.11468,"132":0.02294,"133":0.05161,"134":0.02294,"135":0.0172,"136":0.04014,"137":0.07454,"138":0.25803,"139":0.13762,"140":0.24083,"141":4.08834,"142":15.59075,"143":0.04014,"144":0.00573,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 51 52 53 54 56 57 58 59 60 61 62 63 64 66 67 71 72 73 74 75 76 77 78 80 84 85 88 89 90 93 95 96 97 98 99 100 102 104 105 106 107 110 113 117 118 145 146"},F:{"91":0.00573,"92":0.12615,"93":0.01147,"95":0.12615,"120":0.00573,"122":0.40711,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00573,"18":0.00573,"84":0.00573,"109":0.02867,"112":0.00573,"114":0.05734,"120":0.00573,"131":0.00573,"132":0.00573,"134":0.00573,"135":0.00573,"138":0.01147,"139":0.01147,"140":0.02867,"141":0.43578,"142":3.97366,"143":0.00573,_:"12 13 14 16 17 79 80 81 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 115 116 117 118 119 121 122 123 124 125 126 127 128 129 130 133 136 137"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0","13.1":0.00573,"14.1":0.01147,"15.4":0.00573,"15.5":0.01147,"15.6":0.07454,"16.1":0.0172,"16.2":0.01147,"16.3":0.01147,"16.4":0.00573,"16.5":0.01147,"16.6":0.11468,"17.0":0.00573,"17.1":0.04587,"17.2":0.02294,"17.3":0.0344,"17.4":0.0172,"17.5":0.04587,"17.6":0.35551,"18.0":0.02867,"18.1":0.04587,"18.2":0.01147,"18.3":0.06307,"18.4":0.02294,"18.5-18.6":0.17202,"26.0":0.41858,"26.1":0.28097,"26.2":0.00573},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00121,"5.0-5.1":0,"6.0-6.1":0.00482,"7.0-7.1":0.00362,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01085,"10.0-10.2":0.00121,"10.3":0.01929,"11.0-11.2":0.22424,"11.3-11.4":0.00723,"12.0-12.1":0.00241,"12.2-12.5":0.05666,"13.0-13.1":0,"13.2":0.00603,"13.3":0.00241,"13.4-13.7":0.01085,"14.0-14.4":0.01808,"14.5-14.8":0.02291,"15.0-15.1":0.01929,"15.2-15.3":0.01567,"15.4":0.01688,"15.5":0.01808,"15.6-15.8":0.26161,"16.0":0.03255,"16.1":0.06028,"16.2":0.03134,"16.3":0.05787,"16.4":0.01447,"16.5":0.02411,"16.6-16.7":0.35323,"17.0":0.03014,"17.1":0.03617,"17.2":0.02652,"17.3":0.03737,"17.4":0.06148,"17.5":0.11694,"17.6-17.7":0.28693,"18.0":0.0639,"18.1":0.13502,"18.2":0.07233,"18.3":0.23509,"18.4":0.12056,"18.5-18.7":8.41851,"26.0":0.57747,"26.1":0.52683},P:{"4":0.01054,"26":0.02107,"27":0.01054,"28":0.1475,"29":2.00185,_:"20 21 22 23 24 25 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.07375},I:{"0":0.00426,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":1.56269,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.0128},O:{"0":0.52472},H:{"0":0.02},L:{"0":29.40255},R:{_:"0"},M:{"0":0.18344}};
Index: node_modules/caniuse-lite/data/regions/BO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.033,"52":0.0198,"61":0.0264,"64":0.0066,"78":0.0066,"113":0.0066,"115":0.21117,"125":0.033,"128":0.0132,"136":0.0066,"139":0.0132,"140":0.0264,"141":0.0066,"142":0.0132,"143":0.0198,"144":0.6731,"145":0.90406,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 133 134 135 137 138 146 147 148 3.5 3.6"},D:{"49":0.0066,"62":0.0066,"69":0.03959,"73":0.0066,"75":0.0066,"79":0.03959,"83":0.0066,"85":0.0066,"87":0.05939,"89":0.0066,"90":0.0066,"93":0.0066,"94":0.0066,"97":0.033,"99":0.0066,"100":0.0066,"103":0.0198,"105":0.0264,"108":0.0198,"109":1.21422,"110":0.0066,"111":0.04619,"112":24.69346,"114":0.04619,"116":0.05279,"117":0.0066,"119":0.0264,"120":0.0132,"121":0.0132,"122":0.09899,"123":0.0132,"124":0.03959,"125":0.47513,"126":5.02184,"127":0.033,"128":0.04619,"129":0.0198,"130":0.0132,"131":0.09239,"132":0.05939,"133":0.0264,"134":0.03959,"135":0.03959,"136":0.033,"137":0.07259,"138":0.21777,"139":0.09239,"140":0.27056,"141":4.02539,"142":14.23404,"143":0.0198,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 70 71 72 74 76 77 78 80 81 84 86 88 91 92 95 96 98 101 102 104 106 107 113 115 118 144 145 146"},F:{"79":0.0066,"92":0.0198,"95":0.05939,"99":0.04619,"118":0.0066,"120":0.0066,"122":0.85787,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0066,"92":0.0132,"109":0.0264,"114":0.36295,"122":0.0066,"131":0.0066,"134":0.0066,"135":0.0132,"136":0.0132,"137":0.07919,"138":0.0132,"139":0.0132,"140":0.0264,"141":0.40914,"142":2.6462,"143":0.0066,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 132 133"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 18.0 18.1 18.2","5.1":0.0066,"13.1":0.0066,"15.6":0.0198,"16.6":0.06599,"17.1":0.033,"17.4":0.0132,"17.5":0.0066,"17.6":0.06599,"18.3":0.0132,"18.4":0.0066,"18.5-18.6":0.0198,"26.0":0.06599,"26.1":0.08579,"26.2":0.0066},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00025,"5.0-5.1":0,"6.0-6.1":0.00101,"7.0-7.1":0.00076,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00227,"10.0-10.2":0.00025,"10.3":0.00404,"11.0-11.2":0.04694,"11.3-11.4":0.00151,"12.0-12.1":0.0005,"12.2-12.5":0.01186,"13.0-13.1":0,"13.2":0.00126,"13.3":0.0005,"13.4-13.7":0.00227,"14.0-14.4":0.00379,"14.5-14.8":0.00479,"15.0-15.1":0.00404,"15.2-15.3":0.00328,"15.4":0.00353,"15.5":0.00379,"15.6-15.8":0.05476,"16.0":0.00681,"16.1":0.01262,"16.2":0.00656,"16.3":0.01211,"16.4":0.00303,"16.5":0.00505,"16.6-16.7":0.07394,"17.0":0.00631,"17.1":0.00757,"17.2":0.00555,"17.3":0.00782,"17.4":0.01287,"17.5":0.02448,"17.6-17.7":0.06006,"18.0":0.01337,"18.1":0.02826,"18.2":0.01514,"18.3":0.04921,"18.4":0.02524,"18.5-18.7":1.76219,"26.0":0.12088,"26.1":0.11028},P:{"4":0.04181,"21":0.01045,"22":0.02091,"23":0.01045,"24":0.02091,"25":0.02091,"26":0.06272,"27":0.02091,"28":0.16725,"29":0.86761,_:"20 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0","5.0-5.4":0.01045,"7.2-7.4":0.08362,"11.1-11.2":0.01045,"17.0":0.06272,"19.0":0.01045},I:{"0":0.04415,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.31629,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.07919,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.03061},H:{"0":0},L:{"0":32.98744},R:{_:"0"},M:{"0":0.10883}};
Index: node_modules/caniuse-lite/data/regions/BR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.02761,"59":0.0069,"112":0.03452,"113":0.03452,"114":0.03452,"115":0.09664,"116":0.03452,"128":0.01381,"136":0.0069,"138":0.0069,"139":0.0069,"140":0.05522,"141":0.01381,"142":0.0069,"143":0.02071,"144":0.43489,"145":0.52463,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 137 146 147 148 3.5 3.6"},D:{"39":0.0069,"40":0.0069,"41":0.0069,"42":0.0069,"43":0.0069,"44":0.0069,"45":0.0069,"46":0.0069,"47":0.0069,"48":0.0069,"49":0.0069,"50":0.0069,"51":0.0069,"52":0.0069,"53":0.0069,"54":0.0069,"55":0.01381,"56":0.0069,"57":0.0069,"58":0.0069,"59":0.0069,"60":0.0069,"66":0.02071,"69":0.02761,"75":0.01381,"78":0.0069,"79":0.01381,"86":0.0069,"87":0.01381,"91":0.0069,"99":0.01381,"102":0.0069,"103":0.01381,"104":0.02071,"108":0.0069,"109":0.55914,"111":0.03452,"112":29.27562,"113":0.04142,"114":0.08284,"115":0.04142,"116":0.02761,"118":0.0069,"119":0.04832,"120":0.13116,"121":0.0069,"122":0.06213,"123":0.0069,"124":0.02761,"125":1.3806,"126":4.65953,"127":0.02071,"128":0.10355,"129":0.02071,"130":0.02761,"131":0.07593,"132":0.06903,"133":0.04832,"134":0.04832,"135":0.05522,"136":0.06213,"137":0.06903,"138":0.16567,"139":0.15877,"140":0.28993,"141":3.73452,"142":16.62242,"143":0.04142,"144":0.0069,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 67 68 70 71 72 73 74 76 77 80 81 83 84 85 88 89 90 92 93 94 95 96 97 98 100 101 105 106 107 110 117 145 146"},F:{"92":0.01381,"95":0.0069,"114":0.0069,"122":0.88358,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.0069,"109":0.02071,"114":0.09664,"131":0.0069,"132":0.0069,"133":0.0069,"134":0.0069,"135":0.0069,"136":0.0069,"137":0.0069,"138":0.01381,"139":0.01381,"140":0.02761,"141":0.35205,"142":3.39628,"143":0.0069,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 17.0 17.2 17.3 18.2","5.1":0.0069,"11.1":0.0069,"15.6":0.01381,"16.5":0.02071,"16.6":0.02071,"17.1":0.0069,"17.4":0.0069,"17.5":0.0069,"17.6":0.02761,"18.0":0.0069,"18.1":0.01381,"18.3":0.0069,"18.4":0.0069,"18.5-18.6":0.02761,"26.0":0.07593,"26.1":0.10355,"26.2":0.0069},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00037,"5.0-5.1":0,"6.0-6.1":0.00148,"7.0-7.1":0.00111,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00333,"10.0-10.2":0.00037,"10.3":0.00591,"11.0-11.2":0.06872,"11.3-11.4":0.00222,"12.0-12.1":0.00074,"12.2-12.5":0.01737,"13.0-13.1":0,"13.2":0.00185,"13.3":0.00074,"13.4-13.7":0.00333,"14.0-14.4":0.00554,"14.5-14.8":0.00702,"15.0-15.1":0.00591,"15.2-15.3":0.0048,"15.4":0.00517,"15.5":0.00554,"15.6-15.8":0.08018,"16.0":0.00998,"16.1":0.01847,"16.2":0.00961,"16.3":0.01773,"16.4":0.00443,"16.5":0.00739,"16.6-16.7":0.10826,"17.0":0.00924,"17.1":0.01108,"17.2":0.00813,"17.3":0.01145,"17.4":0.01884,"17.5":0.03584,"17.6-17.7":0.08793,"18.0":0.01958,"18.1":0.04138,"18.2":0.02217,"18.3":0.07205,"18.4":0.03695,"18.5-18.7":2.58002,"26.0":0.17698,"26.1":0.16146},P:{"4":0.01044,"25":0.01044,"26":0.02088,"27":0.01044,"28":0.05219,"29":0.70979,_:"20 21 22 23 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.03131},I:{"0":0.05567,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.12078,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02485,"9":0.0497,"10":0.01243,"11":0.0994,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00929},H:{"0":0},L:{"0":27.7648},R:{_:"0"},M:{"0":0.07123}};
Index: node_modules/caniuse-lite/data/regions/BS.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0028,"52":0.0028,"115":0.10094,"140":0.0028,"142":0.0028,"143":0.00561,"144":0.08132,"145":0.11496,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"69":0.0028,"71":0.0028,"75":0.0028,"76":0.0028,"93":0.0028,"103":0.03084,"109":0.11496,"111":0.0028,"114":0.0028,"116":0.03084,"120":0.00561,"122":0.00561,"123":0.0028,"124":0.00561,"125":0.05047,"126":0.00841,"127":0.0028,"128":0.01402,"129":0.01682,"131":0.01402,"132":0.0028,"133":0.0028,"134":0.0028,"135":0.00561,"136":0.0028,"137":0.0028,"138":0.05888,"139":0.01963,"140":0.0729,"141":0.59725,"142":2.14226,"143":0.00561,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 72 73 74 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 112 113 115 117 118 119 121 130 144 145 146"},F:{"92":0.01682,"93":0.0028,"122":0.01963,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.0028,"114":0.0028,"126":0.00561,"133":0.00841,"135":0.00561,"138":0.0028,"139":0.00561,"140":0.01122,"141":0.17104,"142":1.43845,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 127 128 129 130 131 132 134 136 137 143"},E:{"14":0.02524,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.0028,"13.1":0.0028,"14.1":0.01682,"15.1":0.01122,"15.2-15.3":0.00561,"15.4":0.06449,"15.5":0.05047,"15.6":0.42901,"16.0":0.00561,"16.1":0.10655,"16.2":0.05047,"16.3":0.1374,"16.4":0.12057,"16.5":0.08692,"16.6":1.10478,"17.0":0.01963,"17.1":1.23656,"17.2":0.04206,"17.3":0.05888,"17.4":0.10094,"17.5":0.24395,"17.6":0.59164,"18.0":0.03084,"18.1":0.16263,"18.2":0.08132,"18.3":0.38976,"18.4":0.27199,"18.5-18.6":0.66735,"26.0":1.10197,"26.1":1.44126,"26.2":0.04767},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00665,"5.0-5.1":0,"6.0-6.1":0.02661,"7.0-7.1":0.01996,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05987,"10.0-10.2":0.00665,"10.3":0.10644,"11.0-11.2":1.2374,"11.3-11.4":0.03992,"12.0-12.1":0.01331,"12.2-12.5":0.31268,"13.0-13.1":0,"13.2":0.03326,"13.3":0.01331,"13.4-13.7":0.05987,"14.0-14.4":0.09979,"14.5-14.8":0.1264,"15.0-15.1":0.10644,"15.2-15.3":0.08649,"15.4":0.09314,"15.5":0.09979,"15.6-15.8":1.44364,"16.0":0.17962,"16.1":0.33264,"16.2":0.17297,"16.3":0.31933,"16.4":0.07983,"16.5":0.13305,"16.6-16.7":1.94924,"17.0":0.16632,"17.1":0.19958,"17.2":0.14636,"17.3":0.20623,"17.4":0.33929,"17.5":0.64531,"17.6-17.7":1.58334,"18.0":0.35259,"18.1":0.7451,"18.2":0.39916,"18.3":1.29728,"18.4":0.66527,"18.5-18.7":46.45582,"26.0":3.18664,"26.1":2.90723},P:{"25":0.01053,"26":0.02107,"27":0.0316,"28":0.05267,"29":0.6004,_:"4 20 21 22 23 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01053},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.0072,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":5.77349},R:{_:"0"},M:{"0":0.02159}};
Index: node_modules/caniuse-lite/data/regions/BT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00635,"72":0.00318,"115":0.00635,"125":0.00318,"128":0.0413,"140":0.03177,"142":0.00635,"144":0.11755,"145":0.46702,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 133 134 135 136 137 138 139 141 143 146 147 148 3.5 3.6"},D:{"55":0.00635,"60":0.00318,"63":0.00635,"67":0.00318,"68":0.00953,"69":0.01271,"71":0.00318,"72":0.00318,"74":0.00635,"77":0.01906,"79":0.00635,"80":0.00635,"86":0.00953,"94":0.00318,"95":0.00953,"96":0.00318,"97":0.00635,"98":0.36536,"99":0.13979,"100":0.00318,"103":0.02859,"109":0.27958,"111":0.00953,"113":0.00318,"116":0.05401,"119":0.00318,"121":0.00318,"122":0.00953,"123":0.00635,"124":0.01589,"125":0.24781,"126":0.01906,"127":0.04766,"128":0.09849,"129":0.00318,"130":0.01271,"131":0.05719,"132":0.02542,"133":0.02224,"134":0.0413,"135":0.06354,"136":0.00953,"137":0.03812,"138":0.13661,"139":0.10166,"140":0.12708,"141":3.27231,"142":10.63977,"143":0.00953,"144":0.00318,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 61 62 64 65 66 70 73 75 76 78 81 83 84 85 87 88 89 90 91 92 93 101 102 104 105 106 107 108 110 112 114 115 117 118 120 145 146"},F:{"83":0.01271,"84":0.00318,"92":0.09213,"93":0.08896,"95":0.04448,"120":0.00318,"122":0.12073,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00635,"17":0.00635,"92":0.01589,"98":0.05401,"99":0.02224,"109":0.00318,"110":0.00318,"111":0.00318,"114":0.49244,"115":0.00318,"116":0.00635,"117":0.00953,"119":0.00318,"122":0.00318,"123":0.00318,"124":0.00318,"127":0.00635,"128":0.02859,"129":0.01271,"130":0.00318,"131":0.00635,"133":0.00953,"134":0.00318,"135":0.01271,"136":0.01589,"138":0.04766,"139":0.02224,"140":0.05083,"141":0.68623,"142":2.55113,_:"13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 100 101 102 103 104 105 106 107 108 112 113 118 120 121 125 126 132 137 143"},E:{"14":0.00318,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 13.1 15.1 15.2-15.3 15.4 15.5 17.0 17.2 17.3 18.0","11.1":0.00318,"12.1":0.00318,"14.1":0.00953,"15.6":0.02224,"16.0":0.00318,"16.1":0.00318,"16.2":0.00318,"16.3":0.00953,"16.4":0.00318,"16.5":0.00318,"16.6":0.00318,"17.1":0.03177,"17.4":0.00318,"17.5":0.02859,"17.6":0.01271,"18.1":0.00635,"18.2":0.05719,"18.3":0.02224,"18.4":0.01271,"18.5-18.6":0.08896,"26.0":0.18744,"26.1":0.14932,"26.2":0.00953},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00076,"5.0-5.1":0,"6.0-6.1":0.00303,"7.0-7.1":0.00227,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00682,"10.0-10.2":0.00076,"10.3":0.01212,"11.0-11.2":0.14087,"11.3-11.4":0.00454,"12.0-12.1":0.00151,"12.2-12.5":0.0356,"13.0-13.1":0,"13.2":0.00379,"13.3":0.00151,"13.4-13.7":0.00682,"14.0-14.4":0.01136,"14.5-14.8":0.01439,"15.0-15.1":0.01212,"15.2-15.3":0.00985,"15.4":0.0106,"15.5":0.01136,"15.6-15.8":0.16435,"16.0":0.02045,"16.1":0.03787,"16.2":0.01969,"16.3":0.03635,"16.4":0.00909,"16.5":0.01515,"16.6-16.7":0.2219,"17.0":0.01893,"17.1":0.02272,"17.2":0.01666,"17.3":0.02348,"17.4":0.03863,"17.5":0.07346,"17.6-17.7":0.18025,"18.0":0.04014,"18.1":0.08482,"18.2":0.04544,"18.3":0.14768,"18.4":0.07574,"18.5-18.7":5.2886,"26.0":0.36277,"26.1":0.33096},P:{"4":0.01013,"21":0.01013,"23":0.01013,"24":0.01013,"25":0.02027,"26":0.0304,"27":0.05067,"28":0.15201,"29":0.36483,_:"20 22 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.0304},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.48443,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.3275},H:{"0":0},L:{"0":67.25805},R:{_:"0"},M:{"0":0.06823}};
Index: node_modules/caniuse-lite/data/regions/BW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01645,"34":0.00548,"72":0.00548,"102":0.00548,"115":0.03838,"125":0.00548,"127":0.00548,"140":0.03838,"141":0.01097,"142":0.01097,"143":0.0329,"144":0.53733,"145":0.49895,"146":0.07128,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 128 129 130 131 132 133 134 135 136 137 138 139 147 148 3.5 3.6"},D:{"56":0.00548,"57":0.00548,"68":0.00548,"69":0.02193,"73":0.01645,"74":0.00548,"75":0.02193,"78":0.00548,"79":0.01645,"81":0.00548,"83":0.01097,"85":0.00548,"86":0.00548,"87":0.00548,"88":0.00548,"93":0.00548,"95":0.00548,"98":0.03838,"100":0.00548,"101":0.01097,"103":0.01097,"104":0.0329,"106":0.01097,"109":0.47702,"111":0.03838,"112":19.70042,"114":0.01097,"115":0.01645,"116":0.04935,"119":0.0658,"120":0.01645,"122":0.11514,"123":0.00548,"124":0.02742,"125":0.33995,"126":3.58588,"127":0.01645,"128":0.05483,"129":0.00548,"130":0.02193,"131":0.03838,"132":0.03838,"133":0.01645,"134":0.04935,"135":0.04935,"136":0.0658,"137":0.04386,"138":0.16997,"139":0.21932,"140":0.31801,"141":3.60781,"142":9.58977,"143":0.06031,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 58 59 60 61 62 63 64 65 66 67 70 71 72 76 77 80 84 89 90 91 92 94 96 97 99 102 105 107 108 110 113 117 118 121 144 145 146"},F:{"92":0.00548,"95":0.02193,"102":0.01097,"120":0.00548,"122":0.13708,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00548,"14":0.00548,"18":0.02742,"90":0.00548,"92":0.01645,"100":0.00548,"109":0.04386,"114":0.29608,"122":0.01097,"126":0.00548,"128":0.00548,"132":0.00548,"134":0.00548,"136":0.00548,"137":0.00548,"138":0.04386,"139":0.05483,"140":0.0658,"141":0.47154,"142":3.6133,"143":0.01097,_:"13 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 127 129 130 131 133 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.5 17.0 18.2","15.6":0.0329,"16.4":0.00548,"16.6":0.09321,"17.1":0.01645,"17.2":0.02742,"17.3":0.00548,"17.4":0.00548,"17.5":0.01097,"17.6":0.04386,"18.0":0.00548,"18.1":0.00548,"18.3":0.08225,"18.4":0.01645,"18.5-18.6":0.02193,"26.0":0.11514,"26.1":0.09869,"26.2":0.00548},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00037,"5.0-5.1":0,"6.0-6.1":0.00149,"7.0-7.1":0.00112,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00336,"10.0-10.2":0.00037,"10.3":0.00597,"11.0-11.2":0.06941,"11.3-11.4":0.00224,"12.0-12.1":0.00075,"12.2-12.5":0.01754,"13.0-13.1":0,"13.2":0.00187,"13.3":0.00075,"13.4-13.7":0.00336,"14.0-14.4":0.0056,"14.5-14.8":0.00709,"15.0-15.1":0.00597,"15.2-15.3":0.00485,"15.4":0.00522,"15.5":0.0056,"15.6-15.8":0.08098,"16.0":0.01008,"16.1":0.01866,"16.2":0.0097,"16.3":0.01791,"16.4":0.00448,"16.5":0.00746,"16.6-16.7":0.10934,"17.0":0.00933,"17.1":0.0112,"17.2":0.00821,"17.3":0.01157,"17.4":0.01903,"17.5":0.0362,"17.6-17.7":0.08882,"18.0":0.01978,"18.1":0.0418,"18.2":0.02239,"18.3":0.07277,"18.4":0.03732,"18.5-18.7":2.60596,"26.0":0.17876,"26.1":0.16308},P:{"4":0.03115,"22":0.02076,"24":0.05191,"25":0.03115,"26":0.03115,"27":0.10382,"28":0.42565,"29":1.07971,_:"20 21 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.15573,"13.0":0.02076},I:{"0":0.01805,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.64156,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.01355,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01807},O:{"0":0.14006},H:{"0":0},L:{"0":46.12552},R:{_:"0"},M:{"0":0.19879}};
Index: node_modules/caniuse-lite/data/regions/BY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01838,"50":0.00613,"51":0.00613,"52":0.08575,"53":0.00613,"55":0.00613,"56":0.01225,"102":0.00613,"105":0.05513,"108":0.00613,"115":0.42263,"124":0.00613,"125":0.03675,"128":0.01225,"130":0.00613,"135":0.00613,"136":0.01838,"138":0.00613,"140":0.049,"141":0.00613,"142":0.01225,"143":0.03675,"144":0.57575,"145":0.82688,"146":0.00613,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 54 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 107 109 110 111 112 113 114 116 117 118 119 120 121 122 123 126 127 129 131 132 133 134 137 139 147 148 3.5 3.6"},D:{"38":0.00613,"49":0.0245,"53":0.00613,"63":0.00613,"69":0.01838,"70":0.01225,"72":0.00613,"77":0.01225,"79":0.0245,"86":0.00613,"87":0.05513,"88":0.01225,"89":0.04288,"90":0.00613,"95":0.00613,"97":0.00613,"98":0.09188,"99":0.03063,"100":0.00613,"101":0.00613,"102":0.00613,"103":0.01838,"104":0.0735,"106":0.04288,"108":0.03063,"109":3.52188,"111":0.05513,"112":8.87513,"113":0.03675,"114":0.01838,"115":0.00613,"116":0.03063,"118":0.01225,"119":0.01838,"120":0.04288,"121":0.01225,"122":0.04288,"123":1.42713,"124":0.06125,"125":0.3675,"126":1.40263,"127":0.03675,"128":0.06738,"129":0.01225,"130":0.00613,"131":0.06738,"132":0.03675,"133":0.04288,"134":0.17763,"135":0.049,"136":0.03675,"137":0.03675,"138":0.12863,"139":0.13475,"140":0.32463,"141":2.83588,"142":16.513,"143":0.07963,"144":0.00613,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 67 68 71 73 74 75 76 78 80 81 83 84 85 91 92 93 94 96 105 107 110 117 145 146"},F:{"36":0.03675,"42":0.00613,"73":0.22663,"77":0.01225,"79":0.09188,"84":0.00613,"85":0.04288,"86":0.03063,"90":0.00613,"91":0.01838,"92":0.1225,"93":0.01838,"95":0.69825,"114":0.00613,"115":0.00613,"116":0.00613,"117":0.00613,"118":0.00613,"119":0.01225,"120":0.01225,"121":0.03675,"122":1.323,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 78 80 81 82 83 87 88 89 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00613},B:{"18":0.00613,"92":0.00613,"98":0.01225,"99":0.00613,"100":0.00613,"109":0.0245,"114":0.10413,"131":0.01838,"133":0.00613,"134":0.00613,"135":0.00613,"136":0.01225,"138":0.00613,"139":0.01225,"140":0.01225,"141":0.2695,"142":2.4745,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132 137 143"},E:{"13":0.01838,_:"0 4 5 6 7 8 9 10 11 12 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0","5.1":0.00613,"13.1":0.01838,"14.1":0.00613,"15.4":0.01225,"15.5":0.00613,"15.6":0.10413,"16.1":0.03063,"16.2":0.03675,"16.3":0.03063,"16.4":0.00613,"16.5":0.01838,"16.6":0.1715,"17.0":0.01225,"17.1":0.27563,"17.2":0.00613,"17.3":0.0245,"17.4":0.04288,"17.5":0.07963,"17.6":0.12863,"18.0":0.04288,"18.1":0.049,"18.2":0.0245,"18.3":0.06125,"18.4":0.03063,"18.5-18.6":0.17763,"26.0":0.41038,"26.1":0.56963,"26.2":0.01838},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00143,"5.0-5.1":0,"6.0-6.1":0.00571,"7.0-7.1":0.00428,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01284,"10.0-10.2":0.00143,"10.3":0.02283,"11.0-11.2":0.26545,"11.3-11.4":0.00856,"12.0-12.1":0.00285,"12.2-12.5":0.06708,"13.0-13.1":0,"13.2":0.00714,"13.3":0.00285,"13.4-13.7":0.01284,"14.0-14.4":0.02141,"14.5-14.8":0.02712,"15.0-15.1":0.02283,"15.2-15.3":0.01855,"15.4":0.01998,"15.5":0.02141,"15.6-15.8":0.30969,"16.0":0.03853,"16.1":0.07136,"16.2":0.03711,"16.3":0.0685,"16.4":0.01713,"16.5":0.02854,"16.6-16.7":0.41816,"17.0":0.03568,"17.1":0.04281,"17.2":0.0314,"17.3":0.04424,"17.4":0.07279,"17.5":0.13843,"17.6-17.7":0.33966,"18.0":0.07564,"18.1":0.15984,"18.2":0.08563,"18.3":0.2783,"18.4":0.14272,"18.5-18.7":9.96588,"26.0":0.68361,"26.1":0.62367},P:{"4":0.06256,"23":0.01043,"26":0.01043,"27":0.02085,"28":0.17726,"29":0.86546,_:"20 21 22 24 25 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.0387,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.74013,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.098,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.03875},H:{"0":0},L:{"0":22.33575},R:{_:"0"},M:{"0":0.0775}};
Index: node_modules/caniuse-lite/data/regions/BZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/BZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/BZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01793,"115":0.14699,"128":0.01076,"137":0.00359,"139":0.00359,"140":0.06095,"141":0.00359,"142":0.01434,"143":0.01793,"144":0.62379,"145":0.75285,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 138 146 147 148 3.5 3.6"},D:{"69":0.02151,"75":0.00717,"76":0.00359,"87":0.00359,"88":1.15079,"91":0.00717,"92":0.00359,"93":0.03585,"95":0.00359,"103":0.08246,"105":0.00359,"109":0.04661,"111":0.02868,"114":0.00359,"116":0.10397,"118":0.01076,"120":0.00359,"121":0.00359,"122":0.0251,"123":0.02151,"125":0.5019,"126":0.08604,"127":0.05378,"128":0.02151,"130":0.01434,"131":0.00717,"132":0.02868,"133":0.00717,"134":0.01434,"135":0.00717,"136":0.03585,"137":0.01076,"138":0.57002,"139":0.06453,"140":0.1685,"141":2.83215,"142":7.79021,"143":0.01434,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 77 78 79 80 81 83 84 85 86 89 90 94 96 97 98 99 100 101 102 104 106 107 108 110 112 113 115 117 119 124 129 144 145 146"},F:{"92":0.06453,"93":0.01434,"95":0.01076,"117":0.00359,"120":0.00359,"122":0.27605,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00359,"89":0.00359,"92":0.00717,"109":0.01793,"114":0.08246,"122":0.00359,"129":0.00359,"134":0.00359,"136":0.00359,"137":0.00359,"138":0.00717,"139":0.01434,"140":0.00717,"141":0.37284,"142":3.38066,"143":0.00359,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 130 131 132 133 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3","13.1":0.00359,"14.1":0.00359,"15.1":0.05736,"15.4":0.13265,"15.5":0.00359,"15.6":0.32982,"16.0":0.00359,"16.1":0.0251,"16.2":0.00717,"16.3":0.01434,"16.4":0.60228,"16.5":0.00359,"16.6":0.18642,"17.0":0.00717,"17.1":0.5019,"17.2":0.12189,"17.3":0.02868,"17.4":0.03585,"17.5":0.0717,"17.6":0.52341,"18.0":0.05736,"18.1":0.04661,"18.2":0.02868,"18.3":0.13265,"18.4":0.04302,"18.5-18.6":0.62021,"26.0":0.86757,"26.1":0.93927,"26.2":0.05736},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0043,"5.0-5.1":0,"6.0-6.1":0.01722,"7.0-7.1":0.01291,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03873,"10.0-10.2":0.0043,"10.3":0.06886,"11.0-11.2":0.80051,"11.3-11.4":0.02582,"12.0-12.1":0.00861,"12.2-12.5":0.20228,"13.0-13.1":0,"13.2":0.02152,"13.3":0.00861,"13.4-13.7":0.03873,"14.0-14.4":0.06456,"14.5-14.8":0.08177,"15.0-15.1":0.06886,"15.2-15.3":0.05595,"15.4":0.06025,"15.5":0.06456,"15.6-15.8":0.93392,"16.0":0.1162,"16.1":0.21519,"16.2":0.1119,"16.3":0.20658,"16.4":0.05165,"16.5":0.08608,"16.6-16.7":1.26101,"17.0":0.10759,"17.1":0.12911,"17.2":0.09468,"17.3":0.13342,"17.4":0.21949,"17.5":0.41747,"17.6-17.7":1.0243,"18.0":0.2281,"18.1":0.48202,"18.2":0.25823,"18.3":0.83924,"18.4":0.43038,"18.5-18.7":30.05339,"26.0":2.06152,"26.1":1.88076},P:{"4":0.01051,"25":0.01051,"27":0.01051,"28":0.08408,"29":2.37534,_:"20 21 22 23 24 26 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01051},I:{"0":0.1281,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.14752,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01283},H:{"0":0},L:{"0":21.35251},R:{_:"0"},M:{"0":0.16035}};
Index: node_modules/caniuse-lite/data/regions/CA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"44":0.01005,"45":0.00502,"48":0.00502,"52":0.01507,"78":0.0201,"103":0.00502,"107":0.00502,"113":0.00502,"115":0.19594,"123":0.00502,"125":0.01005,"127":0.00502,"128":0.01507,"132":0.00502,"133":0.00502,"134":0.00502,"135":0.01005,"136":0.01005,"137":0.04019,"138":0.00502,"139":0.01005,"140":0.08038,"141":0.0201,"142":0.03014,"143":0.04522,"144":1.00982,"145":1.26102,"146":0.00502,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 108 109 110 111 112 114 116 117 118 119 120 121 122 124 126 129 130 131 147 148 3.5 3.6"},D:{"39":0.01507,"40":0.01507,"41":0.01507,"42":0.01507,"43":0.01507,"44":0.01507,"45":0.01507,"46":0.01507,"47":0.0201,"48":0.05024,"49":0.04019,"50":0.01507,"51":0.01507,"52":0.01507,"53":0.01507,"54":0.01507,"55":0.01507,"56":0.01507,"57":0.01507,"58":0.01507,"59":0.01507,"60":0.01507,"66":0.00502,"68":0.01507,"76":0.00502,"79":0.01507,"80":0.01005,"81":0.02512,"83":0.09043,"84":0.00502,"85":0.01005,"87":0.02512,"88":0.00502,"91":0.00502,"93":0.0201,"97":0.00502,"98":0.00502,"99":0.04019,"102":0.00502,"103":0.12058,"104":0.03517,"108":0.00502,"109":0.50742,"110":0.00502,"111":0.00502,"112":0.00502,"113":0.00502,"114":0.06531,"116":0.17082,"117":0.04522,"118":0.07034,"119":0.05526,"120":0.06531,"121":0.01507,"122":0.04019,"123":0.0201,"124":0.05024,"125":0.04522,"126":0.09546,"127":0.01507,"128":0.12058,"129":0.01507,"130":1.10528,"131":0.06531,"132":0.09043,"133":0.04019,"134":0.04019,"135":0.06029,"136":0.06531,"137":0.19091,"138":0.35168,"139":0.37178,"140":0.61795,"141":4.82304,"142":16.33302,"143":0.03517,"144":0.01005,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 67 69 70 71 72 73 74 75 77 78 86 89 90 92 94 95 96 100 101 105 106 107 115 145 146"},F:{"89":0.00502,"92":0.01507,"93":0.00502,"95":0.0201,"119":0.00502,"120":0.00502,"122":0.27632,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00502,"85":0.00502,"108":0.00502,"109":0.05526,"111":0.00502,"114":0.00502,"120":0.01005,"125":0.00502,"126":0.00502,"127":0.00502,"128":0.00502,"129":0.00502,"130":0.00502,"131":0.01005,"132":0.00502,"133":0.00502,"134":0.01507,"135":0.01005,"136":0.00502,"137":0.01005,"138":0.0201,"139":0.03014,"140":0.05526,"141":0.82394,"142":6.54627,"143":0.01005,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 112 113 115 116 117 118 119 121 122 123 124"},E:{"9":0.00502,"14":0.0201,"15":0.00502,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00502,"12.1":0.00502,"13.1":0.07034,"14.1":0.05526,"15.1":0.00502,"15.2-15.3":0.00502,"15.4":0.01507,"15.5":0.0201,"15.6":0.33661,"16.0":0.01005,"16.1":0.04019,"16.2":0.02512,"16.3":0.06531,"16.4":0.02512,"16.5":0.03517,"16.6":0.46221,"17.0":0.01005,"17.1":0.40694,"17.2":0.02512,"17.3":0.03014,"17.4":0.07536,"17.5":0.09546,"17.6":0.41197,"18.0":0.03014,"18.1":0.08541,"18.2":0.03014,"18.3":0.16077,"18.4":0.08541,"18.5-18.6":0.29139,"26.0":0.5225,"26.1":0.67322,"26.2":0.02512},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00251,"5.0-5.1":0,"6.0-6.1":0.01006,"7.0-7.1":0.00754,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02262,"10.0-10.2":0.00251,"10.3":0.04022,"11.0-11.2":0.46758,"11.3-11.4":0.01508,"12.0-12.1":0.00503,"12.2-12.5":0.11815,"13.0-13.1":0,"13.2":0.01257,"13.3":0.00503,"13.4-13.7":0.02262,"14.0-14.4":0.03771,"14.5-14.8":0.04776,"15.0-15.1":0.04022,"15.2-15.3":0.03268,"15.4":0.03519,"15.5":0.03771,"15.6-15.8":0.54551,"16.0":0.06787,"16.1":0.12569,"16.2":0.06536,"16.3":0.12067,"16.4":0.03017,"16.5":0.05028,"16.6-16.7":0.73657,"17.0":0.06285,"17.1":0.07542,"17.2":0.05531,"17.3":0.07793,"17.4":0.12821,"17.5":0.24385,"17.6-17.7":0.5983,"18.0":0.13324,"18.1":0.28155,"18.2":0.15083,"18.3":0.49021,"18.4":0.25139,"18.5-18.7":17.55444,"26.0":1.20415,"26.1":1.09857},P:{"4":0.0109,"21":0.05448,"22":0.0109,"23":0.0109,"24":0.0109,"25":0.0109,"26":0.04358,"27":0.04358,"28":0.16343,"29":2.03748,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","7.2-7.4":0.0109,"16.0":0.0109},I:{"0":0.01988,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.13438,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0067,"9":0.0067,"10":0.0067,"11":0.08038,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00498},O:{"0":0.02986},H:{"0":0},L:{"0":23.42991},R:{_:"0"},M:{"0":0.44295}};
Index: node_modules/caniuse-lite/data/regions/CD.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.00563,"5":0.00281,"47":0.00281,"48":0.00281,"50":0.00281,"56":0.00281,"58":0.00281,"67":0.00281,"68":0.00281,"82":0.00281,"100":0.00281,"112":0.00281,"115":0.06754,"127":0.01407,"128":0.00844,"130":0.00281,"133":0.00281,"134":0.00281,"135":0.00281,"137":0.00281,"138":0.00281,"139":0.00281,"140":0.02533,"141":0.00844,"142":0.01126,"143":0.0197,"144":0.39959,"145":0.41647,"146":0.00281,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 51 52 53 54 55 57 59 60 61 62 63 64 65 66 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 131 132 136 147 148 3.5 3.6"},D:{"43":0.00281,"49":0.00281,"64":0.00563,"66":0.00281,"69":0.01126,"70":0.00563,"71":0.00281,"73":0.00563,"74":0.04784,"75":0.00281,"77":0.00563,"78":0.00281,"79":0.04502,"81":0.00563,"83":0.00563,"86":0.00844,"87":0.0197,"88":0.01126,"89":0.00281,"90":0.00281,"91":0.00281,"92":0.00281,"93":0.00281,"95":0.00281,"96":0.00563,"97":0.00281,"98":0.00844,"99":0.00281,"100":0.00844,"103":0.02251,"105":0.00281,"106":0.07316,"108":0.00844,"109":0.14914,"110":0.00281,"111":0.0197,"112":0.01407,"114":0.0197,"115":0.00563,"116":0.03377,"117":0.00281,"118":0.00563,"119":0.03377,"120":0.02251,"121":0.00281,"122":0.02533,"123":0.00281,"124":0.01126,"125":0.07316,"126":0.09005,"127":0.01126,"128":0.02251,"129":0.00844,"130":0.0197,"131":0.03377,"132":0.02251,"133":0.01688,"134":0.02814,"135":0.03377,"136":0.0197,"137":0.06191,"138":0.25326,"139":0.15477,"140":0.27577,"141":1.82347,"142":4.51928,"143":0.00281,"144":0.00281,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 67 68 72 76 80 84 85 94 101 102 104 107 113 145 146"},F:{"34":0.00281,"40":0.00281,"42":0.00281,"46":0.00281,"62":0.00281,"79":0.01688,"87":0.00281,"89":0.00844,"90":0.01688,"91":0.04784,"92":0.09286,"93":0.00563,"95":0.03377,"101":0.00563,"102":0.00844,"113":0.00281,"114":0.00281,"116":0.00281,"117":0.00563,"118":0.00281,"119":0.00563,"120":0.02251,"121":0.00281,"122":0.32361,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 88 94 96 97 98 99 100 103 104 105 106 107 108 109 110 111 112 115 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01688,"13":0.00563,"14":0.01407,"15":0.00281,"16":0.00844,"17":0.02251,"18":0.06472,"84":0.01126,"89":0.00844,"90":0.0197,"92":0.08442,"100":0.00844,"109":0.00563,"114":0.08723,"117":0.00281,"122":0.01407,"125":0.00281,"126":0.00563,"128":0.00281,"129":0.00844,"130":0.00281,"131":0.0197,"132":0.01126,"133":0.00563,"134":0.00281,"135":0.01126,"136":0.00844,"137":0.00563,"138":0.04221,"139":0.02533,"140":0.05628,"141":0.33768,"142":2.09924,"143":0.00281,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 118 119 120 121 123 124 127"},E:{"11":0.00281,"12":0.00563,"13":0.00281,"14":0.00281,_:"0 4 5 6 7 8 9 10 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.5 17.0 17.2 17.3","5.1":0.00563,"11.1":0.01407,"13.1":0.0394,"14.1":0.00563,"15.6":0.04784,"16.1":0.01688,"16.4":0.00281,"16.6":0.04502,"17.1":0.01126,"17.4":0.00281,"17.5":0.01407,"17.6":0.06191,"18.0":0.00844,"18.1":0.01126,"18.2":0.00281,"18.3":0.00281,"18.4":0.04221,"18.5-18.6":0.05065,"26.0":0.09568,"26.1":0.07316,"26.2":0.00281},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00085,"5.0-5.1":0,"6.0-6.1":0.00341,"7.0-7.1":0.00256,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00767,"10.0-10.2":0.00085,"10.3":0.01364,"11.0-11.2":0.15852,"11.3-11.4":0.00511,"12.0-12.1":0.0017,"12.2-12.5":0.04006,"13.0-13.1":0,"13.2":0.00426,"13.3":0.0017,"13.4-13.7":0.00767,"14.0-14.4":0.01278,"14.5-14.8":0.01619,"15.0-15.1":0.01364,"15.2-15.3":0.01108,"15.4":0.01193,"15.5":0.01278,"15.6-15.8":0.18494,"16.0":0.02301,"16.1":0.04261,"16.2":0.02216,"16.3":0.04091,"16.4":0.01023,"16.5":0.01705,"16.6-16.7":0.24971,"17.0":0.02131,"17.1":0.02557,"17.2":0.01875,"17.3":0.02642,"17.4":0.04347,"17.5":0.08267,"17.6-17.7":0.20284,"18.0":0.04517,"18.1":0.09545,"18.2":0.05114,"18.3":0.16619,"18.4":0.08523,"18.5-18.7":5.95133,"26.0":0.40823,"26.1":0.37244},P:{"4":0.01042,"21":0.01042,"22":0.01042,"24":0.03126,"25":0.03126,"26":0.02084,"27":0.08336,"28":0.34385,"29":0.64602,_:"20 23 5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0","7.2-7.4":0.02084,"9.2":0.01042,"16.0":0.02084,"19.0":0.01042},I:{"0":0.07176,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":7.57226,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03095,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.03593},O:{"0":0.38086},H:{"0":2.56},L:{"0":63.78389},R:{_:"0"},M:{"0":0.12216}};
Index: node_modules/caniuse-lite/data/regions/CF.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"72":0.01129,"115":0.12193,"127":0.02258,"132":0.02935,"134":0.01806,"143":0.02258,"144":1.53092,"145":0.37934,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 128 129 130 131 133 135 136 137 138 139 140 141 142 146 147 148 3.5 3.6"},D:{"46":0.06322,"52":0.02258,"69":0.00677,"71":0.00677,"76":0.12193,"78":0.00677,"86":0.02935,"91":0.12193,"99":0.01129,"106":0.08129,"109":0.12871,"111":0.06322,"117":0.01806,"120":0.02935,"122":0.00677,"124":0.16935,"125":0.27322,"126":0.01129,"127":0.00677,"131":0.01806,"132":0.01806,"133":0.04742,"134":0.02935,"135":0.08806,"137":0.04064,"138":0.15129,"139":0.07,"140":0.16258,"141":0.48999,"142":3.25604,"143":0.03387,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 72 73 74 75 77 79 80 81 83 84 85 87 88 89 90 92 93 94 95 96 97 98 100 101 102 103 104 105 107 108 110 112 113 114 115 116 118 119 121 123 128 129 130 136 144 145 146"},F:{"48":0.01806,"89":0.01129,"91":0.11064,"92":0.01129,"117":0.00677,"120":0.01806,"122":0.08806,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02935,"17":0.00677,"18":0.04742,"89":0.01806,"90":0.01806,"92":0.04742,"114":0.02258,"118":0.04742,"122":0.00677,"126":0.00677,"127":0.01129,"131":0.01806,"133":0.06322,"137":0.01806,"138":0.02258,"139":0.00677,"140":0.19193,"141":0.53063,"142":1.41577,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 119 120 121 123 124 125 128 129 130 132 134 135 136 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.0 26.1 26.2","15.6":0.01129},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0003,"5.0-5.1":0,"6.0-6.1":0.00121,"7.0-7.1":0.00091,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00273,"10.0-10.2":0.0003,"10.3":0.00486,"11.0-11.2":0.05645,"11.3-11.4":0.00182,"12.0-12.1":0.00061,"12.2-12.5":0.01426,"13.0-13.1":0,"13.2":0.00152,"13.3":0.00061,"13.4-13.7":0.00273,"14.0-14.4":0.00455,"14.5-14.8":0.00577,"15.0-15.1":0.00486,"15.2-15.3":0.00395,"15.4":0.00425,"15.5":0.00455,"15.6-15.8":0.06586,"16.0":0.00819,"16.1":0.01517,"16.2":0.00789,"16.3":0.01457,"16.4":0.00364,"16.5":0.00607,"16.6-16.7":0.08892,"17.0":0.00759,"17.1":0.0091,"17.2":0.00668,"17.3":0.00941,"17.4":0.01548,"17.5":0.02944,"17.6-17.7":0.07223,"18.0":0.01608,"18.1":0.03399,"18.2":0.01821,"18.3":0.05918,"18.4":0.03035,"18.5-18.7":2.11925,"26.0":0.14537,"26.1":0.13262},P:{"21":0.01002,"24":0.03005,"25":0.05008,"26":0.02003,"27":0.05008,"28":0.4307,"29":0.7412,_:"4 20 22 23 6.2-6.4 8.2 10.1 11.1-11.2 13.0 14.0 15.0 16.0 18.0","5.0-5.4":0.12019,"7.2-7.4":0.02003,"9.2":0.01002,"12.0":0.03005,"17.0":0.08013,"19.0":0.01002},I:{"0":0.03866,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":1.18658,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.10065,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.51871},O:{"0":0.17807},H:{"0":14.22},L:{"0":64.72981},R:{_:"0"},M:{"0":0.54194}};
Index: node_modules/caniuse-lite/data/regions/CG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.04096,"115":0.05266,"125":0.00585,"127":0.0117,"139":0.00585,"140":0.0234,"141":0.00585,"142":0.0117,"143":0.0234,"144":0.44468,"145":0.45053,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 128 129 130 131 132 133 134 135 136 137 138 146 147 148 3.5 3.6"},D:{"27":0.00585,"56":0.00585,"58":0.00585,"63":0.00585,"64":0.00585,"65":0.00585,"66":0.00585,"68":0.00585,"69":0.04096,"72":0.00585,"73":0.05266,"74":0.00585,"75":0.01755,"78":0.00585,"79":0.03511,"81":0.0117,"83":0.02926,"86":0.0117,"87":0.04096,"88":0.00585,"89":0.00585,"90":0.00585,"93":0.00585,"95":0.0234,"98":0.07021,"100":0.00585,"101":0.00585,"102":0.00585,"103":0.06436,"104":0.00585,"106":0.00585,"108":0.0234,"109":0.52074,"111":0.04096,"112":21.3386,"113":0.00585,"114":0.03511,"116":0.02926,"119":0.05266,"120":0.03511,"121":0.00585,"122":0.09947,"123":0.0117,"124":0.0117,"125":0.39787,"126":9.06905,"127":0.00585,"128":0.0117,"129":0.0117,"130":0.0117,"131":0.01755,"132":0.05851,"133":0.01755,"134":0.02926,"135":0.0234,"136":0.01755,"137":0.05266,"138":0.17553,"139":0.08191,"140":0.23404,"141":1.86647,"142":5.74568,"143":0.01755,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 59 60 61 62 67 70 71 76 77 80 84 85 91 92 94 96 97 99 105 107 110 115 117 118 144 145 146"},F:{"36":0.00585,"46":0.00585,"63":0.00585,"79":0.00585,"91":0.00585,"92":0.0117,"95":0.04096,"102":0.00585,"109":0.00585,"110":0.00585,"111":0.00585,"119":0.0117,"120":0.01755,"122":0.50319,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 93 94 96 97 98 99 100 101 103 104 105 106 107 108 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00585,"14":0.00585,"15":0.00585,"16":0.00585,"17":0.0234,"18":0.03511,"84":0.00585,"85":0.00585,"88":0.00585,"89":0.00585,"92":0.07021,"100":0.00585,"109":0.0117,"113":0.00585,"114":1.05318,"120":0.00585,"122":0.0117,"124":0.00585,"128":0.0117,"131":0.0117,"133":0.01755,"134":0.00585,"135":0.00585,"136":0.00585,"138":0.05851,"139":0.01755,"140":0.08191,"141":0.2984,"142":3.36433,"143":0.0234,_:"12 79 80 81 83 86 87 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 119 121 123 125 126 127 129 130 132 137"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 16.5 17.0 17.2 17.3 18.0 18.1 18.2 26.2","9.1":0.00585,"13.1":0.00585,"14.1":0.00585,"15.6":0.08191,"16.3":0.00585,"16.6":0.0234,"17.1":0.00585,"17.4":0.00585,"17.5":0.0117,"17.6":0.15798,"18.3":0.00585,"18.4":0.00585,"18.5-18.6":0.07021,"26.0":0.12287,"26.1":0.09362},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0005,"5.0-5.1":0,"6.0-6.1":0.002,"7.0-7.1":0.0015,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0045,"10.0-10.2":0.0005,"10.3":0.00799,"11.0-11.2":0.09291,"11.3-11.4":0.003,"12.0-12.1":0.001,"12.2-12.5":0.02348,"13.0-13.1":0,"13.2":0.0025,"13.3":0.001,"13.4-13.7":0.0045,"14.0-14.4":0.00749,"14.5-14.8":0.00949,"15.0-15.1":0.00799,"15.2-15.3":0.00649,"15.4":0.00699,"15.5":0.00749,"15.6-15.8":0.1084,"16.0":0.01349,"16.1":0.02498,"16.2":0.01299,"16.3":0.02398,"16.4":0.00599,"16.5":0.00999,"16.6-16.7":0.14637,"17.0":0.01249,"17.1":0.01499,"17.2":0.01099,"17.3":0.01549,"17.4":0.02548,"17.5":0.04846,"17.6-17.7":0.11889,"18.0":0.02648,"18.1":0.05595,"18.2":0.02997,"18.3":0.09741,"18.4":0.04995,"18.5-18.7":3.48829,"26.0":0.23928,"26.1":0.2183},P:{"4":0.01058,"23":0.01058,"26":0.03175,"27":0.01058,"28":0.05292,"29":0.37045,_:"20 21 22 24 25 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02117,"8.2":0.01058},I:{"0":0.12015,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.6581,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.01245,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.15766},H:{"0":0.18},L:{"0":42.63289},R:{_:"0"},M:{"0":0.09958}};
Index: node_modules/caniuse-lite/data/regions/CH.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.01572,"52":0.01572,"77":0.00524,"78":0.0262,"84":0.00524,"115":0.42444,"125":0.01048,"126":0.00524,"127":0.00524,"128":0.04716,"129":0.00524,"132":0.01572,"133":0.00524,"134":0.01048,"135":0.00524,"136":0.02096,"137":0.01048,"138":0.0262,"139":0.01572,"140":0.36156,"141":0.01572,"142":0.03668,"143":0.07336,"144":2.12744,"145":2.61476,"146":0.01048,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 130 131 147 148 3.5 3.6"},D:{"39":0.02096,"40":0.02096,"41":0.0262,"42":0.02096,"43":0.02096,"44":0.02096,"45":0.02096,"46":0.02096,"47":0.02096,"48":0.02096,"49":0.03668,"50":0.02096,"51":0.02096,"52":0.42444,"53":0.02096,"54":0.02096,"55":0.0262,"56":0.02096,"57":0.02096,"58":0.02096,"59":0.02096,"60":0.02096,"74":0.00524,"79":0.01572,"80":0.03144,"87":0.0262,"88":0.00524,"90":0.00524,"91":0.00524,"98":0.01048,"99":0.00524,"100":0.00524,"102":0.00524,"103":0.04716,"104":0.01572,"105":0.00524,"108":0.01048,"109":0.33536,"110":0.06812,"111":0.00524,"112":0.00524,"114":0.03144,"116":0.08908,"118":0.05764,"119":0.00524,"120":0.02096,"121":0.00524,"122":0.06288,"123":0.01048,"124":0.0262,"125":0.04192,"126":0.03144,"127":0.01572,"128":0.06812,"129":0.02096,"130":0.27772,"131":0.09432,"132":0.03668,"133":0.16768,"134":0.04716,"135":0.1572,"136":0.03668,"137":0.07336,"138":0.17292,"139":0.26724,"140":0.4978,"141":5.20856,"142":12.93232,"143":0.03144,"144":0.00524,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 81 83 84 85 86 89 92 93 94 95 96 97 101 106 107 113 115 117 145 146"},F:{"46":0.00524,"87":0.00524,"92":0.05764,"93":0.00524,"95":0.1572,"102":0.01048,"114":0.00524,"120":0.01048,"122":0.62356,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00524,"109":0.07336,"115":0.00524,"120":0.01048,"122":0.00524,"125":0.00524,"126":0.00524,"129":0.00524,"130":0.01048,"131":0.01572,"132":0.00524,"133":0.00524,"134":0.01572,"135":0.00524,"136":0.0262,"137":0.01048,"138":0.03144,"139":0.0262,"140":0.14672,"141":1.04276,"142":9.42152,"143":0.03144,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 117 118 119 121 123 124 127 128"},E:{"14":0.01048,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01048,"12.1":0.02096,"13.1":0.06288,"14.1":0.03668,"15.1":0.01572,"15.2-15.3":0.00524,"15.4":0.00524,"15.5":0.00524,"15.6":0.2358,"16.0":0.02096,"16.1":0.05764,"16.2":0.14148,"16.3":0.04716,"16.4":0.01048,"16.5":0.06288,"16.6":0.37728,"17.0":0.01572,"17.1":0.2096,"17.2":0.02096,"17.3":0.03668,"17.4":0.06288,"17.5":0.09432,"17.6":0.45588,"18.0":0.04192,"18.1":0.11528,"18.2":0.04192,"18.3":0.14672,"18.4":0.08384,"18.5-18.6":0.32488,"26.0":0.79124,"26.1":0.87508,"26.2":0.02096},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00204,"5.0-5.1":0,"6.0-6.1":0.00815,"7.0-7.1":0.00611,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01834,"10.0-10.2":0.00204,"10.3":0.0326,"11.0-11.2":0.37902,"11.3-11.4":0.01223,"12.0-12.1":0.00408,"12.2-12.5":0.09577,"13.0-13.1":0,"13.2":0.01019,"13.3":0.00408,"13.4-13.7":0.01834,"14.0-14.4":0.03057,"14.5-14.8":0.03872,"15.0-15.1":0.0326,"15.2-15.3":0.02649,"15.4":0.02853,"15.5":0.03057,"15.6-15.8":0.44219,"16.0":0.05502,"16.1":0.10189,"16.2":0.05298,"16.3":0.09781,"16.4":0.02445,"16.5":0.04076,"16.6-16.7":0.59706,"17.0":0.05094,"17.1":0.06113,"17.2":0.04483,"17.3":0.06317,"17.4":0.10393,"17.5":0.19766,"17.6-17.7":0.48499,"18.0":0.108,"18.1":0.22823,"18.2":0.12227,"18.3":0.39736,"18.4":0.20378,"18.5-18.7":14.22965,"26.0":0.97609,"26.1":0.8905},P:{"4":0.03122,"21":0.01041,"22":0.01041,"23":0.01041,"24":0.01041,"25":0.02081,"26":0.03122,"27":0.03122,"28":0.33298,"29":3.03843,_:"20 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.02081,"7.2-7.4":0.02081,"14.0":0.01041},I:{"0":0.01426,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.33796,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.16244,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00476},O:{"0":0.07616},H:{"0":0},L:{"0":23.73092},R:{_:"0"},M:{"0":0.78064}};
Index: node_modules/caniuse-lite/data/regions/CI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01568,"68":0.00392,"98":0.00392,"106":0.00392,"113":0.00392,"114":0.00392,"115":0.06666,"120":0.00392,"122":0.00392,"123":0.00392,"125":0.00392,"126":0.00392,"127":0.02745,"128":0.00392,"129":0.00392,"137":0.00392,"139":0.00784,"140":0.03921,"141":0.00784,"142":0.01176,"143":0.04313,"144":0.71754,"145":0.81557,"146":0.00392,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 107 108 109 110 111 112 116 117 118 119 121 124 130 131 132 133 134 135 136 138 147 148 3.5 3.6"},D:{"47":0.00392,"55":0.00392,"56":0.00392,"59":0.00392,"64":0.00392,"65":0.00784,"66":0.00392,"67":0.01176,"68":0.00392,"69":0.01961,"70":0.00392,"72":0.00392,"73":0.00784,"74":0.00392,"75":0.01176,"79":0.01568,"80":0.00392,"81":0.00392,"83":0.01176,"85":0.00784,"86":0.00784,"87":0.03137,"88":0.00392,"89":0.00392,"90":0.00392,"91":0.00392,"93":0.00392,"94":0.02353,"95":0.01176,"97":0.00392,"98":0.02353,"99":0.00392,"103":0.02353,"104":0.01176,"105":0.00392,"106":0.00392,"107":0.00392,"108":0.00784,"109":0.71362,"110":0.00392,"111":0.02353,"112":6.06579,"113":0.01176,"114":0.01176,"116":0.05489,"119":0.05489,"120":0.00784,"121":0.00784,"122":0.05097,"123":0.00392,"124":0.01176,"125":0.2235,"126":2.27418,"127":0.02745,"128":0.03921,"129":0.02353,"130":0.01961,"131":0.04705,"132":0.03137,"133":0.01961,"134":0.0745,"135":0.02353,"136":0.03137,"137":0.06274,"138":0.24702,"139":0.12939,"140":0.25879,"141":2.83096,"142":7.37932,"143":0.08234,"144":0.01176,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 57 58 60 61 62 63 71 76 77 78 84 92 96 100 101 102 115 117 118 145 146"},F:{"37":0.00392,"89":0.00392,"92":0.01568,"95":0.01961,"102":0.00392,"119":0.00392,"120":0.00784,"122":0.18429,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00392,"13":0.00392,"14":0.00392,"17":0.00392,"18":0.01176,"85":0.00784,"89":0.00392,"90":0.00784,"92":0.05882,"100":0.00784,"103":0.00392,"109":0.01176,"113":0.00392,"114":0.2431,"122":0.01176,"124":0.00392,"125":0.00392,"126":0.01961,"129":0.00392,"131":0.00392,"132":0.00392,"133":0.00784,"134":0.00392,"136":0.00784,"137":0.00392,"138":0.09018,"139":0.01961,"140":0.03921,"141":0.34113,"142":3.80337,"143":0.01176,_:"15 16 79 80 81 83 84 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 106 107 108 110 111 112 115 116 117 118 119 120 121 123 127 128 130 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 16.5 17.0 17.2 17.3","5.1":0.00392,"11.1":0.00392,"12.1":0.00392,"13.1":0.00784,"14.1":0.00392,"15.6":0.05489,"16.3":0.00392,"16.6":0.03529,"17.1":0.00392,"17.4":0.00392,"17.5":0.01176,"17.6":0.07842,"18.0":0.00392,"18.1":0.00392,"18.2":0.00784,"18.3":0.01176,"18.4":0.03137,"18.5-18.6":0.04313,"26.0":0.14508,"26.1":0.18037,"26.2":0.01568},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00128,"5.0-5.1":0,"6.0-6.1":0.00512,"7.0-7.1":0.00384,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01153,"10.0-10.2":0.00128,"10.3":0.02049,"11.0-11.2":0.23824,"11.3-11.4":0.00769,"12.0-12.1":0.00256,"12.2-12.5":0.0602,"13.0-13.1":0,"13.2":0.0064,"13.3":0.00256,"13.4-13.7":0.01153,"14.0-14.4":0.01921,"14.5-14.8":0.02434,"15.0-15.1":0.02049,"15.2-15.3":0.01665,"15.4":0.01793,"15.5":0.01921,"15.6-15.8":0.27794,"16.0":0.03458,"16.1":0.06404,"16.2":0.0333,"16.3":0.06148,"16.4":0.01537,"16.5":0.02562,"16.6-16.7":0.37529,"17.0":0.03202,"17.1":0.03843,"17.2":0.02818,"17.3":0.03971,"17.4":0.06532,"17.5":0.12424,"17.6-17.7":0.30484,"18.0":0.06788,"18.1":0.14345,"18.2":0.07685,"18.3":0.24976,"18.4":0.12808,"18.5-18.7":8.94414,"26.0":0.61352,"26.1":0.55973},P:{"22":0.02062,"23":0.01031,"24":0.03092,"25":0.04123,"26":0.01031,"27":0.10308,"28":0.23708,"29":0.88648,_:"4 20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.07216,"19.0":0.01031},I:{"0":0.09713,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":0.83793,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.02432},O:{"0":0.15198},H:{"0":0.08},L:{"0":54.22111},R:{_:"0"},M:{"0":0.06687}};
Index: node_modules/caniuse-lite/data/regions/CK.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.12156,"143":0.02431,"144":0.257,"145":0.3473,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 146 147 148 3.5 3.6"},D:{"79":0.11114,"87":0.01042,"103":0.02084,"109":0.00695,"116":0.04168,"120":0.00347,"122":0.01042,"125":0.09724,"126":0.00347,"128":0.00347,"131":0.00347,"133":0.00695,"134":0.02431,"136":0.00695,"137":0.02084,"138":0.05904,"139":0.05904,"140":0.18754,"141":3.94533,"142":18.4451,"143":0.00695,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 112 113 114 115 117 118 119 121 123 124 127 129 130 132 135 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.01389,"135":0.00347,"138":0.00347,"139":0.02084,"140":0.01389,"141":0.36814,"142":3.31672,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 136 137 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 16.0 16.1 16.4 17.0 17.3 18.0 18.1","15.5":0.01389,"15.6":0.04168,"16.2":0.02084,"16.3":0.09377,"16.5":0.01389,"16.6":0.06599,"17.1":0.03126,"17.2":0.02431,"17.4":0.08335,"17.5":0.00695,"17.6":0.17365,"18.2":0.15629,"18.3":0.02778,"18.4":0.01389,"18.5-18.6":0.03473,"26.0":0.11461,"26.1":0.12503,"26.2":0.00347},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00233,"5.0-5.1":0,"6.0-6.1":0.00932,"7.0-7.1":0.00699,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02098,"10.0-10.2":0.00233,"10.3":0.03729,"11.0-11.2":0.43353,"11.3-11.4":0.01398,"12.0-12.1":0.00466,"12.2-12.5":0.10955,"13.0-13.1":0,"13.2":0.01165,"13.3":0.00466,"13.4-13.7":0.02098,"14.0-14.4":0.03496,"14.5-14.8":0.04429,"15.0-15.1":0.03729,"15.2-15.3":0.0303,"15.4":0.03263,"15.5":0.03496,"15.6-15.8":0.50578,"16.0":0.06293,"16.1":0.11654,"16.2":0.0606,"16.3":0.11188,"16.4":0.02797,"16.5":0.04662,"16.6-16.7":0.68292,"17.0":0.05827,"17.1":0.06992,"17.2":0.05128,"17.3":0.07225,"17.4":0.11887,"17.5":0.22609,"17.6-17.7":0.55473,"18.0":0.12353,"18.1":0.26105,"18.2":0.13985,"18.3":0.4545,"18.4":0.23308,"18.5-18.7":16.27592,"26.0":1.11645,"26.1":1.01856},P:{"4":13.94473,"21":0.03034,"22":0.04045,"23":0.02022,"24":0.09101,"25":0.01011,"26":0.0809,"27":0.06067,"28":0.45505,"29":3.00332,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01011},I:{"0":0.00652,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.05874,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":28.77581},R:{_:"0"},M:{"0":0.13707}};
Index: node_modules/caniuse-lite/data/regions/CL.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"3":0.00781,"4":0.00781,"5":0.0039,"52":0.0039,"115":0.02342,"118":0.00781,"119":0.0039,"120":0.00781,"125":0.0039,"128":0.0039,"136":0.0039,"140":0.00781,"141":0.0039,"142":0.00781,"143":0.01171,"144":0.28499,"145":0.25376,"146":0.0039,_:"2 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 121 122 123 124 126 127 129 130 131 132 133 134 135 137 138 139 147 148 3.5 3.6"},D:{"29":0.01562,"38":0.0039,"39":0.00781,"40":0.00781,"41":0.00781,"42":0.00781,"43":0.00781,"44":0.00781,"45":0.00781,"46":0.00781,"47":0.01171,"48":0.03123,"49":0.01171,"50":0.00781,"51":0.00781,"52":0.00781,"53":0.00781,"54":0.00781,"55":0.01171,"56":0.00781,"57":0.00781,"58":0.01171,"59":0.00781,"60":0.00781,"69":0.00781,"74":0.0039,"79":0.01952,"83":0.0039,"87":0.00781,"97":0.0039,"102":0.0039,"103":0.01171,"104":0.0039,"108":0.00781,"109":0.24595,"110":0.0039,"111":0.01952,"112":7.67526,"114":0.01171,"116":0.03904,"117":0.0039,"119":0.03123,"120":0.01171,"121":0.00781,"122":0.03123,"123":0.0039,"124":0.01171,"125":1.49133,"126":1.04627,"127":0.00781,"128":0.07027,"129":0.01171,"130":0.00781,"131":0.03904,"132":0.01952,"133":0.02342,"134":0.02342,"135":0.01952,"136":0.01562,"137":0.02733,"138":0.16006,"139":4.01722,"140":0.17178,"141":2.50637,"142":8.53024,"143":0.01171,"144":0.0039,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 61 62 63 64 65 66 67 68 70 71 72 73 75 76 77 78 80 81 84 85 86 88 89 90 91 92 93 94 95 96 98 99 100 101 105 106 107 113 115 118 145 146"},F:{"92":0.00781,"95":0.0039,"119":0.0039,"120":0.0039,"122":0.63245,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.0039,"109":0.00781,"114":0.01171,"131":0.0039,"133":0.0039,"134":0.0039,"135":0.0039,"136":0.0039,"137":0.0039,"138":0.01171,"139":0.00781,"140":0.01562,"141":0.25376,"142":1.80365,"143":0.0039,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132"},E:{"4":0.01171,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 17.0","13.1":0.00781,"14.1":0.0039,"15.6":0.01562,"16.3":0.0039,"16.4":0.01952,"16.5":0.0039,"16.6":0.01562,"17.1":0.00781,"17.2":0.0039,"17.3":0.0039,"17.4":0.00781,"17.5":0.01171,"17.6":0.03123,"18.0":0.0039,"18.1":0.0039,"18.2":0.00781,"18.3":0.01562,"18.4":0.01952,"18.5-18.6":0.03904,"26.0":0.07027,"26.1":0.0937,"26.2":0.0039},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0003,"5.0-5.1":0,"6.0-6.1":0.00119,"7.0-7.1":0.00089,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00268,"10.0-10.2":0.0003,"10.3":0.00476,"11.0-11.2":0.05534,"11.3-11.4":0.00179,"12.0-12.1":0.0006,"12.2-12.5":0.01398,"13.0-13.1":0,"13.2":0.00149,"13.3":0.0006,"13.4-13.7":0.00268,"14.0-14.4":0.00446,"14.5-14.8":0.00565,"15.0-15.1":0.00476,"15.2-15.3":0.00387,"15.4":0.00417,"15.5":0.00446,"15.6-15.8":0.06456,"16.0":0.00803,"16.1":0.01488,"16.2":0.00774,"16.3":0.01428,"16.4":0.00357,"16.5":0.00595,"16.6-16.7":0.08718,"17.0":0.00744,"17.1":0.00893,"17.2":0.00655,"17.3":0.00922,"17.4":0.01517,"17.5":0.02886,"17.6-17.7":0.07081,"18.0":0.01577,"18.1":0.03332,"18.2":0.01785,"18.3":0.05802,"18.4":0.02975,"18.5-18.7":2.07768,"26.0":0.14252,"26.1":0.13002},P:{"4":0.02051,"21":0.02051,"22":0.02051,"23":0.01026,"24":0.02051,"25":0.03077,"26":0.0718,"27":0.05129,"28":0.27695,"29":1.21036,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01026},I:{"0":0.01218,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.06097,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.18583,"9":0.0354,"10":0.05752,"11":0.91588,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0061},H:{"0":0},L:{"0":57.5758},R:{_:"0"},M:{"0":0.06707}};
Index: node_modules/caniuse-lite/data/regions/CM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.02283,"5":0.00326,"43":0.00326,"47":0.00326,"49":0.00652,"51":0.01305,"52":0.00979,"56":0.00652,"58":0.00326,"60":0.00326,"62":0.00326,"67":0.00326,"69":0.00326,"71":0.00326,"72":0.01631,"73":0.00326,"78":0.00326,"82":0.00326,"90":0.00326,"91":0.00326,"92":0.00326,"93":0.00326,"95":0.00326,"99":0.00326,"112":0.00652,"114":0.00979,"115":0.18593,"116":0.00326,"120":0.00326,"122":0.00326,"123":0.00326,"124":0.00979,"125":0.00326,"127":0.04567,"128":0.01305,"129":0.00652,"130":0.00326,"131":0.00326,"132":0.00652,"133":0.00326,"134":0.00326,"135":0.00326,"136":0.01631,"137":0.00652,"138":0.02283,"139":0.00979,"140":0.05872,"141":0.0261,"142":0.0261,"143":0.11091,"144":0.83507,"145":0.94598,"146":0.00979,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 50 53 54 55 57 59 61 63 64 65 66 68 70 74 75 76 77 79 80 81 83 84 85 86 87 88 89 94 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 113 117 118 119 121 126 147 148 3.5 3.6"},D:{"38":0.00326,"48":0.00979,"49":0.00652,"56":0.0261,"57":0.00326,"58":0.00652,"61":0.00326,"62":0.00326,"64":0.00326,"65":0.00652,"67":0.01631,"68":0.00326,"69":0.01305,"70":0.02936,"71":0.00326,"72":0.01305,"73":0.00652,"74":0.03588,"75":0.00979,"77":0.01305,"78":0.00326,"79":0.01631,"80":0.01305,"81":0.00979,"83":0.00652,"84":0.00326,"85":0.00652,"86":0.01305,"87":0.03588,"88":0.00326,"89":0.00979,"90":0.00979,"91":0.00326,"92":0.00326,"93":0.01305,"94":0.00326,"95":0.00326,"96":0.00326,"97":0.00979,"98":0.00652,"100":0.00326,"101":0.00326,"102":0.00326,"103":0.03588,"104":0.04241,"105":0.00652,"106":0.00326,"107":0.00326,"108":0.00652,"109":0.57085,"110":0.00652,"111":0.04567,"112":0.00326,"113":0.00326,"114":0.01957,"115":0.00652,"116":0.04241,"117":0.00652,"118":0.01305,"119":0.02936,"120":0.01957,"121":0.00979,"122":0.04567,"123":0.00979,"124":0.01631,"125":0.09134,"126":0.08481,"127":0.00979,"128":0.04893,"129":0.0261,"130":0.02936,"131":0.05545,"132":0.03914,"133":0.02283,"134":0.07829,"135":0.04893,"136":0.05872,"137":0.14679,"138":0.31315,"139":0.19572,"140":0.47951,"141":2.67484,"142":6.9448,"143":0.01957,"144":0.01631,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 59 60 63 66 76 99 145 146"},F:{"42":0.00326,"44":0.00326,"48":0.00326,"79":0.01305,"86":0.00326,"87":0.00326,"90":0.01957,"91":0.00979,"92":0.02936,"95":0.03262,"99":0.00326,"107":0.00326,"111":0.00326,"113":0.00326,"116":0.02283,"117":0.00326,"118":0.00326,"119":0.00979,"120":0.0261,"121":0.02283,"122":0.39144,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 88 89 93 94 96 97 98 100 101 102 103 104 105 106 108 109 110 112 114 115 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00979,"13":0.00326,"14":0.01631,"15":0.00326,"16":0.00652,"17":0.01305,"18":0.04893,"84":0.00652,"85":0.00326,"89":0.01631,"90":0.01957,"92":0.09786,"100":0.03262,"109":0.00652,"112":0.00326,"114":0.12722,"122":0.03262,"125":0.00326,"126":0.00652,"129":0.00326,"130":0.00326,"131":0.00652,"132":0.00326,"133":0.00979,"134":0.00326,"135":0.03914,"136":0.00652,"137":0.01631,"138":0.04241,"139":0.07176,"140":0.07176,"141":0.41427,"142":2.18228,"143":0.01305,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 113 115 116 117 118 119 120 121 123 124 127 128"},E:{"10":0.00652,"13":0.00326,"14":0.00652,_:"0 4 5 6 7 8 9 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 15.2-15.3 15.5 16.0 16.1 16.2 16.4 17.0 17.2 17.3","5.1":0.00326,"11.1":0.00326,"12.1":0.00326,"13.1":0.00979,"14.1":0.00652,"15.1":0.00326,"15.4":0.00326,"15.6":0.05872,"16.3":0.00326,"16.5":0.12722,"16.6":0.06198,"17.1":0.00652,"17.4":0.01957,"17.5":0.00652,"17.6":0.04241,"18.0":0.00652,"18.1":0.00326,"18.2":0.01957,"18.3":0.01305,"18.4":0.00326,"18.5-18.6":0.01305,"26.0":0.07503,"26.1":0.06198,"26.2":0.02283},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00083,"5.0-5.1":0,"6.0-6.1":0.00331,"7.0-7.1":0.00248,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00745,"10.0-10.2":0.00083,"10.3":0.01324,"11.0-11.2":0.1539,"11.3-11.4":0.00496,"12.0-12.1":0.00165,"12.2-12.5":0.03889,"13.0-13.1":0,"13.2":0.00414,"13.3":0.00165,"13.4-13.7":0.00745,"14.0-14.4":0.01241,"14.5-14.8":0.01572,"15.0-15.1":0.01324,"15.2-15.3":0.01076,"15.4":0.01158,"15.5":0.01241,"15.6-15.8":0.17955,"16.0":0.02234,"16.1":0.04137,"16.2":0.02151,"16.3":0.03972,"16.4":0.00993,"16.5":0.01655,"16.6-16.7":0.24244,"17.0":0.02069,"17.1":0.02482,"17.2":0.0182,"17.3":0.02565,"17.4":0.0422,"17.5":0.08026,"17.6-17.7":0.19693,"18.0":0.04385,"18.1":0.09267,"18.2":0.04965,"18.3":0.16135,"18.4":0.08274,"18.5-18.7":5.77792,"26.0":0.39634,"26.1":0.36159},P:{"4":0.02045,"21":0.01022,"22":0.01022,"23":0.01022,"24":0.03067,"25":0.04089,"26":0.02045,"27":0.08179,"28":0.2658,"29":0.29647,_:"20 5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0 14.0 15.0 17.0 18.0","7.2-7.4":0.03067,"9.2":0.03067,"11.1-11.2":0.01022,"16.0":0.02045,"19.0":0.01022},I:{"0":0.02019,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":3.86971,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00489,"11":0.05382,_:"6 7 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00674,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00674},O:{"0":0.1415},H:{"0":1.77},L:{"0":63.40682},R:{_:"0"},M:{"0":0.21562}};
Index: node_modules/caniuse-lite/data/regions/CN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.02075,"43":0.37352,"115":0.0415,"140":0.00692,"143":0.02767,"144":0.13834,"145":0.13142,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 141 142 146 147 148 3.5 3.6"},D:{"39":0.00692,"40":0.00692,"41":0.00692,"45":0.01383,"47":0.00692,"48":0.01383,"49":0.01383,"52":0.00692,"53":0.01383,"55":0.00692,"56":0.00692,"57":0.00692,"58":0.00692,"59":0.00692,"60":0.00692,"63":0.00692,"69":0.10376,"70":0.00692,"73":0.01383,"75":0.00692,"78":0.01383,"79":0.05534,"80":0.01383,"81":0.00692,"83":0.02767,"84":0.00692,"85":0.00692,"86":0.04842,"87":0.06225,"89":0.00692,"90":0.00692,"91":0.02767,"92":0.03459,"94":0.00692,"95":0.00692,"96":0.00692,"97":0.06225,"98":0.20059,"99":0.08992,"100":0.00692,"101":0.06917,"102":0.00692,"103":0.01383,"104":0.00692,"105":1.55633,"106":1.03755,"107":0.63636,"108":0.23518,"109":1.13439,"110":1.59091,"111":0.61561,"112":0.25593,"113":0.52569,"114":1.41799,"115":0.2836,"116":0.12451,"117":0.44269,"118":0.62945,"119":0.22134,"120":1.48716,"121":0.80929,"122":0.31127,"123":0.54644,"124":0.37352,"125":0.50494,"126":0.58795,"127":1.36957,"128":0.79546,"129":1.0168,"130":0.47727,"131":0.40119,"132":0.13142,"133":0.2836,"134":6.09388,"135":0.10376,"136":0.06225,"137":0.07609,"138":0.17293,"139":25.97334,"140":0.56719,"141":0.62945,"142":1.7085,"143":0.00692,"144":0.02075,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 42 43 44 46 50 51 54 61 62 64 65 66 67 68 71 72 74 76 77 88 93 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00692,"92":0.0415,"100":0.00692,"106":0.01383,"107":0.00692,"108":0.00692,"109":0.05534,"110":0.00692,"111":0.00692,"112":0.01383,"113":0.02767,"114":0.0415,"115":0.02767,"116":0.01383,"117":0.01383,"118":0.01383,"119":0.01383,"120":0.2421,"121":0.01383,"122":0.03459,"123":0.01383,"124":0.01383,"125":0.02075,"126":0.0415,"127":0.0415,"128":0.02767,"129":0.02767,"130":0.02767,"131":0.07609,"132":0.02767,"133":0.04842,"134":0.0415,"135":0.0415,"136":0.05534,"137":0.06225,"138":0.10376,"139":0.11067,"140":0.18676,"141":0.70553,"142":3.83202,"143":0.01383,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"13":0.00692,"14":0.01383,"15":0.00692,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.0 26.2","13.1":0.02075,"14.1":0.02075,"15.1":0.00692,"15.4":0.00692,"15.5":0.00692,"15.6":0.05534,"16.0":0.00692,"16.1":0.01383,"16.2":0.00692,"16.3":0.02075,"16.4":0.00692,"16.5":0.00692,"16.6":0.06225,"17.1":0.02767,"17.2":0.00692,"17.3":0.00692,"17.4":0.00692,"17.5":0.01383,"17.6":0.0415,"18.0":0.00692,"18.1":0.01383,"18.2":0.00692,"18.3":0.02767,"18.4":0.01383,"18.5-18.6":0.04842,"26.0":0.05534,"26.1":0.04842},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00059,"5.0-5.1":0,"6.0-6.1":0.00236,"7.0-7.1":0.00177,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00532,"10.0-10.2":0.00059,"10.3":0.00945,"11.0-11.2":0.10991,"11.3-11.4":0.00355,"12.0-12.1":0.00118,"12.2-12.5":0.02777,"13.0-13.1":0,"13.2":0.00295,"13.3":0.00118,"13.4-13.7":0.00532,"14.0-14.4":0.00886,"14.5-14.8":0.01123,"15.0-15.1":0.00945,"15.2-15.3":0.00768,"15.4":0.00827,"15.5":0.00886,"15.6-15.8":0.12822,"16.0":0.01595,"16.1":0.02954,"16.2":0.01536,"16.3":0.02836,"16.4":0.00709,"16.5":0.01182,"16.6-16.7":0.17313,"17.0":0.01477,"17.1":0.01773,"17.2":0.013,"17.3":0.01832,"17.4":0.03014,"17.5":0.05732,"17.6-17.7":0.14063,"18.0":0.03132,"18.1":0.06618,"18.2":0.03545,"18.3":0.11522,"18.4":0.05909,"18.5-18.7":4.12622,"26.0":0.28304,"26.1":0.25822},P:{"27":0.01208,"28":0.02416,"29":0.10871,_:"4 20 21 22 23 24 25 26 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":2.67316,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00054,"4.4":0,"4.4.3-4.4.4":0.00134},K:{"0":0.01542,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.16275,"11":2.60405,_:"6 7 8 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":1.36621},O:{"0":2.96064},H:{"0":0},L:{"0":17.61273},R:{_:"0"},M:{"0":0.09869}};
Index: node_modules/caniuse-lite/data/regions/CO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.07517,"5":0.01002,"115":0.03007,"120":0.01002,"123":0.00501,"125":0.01002,"128":0.00501,"140":0.01503,"142":0.00501,"143":0.01002,"144":0.26057,"145":0.32572,"146":0.00501,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 122 124 126 127 129 130 131 132 133 134 135 136 137 138 139 141 147 148 3.5 3.6"},D:{"69":0.01002,"79":0.02506,"87":0.03508,"88":0.00501,"97":0.01503,"101":0.00501,"102":0.00501,"103":0.0451,"104":0.00501,"106":0.01002,"108":0.01503,"109":0.37081,"110":0.00501,"111":0.02506,"112":14.44671,"114":0.02004,"116":0.06013,"117":0.01503,"119":0.17037,"120":0.02506,"121":0.02004,"122":0.08519,"123":0.02506,"124":0.05011,"125":0.35578,"126":2.14471,"127":0.02506,"128":0.08018,"129":0.01002,"130":0.01503,"131":0.0451,"132":0.07015,"133":0.02506,"134":0.02506,"135":0.04009,"136":0.0451,"137":0.05011,"138":0.17037,"139":0.09521,"140":0.24554,"141":3.60291,"142":14.44671,"143":0.03007,"144":0.01002,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 89 90 91 92 93 94 95 96 98 99 100 105 107 113 115 118 145 146"},F:{"85":0.02506,"92":0.01002,"95":0.01002,"117":0.00501,"120":0.00501,"122":0.52616,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00501,"109":0.00501,"114":0.0451,"122":0.00501,"130":0.00501,"131":0.00501,"133":0.00501,"134":0.00501,"135":0.00501,"136":0.00501,"137":0.00501,"138":0.01002,"139":0.01002,"140":0.02004,"141":0.31569,"142":2.52053,"143":0.01002,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 132"},E:{"4":0.00501,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 17.0 17.2","5.1":0.00501,"13.1":0.00501,"14.1":0.00501,"15.6":0.02506,"16.1":0.00501,"16.3":0.02506,"16.4":0.00501,"16.5":0.00501,"16.6":0.03007,"17.1":0.01503,"17.3":0.00501,"17.4":0.00501,"17.5":0.01503,"17.6":0.05512,"18.0":0.00501,"18.1":0.01002,"18.2":0.00501,"18.3":0.01002,"18.4":0.01503,"18.5-18.6":0.05512,"26.0":0.1353,"26.1":0.14031,"26.2":0.00501},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0014,"5.0-5.1":0,"6.0-6.1":0.00558,"7.0-7.1":0.00419,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01256,"10.0-10.2":0.0014,"10.3":0.02233,"11.0-11.2":0.2596,"11.3-11.4":0.00837,"12.0-12.1":0.00279,"12.2-12.5":0.0656,"13.0-13.1":0,"13.2":0.00698,"13.3":0.00279,"13.4-13.7":0.01256,"14.0-14.4":0.02094,"14.5-14.8":0.02652,"15.0-15.1":0.02233,"15.2-15.3":0.01814,"15.4":0.01954,"15.5":0.02094,"15.6-15.8":0.30287,"16.0":0.03768,"16.1":0.06979,"16.2":0.03629,"16.3":0.06699,"16.4":0.01675,"16.5":0.02791,"16.6-16.7":0.40894,"17.0":0.03489,"17.1":0.04187,"17.2":0.03071,"17.3":0.04327,"17.4":0.07118,"17.5":0.13538,"17.6-17.7":0.33218,"18.0":0.07397,"18.1":0.15632,"18.2":0.08374,"18.3":0.27216,"18.4":0.13957,"18.5-18.7":9.74619,"26.0":0.66854,"26.1":0.60992},P:{"4":0.04098,"20":0.01024,"22":0.01024,"23":0.01024,"24":0.01024,"25":0.01024,"26":0.02049,"27":0.03073,"28":0.08196,"29":0.87082,_:"21 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01024,"7.2-7.4":0.05122},I:{"0":0.01993,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.07984,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.28062,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00499},H:{"0":0},L:{"0":39.88461},R:{_:"0"},M:{"0":0.16966}};
Index: node_modules/caniuse-lite/data/regions/CR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01904,"115":0.311,"120":0.01904,"125":0.01269,"128":0.00635,"135":0.00635,"140":0.02539,"141":0.02539,"142":0.00635,"143":0.03174,"144":0.97744,"145":1.0536,"146":0.01269,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 122 123 124 126 127 129 130 131 132 133 134 136 137 138 139 147 148 3.5 3.6"},D:{"69":0.02539,"73":0.00635,"79":0.01269,"80":0.00635,"86":0.00635,"87":0.01269,"91":0.00635,"97":0.01269,"98":0.01904,"103":0.01269,"106":0.00635,"107":0.01269,"108":0.00635,"109":0.2031,"110":0.01269,"111":0.03174,"112":18.43804,"114":0.00635,"115":0.00635,"116":0.03174,"119":0.01269,"120":0.01904,"122":0.10155,"123":0.00635,"124":0.35543,"125":0.79338,"126":3.95418,"127":0.01269,"128":0.06347,"129":0.01269,"130":0.00635,"131":0.03808,"132":0.06982,"133":0.02539,"134":0.07616,"135":0.04443,"136":0.02539,"137":0.02539,"138":0.15868,"139":0.44429,"140":0.35543,"141":4.78564,"142":15.46129,"143":0.03174,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 74 75 76 77 78 81 83 84 85 88 89 90 92 93 94 95 96 99 100 101 102 104 105 113 117 118 121 144 145 146"},F:{"92":0.03174,"93":0.00635,"95":0.00635,"120":0.01269,"122":0.80607,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00635,"109":0.01269,"114":0.58392,"131":0.03808,"134":0.03174,"136":0.00635,"137":0.00635,"138":0.00635,"139":0.01904,"140":0.02539,"141":0.46333,"142":4.1192,"143":0.00635,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132 133 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4","13.1":0.00635,"14.1":0.01269,"15.6":0.05712,"16.3":0.00635,"16.5":0.00635,"16.6":0.08251,"17.0":0.00635,"17.1":0.26657,"17.2":0.00635,"17.3":0.01269,"17.4":0.01904,"17.5":0.03174,"17.6":0.08886,"18.0":0.02539,"18.1":0.00635,"18.2":0.00635,"18.3":0.02539,"18.4":0.01269,"18.5-18.6":0.10155,"26.0":0.34909,"26.1":0.38717,"26.2":0.01269},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00096,"5.0-5.1":0,"6.0-6.1":0.00385,"7.0-7.1":0.00289,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00866,"10.0-10.2":0.00096,"10.3":0.01539,"11.0-11.2":0.17895,"11.3-11.4":0.00577,"12.0-12.1":0.00192,"12.2-12.5":0.04522,"13.0-13.1":0,"13.2":0.00481,"13.3":0.00192,"13.4-13.7":0.00866,"14.0-14.4":0.01443,"14.5-14.8":0.01828,"15.0-15.1":0.01539,"15.2-15.3":0.01251,"15.4":0.01347,"15.5":0.01443,"15.6-15.8":0.20878,"16.0":0.02598,"16.1":0.0481,"16.2":0.02501,"16.3":0.04618,"16.4":0.01155,"16.5":0.01924,"16.6-16.7":0.28189,"17.0":0.02405,"17.1":0.02886,"17.2":0.02117,"17.3":0.02983,"17.4":0.04907,"17.5":0.09332,"17.6-17.7":0.22898,"18.0":0.05099,"18.1":0.10775,"18.2":0.05773,"18.3":0.18761,"18.4":0.09621,"18.5-18.7":6.71833,"26.0":0.46085,"26.1":0.42044},P:{"4":0.05175,"21":0.01035,"23":0.01035,"24":0.01035,"25":0.01035,"26":0.05175,"27":0.0207,"28":0.1242,"29":1.64562,_:"20 22 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.0207,"11.1-11.2":0.01035,"17.0":0.01035},I:{"0":0.02919,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.40194,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02192},H:{"0":0},L:{"0":27.49344},R:{_:"0"},M:{"0":0.34348}};
Index: node_modules/caniuse-lite/data/regions/CU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.93714,"44":0.00317,"45":0.01583,"46":0.00317,"47":0.00317,"49":0.0095,"50":0.00633,"52":0.01266,"54":0.04116,"56":0.0095,"57":0.03799,"60":0.00317,"63":0.00633,"64":0.00317,"65":0.00317,"66":0.00317,"68":0.02216,"72":0.06015,"75":0.00633,"80":0.00317,"83":0.00317,"84":0.00317,"87":0.00633,"88":0.00317,"89":0.00317,"91":0.00317,"93":0.00317,"94":0.01583,"95":0.00633,"96":0.00317,"97":0.00633,"98":0.00317,"99":0.00633,"100":0.00317,"101":0.00317,"102":0.0095,"103":0.0095,"104":0.00317,"108":0.00633,"109":0.00317,"110":0.0095,"111":0.01583,"112":0.00317,"113":0.01266,"114":0.00633,"115":0.95613,"116":0.0095,"117":0.03799,"118":0.00317,"119":0.00317,"120":0.00317,"121":0.00317,"122":0.01583,"123":0.00633,"124":0.01266,"125":0.00633,"126":0.07598,"127":0.15197,"128":0.02849,"129":0.0095,"130":0.01266,"131":0.019,"132":0.00633,"133":0.01583,"134":0.05382,"135":0.02216,"136":0.02849,"137":0.05066,"138":0.03166,"139":0.05066,"140":0.23745,"141":0.08865,"142":0.18363,"143":0.25645,"144":2.16554,"145":2.24153,"146":0.03799,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 48 51 53 55 58 59 61 62 67 69 70 71 73 74 76 77 78 79 81 82 85 86 90 92 105 106 107 147 148 3.5 3.6"},D:{"38":0.00317,"51":0.00317,"56":0.00317,"63":0.00317,"66":0.00317,"67":0.00633,"69":0.00633,"70":0.01266,"71":0.0095,"72":0.0095,"73":0.00317,"74":0.00633,"76":0.00317,"77":0.00317,"78":0.00317,"79":0.00317,"80":0.019,"81":0.01583,"84":0.00317,"85":0.00317,"86":0.01583,"87":0.0095,"88":0.09181,"89":0.00633,"90":0.06332,"91":0.00633,"94":0.00317,"95":0.00317,"96":0.0095,"97":0.01266,"98":0.00633,"99":0.0095,"100":0.00317,"101":0.00317,"102":0.00633,"103":0.00633,"104":0.01583,"105":0.02216,"106":0.01266,"107":0.00633,"108":0.03166,"109":0.55088,"110":0.00633,"111":0.03483,"112":0.01266,"113":0.00317,"114":0.01583,"115":0.00633,"116":0.03799,"117":0.00317,"118":0.03166,"119":0.03799,"120":0.019,"121":0.02533,"122":0.02533,"123":0.019,"124":0.02533,"125":0.02849,"126":0.12664,"127":0.01583,"128":0.019,"129":0.01583,"130":0.03483,"131":0.05382,"132":0.02849,"133":0.04116,"134":0.07915,"135":0.04116,"136":0.10131,"137":0.08232,"138":0.15197,"139":0.14247,"140":0.25645,"141":1.28856,"142":3.6219,"143":0.00317,"144":0.00317,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 57 58 59 60 61 62 64 65 68 75 83 92 93 145 146"},F:{"34":0.00317,"36":0.00633,"37":0.00633,"42":0.0095,"46":0.00633,"47":0.00317,"49":0.00317,"62":0.019,"64":0.00633,"79":0.03483,"85":0.00317,"87":0.01266,"89":0.00317,"90":0.00317,"91":0.02533,"92":0.05066,"93":0.00317,"95":0.09181,"99":0.00317,"105":0.00317,"108":0.0095,"112":0.00317,"114":0.00317,"117":0.00317,"118":0.00317,"119":0.01266,"120":0.04116,"121":0.03799,"122":0.33243,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 38 39 40 41 43 44 45 48 50 51 52 53 54 55 56 57 58 60 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 88 94 96 97 98 100 101 102 103 104 106 107 109 110 111 113 115 116 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00317,"13":0.02216,"14":0.02216,"15":0.00317,"16":0.00633,"17":0.019,"18":0.05066,"80":0.00317,"84":0.01266,"85":0.00317,"89":0.01266,"90":0.01266,"92":0.26594,"96":0.00317,"99":0.00317,"100":0.04116,"103":0.00317,"109":0.0095,"111":0.00633,"113":0.00317,"114":0.14564,"115":0.00633,"116":0.00317,"120":0.00633,"122":0.04432,"126":0.00317,"127":0.00317,"128":0.01266,"129":0.0095,"130":0.0095,"131":0.04749,"132":0.00633,"133":0.01583,"134":0.02533,"135":0.019,"136":0.02533,"137":0.09498,"138":0.04116,"139":0.04749,"140":0.14564,"141":0.46224,"142":2.20987,"143":0.00317,_:"79 81 83 86 87 88 91 93 94 95 97 98 101 102 104 105 106 107 108 110 112 117 118 119 121 123 124 125"},E:{"10":0.00317,"12":0.00633,"14":0.00317,_:"0 4 5 6 7 8 9 11 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.5 17.0 17.2 17.3 17.4 18.0 18.1 18.2 18.3 26.2","5.1":0.01583,"13.1":0.00317,"14.1":0.04749,"15.6":0.00633,"16.4":0.00633,"16.6":0.01583,"17.1":0.01266,"17.5":0.00633,"17.6":0.00633,"18.4":0.00317,"18.5-18.6":0.01266,"26.0":0.04432,"26.1":0.04432},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00031,"5.0-5.1":0,"6.0-6.1":0.00122,"7.0-7.1":0.00092,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00275,"10.0-10.2":0.00031,"10.3":0.00489,"11.0-11.2":0.05682,"11.3-11.4":0.00183,"12.0-12.1":0.00061,"12.2-12.5":0.01436,"13.0-13.1":0,"13.2":0.00153,"13.3":0.00061,"13.4-13.7":0.00275,"14.0-14.4":0.00458,"14.5-14.8":0.0058,"15.0-15.1":0.00489,"15.2-15.3":0.00397,"15.4":0.00428,"15.5":0.00458,"15.6-15.8":0.06629,"16.0":0.00825,"16.1":0.01527,"16.2":0.00794,"16.3":0.01466,"16.4":0.00367,"16.5":0.00611,"16.6-16.7":0.08951,"17.0":0.00764,"17.1":0.00916,"17.2":0.00672,"17.3":0.00947,"17.4":0.01558,"17.5":0.02963,"17.6-17.7":0.0727,"18.0":0.01619,"18.1":0.03421,"18.2":0.01833,"18.3":0.05957,"18.4":0.03055,"18.5-18.7":2.13317,"26.0":0.14632,"26.1":0.13349},P:{"4":0.03058,"20":0.01019,"21":0.06117,"22":0.11214,"23":0.04078,"24":0.25486,"25":0.14272,"26":0.12233,"27":0.17331,"28":0.63206,"29":0.58109,_:"5.0-5.4 8.2 10.1 12.0","6.2-6.4":0.02039,"7.2-7.4":0.10195,"9.2":0.02039,"11.1-11.2":0.02039,"13.0":0.01019,"14.0":0.04078,"15.0":0.01019,"16.0":0.03058,"17.0":0.01019,"18.0":0.01019,"19.0":0.03058},I:{"0":0.02047,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.58772,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01583,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0205},H:{"0":0},L:{"0":71.09241},R:{_:"0"},M:{"0":0.40321}};
Index: node_modules/caniuse-lite/data/regions/CV.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01822,"78":0.00456,"112":0.07288,"113":0.01367,"114":0.01367,"115":0.13665,"120":0.00456,"125":0.00456,"127":0.00911,"134":0.00456,"136":0.00456,"140":0.01822,"144":0.26875,"145":0.46917,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 116 117 118 119 121 122 123 124 126 128 129 130 131 132 133 135 137 138 139 141 142 143 146 147 148 3.5 3.6"},D:{"27":0.00456,"55":0.01822,"64":0.00456,"65":0.02278,"69":0.00911,"72":0.00911,"73":0.03189,"74":0.01367,"75":0.00456,"76":0.01822,"79":0.01822,"83":0.01367,"87":0.02278,"90":0.00456,"93":0.00911,"95":0.01822,"99":0.00456,"100":0.00456,"103":0.01822,"106":0.01367,"108":0.00456,"109":0.45095,"111":0.01367,"112":0.02278,"113":0.041,"114":0.05922,"115":0.01822,"116":0.25053,"118":0.01367,"119":0.041,"120":0.02733,"121":0.00911,"122":0.03644,"123":0.00911,"124":0.00911,"125":0.47828,"126":0.1822,"127":0.03189,"128":0.05011,"129":0.00911,"130":0.02733,"131":0.03189,"132":0.06377,"133":0.01822,"134":0.23231,"135":0.03189,"136":0.04555,"137":0.07744,"138":0.30519,"139":0.0911,"140":0.59671,"141":4.07217,"142":16.37978,"143":0.05011,"144":0.00456,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 66 67 68 70 71 77 78 80 81 84 85 86 88 89 91 92 94 96 97 98 101 102 104 105 107 110 117 145 146"},F:{"15":0.00456,"36":0.00456,"46":0.01822,"92":0.02733,"93":0.00456,"95":0.00456,"122":0.52383,_:"9 11 12 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00911,"18":0.00456,"92":0.01822,"100":0.00456,"109":0.01822,"113":0.00456,"114":0.38718,"123":0.00456,"126":0.00456,"127":0.00456,"128":0.00911,"131":0.02278,"133":0.01822,"134":0.00456,"135":0.00911,"136":0.00911,"137":0.01367,"138":0.01822,"139":0.03644,"140":0.14121,"141":0.4054,"142":7.15135,"143":0.00911,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 119 120 121 122 124 125 129 130 132"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.4 15.5 16.0 16.1 16.4 17.0 17.4 26.2","12.1":0.00911,"13.1":0.2232,"14.1":0.02278,"15.1":0.01367,"15.6":0.11843,"16.2":0.01367,"16.3":0.01367,"16.5":0.01822,"16.6":0.06833,"17.1":0.00456,"17.2":0.01822,"17.3":0.02733,"17.5":0.01367,"17.6":0.13665,"18.0":0.00911,"18.1":0.01822,"18.2":0.00456,"18.3":0.11843,"18.4":0.00456,"18.5-18.6":0.12754,"26.0":0.2232,"26.1":0.50561},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00145,"5.0-5.1":0,"6.0-6.1":0.00582,"7.0-7.1":0.00436,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01309,"10.0-10.2":0.00145,"10.3":0.02328,"11.0-11.2":0.27061,"11.3-11.4":0.00873,"12.0-12.1":0.00291,"12.2-12.5":0.06838,"13.0-13.1":0,"13.2":0.00727,"13.3":0.00291,"13.4-13.7":0.01309,"14.0-14.4":0.02182,"14.5-14.8":0.02764,"15.0-15.1":0.02328,"15.2-15.3":0.01891,"15.4":0.02037,"15.5":0.02182,"15.6-15.8":0.31571,"16.0":0.03928,"16.1":0.07275,"16.2":0.03783,"16.3":0.06984,"16.4":0.01746,"16.5":0.0291,"16.6-16.7":0.42629,"17.0":0.03637,"17.1":0.04365,"17.2":0.03201,"17.3":0.0451,"17.4":0.0742,"17.5":0.14113,"17.6-17.7":0.34627,"18.0":0.07711,"18.1":0.16295,"18.2":0.08729,"18.3":0.28371,"18.4":0.14549,"18.5-18.7":10.15959,"26.0":0.6969,"26.1":0.63579},P:{"4":0.07416,"22":0.2013,"24":0.02119,"25":0.02119,"26":0.04238,"27":0.14833,"28":0.392,"29":2.06596,_:"20 21 23 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 17.0 19.0","5.0-5.4":0.02119,"7.2-7.4":0.07416,"11.1-11.2":0.02119,"16.0":0.03178,"18.0":0.01059},I:{"0":0.02719,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.53361,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.01089,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01634},H:{"0":0},L:{"0":41.75228},R:{_:"0"},M:{"0":0.32126}};
Index: node_modules/caniuse-lite/data/regions/CX.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CX.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CX.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 3.5 3.6"},D:{_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.0 26.1 26.2"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.8":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6-16.7":0,"17.0":0,"17.1":0,"17.2":0,"17.3":0,"17.4":0,"17.5":0,"17.6-17.7":0,"18.0":0,"18.1":0,"18.2":0,"18.3":0,"18.4":0,"18.5-18.7":0,"26.0":0,"26.1":0},P:{_:"4 20 21 22 23 24 25 26 27 28 29 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{_:"0"},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/CY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"68":0.00457,"115":0.09597,"128":0.00457,"132":0.14624,"134":0.00457,"135":0.00914,"136":0.00457,"137":0.00457,"139":0.00457,"140":0.01828,"141":0.02285,"142":0.02285,"143":0.04113,"144":0.49356,"145":0.59867,"146":0.00457,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 133 138 147 148 3.5 3.6"},D:{"69":0.00457,"70":0.00457,"74":0.16909,"78":0.00457,"79":0.11425,"83":0.00457,"87":0.14624,"88":0.00457,"91":0.00457,"94":0.01371,"102":0.00457,"103":0.02285,"107":0.00457,"108":0.07312,"109":0.37474,"110":0.00457,"111":0.00914,"112":1.07852,"114":0.00914,"115":0.00457,"116":0.03199,"117":0.00457,"118":0.00457,"119":0.03199,"120":0.0457,"121":0.01371,"122":0.08226,"123":0.02285,"124":0.1371,"125":0.0457,"126":0.12796,"127":0.01828,"128":0.04113,"129":0.00914,"130":0.14624,"131":0.05027,"132":0.02742,"133":0.03199,"134":0.02742,"135":0.04113,"136":0.04113,"137":0.06398,"138":4.19069,"139":0.28791,"140":0.37474,"141":5.00415,"142":13.99791,"143":0.01828,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 75 76 77 80 81 84 85 86 89 90 92 93 95 96 97 98 99 100 101 104 105 106 113 144 145 146"},F:{"40":0.00914,"46":0.00457,"78":0.00457,"92":0.22393,"93":0.01371,"95":0.00457,"114":0.11425,"120":0.00457,"122":0.3199,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00457,"109":0.03199,"114":0.00914,"125":0.00457,"131":0.00457,"133":0.00457,"135":0.00457,"136":0.00457,"137":0.00457,"138":0.00457,"139":0.02285,"140":0.0457,"141":0.49813,"142":4.85334,"143":0.00457,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 126 127 128 129 130 132 134"},E:{"14":0.00457,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4","13.1":0.23764,"14.1":0.03199,"15.5":0.00457,"15.6":0.06398,"16.0":0.00457,"16.1":0.00457,"16.2":0.00914,"16.3":0.0457,"16.4":0.01828,"16.5":0.00914,"16.6":0.10054,"17.0":0.00457,"17.1":0.05941,"17.2":0.00914,"17.3":0.00457,"17.4":0.01371,"17.5":0.03656,"17.6":0.06398,"18.0":0.00457,"18.1":0.01371,"18.2":0.02285,"18.3":0.05484,"18.4":0.02285,"18.5-18.6":0.11882,"26.0":0.15995,"26.1":0.17823,"26.2":0.00914},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00111,"5.0-5.1":0,"6.0-6.1":0.00443,"7.0-7.1":0.00332,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00996,"10.0-10.2":0.00111,"10.3":0.01771,"11.0-11.2":0.20583,"11.3-11.4":0.00664,"12.0-12.1":0.00221,"12.2-12.5":0.05201,"13.0-13.1":0,"13.2":0.00553,"13.3":0.00221,"13.4-13.7":0.00996,"14.0-14.4":0.0166,"14.5-14.8":0.02103,"15.0-15.1":0.01771,"15.2-15.3":0.01439,"15.4":0.01549,"15.5":0.0166,"15.6-15.8":0.24014,"16.0":0.02988,"16.1":0.05533,"16.2":0.02877,"16.3":0.05312,"16.4":0.01328,"16.5":0.02213,"16.6-16.7":0.32424,"17.0":0.02767,"17.1":0.0332,"17.2":0.02435,"17.3":0.03431,"17.4":0.05644,"17.5":0.10734,"17.6-17.7":0.26338,"18.0":0.05865,"18.1":0.12394,"18.2":0.0664,"18.3":0.21579,"18.4":0.11066,"18.5-18.7":7.72763,"26.0":0.53008,"26.1":0.4836},P:{"4":0.10339,"20":0.01034,"21":0.01034,"22":0.04136,"23":0.03102,"24":0.04136,"25":0.04136,"26":0.06204,"27":0.11373,"28":0.58934,"29":3.2879,"5.0-5.4":0.02068,_:"6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0","7.2-7.4":0.11373,"8.2":0.02068,"17.0":0.02068,"18.0":0.01034,"19.0":0.01034},I:{"0":0.01084,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.66789,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01828,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.01086,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.13575},H:{"0":0},L:{"0":43.5573},R:{_:"0"},M:{"0":0.46698}};
Index: node_modules/caniuse-lite/data/regions/CZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/CZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/CZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.04278,"56":0.01069,"78":0.01069,"88":0.00535,"113":0.00535,"115":0.42241,"118":0.02674,"125":0.00535,"127":0.06951,"128":0.02139,"129":0.00535,"132":0.00535,"133":0.00535,"134":0.02139,"135":0.01069,"136":0.01604,"137":0.01604,"138":0.00535,"139":0.01604,"140":0.11763,"141":0.01069,"142":0.05347,"143":0.10694,"144":2.06929,"145":2.69489,"146":0.00535,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 119 120 121 122 123 124 126 130 131 147 148 3.5 3.6"},D:{"39":0.02139,"40":0.02139,"41":0.02139,"42":0.02139,"43":0.02139,"44":0.02139,"45":0.02139,"46":0.02139,"47":0.02139,"48":0.02139,"49":0.02674,"50":0.02139,"51":0.02139,"52":0.02139,"53":0.02139,"54":0.02139,"55":0.02139,"56":0.02139,"57":0.02139,"58":0.02139,"59":0.02139,"60":0.02139,"61":0.00535,"78":0.36894,"79":0.04278,"80":0.01604,"87":0.01604,"88":0.00535,"91":0.02674,"92":0.00535,"98":0.03208,"99":0.00535,"102":0.00535,"103":0.03743,"104":0.01069,"106":0.00535,"108":0.01069,"109":0.73254,"111":0.00535,"112":0.56144,"114":0.03208,"115":0.01069,"116":0.03208,"117":0.00535,"118":0.00535,"119":0.01604,"120":0.04278,"121":0.01069,"122":0.05347,"123":0.01604,"124":0.02674,"125":2.8446,"126":0.0909,"127":0.02139,"128":0.05347,"129":0.01069,"130":0.02139,"131":0.0909,"132":0.03208,"133":0.02674,"134":0.02674,"135":0.03743,"136":0.03208,"137":0.06416,"138":0.18715,"139":0.21923,"140":0.37429,"141":6.02607,"142":16.75215,"143":0.02674,"144":0.00535,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 81 83 84 85 86 89 90 93 94 95 96 97 100 101 105 107 110 113 145 146"},F:{"46":0.01069,"84":0.00535,"85":0.01604,"92":0.10159,"93":0.01069,"95":0.06951,"120":0.01069,"122":0.79136,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00535,"109":0.05882,"114":0.00535,"120":0.00535,"122":0.00535,"123":0.00535,"129":0.00535,"130":0.00535,"131":0.02139,"132":0.00535,"133":0.00535,"134":0.01069,"135":0.01069,"136":0.01069,"137":0.00535,"138":0.12833,"139":0.02139,"140":0.05882,"141":0.7058,"142":6.31481,"143":0.01604,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 124 125 126 127 128"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.4","13.1":0.01069,"14.1":0.01069,"15.5":0.02674,"15.6":0.06951,"16.0":0.00535,"16.1":0.00535,"16.2":0.00535,"16.3":0.01069,"16.5":0.01069,"16.6":0.10694,"17.0":0.01604,"17.1":0.05882,"17.2":0.01604,"17.3":0.02139,"17.4":0.02139,"17.5":0.02674,"17.6":0.11229,"18.0":0.01069,"18.1":0.01604,"18.2":0.02674,"18.3":0.05347,"18.4":0.04278,"18.5-18.6":0.11763,"26.0":0.30478,"26.1":0.32082,"26.2":0.01069},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00084,"5.0-5.1":0,"6.0-6.1":0.00337,"7.0-7.1":0.00253,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00758,"10.0-10.2":0.00084,"10.3":0.01348,"11.0-11.2":0.15665,"11.3-11.4":0.00505,"12.0-12.1":0.00168,"12.2-12.5":0.03958,"13.0-13.1":0,"13.2":0.00421,"13.3":0.00168,"13.4-13.7":0.00758,"14.0-14.4":0.01263,"14.5-14.8":0.016,"15.0-15.1":0.01348,"15.2-15.3":0.01095,"15.4":0.01179,"15.5":0.01263,"15.6-15.8":0.18276,"16.0":0.02274,"16.1":0.04211,"16.2":0.0219,"16.3":0.04043,"16.4":0.01011,"16.5":0.01684,"16.6-16.7":0.24676,"17.0":0.02105,"17.1":0.02527,"17.2":0.01853,"17.3":0.02611,"17.4":0.04295,"17.5":0.08169,"17.6-17.7":0.20044,"18.0":0.04464,"18.1":0.09433,"18.2":0.05053,"18.3":0.16423,"18.4":0.08422,"18.5-18.7":5.88103,"26.0":0.40341,"26.1":0.36804},P:{"4":0.02078,"20":0.01039,"21":0.01039,"22":0.01039,"23":0.02078,"24":0.01039,"25":0.01039,"26":0.03117,"27":0.04156,"28":0.21817,"29":2.01547,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01039},I:{"0":0.0604,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.60954,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02139,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00465},O:{"0":0.1582},H:{"0":0},L:{"0":36.9706},R:{_:"0"},M:{"0":0.42808}};
Index: node_modules/caniuse-lite/data/regions/DE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/DE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/DE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.01132,"52":0.04528,"59":0.00566,"60":0.00566,"68":0.00566,"77":0.01698,"78":0.0283,"88":0.00566,"91":0.00566,"98":0.00566,"102":0.00566,"104":0.00566,"109":0.00566,"111":0.01132,"113":0.00566,"115":0.41884,"118":0.00566,"119":0.00566,"120":0.00566,"121":0.00566,"122":0.00566,"123":0.01132,"125":0.01132,"126":0.00566,"127":0.01132,"128":0.07924,"130":0.00566,"131":0.00566,"132":0.02264,"133":0.01132,"134":0.01132,"135":0.03962,"136":0.03396,"137":0.01132,"138":0.01698,"139":0.02264,"140":0.58864,"141":0.0283,"142":0.0566,"143":0.0849,"144":3.05074,"145":3.6224,"146":0.01132,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 99 100 101 103 105 106 107 108 110 112 114 116 117 124 129 147 148 3.5 3.6"},D:{"39":0.01698,"40":0.01698,"41":0.01698,"42":0.01698,"43":0.01698,"44":0.01698,"45":0.01698,"46":0.01698,"47":0.01698,"48":0.01698,"49":0.0283,"50":0.01698,"51":0.01698,"52":0.03962,"53":0.01698,"54":0.01698,"55":0.01698,"56":0.01698,"57":0.01698,"58":0.02264,"59":0.02264,"60":0.01698,"63":0.00566,"66":0.03396,"74":0.00566,"77":0.00566,"79":0.02264,"80":0.02264,"81":0.00566,"83":0.00566,"84":0.00566,"85":0.00566,"86":0.00566,"87":0.0283,"88":0.00566,"89":0.00566,"90":0.00566,"91":0.06226,"92":0.00566,"93":0.00566,"94":0.00566,"95":0.00566,"97":0.07358,"98":0.00566,"102":0.00566,"103":0.32828,"104":0.02264,"106":0.00566,"107":0.01132,"108":0.12452,"109":0.50374,"110":0.01132,"111":0.00566,"112":0.01132,"113":0.00566,"114":0.0283,"115":0.04528,"116":0.10754,"117":0.02264,"118":0.12452,"119":0.05094,"120":0.13584,"121":0.01698,"122":0.09056,"123":0.04528,"124":0.2264,"125":0.3679,"126":0.07358,"127":0.03396,"128":0.07358,"129":0.04528,"130":0.27168,"131":3.26582,"132":0.11886,"133":0.07358,"134":0.10754,"135":0.09056,"136":0.13018,"137":0.13018,"138":0.3679,"139":0.28866,"140":1.05842,"141":5.2072,"142":12.68406,"143":0.28866,"144":0.00566,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 64 65 67 68 69 70 71 72 73 75 76 78 96 99 100 101 105 145 146"},F:{"46":0.00566,"90":0.00566,"92":0.0849,"93":0.01132,"95":0.03962,"113":0.01698,"114":0.01132,"117":0.00566,"119":0.00566,"120":0.01132,"121":0.00566,"122":1.32444,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 115 116 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00566},B:{"92":0.00566,"109":0.09056,"114":0.00566,"119":0.00566,"120":0.00566,"121":0.0283,"122":0.01132,"126":0.00566,"128":0.00566,"129":0.00566,"130":0.00566,"131":0.02264,"132":0.01132,"133":0.01132,"134":0.02264,"135":0.01698,"136":0.01698,"137":0.01698,"138":0.03962,"139":0.04528,"140":0.18112,"141":0.9339,"142":7.01274,"143":0.01132,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 123 124 125 127"},E:{"7":0.01698,"14":0.00566,_:"0 4 5 6 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3","11.1":0.00566,"12.1":0.00566,"13.1":0.0283,"14.1":0.0283,"15.1":0.00566,"15.4":0.00566,"15.5":0.00566,"15.6":0.1415,"16.0":0.02264,"16.1":0.01698,"16.2":0.01132,"16.3":0.02264,"16.4":0.01132,"16.5":0.01132,"16.6":0.21508,"17.0":0.01132,"17.1":0.1415,"17.2":0.01698,"17.3":0.01698,"17.4":0.0283,"17.5":0.05094,"17.6":0.17546,"18.0":0.01698,"18.1":0.03396,"18.2":0.01698,"18.3":0.07358,"18.4":0.03396,"18.5-18.6":0.18112,"26.0":0.55468,"26.1":0.58298,"26.2":0.01698},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0013,"5.0-5.1":0,"6.0-6.1":0.00519,"7.0-7.1":0.00389,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01168,"10.0-10.2":0.0013,"10.3":0.02077,"11.0-11.2":0.24142,"11.3-11.4":0.00779,"12.0-12.1":0.0026,"12.2-12.5":0.061,"13.0-13.1":0,"13.2":0.00649,"13.3":0.0026,"13.4-13.7":0.01168,"14.0-14.4":0.01947,"14.5-14.8":0.02466,"15.0-15.1":0.02077,"15.2-15.3":0.01687,"15.4":0.01817,"15.5":0.01947,"15.6-15.8":0.28166,"16.0":0.03504,"16.1":0.0649,"16.2":0.03375,"16.3":0.0623,"16.4":0.01558,"16.5":0.02596,"16.6-16.7":0.3803,"17.0":0.03245,"17.1":0.03894,"17.2":0.02856,"17.3":0.04024,"17.4":0.0662,"17.5":0.1259,"17.6-17.7":0.30891,"18.0":0.06879,"18.1":0.14537,"18.2":0.07788,"18.3":0.2531,"18.4":0.1298,"18.5-18.7":9.06365,"26.0":0.62172,"26.1":0.56721},P:{"4":0.04207,"20":0.01052,"21":0.03156,"22":0.02104,"23":0.02104,"24":0.02104,"25":0.02104,"26":0.08415,"27":0.07363,"28":0.31556,"29":3.42906,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.01052,"17.0":0.01052,"19.0":0.01052},I:{"0":0.01734,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.46883,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00708,"11":0.04953,_:"6 7 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00434},O:{"0":0.05209},H:{"0":0},L:{"0":26.5044},R:{_:"0"},M:{"0":1.04618}};
Index: node_modules/caniuse-lite/data/regions/DJ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/DJ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/DJ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00682,"55":0.00341,"66":0.00341,"115":0.09883,"127":0.01363,"136":0.00341,"137":0.00341,"140":0.01022,"142":0.00341,"143":0.00682,"144":0.852,"145":1.04285,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 128 129 130 131 132 133 134 135 138 139 141 146 147 148 3.5 3.6"},D:{"46":0.01704,"62":0.00682,"67":0.00682,"70":0.00341,"71":0.00341,"84":0.00341,"87":0.00682,"91":0.01022,"93":0.01022,"94":0.02386,"96":0.00682,"97":0.01022,"98":0.00682,"103":0.02726,"107":0.00341,"109":0.26582,"111":0.03408,"112":0.00682,"114":0.00341,"116":0.00682,"117":0.02726,"118":0.00341,"119":0.00341,"120":0.00341,"122":0.01022,"123":0.01022,"124":0.00341,"125":0.20789,"126":0.02045,"127":0.01022,"128":0.01704,"129":0.00682,"130":0.01363,"131":0.03408,"132":0.05453,"133":0.0443,"134":0.04771,"135":0.0409,"136":0.07838,"137":0.05453,"138":0.56914,"139":0.18062,"140":0.19766,"141":4.22251,"142":7.25904,"143":0.02386,"144":0.03408,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 68 69 72 73 74 75 76 77 78 79 80 81 83 85 86 88 89 90 92 95 99 100 101 102 104 105 106 108 110 113 115 121 145 146"},F:{"88":0.01363,"92":0.01363,"121":0.00341,"122":0.07498,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00341,"17":0.01022,"18":0.01363,"84":0.00341,"90":0.00341,"92":0.03408,"109":0.00341,"114":0.00682,"119":0.00341,"122":0.00682,"127":0.00341,"131":0.03067,"133":0.00682,"134":0.00682,"135":0.05453,"136":0.0443,"137":0.02726,"138":0.02045,"139":0.02045,"140":0.05794,"141":0.50098,"142":2.71277,_:"12 13 14 16 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 120 121 123 124 125 126 128 129 130 132 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 16.0 16.2 16.5 17.0 17.2 17.3 17.4 17.5 18.2 18.3 26.2","5.1":0.00341,"15.5":0.00341,"15.6":0.02386,"16.1":0.00682,"16.3":0.00341,"16.4":0.00341,"16.6":0.03408,"17.1":0.01022,"17.6":0.03408,"18.0":0.00341,"18.1":0.00341,"18.4":0.00341,"18.5-18.6":0.05453,"26.0":0.03408,"26.1":0.01022},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00046,"5.0-5.1":0,"6.0-6.1":0.00185,"7.0-7.1":0.00139,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00416,"10.0-10.2":0.00046,"10.3":0.00739,"11.0-11.2":0.08595,"11.3-11.4":0.00277,"12.0-12.1":0.00092,"12.2-12.5":0.02172,"13.0-13.1":0,"13.2":0.00231,"13.3":0.00092,"13.4-13.7":0.00416,"14.0-14.4":0.00693,"14.5-14.8":0.00878,"15.0-15.1":0.00739,"15.2-15.3":0.00601,"15.4":0.00647,"15.5":0.00693,"15.6-15.8":0.10028,"16.0":0.01248,"16.1":0.0231,"16.2":0.01201,"16.3":0.02218,"16.4":0.00555,"16.5":0.00924,"16.6-16.7":0.1354,"17.0":0.01155,"17.1":0.01386,"17.2":0.01017,"17.3":0.01433,"17.4":0.02357,"17.5":0.04482,"17.6-17.7":0.10998,"18.0":0.02449,"18.1":0.05176,"18.2":0.02773,"18.3":0.09011,"18.4":0.04621,"18.5-18.7":3.22684,"26.0":0.22135,"26.1":0.20194},P:{"4":0.03082,"23":0.45203,"24":0.08219,"25":0.06164,"26":0.06164,"27":0.3082,"28":0.64723,"29":1.69513,_:"20 21 22 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 15.0 16.0 18.0 19.0","7.2-7.4":0.13356,"11.1-11.2":0.01027,"14.0":0.02055,"17.0":0.01027},I:{"0":0.5727,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00029},K:{"0":1.01835,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0409,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01318},O:{"0":0.25709},H:{"0":0.01},L:{"0":69.09189},R:{_:"0"},M:{"0":0.04614}};
Index: node_modules/caniuse-lite/data/regions/DK.js
===================================================================
--- node_modules/caniuse-lite/data/regions/DK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/DK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.00674,"77":0.00674,"78":0.00674,"109":0.00674,"115":0.11455,"125":0.00674,"128":0.02021,"132":0.01348,"136":0.00674,"140":0.1415,"141":0.00674,"142":0.00674,"143":0.03369,"144":0.9568,"145":1.0646,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 133 134 135 137 138 139 146 147 148 3.5 3.6"},D:{"44":0.00674,"49":0.00674,"52":0.08759,"58":0.03369,"65":0.00674,"66":0.01348,"79":0.01348,"87":0.01348,"88":0.03369,"90":0.00674,"91":0.00674,"92":0.00674,"102":0.01348,"103":0.06064,"104":0.00674,"105":0.00674,"107":0.00674,"108":0.00674,"109":0.34364,"110":0.00674,"112":0.00674,"114":0.02695,"115":0.00674,"116":0.16845,"117":0.00674,"118":0.04717,"119":0.00674,"120":0.06064,"121":0.00674,"122":0.10781,"123":0.02021,"124":0.12802,"125":3.38248,"126":0.12802,"127":0.01348,"128":0.13476,"129":0.02695,"130":0.02021,"131":0.08086,"132":0.06064,"133":0.08086,"134":0.06064,"135":0.11455,"136":0.14824,"137":0.17519,"138":0.6738,"139":0.78835,"140":1.28696,"141":10.35631,"142":27.13393,"143":0.04043,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 50 51 53 54 55 56 57 59 60 61 62 63 64 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 89 93 94 95 96 97 98 99 100 101 106 111 113 144 145 146"},F:{"92":0.02021,"93":0.00674,"95":0.01348,"102":0.01348,"120":0.00674,"122":0.62663,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"108":0.02021,"109":0.03369,"126":0.00674,"131":0.01348,"132":0.03369,"134":0.00674,"135":0.00674,"136":0.00674,"137":0.01348,"138":0.02021,"139":0.0539,"140":0.06064,"141":0.91637,"142":6.83233,"143":0.01348,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 127 128 129 130 133"},E:{"14":0.00674,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3","13.1":0.04043,"14.1":0.0539,"15.4":0.01348,"15.5":0.04717,"15.6":0.20888,"16.0":0.02695,"16.1":0.02695,"16.2":0.01348,"16.3":0.04717,"16.4":0.03369,"16.5":0.04717,"16.6":0.37059,"17.0":0.02021,"17.1":0.1954,"17.2":0.0539,"17.3":0.0539,"17.4":0.15497,"17.5":0.20888,"17.6":0.44471,"18.0":0.04043,"18.1":0.0539,"18.2":0.04043,"18.3":0.15497,"18.4":0.08086,"18.5-18.6":0.26952,"26.0":0.53904,"26.1":0.60642,"26.2":0.02021},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00177,"5.0-5.1":0,"6.0-6.1":0.00709,"7.0-7.1":0.00532,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01596,"10.0-10.2":0.00177,"10.3":0.02838,"11.0-11.2":0.32988,"11.3-11.4":0.01064,"12.0-12.1":0.00355,"12.2-12.5":0.08336,"13.0-13.1":0,"13.2":0.00887,"13.3":0.00355,"13.4-13.7":0.01596,"14.0-14.4":0.0266,"14.5-14.8":0.0337,"15.0-15.1":0.02838,"15.2-15.3":0.02306,"15.4":0.02483,"15.5":0.0266,"15.6-15.8":0.38486,"16.0":0.04789,"16.1":0.08868,"16.2":0.04611,"16.3":0.08513,"16.4":0.02128,"16.5":0.03547,"16.6-16.7":0.51965,"17.0":0.04434,"17.1":0.05321,"17.2":0.03902,"17.3":0.05498,"17.4":0.09045,"17.5":0.17203,"17.6-17.7":0.4221,"18.0":0.094,"18.1":0.19864,"18.2":0.10641,"18.3":0.34584,"18.4":0.17735,"18.5-18.7":12.3847,"26.0":0.84953,"26.1":0.77504},P:{"20":0.02164,"25":0.01082,"26":0.02164,"27":0.01082,"28":0.10818,"29":1.74171,_:"4 21 22 23 24 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.01954,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.10438,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00674,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00652},H:{"0":0},L:{"0":13.59631},R:{_:"0"},M:{"0":0.34577}};
Index: node_modules/caniuse-lite/data/regions/DM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/DM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/DM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.02427,"125":0.00485,"133":0.04854,"134":0.00971,"135":0.01456,"137":0.00971,"139":0.14562,"143":0.00485,"144":0.16018,"145":0.21843,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 126 127 128 129 130 131 132 136 138 140 141 142 146 147 148 3.5 3.6"},D:{"38":0.00485,"69":0.02427,"74":0.09708,"75":0.00485,"76":0.75722,"77":0.02912,"79":2.35419,"87":0.04369,"91":0.00485,"92":0.01456,"93":0.05825,"96":0.02912,"101":0.37861,"103":0.02427,"108":0.02912,"109":0.18445,"111":0.15047,"114":0.00971,"116":0.00971,"117":0.00485,"118":0.01942,"119":0.00971,"120":0.01942,"121":0.00485,"122":0.00971,"124":0.09223,"125":0.55336,"126":0.03398,"128":0.33007,"129":0.02427,"130":0.01456,"131":0.32036,"132":0.08252,"133":0.07281,"134":0.28153,"135":0.09223,"136":0.14562,"137":0.10679,"138":0.23299,"139":0.08252,"140":0.50482,"141":6.10633,"142":13.97467,"143":0.07281,"144":0.00971,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 78 80 81 83 84 85 86 88 89 90 94 95 97 98 99 100 102 104 105 106 107 110 112 113 115 123 127 145 146"},F:{"92":0.05339,"93":0.01456,"114":0.02427,"115":0.01942,"122":0.43201,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01456,"18":0.02912,"109":0.00971,"114":0.07766,"122":0.00971,"125":0.00485,"127":0.00485,"130":0.00971,"132":0.02427,"133":0.09708,"134":0.00971,"136":0.01942,"137":0.01456,"138":0.00971,"139":0.03398,"140":0.05339,"141":0.96109,"142":5.52871,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 126 128 129 131 135 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.0 16.2 16.3 17.0 17.2 18.0 26.2","14.1":0.11164,"15.5":0.00485,"15.6":0.09223,"16.1":0.05825,"16.4":0.00971,"16.5":0.00971,"16.6":0.1165,"17.1":0.01456,"17.3":0.00971,"17.4":0.00971,"17.5":0.03398,"17.6":0.11164,"18.1":0.02427,"18.2":0.02427,"18.3":0.02427,"18.4":0.00971,"18.5-18.6":0.11164,"26.0":0.31066,"26.1":0.44171},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00082,"5.0-5.1":0,"6.0-6.1":0.00326,"7.0-7.1":0.00245,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00734,"10.0-10.2":0.00082,"10.3":0.01305,"11.0-11.2":0.15168,"11.3-11.4":0.00489,"12.0-12.1":0.00163,"12.2-12.5":0.03833,"13.0-13.1":0,"13.2":0.00408,"13.3":0.00163,"13.4-13.7":0.00734,"14.0-14.4":0.01223,"14.5-14.8":0.01549,"15.0-15.1":0.01305,"15.2-15.3":0.0106,"15.4":0.01142,"15.5":0.01223,"15.6-15.8":0.17696,"16.0":0.02202,"16.1":0.04077,"16.2":0.0212,"16.3":0.03914,"16.4":0.00979,"16.5":0.01631,"16.6-16.7":0.23894,"17.0":0.02039,"17.1":0.02446,"17.2":0.01794,"17.3":0.02528,"17.4":0.04159,"17.5":0.0791,"17.6-17.7":0.19408,"18.0":0.04322,"18.1":0.09133,"18.2":0.04893,"18.3":0.15902,"18.4":0.08155,"18.5-18.7":5.69451,"26.0":0.39062,"26.1":0.35637},P:{"4":0.01075,"23":0.01075,"25":0.04299,"26":0.01075,"27":0.02149,"28":0.35464,"29":2.58992,_:"20 21 22 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.08597,"17.0":0.02149},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.02573,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.02058},O:{"0":0.07718},H:{"0":0},L:{"0":47.65106},R:{_:"0"},M:{"0":0.21095}};
Index: node_modules/caniuse-lite/data/regions/DO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/DO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/DO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.0393,"5":0.01684,"52":0.00561,"78":0.01123,"83":0.00561,"115":0.02246,"125":0.00561,"128":0.00561,"133":0.00561,"134":0.00561,"135":0.01123,"138":0.00561,"139":0.00561,"140":0.01684,"141":0.00561,"142":0.00561,"143":0.00561,"144":0.34245,"145":0.40982,"146":0.00561,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 136 137 147 148 3.5 3.6"},D:{"65":0.00561,"69":0.01684,"72":0.00561,"77":0.00561,"79":0.01123,"81":0.00561,"84":0.00561,"85":0.01123,"86":0.00561,"87":0.02807,"91":0.00561,"93":0.0393,"94":0.00561,"96":0.00561,"97":0.01684,"99":0.00561,"100":0.00561,"102":0.00561,"103":0.02807,"104":0.02807,"105":0.00561,"108":0.00561,"109":0.39859,"110":0.00561,"111":0.02246,"112":19.39076,"113":0.00561,"114":0.00561,"116":0.05053,"119":0.06737,"120":0.01684,"121":0.00561,"122":0.05053,"123":0.00561,"124":0.0393,"125":0.98806,"126":2.61612,"127":0.03368,"128":0.10667,"129":0.04491,"130":0.00561,"131":0.06737,"132":0.06175,"133":0.03368,"134":0.02807,"135":0.05614,"136":0.0393,"137":0.05053,"138":0.32561,"139":0.15719,"140":0.32561,"141":3.21121,"142":12.90659,"143":0.03368,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 70 71 73 74 75 76 78 80 83 88 89 90 92 95 98 101 106 107 115 117 118 144 145 146"},F:{"92":0.02246,"93":0.00561,"95":0.01123,"114":0.00561,"120":0.00561,"122":0.48842,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01123,"92":0.01684,"100":0.00561,"109":0.01123,"114":0.24702,"122":0.00561,"130":0.00561,"131":0.01123,"132":0.00561,"133":0.00561,"134":0.00561,"135":0.01684,"136":0.02246,"137":0.00561,"138":0.01684,"139":0.02807,"140":0.06175,"141":0.49965,"142":3.54243,"143":0.01123,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129"},E:{"13":0.00561,"14":0.00561,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.0","5.1":0.00561,"13.1":0.00561,"14.1":0.02246,"15.4":0.01123,"15.6":0.05614,"16.1":0.00561,"16.2":0.01684,"16.3":0.01123,"16.4":0.00561,"16.5":0.01123,"16.6":0.05614,"17.0":0.00561,"17.1":0.02246,"17.2":0.00561,"17.3":0.00561,"17.4":0.03368,"17.5":0.04491,"17.6":0.11789,"18.0":0.0393,"18.1":0.01684,"18.2":0.01123,"18.3":0.05053,"18.4":0.01123,"18.5-18.6":0.0786,"26.0":0.20772,"26.1":0.24702,"26.2":0.00561},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00181,"5.0-5.1":0,"6.0-6.1":0.00726,"7.0-7.1":0.00544,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01633,"10.0-10.2":0.00181,"10.3":0.02903,"11.0-11.2":0.3375,"11.3-11.4":0.01089,"12.0-12.1":0.00363,"12.2-12.5":0.08528,"13.0-13.1":0,"13.2":0.00907,"13.3":0.00363,"13.4-13.7":0.01633,"14.0-14.4":0.02722,"14.5-14.8":0.03448,"15.0-15.1":0.02903,"15.2-15.3":0.02359,"15.4":0.0254,"15.5":0.02722,"15.6-15.8":0.39375,"16.0":0.04899,"16.1":0.09073,"16.2":0.04718,"16.3":0.0871,"16.4":0.02177,"16.5":0.03629,"16.6-16.7":0.53165,"17.0":0.04536,"17.1":0.05444,"17.2":0.03992,"17.3":0.05625,"17.4":0.09254,"17.5":0.17601,"17.6-17.7":0.43185,"18.0":0.09617,"18.1":0.20323,"18.2":0.10887,"18.3":0.35383,"18.4":0.18145,"18.5-18.7":12.67074,"26.0":0.86915,"26.1":0.79294},P:{"21":0.01079,"22":0.01079,"24":0.01079,"25":0.02159,"26":0.04318,"27":0.02159,"28":0.07556,"29":0.89589,_:"4 20 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01079,"14.0":0.02159},I:{"0":0.02627,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.10963,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.05053,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00877},H:{"0":0},L:{"0":28.30457},R:{_:"0"},M:{"0":0.10086}};
Index: node_modules/caniuse-lite/data/regions/DZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/DZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/DZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01688,"34":0.00422,"40":0.00422,"43":0.00422,"45":0.00422,"47":0.00422,"48":0.00422,"52":0.0211,"72":0.00422,"78":0.00422,"81":0.00422,"94":0.00422,"115":0.6752,"127":0.00844,"128":0.01266,"133":0.00422,"134":0.00422,"135":0.00422,"136":0.00422,"137":0.00422,"138":0.01688,"139":0.00422,"140":0.03798,"141":0.00844,"142":0.00844,"143":0.02532,"144":0.48952,"145":0.5908,"146":0.00422,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 44 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 147 148 3.5 3.6"},D:{"5":0.00422,"38":0.00422,"43":0.0211,"47":0.00422,"48":0.00422,"49":0.01266,"50":0.00422,"51":0.00422,"55":0.00422,"56":0.0211,"58":0.00422,"59":0.00422,"60":0.00422,"62":0.00422,"63":0.00422,"64":0.00422,"65":0.00844,"66":0.00422,"68":0.00844,"69":0.02532,"70":0.00844,"71":0.01266,"72":0.01266,"73":0.01266,"74":0.00844,"75":0.01266,"76":0.00422,"77":0.00422,"78":0.00844,"79":0.07174,"80":0.00844,"81":0.0211,"83":0.0633,"84":0.00844,"85":0.00844,"86":0.0211,"87":0.05908,"88":0.01266,"89":0.00844,"90":0.00844,"91":0.01266,"92":0.00422,"93":0.00422,"94":0.01688,"95":0.0211,"96":0.01266,"97":0.00844,"98":0.02532,"99":0.00844,"100":0.00844,"101":0.01266,"102":0.01266,"103":0.04642,"104":0.07174,"105":0.00422,"106":0.02532,"107":0.00844,"108":0.02532,"109":4.03432,"110":0.02954,"111":0.02532,"112":8.14038,"113":0.01688,"114":0.00844,"115":0.00422,"116":0.02532,"117":0.00422,"118":0.00844,"119":0.08018,"120":0.01688,"121":0.01266,"122":0.05908,"123":0.01688,"124":0.03798,"125":0.29962,"126":1.8568,"127":0.02532,"128":0.03376,"129":0.01688,"130":0.02532,"131":0.0844,"132":0.06752,"133":0.07174,"134":0.08862,"135":0.05064,"136":0.06752,"137":0.08018,"138":0.24054,"139":0.1266,"140":0.3165,"141":2.6586,"142":9.40638,"143":0.0211,"144":0.00422,_:"4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 52 53 54 57 61 67 145 146"},F:{"25":0.00422,"46":0.00422,"79":0.0211,"84":0.00422,"85":0.01266,"86":0.00422,"90":0.00422,"92":0.0211,"93":0.00844,"95":0.12238,"114":0.00422,"120":0.00422,"122":0.32072,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00422,"16":0.00422,"17":0.00422,"18":0.00844,"89":0.00422,"92":0.03798,"100":0.00422,"109":0.04642,"114":0.1266,"119":0.00422,"122":0.00844,"131":0.00844,"132":0.00422,"133":0.00422,"134":0.00422,"135":0.00422,"136":0.00422,"137":0.00844,"138":0.00844,"139":0.01266,"140":0.02532,"141":0.26586,"142":1.63314,"143":0.00844,_:"12 13 15 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 120 121 123 124 125 126 127 128 129 130"},E:{"14":0.00422,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.1 16.4 17.0","13.1":0.00844,"14.1":0.00844,"15.5":0.00422,"15.6":0.03376,"16.2":0.00422,"16.3":0.00844,"16.5":0.00844,"16.6":0.03798,"17.1":0.02954,"17.2":0.00422,"17.3":0.00422,"17.4":0.01266,"17.5":0.01266,"17.6":0.03798,"18.0":0.00844,"18.1":0.00844,"18.2":0.00844,"18.3":0.01688,"18.4":0.00422,"18.5-18.6":0.04642,"26.0":0.10128,"26.1":0.10128,"26.2":0.00422},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00049,"5.0-5.1":0,"6.0-6.1":0.00194,"7.0-7.1":0.00146,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00437,"10.0-10.2":0.00049,"10.3":0.00777,"11.0-11.2":0.09031,"11.3-11.4":0.00291,"12.0-12.1":0.00097,"12.2-12.5":0.02282,"13.0-13.1":0,"13.2":0.00243,"13.3":0.00097,"13.4-13.7":0.00437,"14.0-14.4":0.00728,"14.5-14.8":0.00922,"15.0-15.1":0.00777,"15.2-15.3":0.00631,"15.4":0.0068,"15.5":0.00728,"15.6-15.8":0.10536,"16.0":0.01311,"16.1":0.02428,"16.2":0.01262,"16.3":0.0233,"16.4":0.00583,"16.5":0.00971,"16.6-16.7":0.14226,"17.0":0.01214,"17.1":0.01457,"17.2":0.01068,"17.3":0.01505,"17.4":0.02476,"17.5":0.0471,"17.6-17.7":0.11555,"18.0":0.02573,"18.1":0.05438,"18.2":0.02913,"18.3":0.09468,"18.4":0.04855,"18.5-18.7":3.39039,"26.0":0.23256,"26.1":0.21217},P:{"4":0.06225,"21":0.02075,"22":0.02075,"23":0.03112,"24":0.0415,"25":0.02075,"26":0.05187,"27":0.06225,"28":0.23861,"29":0.58096,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.06225,"17.0":0.01037,"19.0":0.01037},I:{"0":0.06349,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.43928,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.03472,"9":0.00579,"10":0.00579,"11":0.15626,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00578},O:{"0":0.17918},H:{"0":0},L:{"0":56.103},R:{_:"0"},M:{"0":0.1445}};
Index: node_modules/caniuse-lite/data/regions/EC.js
===================================================================
--- node_modules/caniuse-lite/data/regions/EC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/EC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.10635,"5":0.02454,"89":0.00818,"115":0.06545,"135":0.00818,"136":0.00818,"139":0.00818,"140":0.01636,"141":0.00818,"142":0.00818,"143":0.01636,"144":0.40087,"145":0.50722,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 137 138 146 147 148 3.5 3.6"},D:{"69":0.02454,"79":0.01636,"85":0.00818,"87":0.01636,"91":0.00818,"97":0.01636,"99":0.00818,"103":0.03272,"104":0.00818,"106":0.00818,"108":0.00818,"109":0.26179,"111":0.02454,"112":52.43203,"116":0.04909,"119":0.01636,"120":0.00818,"121":0.00818,"122":0.10635,"123":0.01636,"124":0.01636,"125":1.00626,"126":6.70842,"127":0.03272,"128":0.04091,"129":0.01636,"130":0.00818,"131":0.08999,"132":0.04909,"133":0.02454,"134":0.04091,"135":0.03272,"136":0.02454,"137":0.02454,"138":0.08999,"139":0.06545,"140":0.17998,"141":2.20887,"142":9.60449,"143":0.01636,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 83 84 86 88 89 90 92 93 94 95 96 98 100 101 102 105 107 110 113 114 115 117 118 144 145 146"},F:{"92":0.00818,"93":0.00818,"95":0.01636,"122":0.26997,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00818,"109":0.01636,"114":0.08999,"124":0.01636,"131":0.00818,"134":0.00818,"135":0.00818,"136":0.00818,"138":0.01636,"139":0.00818,"140":0.01636,"141":0.21271,"142":1.87345,"143":0.00818,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 125 126 127 128 129 130 132 133 137"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.3 17.4 18.0 18.1 26.2","14.1":0.00818,"15.6":0.01636,"16.6":0.00818,"17.1":0.00818,"17.2":0.00818,"17.5":0.00818,"17.6":0.03272,"18.2":0.00818,"18.3":0.01636,"18.4":0.00818,"18.5-18.6":0.03272,"26.0":0.08999,"26.1":0.09817},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00034,"5.0-5.1":0,"6.0-6.1":0.00134,"7.0-7.1":0.00101,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00302,"10.0-10.2":0.00034,"10.3":0.00536,"11.0-11.2":0.06235,"11.3-11.4":0.00201,"12.0-12.1":0.00067,"12.2-12.5":0.01576,"13.0-13.1":0,"13.2":0.00168,"13.3":0.00067,"13.4-13.7":0.00302,"14.0-14.4":0.00503,"14.5-14.8":0.00637,"15.0-15.1":0.00536,"15.2-15.3":0.00436,"15.4":0.00469,"15.5":0.00503,"15.6-15.8":0.07275,"16.0":0.00905,"16.1":0.01676,"16.2":0.00872,"16.3":0.01609,"16.4":0.00402,"16.5":0.0067,"16.6-16.7":0.09823,"17.0":0.00838,"17.1":0.01006,"17.2":0.00738,"17.3":0.01039,"17.4":0.0171,"17.5":0.03252,"17.6-17.7":0.07979,"18.0":0.01777,"18.1":0.03755,"18.2":0.02011,"18.3":0.06537,"18.4":0.03352,"18.5-18.7":2.34098,"26.0":0.16058,"26.1":0.1465},P:{"22":0.01095,"25":0.01095,"26":0.03284,"27":0.01095,"28":0.04378,"29":0.39402,_:"4 20 21 23 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.03284},I:{"0":0.00545,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.04545,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.06545,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00727},H:{"0":0},L:{"0":16.67561},R:{_:"0"},M:{"0":0.06727}};
Index: node_modules/caniuse-lite/data/regions/EE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/EE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/EE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.0228,"77":0.0684,"92":0.0076,"115":2.5232,"125":0.0152,"127":0.0076,"128":0.038,"129":0.0076,"134":0.0152,"136":0.0076,"137":0.0076,"138":0.0076,"139":0.0076,"140":0.0836,"141":0.0076,"142":0.038,"143":0.0836,"144":1.0412,"145":1.3604,"146":0.0152,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 130 131 132 133 135 147 148 3.5 3.6"},D:{"58":0.0076,"79":0.0076,"87":0.0228,"90":0.0076,"91":0.0076,"98":0.0076,"100":0.0076,"103":0.0076,"104":0.0228,"106":0.0304,"107":0.0076,"108":0.0076,"109":1.3224,"110":0.0076,"112":0.5548,"114":0.0152,"116":0.0684,"117":0.0152,"118":0.0076,"119":0.0076,"120":0.0228,"121":0.0228,"122":0.0532,"123":0.0076,"124":0.1292,"125":0.038,"126":0.0836,"127":0.152,"128":0.1216,"129":0.0152,"130":0.0684,"131":0.3344,"132":0.0608,"133":0.2508,"134":0.1596,"135":0.076,"136":0.0608,"137":0.1368,"138":0.6536,"139":0.418,"140":0.5928,"141":10.3968,"142":36.3584,"143":0.0836,"144":0.0228,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 92 93 94 95 96 97 99 101 102 105 111 113 115 145 146"},F:{"83":0.0076,"92":0.0304,"93":0.0076,"95":0.0304,"113":0.0076,"120":0.0152,"122":1.3984,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.038,"122":0.0076,"131":0.0152,"132":0.0076,"135":0.0076,"136":0.0076,"137":0.038,"138":0.0228,"139":0.0076,"140":0.0532,"141":0.57,"142":4.1496,"143":0.0076,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 133 134"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 16.0 16.1","12.1":0.0076,"13.1":0.0076,"14.1":0.0152,"15.4":0.0076,"15.5":0.0152,"15.6":0.0836,"16.2":0.0076,"16.3":0.0076,"16.4":0.0152,"16.5":0.0076,"16.6":0.1216,"17.0":0.0076,"17.1":0.0456,"17.2":0.0152,"17.3":0.0076,"17.4":0.0152,"17.5":0.0456,"17.6":0.1368,"18.0":0.0228,"18.1":0.0532,"18.2":0.0152,"18.3":0.0228,"18.4":0.0304,"18.5-18.6":0.0988,"26.0":0.2888,"26.1":0.3496,"26.2":0.0152},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00075,"5.0-5.1":0,"6.0-6.1":0.00299,"7.0-7.1":0.00224,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00673,"10.0-10.2":0.00075,"10.3":0.01197,"11.0-11.2":0.1391,"11.3-11.4":0.00449,"12.0-12.1":0.0015,"12.2-12.5":0.03515,"13.0-13.1":0,"13.2":0.00374,"13.3":0.0015,"13.4-13.7":0.00673,"14.0-14.4":0.01122,"14.5-14.8":0.01421,"15.0-15.1":0.01197,"15.2-15.3":0.00972,"15.4":0.01047,"15.5":0.01122,"15.6-15.8":0.16228,"16.0":0.02019,"16.1":0.03739,"16.2":0.01944,"16.3":0.0359,"16.4":0.00897,"16.5":0.01496,"16.6-16.7":0.21912,"17.0":0.0187,"17.1":0.02244,"17.2":0.01645,"17.3":0.02318,"17.4":0.03814,"17.5":0.07254,"17.6-17.7":0.17799,"18.0":0.03964,"18.1":0.08376,"18.2":0.04487,"18.3":0.14583,"18.4":0.07478,"18.5-18.7":5.22217,"26.0":0.35822,"26.1":0.32681},P:{"23":0.01043,"24":0.03129,"25":0.01043,"26":0.02086,"27":0.04172,"28":0.16687,"29":1.40793,_:"4 20 21 22 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","5.0-5.4":0.01043,"7.2-7.4":0.01043,"17.0":0.01043},I:{"0":0.00719,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.2016,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.152,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.0048},O:{"0":0.0288},H:{"0":0},L:{"0":15.0812},R:{_:"0"},M:{"0":0.3144}};
Index: node_modules/caniuse-lite/data/regions/EG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/EG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/EG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00347,"36":0.00347,"47":0.00347,"52":0.01736,"78":0.00347,"115":0.35067,"121":0.00347,"125":0.00347,"127":0.00347,"128":0.00347,"136":0.00694,"138":0.01389,"139":0.00347,"140":0.03819,"141":0.00694,"142":0.00694,"143":0.01736,"144":0.40275,"145":0.55899,"146":0.00347,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 122 123 124 126 129 130 131 132 133 134 135 137 147 148 3.5 3.6"},D:{"29":0.00347,"43":0.01389,"47":0.00694,"48":0.01042,"49":0.00694,"58":0.01042,"63":0.00347,"69":0.00694,"70":0.00694,"71":0.00694,"72":0.00347,"73":0.00347,"74":0.00347,"75":0.00347,"76":0.00694,"77":0.00347,"78":0.00347,"79":0.06597,"80":0.00694,"81":0.00694,"83":0.00347,"84":0.00347,"85":0.00694,"86":0.01736,"87":0.0625,"88":0.00347,"90":0.00347,"91":0.01389,"92":0.00347,"94":0.00347,"95":0.00694,"96":0.00347,"97":0.00347,"98":0.00347,"99":0.00347,"100":0.00347,"101":0.00347,"102":0.00347,"103":0.0243,"104":0.00694,"105":0.00347,"106":0.00347,"107":0.00347,"108":0.0243,"109":1.80891,"110":0.00347,"111":0.00694,"112":3.98238,"114":0.02083,"116":0.01389,"117":0.00694,"118":0.00694,"119":0.00694,"120":0.02083,"121":0.01389,"122":0.05902,"123":0.0243,"124":0.01389,"125":0.11458,"126":0.64926,"127":0.01042,"128":0.02778,"129":0.01389,"130":0.02778,"131":0.05555,"132":0.02083,"133":0.0243,"134":0.04861,"135":0.05208,"136":0.06944,"137":0.04861,"138":0.15624,"139":0.27776,"140":0.20832,"141":2.79843,"142":9.78062,"143":0.05902,"144":0.00694,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 50 51 52 53 54 55 56 57 59 60 61 62 64 65 66 67 68 89 93 113 115 145 146"},F:{"46":0.00347,"79":0.00694,"83":0.00347,"92":0.03472,"93":0.00694,"95":0.00694,"122":0.05902,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00694,"90":0.00347,"92":0.02083,"100":0.00347,"109":0.02083,"114":0.05208,"119":0.01042,"122":0.04166,"129":0.00347,"130":0.00347,"131":0.00694,"132":0.00347,"133":0.00694,"134":0.00347,"135":0.00347,"136":0.00694,"137":0.00347,"138":0.02083,"139":0.01042,"140":0.02083,"141":0.26734,"142":2.26722,"143":0.00694,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 120 121 123 124 125 126 127 128"},E:{"4":0.00347,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 17.2 17.3","5.1":0.05902,"13.1":0.00347,"15.6":0.0243,"16.5":0.00347,"16.6":0.0243,"17.0":0.00347,"17.1":0.01042,"17.4":0.00694,"17.5":0.00694,"17.6":0.01736,"18.0":0.00347,"18.1":0.00347,"18.2":0.00347,"18.3":0.01042,"18.4":0.00347,"18.5-18.6":0.02083,"26.0":0.06597,"26.1":0.0625,"26.2":0.00347},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0,"6.0-6.1":0.00246,"7.0-7.1":0.00185,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00555,"10.0-10.2":0.00062,"10.3":0.00986,"11.0-11.2":0.11462,"11.3-11.4":0.0037,"12.0-12.1":0.00123,"12.2-12.5":0.02896,"13.0-13.1":0,"13.2":0.00308,"13.3":0.00123,"13.4-13.7":0.00555,"14.0-14.4":0.00924,"14.5-14.8":0.01171,"15.0-15.1":0.00986,"15.2-15.3":0.00801,"15.4":0.00863,"15.5":0.00924,"15.6-15.8":0.13372,"16.0":0.01664,"16.1":0.03081,"16.2":0.01602,"16.3":0.02958,"16.4":0.00739,"16.5":0.01232,"16.6-16.7":0.18056,"17.0":0.01541,"17.1":0.01849,"17.2":0.01356,"17.3":0.0191,"17.4":0.03143,"17.5":0.05978,"17.6-17.7":0.14667,"18.0":0.03266,"18.1":0.06902,"18.2":0.03697,"18.3":0.12017,"18.4":0.06162,"18.5-18.7":4.30323,"26.0":0.29518,"26.1":0.2693},P:{"4":0.09484,"20":0.01054,"21":0.01054,"22":0.03161,"23":0.02108,"24":0.02108,"25":0.04215,"26":0.11592,"27":0.06323,"28":0.27399,"29":1.38049,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 14.0 15.0 16.0 18.0","7.2-7.4":0.09484,"11.1-11.2":0.01054,"12.0":0.01054,"13.0":0.01054,"17.0":0.01054,"19.0":0.01054},I:{"0":0.07171,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.34598,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.04422,"9":0.00804,"10":0.01608,"11":0.23719,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.26112},H:{"0":0},L:{"0":63.27986},R:{_:"0"},M:{"0":0.2089}};
Index: node_modules/caniuse-lite/data/regions/ER.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ER.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ER.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"43":0.13979,"60":0.02467,"90":0.02467,"94":0.36181,"96":0.08223,"99":0.11512,"115":1.61993,"136":0.02467,"140":0.13979,"141":0.02467,"142":0.22202,"143":0.33714,"144":2.77115,"145":3.94704,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 95 97 98 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 146 147 148 3.5 3.6"},D:{"83":0.08223,"106":0.19735,"109":7.02244,"115":0.05756,"118":0.19735,"120":0.11512,"121":0.05756,"122":0.08223,"124":0.02467,"126":0.11512,"129":0.02467,"131":2.77115,"133":0.05756,"134":0.25491,"135":0.47693,"136":0.27958,"137":0.08223,"138":0.22202,"139":0.64139,"140":0.30425,"141":4.44864,"142":12.81143,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 110 111 112 113 114 116 117 119 123 125 127 128 130 132 143 144 145 146"},F:{"34":0.05756,"82":0.05756,"122":0.08223,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.02467,"17":0.02467,"89":0.05756,"90":0.05756,"100":0.02467,"108":0.05756,"109":0.19735,"122":0.11512,"130":0.05756,"131":0.11512,"133":0.05756,"137":0.02467,"138":0.33714,"139":1.75972,"140":0.05756,"141":0.22202,"142":6.43861,_:"12 13 15 16 18 79 80 81 83 84 85 86 87 88 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111 112 113 114 115 116 117 118 119 120 121 123 124 125 126 127 128 129 132 134 135 136 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.1 26.2","15.6":0.08223,"17.5":0.02467,"26.0":0.02467},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00006,"5.0-5.1":0,"6.0-6.1":0.00026,"7.0-7.1":0.00019,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00058,"10.0-10.2":0.00006,"10.3":0.00103,"11.0-11.2":0.01193,"11.3-11.4":0.00038,"12.0-12.1":0.00013,"12.2-12.5":0.00302,"13.0-13.1":0,"13.2":0.00032,"13.3":0.00013,"13.4-13.7":0.00058,"14.0-14.4":0.00096,"14.5-14.8":0.00122,"15.0-15.1":0.00103,"15.2-15.3":0.00083,"15.4":0.0009,"15.5":0.00096,"15.6-15.8":0.01392,"16.0":0.00173,"16.1":0.00321,"16.2":0.00167,"16.3":0.00308,"16.4":0.00077,"16.5":0.00128,"16.6-16.7":0.0188,"17.0":0.0016,"17.1":0.00192,"17.2":0.00141,"17.3":0.00199,"17.4":0.00327,"17.5":0.00622,"17.6-17.7":0.01527,"18.0":0.0034,"18.1":0.00718,"18.2":0.00385,"18.3":0.01251,"18.4":0.00641,"18.5-18.7":0.44796,"26.0":0.03073,"26.1":0.02803},P:{"27":0.15424,"28":0.12119,_:"4 20 21 22 23 24 25 26 29 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.0924,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.21324},H:{"0":0},L:{"0":46.27364},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/ES.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ES.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ES.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.00437,"48":0.00437,"52":0.00874,"54":0.01312,"59":0.00874,"67":0.00437,"77":0.00437,"78":0.01312,"88":0.00437,"98":0.00437,"108":0.00437,"109":0.00437,"113":0.00437,"115":0.16176,"125":0.00437,"127":0.00437,"128":0.01312,"130":0.00437,"132":0.00437,"133":0.00437,"134":0.00437,"135":0.01312,"136":0.01749,"137":0.00437,"138":0.00874,"139":0.00874,"140":0.06558,"141":0.00874,"142":0.02186,"143":0.03935,"144":0.78259,"145":0.9837,"146":0.00437,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 106 107 110 111 112 114 116 117 118 119 120 121 122 123 124 126 129 131 147 148 3.5 3.6"},D:{"38":0.00437,"39":0.00437,"40":0.00437,"41":0.00437,"42":0.00437,"43":0.00437,"44":0.00437,"45":0.00437,"46":0.00437,"47":0.00437,"48":0.00437,"49":0.01749,"50":0.00437,"51":0.00437,"52":0.00437,"53":0.00437,"54":0.00437,"55":0.00437,"56":0.00437,"57":0.00437,"58":0.00874,"59":0.00437,"60":0.00437,"66":0.04372,"73":0.00437,"75":0.05246,"79":0.01749,"80":0.00437,"83":0.00437,"84":0.00437,"87":0.02186,"88":0.00437,"91":0.00437,"94":0.00437,"97":0.00437,"99":0.00437,"102":0.00437,"103":0.04372,"104":0.00874,"105":0.00437,"106":0.00437,"107":0.00437,"108":0.01312,"109":1.04928,"110":0.00437,"111":0.01312,"112":0.00437,"113":0.00437,"114":0.01312,"115":0.00437,"116":0.10493,"117":0.00437,"118":0.00437,"119":0.01749,"120":0.0306,"121":0.01312,"122":0.05684,"123":0.02186,"124":0.0306,"125":0.05684,"126":0.04372,"127":0.01312,"128":0.08307,"129":0.02186,"130":0.06121,"131":0.08307,"132":0.05684,"133":0.05246,"134":0.04809,"135":0.07432,"136":0.0787,"137":0.10493,"138":0.28418,"139":0.26232,"140":0.52901,"141":6.25196,"142":15.39818,"143":0.0306,"144":0.00437,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 61 62 63 64 65 67 68 69 70 71 72 74 76 77 78 81 85 86 89 90 92 93 95 96 98 100 101 145 146"},F:{"46":0.00437,"92":0.06121,"93":0.00874,"95":0.01312,"114":0.00437,"119":0.00437,"120":0.05684,"122":0.58148,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00437,"92":0.00437,"109":0.02623,"114":0.00437,"120":0.00437,"121":0.00437,"126":0.00437,"130":0.00437,"131":0.00874,"132":0.00437,"133":0.00874,"134":0.00874,"135":0.00437,"136":0.00874,"137":0.00874,"138":0.01749,"139":0.01312,"140":0.04372,"141":0.35413,"142":3.29212,"143":0.00437,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 122 123 124 125 127 128 129"},E:{"13":0.00437,"14":0.00874,"15":0.00437,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.1","11.1":0.00874,"12.1":0.00874,"13.1":0.03935,"14.1":0.02623,"15.2-15.3":0.00437,"15.4":0.00437,"15.5":0.00874,"15.6":0.13116,"16.0":0.00874,"16.1":0.00874,"16.2":0.00874,"16.3":0.01749,"16.4":0.00874,"16.5":0.01312,"16.6":0.16176,"17.0":0.00874,"17.1":0.1093,"17.2":0.01312,"17.3":0.01749,"17.4":0.02623,"17.5":0.03935,"17.6":0.16176,"18.0":0.01749,"18.1":0.02186,"18.2":0.00874,"18.3":0.05246,"18.4":0.03498,"18.5-18.6":0.16614,"26.0":0.27981,"26.1":0.2973,"26.2":0.01312},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00118,"5.0-5.1":0,"6.0-6.1":0.00473,"7.0-7.1":0.00355,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01065,"10.0-10.2":0.00118,"10.3":0.01893,"11.0-11.2":0.22004,"11.3-11.4":0.0071,"12.0-12.1":0.00237,"12.2-12.5":0.0556,"13.0-13.1":0,"13.2":0.00592,"13.3":0.00237,"13.4-13.7":0.01065,"14.0-14.4":0.01775,"14.5-14.8":0.02248,"15.0-15.1":0.01893,"15.2-15.3":0.01538,"15.4":0.01656,"15.5":0.01775,"15.6-15.8":0.25671,"16.0":0.03194,"16.1":0.05915,"16.2":0.03076,"16.3":0.05678,"16.4":0.0142,"16.5":0.02366,"16.6-16.7":0.34662,"17.0":0.02958,"17.1":0.03549,"17.2":0.02603,"17.3":0.03667,"17.4":0.06033,"17.5":0.11475,"17.6-17.7":0.28156,"18.0":0.0627,"18.1":0.1325,"18.2":0.07098,"18.3":0.23069,"18.4":0.1183,"18.5-18.7":8.26093,"26.0":0.56666,"26.1":0.51697},P:{"4":0.03116,"20":0.01039,"21":0.02077,"22":0.01039,"23":0.02077,"24":0.02077,"25":0.02077,"26":0.05193,"27":0.06231,"28":0.25963,"29":2.08739,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.01039,"19.0":0.01039},I:{"0":0.0281,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.34331,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00972,"9":0.00486,"10":0.00486,"11":0.11173,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02251},H:{"0":0},L:{"0":47.52163},R:{_:"0"},M:{"0":0.41647}};
Index: node_modules/caniuse-lite/data/regions/ET.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ET.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ET.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03959,"43":0.00396,"44":0.00396,"47":0.00792,"48":0.00396,"52":0.00792,"58":0.00396,"66":0.00792,"72":0.00792,"77":0.00396,"97":0.00396,"105":0.00396,"112":0.0198,"113":0.00396,"115":1.14019,"125":0.00396,"127":0.02375,"128":0.01188,"131":0.05939,"133":0.01188,"136":0.00792,"138":0.01584,"139":0.00396,"140":0.03563,"141":0.00792,"142":0.00792,"143":0.02771,"144":0.51863,"145":0.6374,"146":0.0198,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 45 46 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 100 101 102 103 104 106 107 108 109 110 111 114 116 117 118 119 120 121 122 123 124 126 129 130 132 134 135 137 147 148 3.5 3.6"},D:{"11":0.00396,"38":0.00396,"40":0.00396,"43":0.01188,"49":0.01188,"50":0.00396,"51":0.00396,"56":0.00396,"58":0.01584,"61":0.00396,"63":0.00396,"64":0.00396,"65":0.00792,"66":0.0198,"67":0.00792,"68":0.01584,"69":0.04751,"70":0.00396,"71":0.01584,"72":0.00792,"73":0.02375,"74":0.00792,"75":0.00792,"76":0.00396,"77":0.01188,"78":0.00396,"79":0.04355,"80":0.02771,"81":0.00396,"83":0.01584,"84":0.00396,"85":0.00792,"86":0.01584,"87":0.02771,"88":0.00792,"89":0.00396,"90":0.00396,"91":0.01188,"92":0.00396,"93":0.01188,"94":0.00396,"95":0.01584,"96":0.00396,"97":0.00792,"98":0.0198,"99":0.00792,"100":0.00792,"101":0.00792,"102":0.00792,"103":0.03563,"104":0.0198,"105":0.00792,"106":0.00792,"107":0.00396,"108":0.00792,"109":0.67699,"110":0.00396,"111":0.04751,"112":14.12571,"113":0.00396,"114":0.02375,"115":0.00396,"116":0.0198,"117":0.00396,"118":0.00396,"119":0.04355,"120":0.0198,"121":0.01584,"122":0.0871,"123":0.01188,"124":0.01584,"125":0.53842,"126":2.27247,"127":0.0198,"128":0.02771,"129":0.01188,"130":0.02375,"131":0.07126,"132":0.0673,"133":0.03563,"134":0.04751,"135":0.04751,"136":0.05939,"137":0.12273,"138":0.24942,"139":0.16628,"140":0.35235,"141":2.37936,"142":6.3542,"143":0.03959,"144":0.00792,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 45 46 47 48 52 53 54 55 57 59 60 62 145 146"},F:{"42":0.00396,"79":0.00792,"81":0.00396,"82":0.01188,"85":0.00396,"90":0.00396,"92":0.02375,"93":0.00396,"95":0.06334,"117":0.00396,"119":0.00396,"120":0.00396,"122":0.18211,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 86 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00792,"13":0.00396,"14":0.00792,"15":0.00396,"16":0.00396,"17":0.00396,"18":0.03563,"84":0.00396,"89":0.00396,"90":0.00396,"92":0.03959,"100":0.00792,"109":0.01584,"114":0.36819,"120":0.00396,"122":0.00792,"123":0.00396,"127":0.00396,"128":0.00396,"130":0.00396,"131":0.00396,"132":0.00396,"133":0.00396,"134":0.00396,"135":0.00792,"136":0.01188,"137":0.01188,"138":0.02771,"139":0.0198,"140":0.03563,"141":0.25338,"142":2.07056,"143":0.00792,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 124 125 126 129"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 17.5 18.0 18.2 26.2","11.1":0.00396,"13.1":0.00792,"14.1":0.00396,"15.6":0.01584,"16.6":0.00792,"17.1":0.00396,"17.4":0.00396,"17.6":0.01584,"18.1":0.00396,"18.3":0.00396,"18.4":0.00396,"18.5-18.6":0.00792,"26.0":0.02771,"26.1":0.02771},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00012,"5.0-5.1":0,"6.0-6.1":0.00048,"7.0-7.1":0.00036,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00109,"10.0-10.2":0.00012,"10.3":0.00193,"11.0-11.2":0.02247,"11.3-11.4":0.00072,"12.0-12.1":0.00024,"12.2-12.5":0.00568,"13.0-13.1":0,"13.2":0.0006,"13.3":0.00024,"13.4-13.7":0.00109,"14.0-14.4":0.00181,"14.5-14.8":0.0023,"15.0-15.1":0.00193,"15.2-15.3":0.00157,"15.4":0.00169,"15.5":0.00181,"15.6-15.8":0.02622,"16.0":0.00326,"16.1":0.00604,"16.2":0.00314,"16.3":0.0058,"16.4":0.00145,"16.5":0.00242,"16.6-16.7":0.0354,"17.0":0.00302,"17.1":0.00362,"17.2":0.00266,"17.3":0.00375,"17.4":0.00616,"17.5":0.01172,"17.6-17.7":0.02876,"18.0":0.0064,"18.1":0.01353,"18.2":0.00725,"18.3":0.02356,"18.4":0.01208,"18.5-18.7":0.84369,"26.0":0.05787,"26.1":0.0528},P:{"4":0.08528,"22":0.02132,"23":0.01066,"24":0.02132,"25":0.04264,"26":0.0533,"27":0.11727,"28":0.22387,"29":0.44774,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.06396},I:{"0":0.22924,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":1.24569,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.10689,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.05437,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01208},O:{"0":0.11478},H:{"0":1.95},L:{"0":57.09428},R:{_:"0"},M:{"0":0.14498}};
Index: node_modules/caniuse-lite/data/regions/FI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/FI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/FI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.03408,"68":0.02045,"72":0.02726,"77":0.00682,"78":0.00682,"113":0.00682,"115":0.18403,"124":0.00682,"128":0.01363,"133":0.00682,"135":0.23174,"136":0.00682,"138":0.01363,"139":0.02045,"140":0.09542,"141":0.02726,"142":0.01363,"143":0.0409,"144":1.00877,"145":1.2337,"146":0.00682,"147":0.00682,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 123 125 126 127 129 130 131 132 134 137 148 3.5 3.6"},D:{"39":0.01363,"40":0.01363,"41":0.02045,"42":0.02045,"43":0.01363,"44":0.01363,"45":0.01363,"46":0.01363,"47":0.01363,"48":0.01363,"49":0.01363,"50":0.01363,"51":0.01363,"52":0.36806,"53":0.01363,"54":0.01363,"55":0.01363,"56":0.01363,"57":0.01363,"58":0.02045,"59":0.01363,"60":0.01363,"66":0.02726,"71":0.0409,"73":0.00682,"78":0.00682,"79":0.01363,"80":0.00682,"81":0.00682,"83":0.00682,"87":0.05453,"88":0.00682,"91":0.45667,"93":0.00682,"94":0.00682,"101":0.00682,"102":0.01363,"103":0.02726,"104":0.14314,"108":0.00682,"109":0.25219,"111":0.00682,"112":0.00682,"114":0.06134,"116":0.03408,"117":0.00682,"118":0.00682,"119":0.00682,"120":0.08861,"121":0.03408,"122":0.0409,"123":0.03408,"124":0.05453,"125":0.04771,"126":0.03408,"127":0.01363,"128":0.06134,"129":0.12269,"130":0.04771,"131":0.08861,"132":4.69622,"133":0.41578,"134":0.0409,"135":0.10224,"136":0.10906,"137":0.08861,"138":0.66797,"139":1.05648,"140":6.52291,"141":19.5551,"142":19.18022,"143":0.02726,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 67 68 69 70 72 74 75 76 77 84 85 86 89 90 92 95 96 97 98 99 100 105 106 107 110 113 115 144 145 146"},F:{"68":0.00682,"78":0.00682,"92":0.03408,"93":0.00682,"95":0.04771,"113":0.00682,"122":0.39533,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.02045,"131":0.01363,"132":0.00682,"133":0.00682,"134":0.00682,"135":0.00682,"136":0.00682,"137":0.00682,"138":0.00682,"139":0.01363,"140":0.02726,"141":0.3408,"142":2.78093,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 143"},E:{"13":0.00682,"14":0.00682,"15":0.00682,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.4 16.0 16.4 17.0","11.1":0.03408,"13.1":0.00682,"14.1":0.00682,"15.5":0.00682,"15.6":0.0409,"16.1":0.00682,"16.2":0.00682,"16.3":0.02045,"16.5":0.00682,"16.6":0.10224,"17.1":0.07498,"17.2":0.00682,"17.3":0.00682,"17.4":0.02045,"17.5":0.03408,"17.6":0.12269,"18.0":0.00682,"18.1":0.01363,"18.2":0.00682,"18.3":0.02726,"18.4":0.02045,"18.5-18.6":0.06816,"26.0":0.20448,"26.1":0.25901,"26.2":0.00682},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00072,"5.0-5.1":0,"6.0-6.1":0.00286,"7.0-7.1":0.00215,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00644,"10.0-10.2":0.00072,"10.3":0.01146,"11.0-11.2":0.13319,"11.3-11.4":0.0043,"12.0-12.1":0.00143,"12.2-12.5":0.03366,"13.0-13.1":0,"13.2":0.00358,"13.3":0.00143,"13.4-13.7":0.00644,"14.0-14.4":0.01074,"14.5-14.8":0.01361,"15.0-15.1":0.01146,"15.2-15.3":0.00931,"15.4":0.01003,"15.5":0.01074,"15.6-15.8":0.15539,"16.0":0.01933,"16.1":0.0358,"16.2":0.01862,"16.3":0.03437,"16.4":0.00859,"16.5":0.01432,"16.6-16.7":0.20981,"17.0":0.0179,"17.1":0.02148,"17.2":0.01575,"17.3":0.0222,"17.4":0.03652,"17.5":0.06946,"17.6-17.7":0.17043,"18.0":0.03795,"18.1":0.0802,"18.2":0.04296,"18.3":0.13964,"18.4":0.07161,"18.5-18.7":5.0004,"26.0":0.343,"26.1":0.31293},P:{"4":0.01044,"20":0.01044,"21":0.01044,"22":0.02088,"23":0.03132,"24":0.03132,"25":0.04176,"26":0.03132,"27":0.07308,"28":0.40717,"29":1.30502,"5.0-5.4":0.01044,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.01908,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.38526,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02726,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00318},O:{"0":0.03821},H:{"0":0},L:{"0":23.44981},R:{_:"0"},M:{"0":0.6559}};
Index: node_modules/caniuse-lite/data/regions/FJ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/FJ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/FJ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00749,"46":0.01124,"78":0.00375,"81":0.00375,"88":0.00375,"103":0.00375,"112":0.00749,"115":0.05244,"127":0.00375,"140":0.06743,"141":0.00375,"143":0.00749,"144":0.58438,"145":0.52444,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 128 129 130 131 132 133 134 135 136 137 138 139 142 146 147 148 3.5 3.6"},D:{"44":0.00375,"63":0.00375,"68":0.01124,"69":0.01124,"70":0.00749,"74":0.01873,"75":0.00375,"77":0.00375,"78":0.00375,"79":0.03746,"80":0.00375,"83":0.00375,"86":0.00375,"87":0.01498,"88":0.01498,"91":0.00749,"93":0.01873,"97":0.01498,"100":0.00749,"103":0.00375,"104":0.00375,"108":0.00749,"109":0.11613,"111":0.46076,"113":0.00375,"114":0.00375,"116":0.02248,"117":0.05994,"118":0.00375,"119":0.00749,"120":0.00749,"121":0.00749,"122":0.02997,"125":0.38958,"126":0.07492,"127":0.01124,"128":0.02248,"129":0.01498,"130":0.00749,"131":0.14984,"132":0.06368,"133":0.02248,"134":0.06743,"135":0.01873,"136":0.01124,"137":0.0487,"138":0.20978,"139":0.07492,"140":0.15733,"141":2.56601,"142":9.15148,"143":0.01498,"144":0.02622,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 71 72 73 76 81 84 85 89 90 92 94 95 96 98 99 101 102 105 106 107 110 112 115 123 124 145 146"},F:{"88":0.00749,"90":0.00375,"92":0.03746,"93":0.01498,"102":0.00375,"110":0.00375,"113":0.02622,"120":0.00375,"122":0.11238,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 91 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 111 112 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00375,"17":0.00375,"92":0.00375,"100":0.02997,"109":0.01498,"112":0.01124,"113":0.08241,"114":0.73047,"119":0.00375,"120":0.00375,"122":0.00375,"123":0.00375,"126":0.00749,"128":0.00375,"129":0.00375,"130":0.00375,"131":0.00375,"132":0.00375,"133":0.00375,"134":0.00375,"135":0.00375,"136":0.00749,"137":0.02997,"138":0.17606,"139":0.03371,"140":0.07117,"141":0.6518,"142":4.63006,"143":0.01873,_:"13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 115 116 117 118 121 124 125 127"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.4 15.5 16.0 16.2 16.4 17.2","14.1":0.01498,"15.2-15.3":0.01124,"15.6":0.13111,"16.1":0.01873,"16.3":0.01124,"16.5":0.00749,"16.6":0.35212,"17.0":0.06743,"17.1":0.03746,"17.3":0.00375,"17.4":0.01873,"17.5":0.00375,"17.6":0.07117,"18.0":0.01498,"18.1":0.01498,"18.2":0.04495,"18.3":0.11987,"18.4":0.01498,"18.5-18.6":0.06368,"26.0":0.1386,"26.1":0.23974,"26.2":0.00749},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00084,"5.0-5.1":0,"6.0-6.1":0.00335,"7.0-7.1":0.00251,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00754,"10.0-10.2":0.00084,"10.3":0.0134,"11.0-11.2":0.15576,"11.3-11.4":0.00502,"12.0-12.1":0.00167,"12.2-12.5":0.03936,"13.0-13.1":0,"13.2":0.00419,"13.3":0.00167,"13.4-13.7":0.00754,"14.0-14.4":0.01256,"14.5-14.8":0.01591,"15.0-15.1":0.0134,"15.2-15.3":0.01089,"15.4":0.01172,"15.5":0.01256,"15.6-15.8":0.18172,"16.0":0.02261,"16.1":0.04187,"16.2":0.02177,"16.3":0.0402,"16.4":0.01005,"16.5":0.01675,"16.6-16.7":0.24536,"17.0":0.02094,"17.1":0.02512,"17.2":0.01842,"17.3":0.02596,"17.4":0.04271,"17.5":0.08123,"17.6-17.7":0.1993,"18.0":0.04438,"18.1":0.09379,"18.2":0.05024,"18.3":0.1633,"18.4":0.08374,"18.5-18.7":5.84764,"26.0":0.40112,"26.1":0.36595},P:{"4":0.01035,"20":0.17603,"21":0.04142,"22":0.23816,"23":0.1139,"24":0.27958,"25":1.06656,"26":0.23816,"27":0.92159,"28":2.81656,"29":3.73815,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0","7.2-7.4":0.42455,"16.0":0.02071,"18.0":0.01035,"19.0":0.01035},I:{"0":0.01874,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.24641,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03746,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00625},O:{"0":0.10006},H:{"0":0.01},L:{"0":55.85125},R:{_:"0"},M:{"0":0.15635}};
Index: node_modules/caniuse-lite/data/regions/FK.js
===================================================================
--- node_modules/caniuse-lite/data/regions/FK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/FK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"108":0.61251,"115":0.07807,"131":0.07807,"133":0.38432,"143":0.15613,"144":13.19299,"145":5.06222,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132 134 135 136 137 138 139 140 141 142 146 147 148 3.5 3.6"},D:{"87":0.07807,"109":0.99683,"125":0.22819,"126":0.91877,"140":0.15613,"141":0.53445,"142":4.75596,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 127 128 129 130 131 132 133 134 135 136 137 138 139 143 144 145 146"},F:{"92":0.22819,"122":0.15613,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"118":0.07807,"126":0.07807,"138":0.30626,"139":0.07807,"140":2.29992,"141":2.7623,"142":13.11492,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 119 120 121 122 123 124 125 127 128 129 130 131 132 133 134 135 136 137 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 17.4 17.5 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.1 26.2","16.6":0.07807,"17.1":0.07807,"17.6":0.22819,"26.0":0.46239},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00088,"5.0-5.1":0,"6.0-6.1":0.00354,"7.0-7.1":0.00265,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00796,"10.0-10.2":0.00088,"10.3":0.01416,"11.0-11.2":0.16459,"11.3-11.4":0.00531,"12.0-12.1":0.00177,"12.2-12.5":0.04159,"13.0-13.1":0,"13.2":0.00442,"13.3":0.00177,"13.4-13.7":0.00796,"14.0-14.4":0.01327,"14.5-14.8":0.01681,"15.0-15.1":0.01416,"15.2-15.3":0.0115,"15.4":0.01239,"15.5":0.01327,"15.6-15.8":0.19202,"16.0":0.02389,"16.1":0.04424,"16.2":0.02301,"16.3":0.04247,"16.4":0.01062,"16.5":0.0177,"16.6-16.7":0.25927,"17.0":0.02212,"17.1":0.02655,"17.2":0.01947,"17.3":0.02743,"17.4":0.04513,"17.5":0.08583,"17.6-17.7":0.2106,"18.0":0.0469,"18.1":0.09911,"18.2":0.05309,"18.3":0.17255,"18.4":0.08849,"18.5-18.7":6.1792,"26.0":0.42386,"26.1":0.3867},P:{"28":0.16551,"29":1.68817,_:"4 20 21 22 23 24 25 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":31.26607},R:{_:"0"},M:{"0":1.17853}};
Index: node_modules/caniuse-lite/data/regions/FM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/FM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/FM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01469,"114":0.01469,"135":0.02938,"143":0.05876,"144":0.45542,"145":0.8227,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 136 137 138 139 140 141 142 146 147 148 3.5 3.6"},D:{"79":0.04407,"87":0.02938,"89":0.01469,"93":0.01469,"105":0.01469,"109":0.22037,"113":0.02938,"116":0.04407,"122":0.24975,"125":0.73455,"130":0.01469,"131":0.02938,"137":0.04407,"138":0.01469,"139":0.11753,"140":0.58764,"141":2.82557,"142":8.73135,"143":0.01469,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 90 91 92 94 95 96 97 98 99 100 101 102 103 104 106 107 108 110 111 112 114 115 117 118 119 120 121 123 124 126 127 128 129 132 133 134 135 136 144 145 146"},F:{"92":1.01368,"122":0.17629,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"108":0.01469,"109":0.01469,"112":0.01469,"114":0.01469,"128":0.14691,"131":0.05876,"136":0.02938,"138":0.01469,"140":1.87065,"141":0.91084,"142":8.4963,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 113 115 116 117 118 119 120 121 122 123 124 125 126 127 129 130 132 133 134 135 137 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.4 16.5 16.6 17.0 17.2 17.3 17.6 18.0 18.1 18.4 26.2","13.1":0.22037,"15.6":0.04407,"16.1":0.08815,"16.3":0.02938,"17.1":0.04407,"17.4":0.01469,"17.5":0.01469,"18.2":5.28386,"18.3":0.11753,"18.5-18.6":0.17629,"26.0":0.24975,"26.1":0.07346},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.001,"5.0-5.1":0,"6.0-6.1":0.00399,"7.0-7.1":0.00299,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00898,"10.0-10.2":0.001,"10.3":0.01596,"11.0-11.2":0.18556,"11.3-11.4":0.00599,"12.0-12.1":0.002,"12.2-12.5":0.04689,"13.0-13.1":0,"13.2":0.00499,"13.3":0.002,"13.4-13.7":0.00898,"14.0-14.4":0.01496,"14.5-14.8":0.01896,"15.0-15.1":0.01596,"15.2-15.3":0.01297,"15.4":0.01397,"15.5":0.01496,"15.6-15.8":0.21649,"16.0":0.02694,"16.1":0.04988,"16.2":0.02594,"16.3":0.04789,"16.4":0.01197,"16.5":0.01995,"16.6-16.7":0.29231,"17.0":0.02494,"17.1":0.02993,"17.2":0.02195,"17.3":0.03093,"17.4":0.05088,"17.5":0.09677,"17.6-17.7":0.23744,"18.0":0.05287,"18.1":0.11174,"18.2":0.05986,"18.3":0.19454,"18.4":0.09976,"18.5-18.7":6.9665,"26.0":0.47787,"26.1":0.43597},P:{"20":0.04222,"24":0.03166,"26":0.04222,"27":0.04222,"28":0.68603,"29":2.54358,_:"4 21 22 23 25 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.16887},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.07655,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.95936},O:{_:"0"},H:{"0":0},L:{"0":47.08585},R:{_:"0"},M:{"0":1.03591}};
Index: node_modules/caniuse-lite/data/regions/FO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/FO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/FO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"43":0.00438,"115":0.2673,"133":0.13146,"134":0.10955,"135":0.1709,"136":0.00876,"137":0.00438,"138":0.00876,"140":0.6573,"143":0.00438,"144":0.78876,"145":1.20943,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 139 141 142 146 147 148 3.5 3.6"},D:{"48":0.01315,"49":0.02191,"79":0.00438,"80":0.03506,"103":0.00438,"108":0.02191,"109":0.84573,"116":0.03067,"119":0.05258,"122":0.26292,"123":0.01315,"124":0.03506,"125":0.07888,"126":0.00438,"128":0.05258,"129":0.0482,"130":0.03506,"131":0.58281,"132":0.15775,"133":0.19719,"134":0.67921,"135":0.50831,"136":0.37247,"137":0.30236,"138":1.37157,"139":0.10517,"140":0.56528,"141":2.48459,"142":8.67636,"143":0.17528,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 110 111 112 113 114 115 117 118 120 121 127 144 145 146"},F:{"95":0.00876,"114":0.08326,"116":0.06135,"119":0.03067,"122":0.41629,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 117 118 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00438,"91":0.00438,"92":0.07011,"109":0.01753,"118":0.00438,"122":0.00438,"127":0.06573,"131":0.65292,"132":0.06135,"133":0.11393,"134":0.27607,"135":0.08764,"136":0.14022,"137":0.04382,"138":0.00438,"139":0.00438,"140":0.01315,"141":0.64854,"142":2.90527,"143":0.00876,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 119 120 121 123 124 125 126 128 129 130"},E:{"14":0.02629,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3","13.1":0.00876,"14.1":0.01753,"15.1":0.00438,"15.4":0.00438,"15.5":0.05258,"15.6":0.46449,"16.0":0.00438,"16.1":0.05258,"16.2":0.16213,"16.3":0.37685,"16.4":0.01315,"16.5":0.02191,"16.6":1.40662,"17.0":0.08764,"17.1":1.02101,"17.2":0.01753,"17.3":0.03944,"17.4":0.05258,"17.5":0.2673,"17.6":0.41629,"18.0":0.11831,"18.1":0.08764,"18.2":0.02191,"18.3":0.14022,"18.4":0.1227,"18.5-18.6":0.69674,"26.0":1.98943,"26.1":0.85887,"26.2":0.03067},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00444,"5.0-5.1":0,"6.0-6.1":0.01775,"7.0-7.1":0.01331,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03994,"10.0-10.2":0.00444,"10.3":0.071,"11.0-11.2":0.8254,"11.3-11.4":0.02663,"12.0-12.1":0.00888,"12.2-12.5":0.20857,"13.0-13.1":0,"13.2":0.02219,"13.3":0.00888,"13.4-13.7":0.03994,"14.0-14.4":0.06656,"14.5-14.8":0.08432,"15.0-15.1":0.071,"15.2-15.3":0.05769,"15.4":0.06213,"15.5":0.06656,"15.6-15.8":0.96297,"16.0":0.11982,"16.1":0.22188,"16.2":0.11538,"16.3":0.21301,"16.4":0.05325,"16.5":0.08875,"16.6-16.7":1.30023,"17.0":0.11094,"17.1":0.13313,"17.2":0.09763,"17.3":0.13757,"17.4":0.22632,"17.5":0.43045,"17.6-17.7":1.05616,"18.0":0.2352,"18.1":0.49702,"18.2":0.26626,"18.3":0.86534,"18.4":0.44377,"18.5-18.7":30.98817,"26.0":2.12564,"26.1":1.93926},P:{"4":0.33825,"21":0.01025,"24":0.0205,"27":0.0205,"28":0.05125,"29":1.48623,_:"20 22 23 25 26 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.13464,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.02247,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.05258,"9":0.01315,"11":0.00876,_:"6 7 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":10.50363},R:{_:"0"},M:{"0":0.25843}};
Index: node_modules/caniuse-lite/data/regions/FR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/FR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/FR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"3":0.00483,"48":0.00966,"50":0.00483,"51":0.00483,"52":0.0338,"53":0.00483,"54":0.00966,"56":0.01449,"59":0.05795,"77":0.00483,"78":0.02897,"102":0.00483,"113":0.00483,"115":0.4491,"120":0.00483,"121":0.00483,"125":0.00966,"127":0.00483,"128":0.07726,"130":0.00483,"131":0.00483,"132":0.01449,"133":0.00966,"134":0.02897,"135":0.00966,"136":0.04829,"137":0.1159,"138":0.00966,"139":0.01932,"140":0.28008,"141":0.07726,"142":0.03863,"143":0.07244,"144":1.98955,"145":2.44347,"146":0.00483,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 122 123 124 126 129 147 148 3.5 3.6"},D:{"29":0.00966,"39":0.00966,"40":0.00966,"41":0.00966,"42":0.00966,"43":0.00966,"44":0.00966,"45":0.00966,"46":0.00966,"47":0.00966,"48":0.02415,"49":0.02897,"50":0.00966,"51":0.00966,"52":0.03863,"53":0.00966,"54":0.00966,"55":0.00966,"56":0.01449,"57":0.00966,"58":0.02897,"59":0.00966,"60":0.00966,"66":0.21731,"70":0.00966,"72":0.00483,"74":0.00483,"75":0.00483,"76":0.00483,"79":0.01932,"81":0.00483,"83":0.00966,"85":0.00483,"86":0.00483,"87":0.0338,"88":0.00483,"90":0.00483,"91":0.00966,"93":0.04346,"95":0.00483,"97":0.00483,"98":0.00483,"100":0.00483,"102":0.00483,"103":0.05312,"104":0.00966,"106":0.00483,"107":0.00483,"108":0.00966,"109":0.82576,"110":0.00966,"111":0.00966,"112":0.02415,"113":0.00966,"114":0.0338,"115":0.02415,"116":0.17867,"117":0.00483,"118":0.03863,"119":0.02897,"120":0.02897,"121":0.00966,"122":0.03863,"123":0.01932,"124":0.0338,"125":0.5988,"126":0.05795,"127":0.02415,"128":0.09175,"129":0.02897,"130":0.25594,"131":0.10141,"132":0.40564,"133":0.07244,"134":0.05795,"135":0.08209,"136":0.12555,"137":0.10141,"138":0.28491,"139":0.43944,"140":0.60363,"141":5.32156,"142":14.12965,"143":0.03863,"144":0.00483,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 61 62 63 64 65 67 68 69 71 73 77 78 80 84 89 92 94 96 99 101 105 145 146"},F:{"46":0.00483,"92":0.04346,"93":0.00483,"95":0.04346,"102":0.00483,"114":0.00483,"117":0.00483,"119":0.00483,"120":0.00966,"122":0.50705,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.02897,"92":0.00483,"100":0.00483,"101":0.02415,"109":0.09175,"114":0.00483,"120":0.00483,"122":0.00483,"124":0.00483,"126":0.03863,"127":0.00483,"128":0.00483,"129":0.00483,"130":0.00966,"131":0.01932,"132":0.00483,"133":0.00966,"134":0.02415,"135":0.00966,"136":0.01449,"137":0.01932,"138":0.02415,"139":0.02897,"140":0.09658,"141":0.58914,"142":5.42297,"143":0.00483,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 123 125"},E:{"4":0.00966,"14":0.00966,"15":0.00483,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.05795,"12.1":0.00483,"13.1":0.06761,"14.1":0.13038,"15.1":0.00483,"15.2-15.3":0.00483,"15.4":0.00966,"15.5":0.00966,"15.6":0.23179,"16.0":0.01932,"16.1":0.01932,"16.2":0.01449,"16.3":0.02415,"16.4":0.01449,"16.5":0.01932,"16.6":0.25594,"17.0":0.01449,"17.1":0.14487,"17.2":0.01932,"17.3":0.01932,"17.4":0.04346,"17.5":0.06761,"17.6":0.30423,"18.0":0.02415,"18.1":0.03863,"18.2":0.02415,"18.3":0.08692,"18.4":0.05312,"18.5-18.6":0.1835,"26.0":0.35735,"26.1":0.37666,"26.2":0.00966},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00141,"5.0-5.1":0,"6.0-6.1":0.00564,"7.0-7.1":0.00423,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01268,"10.0-10.2":0.00141,"10.3":0.02254,"11.0-11.2":0.26205,"11.3-11.4":0.00845,"12.0-12.1":0.00282,"12.2-12.5":0.06622,"13.0-13.1":0,"13.2":0.00704,"13.3":0.00282,"13.4-13.7":0.01268,"14.0-14.4":0.02113,"14.5-14.8":0.02677,"15.0-15.1":0.02254,"15.2-15.3":0.01832,"15.4":0.01972,"15.5":0.02113,"15.6-15.8":0.30572,"16.0":0.03804,"16.1":0.07044,"16.2":0.03663,"16.3":0.06762,"16.4":0.01691,"16.5":0.02818,"16.6-16.7":0.41279,"17.0":0.03522,"17.1":0.04227,"17.2":0.03099,"17.3":0.04367,"17.4":0.07185,"17.5":0.13666,"17.6-17.7":0.33531,"18.0":0.07467,"18.1":0.15779,"18.2":0.08453,"18.3":0.27473,"18.4":0.14089,"18.5-18.7":9.83802,"26.0":0.67484,"26.1":0.61567},P:{"4":0.03185,"20":0.01062,"21":0.02123,"22":0.03185,"23":0.02123,"24":0.02123,"25":0.02123,"26":0.07431,"27":0.05308,"28":0.3291,"29":2.3568,_:"5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.02123,"9.2":0.01062,"13.0":0.01062,"19.0":0.01062},I:{"0":0.08264,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.34135,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.12476,"9":0.11909,"10":0.04537,"11":0.3289,_:"6 7 5.5"},N:{_:"10 11"},S:{"2.5":0.00517,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.11896},H:{"0":0},L:{"0":36.02642},R:{_:"0"},M:{"0":0.7396}};
Index: node_modules/caniuse-lite/data/regions/GA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.00513,"5":0.04619,"78":0.00513,"115":0.04619,"139":0.00513,"140":0.03079,"141":0.01026,"142":0.01026,"143":0.03079,"144":0.33871,"145":0.37977,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 146 147 148 3.5 3.6"},D:{"64":0.00513,"65":0.01026,"66":0.00513,"68":0.00513,"69":0.05645,"72":0.00513,"73":0.03079,"74":0.00513,"75":0.01026,"78":0.01026,"79":0.03592,"81":0.00513,"83":0.0154,"84":0.00513,"86":0.0154,"87":0.1129,"88":0.00513,"89":0.01026,"90":0.00513,"94":0.04619,"95":0.02566,"98":0.0154,"99":0.00513,"100":0.01026,"103":0.02053,"107":0.00513,"108":0.02053,"109":0.17449,"110":0.0154,"111":0.04619,"112":28.3697,"113":0.01026,"114":0.03079,"116":0.02566,"119":0.03079,"120":0.03592,"121":0.00513,"122":0.08724,"123":0.00513,"124":0.00513,"125":0.44648,"126":4.53669,"127":0.01026,"128":0.05645,"129":0.00513,"130":0.01026,"131":0.11804,"132":0.06672,"133":0.01026,"134":0.0154,"135":0.0154,"136":0.02053,"137":0.03079,"138":0.10264,"139":0.06158,"140":0.14883,"141":1.36511,"142":4.30062,"143":0.00513,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 67 70 71 76 77 80 85 91 92 93 96 97 101 102 104 105 106 115 117 118 144 145 146"},F:{"92":0.15909,"95":0.02053,"113":0.01026,"120":0.00513,"122":0.21041,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01026,"18":0.00513,"92":0.02566,"100":0.00513,"109":0.00513,"114":0.61584,"122":0.00513,"134":0.01026,"135":0.01026,"136":0.0154,"137":0.00513,"138":0.01026,"139":0.00513,"140":0.02053,"141":0.22068,"142":1.73462,"143":0.00513,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 131 132 133"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 17.5 18.1 26.2","5.1":0.00513,"13.1":0.03592,"14.1":0.02053,"15.6":0.03592,"16.6":0.05645,"17.1":0.01026,"17.4":0.00513,"17.6":0.1283,"18.0":0.00513,"18.2":0.00513,"18.3":0.01026,"18.4":0.01026,"18.5-18.6":0.02053,"26.0":0.02566,"26.1":0.10264},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00058,"5.0-5.1":0,"6.0-6.1":0.00231,"7.0-7.1":0.00173,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0052,"10.0-10.2":0.00058,"10.3":0.00925,"11.0-11.2":0.10757,"11.3-11.4":0.00347,"12.0-12.1":0.00116,"12.2-12.5":0.02718,"13.0-13.1":0,"13.2":0.00289,"13.3":0.00116,"13.4-13.7":0.0052,"14.0-14.4":0.00867,"14.5-14.8":0.01099,"15.0-15.1":0.00925,"15.2-15.3":0.00752,"15.4":0.0081,"15.5":0.00867,"15.6-15.8":0.1255,"16.0":0.01561,"16.1":0.02892,"16.2":0.01504,"16.3":0.02776,"16.4":0.00694,"16.5":0.01157,"16.6-16.7":0.16945,"17.0":0.01446,"17.1":0.01735,"17.2":0.01272,"17.3":0.01793,"17.4":0.02949,"17.5":0.0561,"17.6-17.7":0.13764,"18.0":0.03065,"18.1":0.06477,"18.2":0.0347,"18.3":0.11277,"18.4":0.05783,"18.5-18.7":4.0384,"26.0":0.27701,"26.1":0.25273},P:{"4":0.0212,"22":0.05299,"24":0.0212,"25":0.0106,"26":0.04239,"27":0.0318,"28":0.15898,"29":0.41335,_:"20 21 23 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","5.0-5.4":0.0106,"7.2-7.4":0.06359,"19.0":0.0106},I:{"0":0.02431,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.7048,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.00974,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.06328},H:{"0":0.04},L:{"0":45.66739},R:{_:"0"},M:{"0":0.05355}};
Index: node_modules/caniuse-lite/data/regions/GB.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GB.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GB.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.00465,"52":0.0093,"59":0.02789,"78":0.00465,"103":0.00465,"115":0.07903,"125":0.00465,"128":0.0093,"132":0.00465,"134":0.0093,"135":0.00465,"136":0.0093,"139":0.00465,"140":0.03254,"141":0.00465,"142":0.01395,"143":0.05579,"144":0.64156,"145":0.66016,"146":0.00465,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 133 137 138 147 148 3.5 3.6"},D:{"11":0.00465,"13":0.00465,"38":0.00465,"39":0.00465,"40":0.00465,"41":0.00465,"42":0.00465,"43":0.00465,"44":0.00465,"45":0.00465,"46":0.00465,"47":0.00465,"48":0.00465,"49":0.0093,"50":0.00465,"51":0.00465,"52":0.0093,"53":0.00465,"54":0.00465,"55":0.00465,"56":0.00465,"57":0.00465,"58":0.00465,"59":0.00465,"60":0.00465,"65":0.00465,"66":0.12087,"74":0.00465,"76":0.00465,"79":0.01395,"80":0.00465,"81":0.00465,"85":0.0093,"87":0.02325,"88":0.01395,"89":0.00465,"91":0.01395,"92":0.00465,"93":0.0093,"98":0.00465,"102":0.00465,"103":0.09298,"104":0.01395,"107":0.0093,"108":0.01395,"109":0.26499,"111":0.0093,"112":0.00465,"114":0.02789,"116":0.08368,"117":0.00465,"118":0.00465,"119":0.06974,"120":0.08368,"121":0.0093,"122":0.06044,"123":0.0093,"124":0.03254,"125":0.07438,"126":0.07903,"127":0.02789,"128":0.06974,"129":0.0186,"130":0.79963,"131":2.19433,"132":0.03719,"133":0.04184,"134":0.31148,"135":0.04184,"136":0.06044,"137":0.09298,"138":0.27894,"139":1.29707,"140":1.10646,"141":4.70014,"142":11.53882,"143":0.02325,"144":0.00465,_:"4 5 6 7 8 9 10 12 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 61 62 63 64 67 68 69 70 71 72 73 75 77 78 83 84 86 90 94 95 96 97 99 100 101 105 106 110 113 115 145 146"},F:{"46":0.0093,"90":0.00465,"92":0.0186,"93":0.00465,"95":0.0093,"116":0.00465,"119":0.00465,"120":0.00465,"122":0.33473,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01395,"85":0.00465,"92":0.00465,"109":0.03719,"120":0.00465,"121":0.00465,"122":0.00465,"126":0.00465,"128":0.00465,"131":0.01395,"132":0.00465,"133":0.0093,"134":0.00465,"135":0.0093,"136":0.00465,"137":0.0093,"138":0.02325,"139":0.02325,"140":0.11158,"141":1.1576,"142":8.34496,"143":0.00465,_:"12 13 14 15 16 18 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 123 124 125 127 129 130"},E:{"13":0.00465,"14":0.01395,"15":0.00465,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02789,"12.1":0.00465,"13.1":0.03254,"14.1":0.04184,"15.1":0.06044,"15.2-15.3":0.00465,"15.4":0.0093,"15.5":0.01395,"15.6":0.27894,"16.0":0.0093,"16.1":0.02325,"16.2":0.0186,"16.3":0.04649,"16.4":0.01395,"16.5":0.0186,"16.6":0.39517,"17.0":0.01395,"17.1":0.35797,"17.2":0.0186,"17.3":0.02325,"17.4":0.04184,"17.5":0.06974,"17.6":0.27894,"18.0":0.0186,"18.1":0.05579,"18.2":0.02325,"18.3":0.13947,"18.4":0.05114,"18.5-18.6":0.2464,"26.0":0.36262,"26.1":0.42771,"26.2":0.01395},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00233,"5.0-5.1":0,"6.0-6.1":0.0093,"7.0-7.1":0.00698,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02093,"10.0-10.2":0.00233,"10.3":0.03721,"11.0-11.2":0.43255,"11.3-11.4":0.01395,"12.0-12.1":0.00465,"12.2-12.5":0.1093,"13.0-13.1":0,"13.2":0.01163,"13.3":0.00465,"13.4-13.7":0.02093,"14.0-14.4":0.03488,"14.5-14.8":0.04419,"15.0-15.1":0.03721,"15.2-15.3":0.03023,"15.4":0.03256,"15.5":0.03488,"15.6-15.8":0.50464,"16.0":0.06279,"16.1":0.11628,"16.2":0.06046,"16.3":0.11163,"16.4":0.02791,"16.5":0.04651,"16.6-16.7":0.68138,"17.0":0.05814,"17.1":0.06977,"17.2":0.05116,"17.3":0.07209,"17.4":0.1186,"17.5":0.22558,"17.6-17.7":0.55348,"18.0":0.12325,"18.1":0.26046,"18.2":0.13953,"18.3":0.45348,"18.4":0.23255,"18.5-18.7":16.23928,"26.0":1.11394,"26.1":1.01626},P:{"20":0.01101,"21":0.02202,"22":0.02202,"23":0.02202,"24":0.02202,"25":0.02202,"26":0.07708,"27":0.05506,"28":0.30831,"29":3.78786,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.01101,"17.0":0.01101,"19.0":0.01101},I:{"0":0.02137,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.14448,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.03616,"11":0.01033,_:"6 7 8 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0214},H:{"0":0},L:{"0":28.08074},R:{_:"0"},M:{"0":0.40133}};
Index: node_modules/caniuse-lite/data/regions/GD.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0558,"103":0.00507,"115":0.10653,"134":0.00507,"136":0.08117,"140":0.02029,"141":0.01015,"142":0.01015,"143":0.05073,"144":0.28409,"145":0.3196,"146":0.01522,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 135 137 138 139 147 148 3.5 3.6"},D:{"49":0.02537,"69":0.0761,"73":0.00507,"76":0.03044,"79":0.01015,"93":0.02537,"103":0.13697,"104":0.59354,"108":0.00507,"109":0.23336,"111":0.06088,"115":0.03044,"116":0.06088,"119":0.01015,"121":0.02029,"122":0.01522,"123":0.00507,"125":2.19661,"126":0.17756,"128":0.0761,"130":0.03044,"131":0.01015,"132":0.09131,"133":0.71529,"135":0.01015,"136":0.00507,"137":0.05073,"138":0.07102,"139":0.6392,"140":1.17186,"141":4.43888,"142":16.8728,"143":0.06088,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 74 75 77 78 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 102 105 106 107 110 112 113 114 117 118 120 124 127 129 134 144 145 146"},F:{"85":0.01015,"95":0.01015,"122":0.08624,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00507,"97":0.00507,"109":0.00507,"114":0.25365,"122":0.02029,"136":0.02537,"138":0.04566,"140":0.02029,"141":1.51175,"142":7.43195,"143":0.01015,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 131 132 133 134 135 137 139"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 17.4 17.5 18.0","13.1":0.01015,"14.1":0.08117,"15.6":0.03044,"16.3":0.00507,"16.4":0.00507,"16.5":0.00507,"16.6":0.19785,"17.0":0.44135,"17.1":0.20799,"17.2":0.02537,"17.3":0.00507,"17.6":0.16741,"18.1":0.02029,"18.2":0.02537,"18.3":0.48701,"18.4":0.04566,"18.5-18.6":0.1319,"26.0":1.56248,"26.1":0.7711,"26.2":0.02537},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00174,"5.0-5.1":0,"6.0-6.1":0.00695,"7.0-7.1":0.00521,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01563,"10.0-10.2":0.00174,"10.3":0.02779,"11.0-11.2":0.32304,"11.3-11.4":0.01042,"12.0-12.1":0.00347,"12.2-12.5":0.08163,"13.0-13.1":0,"13.2":0.00868,"13.3":0.00347,"13.4-13.7":0.01563,"14.0-14.4":0.02605,"14.5-14.8":0.033,"15.0-15.1":0.02779,"15.2-15.3":0.02258,"15.4":0.02431,"15.5":0.02605,"15.6-15.8":0.37688,"16.0":0.04689,"16.1":0.08684,"16.2":0.04516,"16.3":0.08336,"16.4":0.02084,"16.5":0.03474,"16.6-16.7":0.50887,"17.0":0.04342,"17.1":0.0521,"17.2":0.03821,"17.3":0.05384,"17.4":0.08858,"17.5":0.16847,"17.6-17.7":0.41335,"18.0":0.09205,"18.1":0.19452,"18.2":0.10421,"18.3":0.33867,"18.4":0.17368,"18.5-18.7":12.12785,"26.0":0.83191,"26.1":0.75897},P:{"4":0.0429,"21":0.02145,"24":0.1287,"25":0.01073,"27":0.09653,"28":0.10725,"29":2.87439,_:"20 22 23 26 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","5.0-5.4":0.01073,"7.2-7.4":0.03218,"16.0":0.01073},I:{"0":0.00984,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.44343,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.13697,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00493},H:{"0":0},L:{"0":33.38738},R:{_:"0"},M:{"0":0.24635}};
Index: node_modules/caniuse-lite/data/regions/GE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01038,"52":0.00519,"68":0.01038,"78":0.03634,"113":0.03634,"115":0.08826,"118":0.00519,"125":0.02077,"128":0.00519,"135":0.00519,"136":0.01038,"139":0.00519,"140":0.01558,"141":0.00519,"142":0.01558,"143":0.01038,"144":0.33748,"145":0.44651,"146":0.00519,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 119 120 121 122 123 124 126 127 129 130 131 132 133 134 137 138 147 148 3.5 3.6"},D:{"38":0.02077,"47":0.05192,"49":0.01558,"62":0.00519,"66":0.01558,"68":0.00519,"69":0.01558,"70":0.01038,"72":0.00519,"73":0.0623,"75":0.00519,"76":0.00519,"78":0.01038,"79":0.20768,"81":0.00519,"83":0.15057,"84":0.00519,"86":0.00519,"87":0.59708,"88":0.03115,"90":0.00519,"91":0.05192,"92":0.00519,"93":0.00519,"94":0.10903,"95":0.01038,"98":0.03634,"100":0.02596,"101":0.03115,"102":0.03115,"103":0.02596,"104":0.03634,"105":0.00519,"106":0.01038,"107":0.00519,"108":0.14538,"109":2.22737,"110":0.05192,"111":0.76322,"112":5.79427,"113":0.03634,"114":0.03115,"116":0.04673,"118":0.00519,"119":0.02596,"120":1.84316,"121":0.01038,"122":0.05711,"123":0.01558,"124":0.05192,"125":0.40498,"126":1.298,"127":0.0675,"128":0.03634,"129":0.04154,"130":0.03115,"131":0.09346,"132":0.05711,"133":0.15057,"134":0.08826,"135":0.05711,"136":0.05711,"137":0.1921,"138":0.33229,"139":0.29075,"140":0.35825,"141":5.21277,"142":15.63311,"143":0.04673,"144":0.00519,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 67 71 74 77 80 85 89 96 97 99 115 117 145 146"},F:{"28":0.00519,"36":0.03115,"46":0.18172,"79":0.01038,"85":0.00519,"86":0.01558,"89":0.00519,"92":0.02596,"93":0.00519,"95":0.20768,"119":0.00519,"120":0.00519,"122":0.53478,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 87 88 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.04154,"16":0.00519,"18":0.02596,"92":0.01038,"109":0.03115,"114":0.14018,"124":0.00519,"128":0.00519,"130":0.00519,"131":0.01558,"132":0.00519,"133":0.01558,"134":0.02077,"135":0.01038,"136":0.01038,"137":0.01558,"138":0.04154,"139":0.02596,"140":0.07269,"141":0.56074,"142":3.08405,_:"12 13 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 125 126 127 129 143"},E:{"14":0.00519,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0","13.1":0.01038,"14.1":0.01038,"15.4":0.00519,"15.5":0.02077,"15.6":0.04154,"16.1":0.02077,"16.2":0.02596,"16.3":0.01038,"16.4":0.00519,"16.5":0.01558,"16.6":0.07788,"17.0":0.00519,"17.1":0.08826,"17.2":0.01038,"17.3":0.01038,"17.4":0.02596,"17.5":0.04154,"17.6":0.08307,"18.0":0.02077,"18.1":0.02077,"18.2":0.02077,"18.3":0.0675,"18.4":0.03115,"18.5-18.6":0.12461,"26.0":0.15576,"26.1":0.14538,"26.2":0.01038},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.001,"5.0-5.1":0,"6.0-6.1":0.004,"7.0-7.1":0.003,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.009,"10.0-10.2":0.001,"10.3":0.016,"11.0-11.2":0.18605,"11.3-11.4":0.006,"12.0-12.1":0.002,"12.2-12.5":0.04701,"13.0-13.1":0,"13.2":0.005,"13.3":0.002,"13.4-13.7":0.009,"14.0-14.4":0.015,"14.5-14.8":0.01901,"15.0-15.1":0.016,"15.2-15.3":0.013,"15.4":0.014,"15.5":0.015,"15.6-15.8":0.21706,"16.0":0.02701,"16.1":0.05001,"16.2":0.02601,"16.3":0.04801,"16.4":0.012,"16.5":0.02001,"16.6-16.7":0.29308,"17.0":0.02501,"17.1":0.03001,"17.2":0.02201,"17.3":0.03101,"17.4":0.05101,"17.5":0.09703,"17.6-17.7":0.23806,"18.0":0.05301,"18.1":0.11203,"18.2":0.06002,"18.3":0.19505,"18.4":0.10003,"18.5-18.7":6.9849,"26.0":0.47913,"26.1":0.43712},P:{"4":0.72717,"20":0.01069,"22":0.01069,"23":0.01069,"24":0.02139,"25":0.04277,"26":0.04277,"27":0.09624,"28":0.1711,"29":0.82341,_:"21 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.03208,"6.2-6.4":0.07486,"7.2-7.4":0.3422,"8.2":0.03208},I:{"0":0.04802,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.2645,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.04673,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01924},H:{"0":0},L:{"0":38.98246},R:{_:"0"},M:{"0":0.11542}};
Index: node_modules/caniuse-lite/data/regions/GF.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00907,"34":0.00454,"84":0.01361,"92":0.00454,"103":0.00907,"112":0.00907,"114":0.00454,"115":0.74828,"118":0.00454,"119":0.04989,"128":0.12698,"130":0.00907,"132":0.02268,"133":0.01361,"134":0.03628,"136":0.00454,"139":0.05442,"140":0.16326,"141":0.05442,"142":0.00907,"143":0.08163,"144":1.39225,"145":1.35143,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 113 116 117 120 121 122 123 124 125 126 127 129 131 135 137 138 146 147 148 3.5 3.6"},D:{"49":0.01361,"55":0.00907,"69":0.00907,"75":0.00454,"79":0.01814,"86":0.00907,"87":0.00907,"88":0.05896,"89":0.00907,"95":0.00907,"98":0.04535,"104":0.11791,"108":0.02721,"109":0.12698,"110":0.00907,"111":0.04082,"112":0.00454,"114":0.00454,"115":0.00907,"116":0.00907,"119":0.06803,"122":0.04989,"124":0.00907,"125":0.32199,"126":0.05442,"127":0.01814,"128":0.01361,"130":0.03175,"131":0.03175,"132":0.01814,"133":0.05896,"134":0.02268,"135":0.03628,"136":0.01814,"137":0.04535,"138":0.17233,"139":0.09977,"140":0.71653,"141":3.94999,"142":14.92469,"143":0.00454,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 76 77 78 80 81 83 84 85 90 91 92 93 94 96 97 99 100 101 102 103 105 106 107 113 117 118 120 121 123 129 144 145 146"},F:{"46":0.01361,"92":0.01361,"109":0.00454,"120":0.02268,"122":0.97503,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.00907,"114":0.27664,"125":0.00907,"128":0.04989,"129":0.00454,"131":0.12245,"134":0.02721,"136":0.00454,"139":0.00907,"140":0.02721,"141":1.75958,"142":5.80934,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 126 127 130 132 133 135 137 138 143"},E:{"14":0.00454,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.1 16.4 16.5 17.0","14.1":1.24713,"15.5":0.00454,"15.6":0.13152,"16.0":0.00454,"16.2":0.01361,"16.3":0.02721,"16.6":0.06803,"17.1":0.06349,"17.2":0.01361,"17.3":0.00454,"17.4":0.02268,"17.5":0.03628,"17.6":0.14512,"18.0":0.00907,"18.1":0.01814,"18.2":0.00454,"18.3":0.09977,"18.4":0.01814,"18.5-18.6":0.17233,"26.0":0.34466,"26.1":0.29931,"26.2":0.01361},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00144,"5.0-5.1":0,"6.0-6.1":0.00576,"7.0-7.1":0.00432,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01296,"10.0-10.2":0.00144,"10.3":0.02304,"11.0-11.2":0.26789,"11.3-11.4":0.00864,"12.0-12.1":0.00288,"12.2-12.5":0.06769,"13.0-13.1":0,"13.2":0.0072,"13.3":0.00288,"13.4-13.7":0.01296,"14.0-14.4":0.0216,"14.5-14.8":0.02737,"15.0-15.1":0.02304,"15.2-15.3":0.01872,"15.4":0.02016,"15.5":0.0216,"15.6-15.8":0.31254,"16.0":0.03889,"16.1":0.07201,"16.2":0.03745,"16.3":0.06913,"16.4":0.01728,"16.5":0.02881,"16.6-16.7":0.42201,"17.0":0.03601,"17.1":0.04321,"17.2":0.03169,"17.3":0.04465,"17.4":0.07345,"17.5":0.13971,"17.6-17.7":0.34279,"18.0":0.07634,"18.1":0.16131,"18.2":0.08642,"18.3":0.28086,"18.4":0.14403,"18.5-18.7":10.05755,"26.0":0.6899,"26.1":0.62941},P:{"23":0.01053,"24":0.04214,"25":0.0316,"26":0.12642,"27":0.02107,"28":0.35818,"29":2.96027,_:"4 20 21 22 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.04214,"8.2":0.01053,"13.0":0.02107},I:{"0":0.00546,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.31156,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.04373},O:{_:"0"},H:{"0":0},L:{"0":39.66417},R:{_:"0"},M:{"0":0.32796}};
Index: node_modules/caniuse-lite/data/regions/GG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.03986,"136":0.00362,"140":0.00725,"144":0.24643,"145":0.59434,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 141 142 143 146 147 148 3.5 3.6"},D:{"49":0.00362,"69":0.00362,"79":0.02174,"83":0.0145,"103":0.02537,"109":0.88788,"111":0.00362,"113":0.00725,"114":0.00362,"116":0.04349,"117":0.00362,"119":0.00362,"122":0.00725,"123":0.00362,"125":0.07248,"126":0.01087,"128":0.04711,"130":0.01087,"131":0.01087,"132":0.0145,"133":0.00362,"134":0.00725,"135":0.00362,"136":0.00362,"137":0.10872,"138":0.13409,"139":0.47112,"140":0.47837,"141":3.83419,"142":8.73022,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 112 115 118 120 121 124 127 129 143 144 145 146"},F:{"122":0.453,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.01087,"111":0.00362,"135":0.00362,"139":0.0145,"140":0.02174,"141":0.81902,"142":5.74404,"143":0.00725,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 136 137 138"},E:{"14":0.00362,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 16.0 16.5 26.2","12.1":0.01087,"13.1":0.04711,"14.1":0.02899,"15.4":0.23918,"15.5":0.06523,"15.6":0.1667,"16.1":0.02174,"16.2":0.03986,"16.3":0.0145,"16.4":0.04349,"16.6":0.50011,"17.0":0.00725,"17.1":0.59796,"17.2":0.00362,"17.3":0.05074,"17.4":0.05074,"17.5":0.01812,"17.6":0.2718,"18.0":0.01087,"18.1":0.09785,"18.2":0.00725,"18.3":0.24643,"18.4":0.01087,"18.5-18.6":0.14858,"26.0":0.30442,"26.1":0.42401},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00267,"5.0-5.1":0,"6.0-6.1":0.01067,"7.0-7.1":0.008,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.024,"10.0-10.2":0.00267,"10.3":0.04267,"11.0-11.2":0.496,"11.3-11.4":0.016,"12.0-12.1":0.00533,"12.2-12.5":0.12533,"13.0-13.1":0,"13.2":0.01333,"13.3":0.00533,"13.4-13.7":0.024,"14.0-14.4":0.04,"14.5-14.8":0.05067,"15.0-15.1":0.04267,"15.2-15.3":0.03467,"15.4":0.03733,"15.5":0.04,"15.6-15.8":0.57867,"16.0":0.072,"16.1":0.13333,"16.2":0.06933,"16.3":0.128,"16.4":0.032,"16.5":0.05333,"16.6-16.7":0.78133,"17.0":0.06667,"17.1":0.08,"17.2":0.05867,"17.3":0.08267,"17.4":0.136,"17.5":0.25867,"17.6-17.7":0.63467,"18.0":0.14133,"18.1":0.29867,"18.2":0.16,"18.3":0.52,"18.4":0.26667,"18.5-18.7":18.6213,"26.0":1.27733,"26.1":1.16533},P:{"21":0.01109,"26":0.01109,"27":0.02218,"28":0.22179,"29":8.18405,_:"4 20 22 23 24 25 5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","9.2":0.02218},I:{"0":0.04456,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.00638,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00725,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":28.64839},R:{_:"0"},M:{"0":0.3315}};
Index: node_modules/caniuse-lite/data/regions/GH.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00342,"56":0.00342,"68":0.00342,"72":0.00684,"78":0.00342,"101":0.00342,"112":0.00684,"115":0.09576,"127":0.01026,"128":0.00684,"134":0.00342,"135":0.00342,"136":0.00342,"137":0.00342,"138":0.01026,"139":0.00342,"140":0.02736,"141":0.01026,"142":0.02052,"143":0.03762,"144":0.50958,"145":0.50616,"146":0.01026,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 147 148 3.5 3.6"},D:{"47":0.00342,"49":0.00342,"50":0.00342,"54":0.00342,"55":0.00342,"58":0.00342,"63":0.00342,"64":0.00684,"65":0.00684,"67":0.00342,"68":0.00684,"69":0.00684,"70":0.02394,"71":0.00684,"72":0.00342,"73":0.00342,"74":0.02052,"75":0.01026,"76":0.02394,"77":0.00684,"79":0.02736,"80":0.01368,"81":0.00342,"83":0.01026,"84":0.00342,"85":0.00342,"86":0.02394,"87":0.02394,"88":0.00342,"89":0.00684,"90":0.00342,"91":0.00342,"92":0.00342,"93":0.02736,"94":0.01026,"95":0.01026,"96":0.00342,"97":0.01026,"98":0.01026,"100":0.00342,"101":0.01026,"102":0.00342,"103":0.09576,"104":0.00342,"105":0.3591,"106":0.00684,"107":0.00342,"108":0.00342,"109":0.8208,"110":0.00684,"111":0.02052,"113":0.0171,"114":0.14364,"115":0.01368,"116":0.07866,"117":0.00342,"118":0.00684,"119":0.02052,"120":0.01026,"121":0.00342,"122":0.0342,"123":0.01026,"124":0.02394,"125":0.22914,"126":0.1881,"127":0.00684,"128":0.04788,"129":0.00684,"130":0.02394,"131":0.0684,"132":0.03762,"133":0.03078,"134":0.06498,"135":0.0513,"136":0.06156,"137":0.08208,"138":0.30438,"139":0.21204,"140":0.46512,"141":2.9583,"142":7.46244,"143":0.03078,"144":0.00342,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 51 52 53 56 57 59 60 61 62 66 78 99 112 145 146"},F:{"42":0.00342,"79":0.01026,"86":0.00342,"87":0.00342,"88":0.00342,"89":0.00342,"90":0.00684,"91":0.01368,"92":0.09576,"93":0.0171,"95":0.03762,"109":0.00342,"113":0.01026,"114":0.00342,"115":0.00684,"116":0.00342,"119":0.00684,"120":0.0171,"122":0.34542,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01368,"13":0.00342,"14":0.00684,"15":0.0171,"16":0.00684,"17":0.00684,"18":0.06156,"84":0.00684,"89":0.01026,"90":0.03762,"92":0.09918,"100":0.03078,"103":0.00342,"109":0.01368,"111":0.01368,"112":0.00342,"114":0.0342,"115":0.00342,"122":0.02394,"123":0.00342,"126":0.00342,"127":0.00342,"128":0.00342,"129":0.00342,"130":0.00342,"131":0.00684,"132":0.00342,"133":0.00684,"134":0.00684,"135":0.00684,"136":0.01026,"137":0.01368,"138":0.0342,"139":0.0513,"140":0.09918,"141":0.4959,"142":2.38716,"143":0.01026,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 106 107 108 110 113 116 117 118 119 120 121 124 125"},E:{"11":0.00684,"13":0.00342,"14":0.00342,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 6.1 7.1 9.1 10.1 15.2-15.3 15.4 15.5 16.0 16.2 16.4 16.5","5.1":0.00342,"11.1":0.01026,"12.1":0.00342,"13.1":0.0513,"14.1":0.01368,"15.1":0.00342,"15.6":0.08208,"16.1":0.00342,"16.3":0.00342,"16.6":0.08208,"17.0":0.01026,"17.1":0.01026,"17.2":0.00342,"17.3":0.00684,"17.4":0.00342,"17.5":0.00684,"17.6":0.06498,"18.0":0.00684,"18.1":0.00684,"18.2":0.00684,"18.3":0.0171,"18.4":0.01368,"18.5-18.6":0.04788,"26.0":0.14022,"26.1":0.17442,"26.2":0.00342},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00125,"5.0-5.1":0,"6.0-6.1":0.00502,"7.0-7.1":0.00376,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01129,"10.0-10.2":0.00125,"10.3":0.02008,"11.0-11.2":0.23339,"11.3-11.4":0.00753,"12.0-12.1":0.00251,"12.2-12.5":0.05898,"13.0-13.1":0,"13.2":0.00627,"13.3":0.00251,"13.4-13.7":0.01129,"14.0-14.4":0.01882,"14.5-14.8":0.02384,"15.0-15.1":0.02008,"15.2-15.3":0.01631,"15.4":0.01757,"15.5":0.01882,"15.6-15.8":0.27229,"16.0":0.03388,"16.1":0.06274,"16.2":0.03262,"16.3":0.06023,"16.4":0.01506,"16.5":0.0251,"16.6-16.7":0.36766,"17.0":0.03137,"17.1":0.03764,"17.2":0.02761,"17.3":0.0389,"17.4":0.064,"17.5":0.12172,"17.6-17.7":0.29864,"18.0":0.0665,"18.1":0.14054,"18.2":0.07529,"18.3":0.24469,"18.4":0.12548,"18.5-18.7":8.76231,"26.0":0.60105,"26.1":0.54835},P:{"4":0.1036,"20":0.01036,"21":0.01036,"22":0.03108,"23":0.01036,"24":0.16576,"25":0.23828,"26":0.04144,"27":0.3108,"28":0.70448,"29":0.61124,"5.0-5.4":0.03108,_:"6.2-6.4 8.2 10.1 12.0 14.0 15.0 18.0","7.2-7.4":0.08288,"9.2":0.01036,"11.1-11.2":0.03108,"13.0":0.01036,"16.0":0.01036,"17.0":0.01036,"19.0":0.01036},I:{"0":0.05914,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":9.25736,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02394,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00658,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00658},O:{"0":0.28952},H:{"0":0.56},L:{"0":51.88822},R:{_:"0"},M:{"0":0.27636}};
Index: node_modules/caniuse-lite/data/regions/GI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00547,"45":0.00547,"115":0.02189,"134":0.00547,"135":0.00547,"136":0.03284,"138":0.02737,"139":0.00547,"143":0.07662,"144":0.41048,"145":0.98514,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 137 140 141 142 146 147 148 3.5 3.6"},D:{"43":0.01642,"47":0.00547,"69":0.01642,"70":0.00547,"79":0.10399,"109":0.07115,"111":0.00547,"112":0.01642,"116":0.09851,"118":0.00547,"119":0.02737,"122":0.00547,"125":0.19156,"126":0.10399,"127":0.05473,"128":0.04378,"129":0.04926,"130":0.02189,"131":0.41048,"132":0.04926,"133":0.00547,"134":0.01642,"135":0.22987,"136":0.6294,"137":0.0602,"138":0.25723,"139":0.12041,"140":1.25332,"141":8.03436,"142":19.86152,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 113 114 115 117 120 121 123 124 143 144 145 146"},F:{"92":0.05473,"114":0.13683,"119":0.27365,"121":0.01095,"122":0.87021,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 120 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.01642,"129":0.00547,"131":0.06568,"133":0.01642,"134":0.01642,"135":0.01642,"136":0.05473,"138":0.00547,"139":0.00547,"140":0.04926,"141":0.71149,"142":7.3995,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 130 132 137 143"},E:{"14":0.01642,"15":0.02737,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 16.0 16.5 17.0 18.0 18.1","14.1":0.00547,"15.4":0.00547,"15.5":0.00547,"15.6":0.56919,"16.1":0.00547,"16.2":0.00547,"16.3":0.03831,"16.4":0.00547,"16.6":0.24629,"17.1":0.30649,"17.2":0.02189,"17.3":0.00547,"17.4":0.01095,"17.5":0.03284,"17.6":0.13135,"18.2":0.07115,"18.3":0.13683,"18.4":0.38858,"18.5-18.6":0.15872,"26.0":0.24629,"26.1":0.51994,"26.2":0.00547},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00205,"5.0-5.1":0,"6.0-6.1":0.0082,"7.0-7.1":0.00615,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01845,"10.0-10.2":0.00205,"10.3":0.0328,"11.0-11.2":0.38135,"11.3-11.4":0.0123,"12.0-12.1":0.0041,"12.2-12.5":0.09636,"13.0-13.1":0,"13.2":0.01025,"13.3":0.0041,"13.4-13.7":0.01845,"14.0-14.4":0.03075,"14.5-14.8":0.03896,"15.0-15.1":0.0328,"15.2-15.3":0.02665,"15.4":0.0287,"15.5":0.03075,"15.6-15.8":0.44491,"16.0":0.05536,"16.1":0.10251,"16.2":0.05331,"16.3":0.09841,"16.4":0.0246,"16.5":0.04101,"16.6-16.7":0.60073,"17.0":0.05126,"17.1":0.06151,"17.2":0.04511,"17.3":0.06356,"17.4":0.10456,"17.5":0.19888,"17.6-17.7":0.48797,"18.0":0.10866,"18.1":0.22963,"18.2":0.12302,"18.3":0.3998,"18.4":0.20503,"18.5-18.7":14.31709,"26.0":0.98208,"26.1":0.89597},P:{"4":0.03149,"27":0.02099,"28":0.06297,"29":2.91784,_:"20 21 22 23 24 25 26 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","7.2-7.4":0.02099,"16.0":0.0105},I:{"0":0.00904,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.09054,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02463,"10":0.00821,_:"6 7 9 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.1675},H:{"0":0},L:{"0":21.76678},R:{_:"0"},M:{"0":0.13128}};
Index: node_modules/caniuse-lite/data/regions/GL.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"66":0.00446,"78":0.00446,"115":0.01783,"143":0.00892,"144":0.73111,"145":2.02393,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 146 147 148 3.5 3.6"},D:{"38":0.00446,"79":0.02675,"103":0.01337,"108":0.00446,"109":0.29869,"114":0.01337,"116":0.12037,"122":0.02675,"125":0.14711,"127":0.00892,"128":0.07133,"129":0.00892,"132":0.01783,"133":0.00446,"135":0.00892,"136":0.01337,"137":0.01337,"138":0.21844,"139":1.05209,"140":0.2764,"141":3.89183,"142":11.6755,"143":0.02229,"144":0.00892,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 110 111 112 113 115 117 118 119 120 121 123 124 126 130 131 134 145 146"},F:{"46":0.04458,"77":0.01783,"79":0.00892,"92":0.01783,"93":0.01783,"120":0.00446,"122":0.55725,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00892,"92":0.01783,"109":0.01337,"116":0.01337,"134":0.00892,"135":0.01337,"136":0.00446,"138":0.04458,"139":0.00446,"140":0.02675,"141":0.50375,"142":6.93665,_:"12 13 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 137 143"},E:{"9":0.00446,_:"0 4 5 6 7 8 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1 15.2-15.3 15.4 15.5 16.0 16.1 16.4 16.5 17.0 18.1","12.1":0.00446,"14.1":0.14711,"15.1":0.32098,"15.6":0.13374,"16.2":0.00446,"16.3":0.03566,"16.6":0.20061,"17.1":0.16495,"17.2":0.02675,"17.3":0.05795,"17.4":0.02675,"17.5":0.01337,"17.6":0.20953,"18.0":0.00892,"18.2":0.06687,"18.3":0.20061,"18.4":0.12928,"18.5-18.6":0.28531,"26.0":0.68653,"26.1":0.74449,"26.2":0.00446},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00281,"5.0-5.1":0,"6.0-6.1":0.01123,"7.0-7.1":0.00843,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02528,"10.0-10.2":0.00281,"10.3":0.04494,"11.0-11.2":0.52242,"11.3-11.4":0.01685,"12.0-12.1":0.00562,"12.2-12.5":0.13201,"13.0-13.1":0,"13.2":0.01404,"13.3":0.00562,"13.4-13.7":0.02528,"14.0-14.4":0.04213,"14.5-14.8":0.05337,"15.0-15.1":0.04494,"15.2-15.3":0.03651,"15.4":0.03932,"15.5":0.04213,"15.6-15.8":0.60948,"16.0":0.07583,"16.1":0.14043,"16.2":0.07303,"16.3":0.13482,"16.4":0.0337,"16.5":0.05617,"16.6-16.7":0.82294,"17.0":0.07022,"17.1":0.08426,"17.2":0.06179,"17.3":0.08707,"17.4":0.14324,"17.5":0.27244,"17.6-17.7":0.66847,"18.0":0.14886,"18.1":0.31457,"18.2":0.16852,"18.3":0.54769,"18.4":0.28087,"18.5-18.7":19.61305,"26.0":1.34536,"26.1":1.2274},P:{"4":0.13447,"24":0.02069,"26":0.02069,"28":0.03103,"29":2.7825,_:"20 21 22 23 25 27 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","5.0-5.4":0.04138,"7.2-7.4":0.08275,"19.0":0.06206},I:{"0":0.0166,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":1.76236,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00892,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00554,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0665},H:{"0":0},L:{"0":25.02116},R:{_:"0"},M:{"0":0.08867}};
Index: node_modules/caniuse-lite/data/regions/GM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00636,"43":0.00636,"46":0.00318,"50":0.00318,"65":0.00636,"68":0.00636,"72":0.03179,"73":0.00318,"78":0.00636,"100":0.00318,"102":0.00318,"112":0.00954,"115":0.03497,"127":0.00318,"128":0.00318,"132":0.00318,"140":0.02861,"142":0.00318,"143":0.01272,"144":0.91873,"145":1.36061,"146":0.00954,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 133 134 135 136 137 138 139 141 147 148 3.5 3.6"},D:{"43":0.00318,"53":0.01907,"54":0.00636,"55":0.00318,"60":0.02861,"64":0.02861,"68":0.0159,"69":0.01907,"70":0.01272,"71":0.0159,"72":0.02861,"73":0.00954,"74":0.00954,"75":0.00636,"76":0.00954,"77":0.03497,"78":0.02225,"79":0.01272,"80":0.02543,"81":0.01272,"83":0.02861,"84":0.00636,"85":0.00954,"86":0.02225,"87":0.02225,"88":0.01272,"89":0.00318,"90":0.02225,"91":0.00954,"93":0.00954,"98":0.01907,"100":0.01272,"103":0.06994,"104":0.0159,"105":0.03815,"106":0.02543,"107":0.00954,"109":0.20981,"111":0.03497,"112":0.00636,"114":0.00318,"115":0.00318,"116":0.38784,"117":0.00318,"118":0.00318,"119":0.0159,"120":0.05086,"122":0.14623,"123":0.00318,"124":0.00636,"125":0.20028,"126":0.07948,"127":0.0159,"128":0.0159,"129":0.00318,"131":0.0159,"132":0.01272,"133":0.06358,"134":0.02225,"135":0.03179,"136":0.0604,"137":0.01907,"138":0.23207,"139":0.07312,"140":0.25114,"141":3.29662,"142":6.47244,"143":0.01272,"144":0.00636,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 56 57 58 59 61 62 63 65 66 67 92 94 95 96 97 99 101 102 108 110 113 121 130 145 146"},F:{"42":0.00636,"46":0.0159,"54":0.00318,"55":0.00636,"56":0.00318,"72":0.00636,"73":0.00954,"74":0.00636,"75":0.00954,"76":0.00636,"77":0.00636,"79":0.00318,"86":0.00954,"89":0.01272,"92":0.00636,"113":0.00636,"120":0.00636,"122":0.31154,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 57 58 60 62 63 64 65 66 67 68 69 70 71 78 80 81 82 83 84 85 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00318,"18":0.02543,"80":0.00318,"84":0.00954,"86":0.00954,"88":0.00318,"90":0.02543,"91":0.00954,"92":0.01907,"98":0.00318,"100":0.0604,"103":0.00318,"109":0.02225,"112":0.00318,"114":0.1971,"116":0.00318,"120":0.00636,"122":0.00636,"125":0.00636,"129":0.00636,"130":0.00636,"131":0.00636,"134":0.00636,"135":0.0159,"136":0.02861,"137":0.00318,"138":0.00954,"139":0.01272,"140":0.04451,"141":0.32108,"142":2.71805,_:"12 13 14 15 17 79 81 83 85 87 89 93 94 95 96 97 99 101 102 104 105 106 107 108 110 111 113 115 117 118 119 121 123 124 126 127 128 132 133 143"},E:{"11":0.00636,"14":0.01272,_:"0 4 5 6 7 8 9 10 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.5 17.2 17.4 17.5 18.0 18.1 18.2 18.4","9.1":0.0604,"13.1":0.04769,"14.1":0.02543,"15.5":0.00318,"15.6":0.08265,"16.3":0.00318,"16.4":0.00318,"16.6":0.09855,"17.0":0.07948,"17.1":0.0763,"17.3":0.13988,"17.6":0.04451,"18.3":0.02543,"18.5-18.6":0.06358,"26.0":0.3179,"26.1":0.18438,"26.2":0.00636},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00125,"5.0-5.1":0,"6.0-6.1":0.005,"7.0-7.1":0.00375,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01125,"10.0-10.2":0.00125,"10.3":0.02,"11.0-11.2":0.23255,"11.3-11.4":0.0075,"12.0-12.1":0.0025,"12.2-12.5":0.05876,"13.0-13.1":0,"13.2":0.00625,"13.3":0.0025,"13.4-13.7":0.01125,"14.0-14.4":0.01875,"14.5-14.8":0.02376,"15.0-15.1":0.02,"15.2-15.3":0.01625,"15.4":0.0175,"15.5":0.01875,"15.6-15.8":0.27131,"16.0":0.03376,"16.1":0.06251,"16.2":0.03251,"16.3":0.06001,"16.4":0.015,"16.5":0.02501,"16.6-16.7":0.36633,"17.0":0.03126,"17.1":0.03751,"17.2":0.02751,"17.3":0.03876,"17.4":0.06376,"17.5":0.12128,"17.6-17.7":0.29757,"18.0":0.06627,"18.1":0.14003,"18.2":0.07502,"18.3":0.24381,"18.4":0.12503,"18.5-18.7":8.73077,"26.0":0.59889,"26.1":0.54638},P:{"4":0.02083,"21":0.03124,"22":0.01041,"23":0.01041,"24":0.19787,"25":0.0729,"26":0.06249,"27":0.12497,"28":0.53112,"29":1.17681,_:"20 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","5.0-5.4":0.01041,"6.2-6.4":0.01041,"7.2-7.4":0.04166,"8.2":0.01041,"19.0":0.02083},I:{"0":0.00681,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":2.01226,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.01907,_:"6 7 8 9 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.08185},H:{"0":0.15},L:{"0":60.27477},R:{_:"0"},M:{"0":0.40244}};
Index: node_modules/caniuse-lite/data/regions/GN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0025,"45":0.0025,"46":0.0025,"50":0.005,"55":0.0025,"57":0.00999,"60":0.0025,"62":0.0025,"70":0.005,"72":0.01499,"74":0.0025,"79":0.0025,"80":0.0025,"82":0.0025,"87":0.0025,"91":0.0025,"94":0.005,"100":0.0025,"115":0.02248,"117":0.005,"123":0.0025,"127":0.00749,"128":0.005,"134":0.0025,"135":0.0025,"136":0.02498,"138":0.00749,"140":0.005,"142":0.00999,"143":0.05496,"144":0.23981,"145":0.51459,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 47 48 49 51 52 53 54 56 58 59 61 63 64 65 66 67 68 69 71 73 75 76 77 78 81 83 84 85 86 88 89 90 92 93 95 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 118 119 120 121 122 124 125 126 129 130 131 132 133 137 139 141 146 147 148 3.5 3.6"},D:{"19":0.0025,"40":0.0025,"43":0.0025,"46":0.0025,"48":0.01249,"49":0.00999,"57":0.0025,"63":0.0025,"64":0.00999,"66":0.005,"68":0.00749,"69":0.03747,"71":0.005,"74":0.005,"75":0.005,"77":0.01249,"78":0.01499,"79":0.00749,"80":0.005,"81":0.00749,"86":0.01499,"87":0.01499,"88":0.0025,"89":0.0025,"90":0.005,"91":0.00749,"93":0.00749,"94":0.00999,"95":0.0025,"98":0.0025,"103":0.01499,"104":0.0025,"106":0.0025,"107":0.0025,"108":0.0025,"109":0.05745,"111":0.01249,"113":0.02248,"114":0.005,"115":0.0025,"116":0.00999,"117":0.005,"118":0.0025,"119":0.01749,"120":0.01499,"121":0.00999,"122":0.01499,"124":0.01499,"125":0.11491,"126":0.06745,"127":0.01249,"128":0.09742,"129":0.005,"130":0.005,"131":0.06994,"132":0.01249,"133":0.07494,"134":0.04746,"135":0.02248,"136":0.04746,"137":0.04247,"138":0.16237,"139":0.1274,"140":0.26729,"141":1.77358,"142":4.06924,"143":0.005,"144":0.00999,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 47 50 51 52 53 54 55 56 58 59 60 61 62 65 67 70 72 73 76 83 84 85 92 96 97 99 100 101 102 105 110 112 123 145 146"},F:{"36":0.005,"37":0.0025,"42":0.0025,"48":0.005,"62":0.0025,"79":0.00999,"86":0.0025,"91":0.01249,"92":0.02998,"93":0.0025,"95":0.005,"112":0.0025,"113":0.005,"117":0.0025,"119":0.0025,"120":0.01998,"121":0.0025,"122":0.15488,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 41 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 114 115 116 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.005,"14":0.01499,"15":0.0025,"16":0.0025,"17":0.01249,"18":0.07994,"84":0.01998,"85":0.005,"89":0.00749,"90":0.04247,"92":0.10242,"95":0.005,"100":0.03247,"114":0.20484,"121":0.005,"122":0.04996,"124":0.0025,"125":0.0025,"128":0.0025,"129":0.0025,"130":0.0025,"131":0.00999,"132":0.005,"133":0.06495,"134":0.0025,"135":0.00749,"136":0.01249,"137":0.01499,"138":0.02748,"139":0.01249,"140":0.03997,"141":0.43465,"142":2.31065,_:"13 79 80 81 83 86 87 88 91 93 94 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 123 126 127 143"},E:{"11":0.00749,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.1 15.4 16.0 16.2 16.3 16.4 17.0 17.2 17.3 18.2","5.1":0.06745,"11.1":0.00749,"13.1":0.005,"14.1":0.0025,"15.2-15.3":0.00749,"15.5":0.005,"15.6":0.02998,"16.1":0.005,"16.5":0.0025,"16.6":0.01749,"17.1":0.00749,"17.4":0.005,"17.5":0.005,"17.6":0.06245,"18.0":0.03497,"18.1":0.31725,"18.3":0.01998,"18.4":0.00999,"18.5-18.6":0.03247,"26.0":0.05246,"26.1":0.09992,"26.2":0.00999},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00097,"5.0-5.1":0,"6.0-6.1":0.00388,"7.0-7.1":0.00291,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00872,"10.0-10.2":0.00097,"10.3":0.01551,"11.0-11.2":0.18028,"11.3-11.4":0.00582,"12.0-12.1":0.00194,"12.2-12.5":0.04556,"13.0-13.1":0,"13.2":0.00485,"13.3":0.00194,"13.4-13.7":0.00872,"14.0-14.4":0.01454,"14.5-14.8":0.01842,"15.0-15.1":0.01551,"15.2-15.3":0.0126,"15.4":0.01357,"15.5":0.01454,"15.6-15.8":0.21033,"16.0":0.02617,"16.1":0.04846,"16.2":0.0252,"16.3":0.04652,"16.4":0.01163,"16.5":0.01939,"16.6-16.7":0.28399,"17.0":0.02423,"17.1":0.02908,"17.2":0.02132,"17.3":0.03005,"17.4":0.04943,"17.5":0.09402,"17.6-17.7":0.23068,"18.0":0.05137,"18.1":0.10856,"18.2":0.05816,"18.3":0.18901,"18.4":0.09693,"18.5-18.7":6.76833,"26.0":0.46427,"26.1":0.42357},P:{"20":0.01019,"21":0.03056,"22":0.05093,"23":0.01019,"24":0.14261,"25":0.20373,"26":0.10186,"27":0.35652,"28":1.08995,"29":1.05939,_:"4 5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0 14.0 17.0 18.0","7.2-7.4":0.05093,"9.2":0.01019,"11.1-11.2":0.01019,"15.0":0.01019,"16.0":0.01019,"19.0":0.04075},I:{"0":0.04495,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":1.02531,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01998,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.0075,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.17255},O:{"0":1.04278},H:{"0":0.13},L:{"0":69.56217},R:{_:"0"},M:{"0":0.04501}};
Index: node_modules/caniuse-lite/data/regions/GP.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"112":0.00415,"115":0.24467,"126":0.02074,"127":0.00415,"128":0.01244,"136":0.01244,"137":0.01244,"140":0.24053,"141":0.00829,"142":0.01244,"143":0.07465,"144":1.43072,"145":2.45917,"146":0.00415,"147":0.00415,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 129 130 131 132 133 134 135 138 139 148 3.5 3.6"},D:{"47":0.00415,"65":0.00415,"79":0.00415,"88":0.00829,"97":0.00415,"102":0.01244,"103":0.02074,"108":0.00415,"109":0.34005,"111":0.00829,"116":0.14515,"119":0.02074,"120":0.01659,"122":0.05391,"123":0.00415,"124":0.00829,"125":0.17832,"126":0.05806,"127":0.03732,"128":0.2115,"129":0.00829,"130":0.18247,"131":0.10782,"132":0.01659,"133":0.02903,"134":0.01659,"135":0.02074,"136":0.0705,"137":0.02488,"138":0.24882,"139":0.29858,"140":0.30273,"141":3.76548,"142":12.76447,"143":0.02488,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 89 90 91 92 93 94 95 96 98 99 100 101 104 105 106 107 110 112 113 114 115 117 118 121 144 145 146"},F:{"46":0.00829,"92":0.02074,"93":0.01244,"95":0.02488,"120":0.00415,"122":0.44788,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.02074,"89":0.00415,"109":0.00829,"110":0.00415,"114":0.02074,"120":0.00415,"123":0.00415,"125":0.00415,"129":0.00415,"130":0.01244,"131":0.00829,"132":0.14515,"134":0.01244,"136":0.00415,"137":0.01244,"138":0.00829,"139":0.00829,"140":0.01659,"141":0.55155,"142":3.67424,"143":0.00829,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 113 115 116 117 118 119 121 122 124 126 127 128 133 135"},E:{"14":0.00415,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 17.0","12.1":0.00415,"13.1":0.01659,"14.1":0.02488,"15.4":0.00415,"15.5":0.00415,"15.6":0.19906,"16.0":0.00829,"16.1":0.2115,"16.2":0.00415,"16.3":0.00415,"16.4":0.00829,"16.5":0.00415,"16.6":0.2115,"17.1":0.5474,"17.2":0.00829,"17.3":0.08709,"17.4":0.03732,"17.5":0.03318,"17.6":0.29029,"18.0":0.01244,"18.1":0.05806,"18.2":0.00829,"18.3":0.04562,"18.4":0.02074,"18.5-18.6":0.3525,"26.0":0.52252,"26.1":0.37323,"26.2":0.00829},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00143,"5.0-5.1":0,"6.0-6.1":0.00573,"7.0-7.1":0.0043,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0129,"10.0-10.2":0.00143,"10.3":0.02293,"11.0-11.2":0.2665,"11.3-11.4":0.0086,"12.0-12.1":0.00287,"12.2-12.5":0.06734,"13.0-13.1":0,"13.2":0.00716,"13.3":0.00287,"13.4-13.7":0.0129,"14.0-14.4":0.02149,"14.5-14.8":0.02722,"15.0-15.1":0.02293,"15.2-15.3":0.01863,"15.4":0.02006,"15.5":0.02149,"15.6-15.8":0.31092,"16.0":0.03869,"16.1":0.07164,"16.2":0.03725,"16.3":0.06878,"16.4":0.01719,"16.5":0.02866,"16.6-16.7":0.41981,"17.0":0.03582,"17.1":0.04298,"17.2":0.03152,"17.3":0.04442,"17.4":0.07307,"17.5":0.13898,"17.6-17.7":0.34101,"18.0":0.07594,"18.1":0.16048,"18.2":0.08597,"18.3":0.2794,"18.4":0.14328,"18.5-18.7":10.00534,"26.0":0.68632,"26.1":0.62614},P:{"20":0.19971,"21":0.01051,"22":0.03153,"23":0.01051,"24":0.03153,"25":0.02102,"26":0.03153,"27":0.05255,"28":0.30482,"29":3.24786,_:"4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","5.0-5.4":0.01051,"7.2-7.4":0.02102,"19.0":0.04204},I:{"0":0.01169,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.15218,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":44.0356},R:{_:"0"},M:{"0":1.01257}};
Index: node_modules/caniuse-lite/data/regions/GQ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GQ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GQ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.00337,"5":0.00337,"55":0.00787,"57":0.00225,"64":0.01124,"72":0.00899,"110":0.00225,"115":0.01686,"127":0.00337,"134":0.00225,"135":0.0045,"138":0.00562,"139":0.00225,"140":0.0045,"143":0.02023,"144":0.136,"145":0.31697,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 58 59 60 61 62 63 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 128 129 130 131 132 133 136 137 141 142 146 147 148 3.5 3.6"},D:{"47":0.00337,"61":0.00112,"64":0.00562,"69":0.01349,"75":0.00899,"79":0.00787,"80":0.00225,"81":0.00225,"85":0.00112,"87":0.00112,"89":0.00112,"90":0.00225,"94":0.00787,"97":0.00562,"98":0.00787,"103":0.0517,"109":0.24616,"111":0.00337,"114":0.02023,"115":0.0045,"116":0.01236,"117":0.00337,"118":0.00337,"119":0.01349,"120":0.00899,"121":0.00562,"122":0.03934,"123":0.04608,"125":0.08093,"126":0.03035,"127":0.0045,"128":0.00337,"130":0.00225,"131":0.00562,"132":0.00674,"133":0.02698,"134":0.01124,"135":0.01911,"136":0.00899,"137":0.01461,"138":0.07868,"139":0.04271,"140":0.08093,"141":0.76432,"142":1.45333,"143":0.00787,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 65 66 67 68 70 71 72 73 74 76 77 78 83 84 86 88 91 92 93 95 96 99 100 101 102 104 105 106 107 108 110 112 113 124 129 144 145 146"},F:{"34":0.00225,"44":0.00112,"89":0.00112,"92":0.00337,"93":0.04946,"95":0.00112,"119":0.01236,"122":0.01911,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00337,"16":0.00225,"17":0.00112,"18":0.00337,"87":0.00337,"89":0.01012,"90":0.03035,"92":0.00674,"100":0.00787,"103":0.00112,"109":0.01686,"114":0.10341,"120":0.11015,"121":0.00225,"122":0.01012,"130":0.00787,"131":0.02698,"133":0.01349,"134":0.00674,"136":0.00787,"137":0.00787,"138":0.01012,"139":0.00337,"140":0.03372,"141":0.29224,"142":1.69836,"143":0.05395,_:"13 14 15 79 80 81 83 84 85 86 88 91 93 94 95 96 97 98 99 101 102 104 105 106 107 108 110 111 112 113 115 116 117 118 119 123 124 125 126 127 128 129 132 135"},E:{"14":0.00337,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 14.1 15.1 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.3 17.4 18.0 18.2 18.3 18.4 26.2","11.1":0.0045,"13.1":0.00112,"15.2-15.3":0.00562,"15.4":0.08205,"15.6":0.03822,"16.6":0.02585,"17.5":0.00337,"17.6":0.03035,"18.1":0.01349,"18.5-18.6":0.0236,"26.0":0.08655,"26.1":0.03147},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00029,"5.0-5.1":0,"6.0-6.1":0.00115,"7.0-7.1":0.00086,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00259,"10.0-10.2":0.00029,"10.3":0.0046,"11.0-11.2":0.05349,"11.3-11.4":0.00173,"12.0-12.1":0.00058,"12.2-12.5":0.01352,"13.0-13.1":0,"13.2":0.00144,"13.3":0.00058,"13.4-13.7":0.00259,"14.0-14.4":0.00431,"14.5-14.8":0.00546,"15.0-15.1":0.0046,"15.2-15.3":0.00374,"15.4":0.00403,"15.5":0.00431,"15.6-15.8":0.06241,"16.0":0.00776,"16.1":0.01438,"16.2":0.00748,"16.3":0.0138,"16.4":0.00345,"16.5":0.00575,"16.6-16.7":0.08426,"17.0":0.00719,"17.1":0.00863,"17.2":0.00633,"17.3":0.00892,"17.4":0.01467,"17.5":0.0279,"17.6-17.7":0.06844,"18.0":0.01524,"18.1":0.03221,"18.2":0.01725,"18.3":0.05608,"18.4":0.02876,"18.5-18.7":2.00819,"26.0":0.13775,"26.1":0.12567},P:{"4":0.02048,"25":0.05121,"27":0.15362,"28":0.03072,"29":0.92174,_:"20 21 22 23 24 26 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02048},I:{"0":0.00886,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.6912,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.46196,_:"6 7 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.01775,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0355},H:{"0":0.01},L:{"0":87.64871},R:{_:"0"},M:{"0":0.00888}};
Index: node_modules/caniuse-lite/data/regions/GR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.00631,"52":0.40403,"68":0.22096,"78":0.00631,"102":0.00631,"105":0.44822,"115":1.05427,"116":0.01263,"125":0.00631,"127":0.00631,"128":0.00631,"132":0.00631,"135":0.00631,"136":0.01894,"137":0.00631,"138":0.01263,"139":0.01894,"140":0.0505,"141":0.01894,"142":0.06313,"143":0.04419,"144":2.05173,"145":2.32318,"146":0.00631,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 107 108 109 110 111 112 113 114 117 118 119 120 121 122 123 124 126 129 130 131 133 134 147 148 3.5 3.6"},D:{"49":0.04419,"56":0.01263,"57":0.0505,"68":0.29671,"73":0.00631,"74":0.10101,"75":0.00631,"79":0.0505,"83":0.00631,"87":0.0505,"88":0.18308,"89":0.01263,"91":0.00631,"94":0.00631,"95":0.00631,"100":0.26515,"101":0.01894,"102":0.20202,"103":0.04419,"104":0.00631,"105":0.03157,"107":0.01263,"108":0.03157,"109":4.91783,"110":0.01894,"114":0.02525,"115":0.00631,"116":0.07576,"117":0.00631,"118":0.00631,"119":0.01263,"120":0.02525,"121":0.03157,"122":0.06313,"123":0.01894,"124":0.0505,"125":2.21586,"126":0.03157,"127":0.00631,"128":0.08838,"129":0.00631,"130":0.01894,"131":0.0505,"132":0.02525,"133":0.04419,"134":0.04419,"135":0.11995,"136":0.03788,"137":0.04419,"138":0.30934,"139":0.18939,"140":0.32196,"141":8.4973,"142":24.50707,"143":0.03157,"144":0.00631,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 58 59 60 61 62 63 64 65 66 67 69 70 71 72 76 77 78 80 81 84 85 86 90 92 93 96 97 98 99 106 111 112 113 145 146"},F:{"31":0.41666,"36":0.00631,"40":0.56817,"46":0.25883,"92":0.0505,"93":0.00631,"95":0.03788,"114":0.02525,"118":0.00631,"122":0.41666,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.0947,"114":0.00631,"120":0.00631,"134":0.00631,"138":0.00631,"139":0.00631,"140":0.01894,"141":0.41666,"142":3.62998,"143":0.00631,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 122 123 124 125 126 127 128 129 130 131 132 133 135 136 137"},E:{"12":0.01263,_:"0 4 5 6 7 8 9 10 11 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 16.0 16.4 17.0","12.1":0.00631,"13.1":0.01263,"14.1":0.01894,"15.2-15.3":0.00631,"15.4":0.1957,"15.5":0.00631,"15.6":0.07576,"16.1":0.00631,"16.2":0.00631,"16.3":0.01263,"16.5":0.01263,"16.6":0.07576,"17.1":0.07576,"17.2":0.01894,"17.3":0.00631,"17.4":0.02525,"17.5":0.01894,"17.6":0.11363,"18.0":0.01894,"18.1":0.01263,"18.2":0.01894,"18.3":0.0505,"18.4":0.03788,"18.5-18.6":0.06944,"26.0":0.17045,"26.1":0.22096,"26.2":0.00631},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00072,"5.0-5.1":0,"6.0-6.1":0.00286,"7.0-7.1":0.00215,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00645,"10.0-10.2":0.00072,"10.3":0.01146,"11.0-11.2":0.13321,"11.3-11.4":0.0043,"12.0-12.1":0.00143,"12.2-12.5":0.03366,"13.0-13.1":0,"13.2":0.00358,"13.3":0.00143,"13.4-13.7":0.00645,"14.0-14.4":0.01074,"14.5-14.8":0.01361,"15.0-15.1":0.01146,"15.2-15.3":0.00931,"15.4":0.01003,"15.5":0.01074,"15.6-15.8":0.15541,"16.0":0.01934,"16.1":0.03581,"16.2":0.01862,"16.3":0.03438,"16.4":0.00859,"16.5":0.01432,"16.6-16.7":0.20984,"17.0":0.0179,"17.1":0.02149,"17.2":0.01576,"17.3":0.0222,"17.4":0.03653,"17.5":0.06947,"17.6-17.7":0.17045,"18.0":0.03796,"18.1":0.08021,"18.2":0.04297,"18.3":0.13966,"18.4":0.07162,"18.5-18.7":5.00115,"26.0":0.34305,"26.1":0.31297},P:{"4":0.19012,"20":0.01056,"21":0.01056,"22":0.01056,"23":0.01056,"24":0.01056,"25":0.01056,"26":0.02112,"27":0.03169,"28":0.169,"29":1.30972,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02112},I:{"0":0.04417,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.22116,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.25252,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.04792},H:{"0":0},L:{"0":30.15629},R:{_:"0"},M:{"0":0.37966}};
Index: node_modules/caniuse-lite/data/regions/GT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00408,"115":0.03263,"120":0.01224,"127":0.00408,"128":0.00408,"137":0.00408,"139":0.00408,"140":0.00816,"141":0.00408,"143":0.0204,"144":0.4283,"145":0.49356,"146":0.00816,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 122 123 124 125 126 129 130 131 132 133 134 135 136 138 142 147 148 3.5 3.6"},D:{"69":0.00408,"76":0.00408,"78":0.0204,"79":0.01224,"87":0.00816,"93":0.00408,"97":0.00816,"101":0.00408,"102":0.00408,"103":0.01632,"106":0.00408,"107":0.00408,"108":0.00816,"109":0.39974,"110":0.00408,"111":0.00816,"112":3.0103,"114":0.01224,"115":0.00408,"116":0.07342,"119":0.00816,"120":0.00816,"121":0.00408,"122":0.04895,"123":0.0204,"124":0.00816,"125":0.10198,"126":0.4079,"127":0.0204,"128":0.05303,"129":0.00408,"130":0.00816,"131":0.04079,"132":0.03263,"133":0.0204,"134":0.01632,"135":0.0204,"136":0.02447,"137":0.02447,"138":0.13053,"139":0.07342,"140":0.16316,"141":3.5732,"142":14.82717,"143":0.02447,"144":0.0204,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 77 80 81 83 84 85 86 88 89 90 91 92 94 95 96 98 99 100 104 105 113 117 118 145 146"},F:{"91":0.00408,"92":0.05303,"93":0.00816,"95":0.00408,"117":0.00408,"121":0.00408,"122":0.42014,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 120 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00408,"109":0.00408,"114":0.09382,"130":0.00408,"131":0.00408,"134":0.00408,"135":0.01224,"136":0.00816,"137":0.00408,"138":0.01632,"139":0.00816,"140":0.01632,"141":0.26921,"142":2.7778,"143":0.00408,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 132 133"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 16.2 16.4 17.0","5.1":0.00408,"13.1":0.00408,"14.1":0.00408,"15.4":0.00408,"15.5":0.00408,"15.6":0.03263,"16.1":0.00816,"16.3":0.00408,"16.5":0.00408,"16.6":0.05303,"17.1":0.02855,"17.2":0.00408,"17.3":0.00816,"17.4":0.01224,"17.5":0.01632,"17.6":0.0775,"18.0":0.01224,"18.1":0.0204,"18.2":0.00816,"18.3":0.02855,"18.4":0.01632,"18.5-18.6":0.08974,"26.0":0.27737,"26.1":0.37527,"26.2":0.02447},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00131,"5.0-5.1":0,"6.0-6.1":0.00525,"7.0-7.1":0.00393,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0118,"10.0-10.2":0.00131,"10.3":0.02098,"11.0-11.2":0.24394,"11.3-11.4":0.00787,"12.0-12.1":0.00262,"12.2-12.5":0.06164,"13.0-13.1":0,"13.2":0.00656,"13.3":0.00262,"13.4-13.7":0.0118,"14.0-14.4":0.01967,"14.5-14.8":0.02492,"15.0-15.1":0.02098,"15.2-15.3":0.01705,"15.4":0.01836,"15.5":0.01967,"15.6-15.8":0.2846,"16.0":0.03541,"16.1":0.06558,"16.2":0.0341,"16.3":0.06295,"16.4":0.01574,"16.5":0.02623,"16.6-16.7":0.38427,"17.0":0.03279,"17.1":0.03935,"17.2":0.02885,"17.3":0.04066,"17.4":0.06689,"17.5":0.12722,"17.6-17.7":0.31214,"18.0":0.06951,"18.1":0.14689,"18.2":0.07869,"18.3":0.25574,"18.4":0.13115,"18.5-18.7":9.15821,"26.0":0.62821,"26.1":0.57313},P:{"22":0.0102,"23":0.0204,"24":0.0306,"25":0.0306,"26":0.0306,"27":0.11222,"28":0.24484,"29":2.69319,_:"4 20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.0204,"13.0":0.0102},I:{"0":0.05321,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.19131,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.00592,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01776},H:{"0":0.01},L:{"0":50.83699},R:{_:"0"},M:{"0":0.24276}};
Index: node_modules/caniuse-lite/data/regions/GU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"78":0.00914,"115":0.05029,"138":0.00457,"140":0.01372,"141":0.07772,"143":0.00457,"144":1.53619,"145":0.96926,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 139 142 146 147 148 3.5 3.6"},D:{"74":0.00457,"79":0.05486,"80":0.00457,"87":0.02286,"89":0.00914,"91":0.00914,"94":0.00457,"95":0.00457,"96":0.00457,"97":0.00457,"98":0.23317,"99":0.0823,"100":0.00457,"103":0.10516,"109":0.25603,"116":0.08687,"120":0.00914,"122":0.04572,"123":0.00457,"124":0.00457,"125":0.07772,"126":0.08687,"128":0.02743,"129":0.00914,"130":0.00457,"131":0.05029,"132":0.00914,"133":0.05029,"134":0.12344,"135":0.01829,"136":0.02743,"137":0.09144,"138":0.11887,"139":0.13716,"140":0.86411,"141":5.18008,"142":11.08253,"143":0.00457,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 81 83 84 85 86 88 90 92 93 101 102 104 105 106 107 108 110 111 112 113 114 115 117 118 119 121 127 144 145 146"},F:{"83":0.00457,"90":0.00457,"120":0.01372,"122":0.24689,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"94":0.00457,"98":0.032,"99":0.01829,"104":0.00457,"109":0.00914,"120":0.00457,"132":0.00457,"136":0.00457,"137":0.00914,"138":0.01372,"139":0.01372,"140":0.13259,"141":0.8824,"142":5.28523,"143":0.00457,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96 97 100 101 102 103 105 106 107 108 110 111 112 113 114 115 116 117 118 119 121 122 123 124 125 126 127 128 129 130 131 133 134 135"},E:{"14":0.01372,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.5 16.0","13.1":0.032,"14.1":0.00914,"15.1":0.00457,"15.2-15.3":0.01372,"15.4":0.00457,"15.6":0.4572,"16.1":0.00457,"16.2":0.00914,"16.3":0.05486,"16.4":0.02286,"16.5":0.05486,"16.6":0.34747,"17.0":0.00457,"17.1":0.27889,"17.2":0.03658,"17.3":0.032,"17.4":0.07315,"17.5":0.1143,"17.6":1.35788,"18.0":0.01829,"18.1":0.08687,"18.2":0.01829,"18.3":0.26518,"18.4":0.04572,"18.5-18.6":0.24232,"26.0":0.27889,"26.1":0.23774,"26.2":0.00457},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.002,"5.0-5.1":0,"6.0-6.1":0.00802,"7.0-7.1":0.00601,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01804,"10.0-10.2":0.002,"10.3":0.03208,"11.0-11.2":0.37288,"11.3-11.4":0.01203,"12.0-12.1":0.00401,"12.2-12.5":0.09422,"13.0-13.1":0,"13.2":0.01002,"13.3":0.00401,"13.4-13.7":0.01804,"14.0-14.4":0.03007,"14.5-14.8":0.03809,"15.0-15.1":0.03208,"15.2-15.3":0.02606,"15.4":0.02807,"15.5":0.03007,"15.6-15.8":0.43503,"16.0":0.05413,"16.1":0.10024,"16.2":0.05212,"16.3":0.09623,"16.4":0.02406,"16.5":0.04009,"16.6-16.7":0.58739,"17.0":0.05012,"17.1":0.06014,"17.2":0.0441,"17.3":0.06215,"17.4":0.10224,"17.5":0.19446,"17.6-17.7":0.47713,"18.0":0.10625,"18.1":0.22453,"18.2":0.12028,"18.3":0.39092,"18.4":0.20047,"18.5-18.7":13.99906,"26.0":0.96027,"26.1":0.87607},P:{"4":0.15638,"20":0.02085,"23":0.02085,"25":0.01043,"26":0.01043,"28":0.44828,"29":3.15882,_:"21 22 24 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.0271,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.05427,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00543},H:{"0":0},L:{"0":31.23446},R:{_:"0"},M:{"0":0.30934}};
Index: node_modules/caniuse-lite/data/regions/GW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00827,"43":0.00551,"102":0.00827,"114":0.03033,"115":0.02757,"116":0.00551,"133":0.01103,"144":0.0965,"145":0.69752,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 134 135 136 137 138 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"46":0.00551,"59":0.00551,"64":0.00551,"65":0.00276,"68":0.03033,"69":0.01654,"70":0.0386,"79":0.05238,"89":0.00276,"98":0.00551,"103":0.06065,"107":0.00551,"108":0.00276,"109":0.17921,"111":0.01654,"113":0.02206,"114":0.08822,"115":0.01379,"116":0.01103,"119":0.03308,"122":0.05238,"124":0.00276,"125":0.1985,"126":0.06893,"127":0.00827,"129":0.02481,"131":0.01654,"132":0.01654,"133":0.02206,"134":0.00276,"136":0.00551,"137":0.06893,"138":0.81056,"139":0.19023,"140":0.18196,"141":1.34266,"142":4.03625,"143":0.00827,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 61 62 63 66 67 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96 97 99 100 101 102 104 105 106 110 112 117 118 120 121 123 128 130 135 144 145 146"},F:{"92":0.00551,"95":0.00551,"113":0.00276,"117":0.00551,"122":0.03033,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00551,"89":0.01379,"90":0.01654,"92":0.04963,"95":0.02481,"100":0.00276,"114":0.16818,"115":0.00276,"122":0.00551,"127":0.00276,"129":0.00276,"132":0.00551,"136":0.03033,"138":0.03033,"139":0.00276,"140":0.05238,"141":1.89406,"142":1.60733,"143":0.04136,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 91 93 94 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 112 113 116 117 118 119 120 121 123 124 125 126 128 130 131 133 134 135 137"},E:{"13":0.00551,_:"0 4 5 6 7 8 9 10 11 12 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.3 17.4 17.5 18.1 18.3","5.1":0.46869,"13.1":0.00276,"15.6":0.00827,"16.6":0.08822,"17.2":0.00276,"17.6":0.26192,"18.0":0.01654,"18.2":0.00276,"18.4":0.00551,"18.5-18.6":0.00551,"26.0":0.08822,"26.1":0.09925,"26.2":0.00551},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00052,"5.0-5.1":0,"6.0-6.1":0.00207,"7.0-7.1":0.00155,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00465,"10.0-10.2":0.00052,"10.3":0.00828,"11.0-11.2":0.0962,"11.3-11.4":0.0031,"12.0-12.1":0.00103,"12.2-12.5":0.02431,"13.0-13.1":0,"13.2":0.00259,"13.3":0.00103,"13.4-13.7":0.00465,"14.0-14.4":0.00776,"14.5-14.8":0.00983,"15.0-15.1":0.00828,"15.2-15.3":0.00672,"15.4":0.00724,"15.5":0.00776,"15.6-15.8":0.11224,"16.0":0.01396,"16.1":0.02586,"16.2":0.01345,"16.3":0.02483,"16.4":0.00621,"16.5":0.01034,"16.6-16.7":0.15155,"17.0":0.01293,"17.1":0.01552,"17.2":0.01138,"17.3":0.01603,"17.4":0.02638,"17.5":0.05017,"17.6-17.7":0.1231,"18.0":0.02741,"18.1":0.05793,"18.2":0.03103,"18.3":0.10086,"18.4":0.05172,"18.5-18.7":3.61176,"26.0":0.24775,"26.1":0.22603},P:{"4":0.03085,"22":0.04114,"24":0.18511,"25":0.05142,"26":0.04114,"27":0.09256,"28":0.20568,"29":0.34965,_:"20 21 23 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01028,"7.2-7.4":0.14397},I:{"0":0.01447,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.45267,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.04346},H:{"0":0.25},L:{"0":78.48349},R:{_:"0"},M:{"0":0.12315}};
Index: node_modules/caniuse-lite/data/regions/GY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/GY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/GY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.05594,"115":0.00622,"137":0.01865,"139":0.00622,"140":0.00622,"142":0.0373,"143":0.00622,"144":0.2735,"145":0.23621,"146":0.0373,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 138 141 147 148 3.5 3.6"},D:{"69":0.06216,"73":0.01865,"79":0.01865,"81":0.00622,"83":0.06216,"86":0.01243,"87":0.02486,"88":0.00622,"93":0.01243,"94":0.00622,"98":0.00622,"99":0.00622,"101":0.00622,"103":0.06838,"109":0.10567,"111":0.06216,"112":24.68374,"114":0.01865,"116":0.00622,"117":0.01243,"118":0.00622,"119":0.00622,"120":0.01243,"121":0.01243,"122":0.08702,"124":0.06838,"125":3.70474,"126":3.87878,"127":0.00622,"128":0.24242,"129":0.00622,"130":0.01865,"131":0.01865,"132":0.21134,"133":0.00622,"134":0.01243,"135":0.00622,"136":0.01243,"137":0.01243,"138":0.17405,"139":0.3481,"140":0.50971,"141":2.69153,"142":9.14995,"143":0.04351,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 74 75 76 77 78 80 84 85 89 90 91 92 95 96 97 100 102 104 105 106 107 108 110 113 115 123 144 145 146"},F:{"92":0.02486,"114":0.02486,"122":0.20513,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00622,"107":0.00622,"114":1.0505,"122":0.00622,"126":0.00622,"127":0.00622,"128":0.00622,"131":0.00622,"132":0.03108,"134":0.00622,"135":0.01243,"137":0.03108,"138":0.01865,"139":0.01865,"140":0.03108,"141":0.49728,"142":3.8477,"143":0.02486,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 113 115 116 117 118 119 120 121 123 124 125 129 130 133 136"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 16.5 17.0 18.1","14.1":0.00622,"15.6":0.1181,"16.3":0.00622,"16.6":0.02486,"17.1":0.01243,"17.2":0.00622,"17.3":0.00622,"17.4":0.00622,"17.5":0.01243,"17.6":0.05594,"18.0":0.00622,"18.2":0.02486,"18.3":0.16162,"18.4":0.01865,"18.5-18.6":0.07459,"26.0":0.14297,"26.1":0.16783,"26.2":0.00622},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00065,"5.0-5.1":0,"6.0-6.1":0.00261,"7.0-7.1":0.00196,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00588,"10.0-10.2":0.00065,"10.3":0.01045,"11.0-11.2":0.12151,"11.3-11.4":0.00392,"12.0-12.1":0.00131,"12.2-12.5":0.0307,"13.0-13.1":0,"13.2":0.00327,"13.3":0.00131,"13.4-13.7":0.00588,"14.0-14.4":0.0098,"14.5-14.8":0.01241,"15.0-15.1":0.01045,"15.2-15.3":0.00849,"15.4":0.00915,"15.5":0.0098,"15.6-15.8":0.14176,"16.0":0.01764,"16.1":0.03266,"16.2":0.01699,"16.3":0.03136,"16.4":0.00784,"16.5":0.01307,"16.6-16.7":0.19141,"17.0":0.01633,"17.1":0.0196,"17.2":0.01437,"17.3":0.02025,"17.4":0.03332,"17.5":0.06337,"17.6-17.7":0.15548,"18.0":0.03462,"18.1":0.07317,"18.2":0.0392,"18.3":0.12739,"18.4":0.06533,"18.5-18.7":4.56193,"26.0":0.31293,"26.1":0.28549},P:{"4":0.06276,"21":0.0523,"22":0.02092,"23":0.01046,"24":0.04184,"25":0.07322,"26":0.03138,"27":0.1046,"28":0.40794,"29":2.2175,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","7.2-7.4":0.04184,"16.0":0.03138},I:{"0":0.00756,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.33308,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00757},O:{"0":0.1514},H:{"0":0},L:{"0":34.11385},R:{_:"0"},M:{"0":0.07949}};
Index: node_modules/caniuse-lite/data/regions/HK.js
===================================================================
--- node_modules/caniuse-lite/data/regions/HK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/HK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00856,"52":0.01712,"115":0.05565,"121":0.00856,"128":0.00856,"131":0.00856,"133":0.00428,"134":0.00428,"135":0.00428,"136":0.00856,"137":0.00428,"138":0.00428,"139":0.00428,"140":0.03425,"141":0.00428,"142":0.00856,"143":0.03853,"144":0.47947,"145":0.54797,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 122 123 124 125 126 127 129 130 132 146 147 148 3.5 3.6"},D:{"39":0.02141,"40":0.02141,"41":0.02141,"42":0.02141,"43":0.02141,"44":0.02141,"45":0.02141,"46":0.02141,"47":0.02141,"48":0.02997,"49":0.02569,"50":0.02141,"51":0.02141,"52":0.02569,"53":0.02141,"54":0.02141,"55":0.02141,"56":0.02141,"57":0.02141,"58":0.02141,"59":0.02141,"60":0.02141,"69":0.00856,"70":0.00428,"75":0.00428,"78":0.00856,"79":0.03853,"80":0.00428,"81":0.00428,"83":0.02141,"85":0.00856,"86":0.02997,"87":0.02997,"89":0.00428,"90":0.00428,"91":0.10703,"92":0.00428,"94":0.00428,"95":0.00428,"96":0.00428,"97":0.01284,"98":0.01284,"99":0.00856,"100":0.00428,"101":0.04709,"102":0.00428,"103":0.01712,"104":0.00856,"105":0.03425,"106":0.00856,"107":0.03425,"108":0.02997,"109":0.72349,"110":0.00856,"111":0.01712,"112":0.01284,"113":0.01712,"114":0.07278,"115":0.04281,"116":0.04281,"117":0.00856,"118":0.02141,"119":0.05137,"120":0.11131,"121":0.08562,"122":0.06422,"123":0.08134,"124":0.12843,"125":0.36389,"126":0.05993,"127":0.06422,"128":0.6079,"129":0.44094,"130":0.59078,"131":0.65499,"132":0.48803,"133":0.11131,"134":0.08562,"135":0.11131,"136":0.10703,"137":0.17552,"138":0.30395,"139":0.22689,"140":0.46663,"141":4.13973,"142":13.18976,"143":0.05137,"144":0.11559,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 71 72 73 74 76 77 84 88 93 145 146"},F:{"46":0.00428,"92":0.02569,"93":0.00428,"95":0.01284,"122":0.04281,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00428,"92":0.01284,"100":0.00428,"106":0.01284,"109":0.06422,"111":0.00428,"112":0.02569,"113":0.02141,"114":0.00856,"115":0.00428,"116":0.00428,"117":0.02997,"118":0.00428,"119":0.00428,"120":0.03425,"121":0.00856,"122":0.01284,"123":0.00856,"124":0.00856,"125":0.00428,"126":0.01284,"127":0.01712,"128":0.01284,"129":0.00856,"130":0.02569,"131":0.05565,"132":0.01284,"133":0.02997,"134":0.02997,"135":0.03853,"136":0.02569,"137":0.04281,"138":0.05993,"139":0.08134,"140":0.11131,"141":0.81767,"142":4.30669,"143":0.01712,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 107 108 110"},E:{"8":0.00428,"14":0.01284,_:"0 4 5 6 7 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.2-15.3","9.1":0.00428,"13.1":0.01712,"14.1":0.02569,"15.1":0.00428,"15.4":0.01712,"15.5":0.00856,"15.6":0.08134,"16.0":0.02141,"16.1":0.01712,"16.2":0.00856,"16.3":0.03853,"16.4":0.01284,"16.5":0.01284,"16.6":0.11987,"17.0":0.00428,"17.1":0.09418,"17.2":0.01284,"17.3":0.01712,"17.4":0.02141,"17.5":0.04709,"17.6":0.11131,"18.0":0.02141,"18.1":0.03425,"18.2":0.01284,"18.3":0.05137,"18.4":0.02569,"18.5-18.6":0.15412,"26.0":0.23117,"26.1":0.2483,"26.2":0.00856},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00156,"5.0-5.1":0,"6.0-6.1":0.00624,"7.0-7.1":0.00468,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01403,"10.0-10.2":0.00156,"10.3":0.02495,"11.0-11.2":0.29003,"11.3-11.4":0.00936,"12.0-12.1":0.00312,"12.2-12.5":0.07329,"13.0-13.1":0,"13.2":0.0078,"13.3":0.00312,"13.4-13.7":0.01403,"14.0-14.4":0.02339,"14.5-14.8":0.02963,"15.0-15.1":0.02495,"15.2-15.3":0.02027,"15.4":0.02183,"15.5":0.02339,"15.6-15.8":0.33837,"16.0":0.0421,"16.1":0.07796,"16.2":0.04054,"16.3":0.07485,"16.4":0.01871,"16.5":0.03119,"16.6-16.7":0.45687,"17.0":0.03898,"17.1":0.04678,"17.2":0.0343,"17.3":0.04834,"17.4":0.07952,"17.5":0.15125,"17.6-17.7":0.37111,"18.0":0.08264,"18.1":0.17464,"18.2":0.09356,"18.3":0.30406,"18.4":0.15593,"18.5-18.7":10.88858,"26.0":0.7469,"26.1":0.68141},P:{"4":0.03141,"20":0.01047,"21":0.01047,"22":0.02094,"23":0.02094,"24":0.01047,"25":0.02094,"26":0.05235,"27":0.05235,"28":0.35599,"29":3.30866,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 18.0 19.0","7.2-7.4":0.01047,"11.1-11.2":0.02094,"13.0":0.01047,"15.0":0.01047,"16.0":0.01047,"17.0":0.01047},I:{"0":0.0571,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.12008,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01922,"9":0.40356,"10":0.01922,"11":0.42277,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.26303},O:{"0":0.25159},H:{"0":0},L:{"0":40.46884},R:{_:"0"},M:{"0":0.88629}};
Index: node_modules/caniuse-lite/data/regions/HN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/HN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/HN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.03145,"5":0.02516,"115":0.03774,"138":0.00629,"140":0.00629,"142":0.03145,"143":0.00629,"144":0.3145,"145":0.5032,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 139 141 146 147 148 3.5 3.6"},D:{"69":0.02516,"77":0.00629,"79":0.06919,"83":0.00629,"85":0.00629,"87":0.08806,"93":0.02516,"94":0.01258,"97":0.02516,"103":0.04403,"105":0.00629,"108":0.01887,"109":0.3774,"111":0.05032,"112":23.88942,"114":0.01258,"116":0.01258,"118":0.00629,"119":0.03145,"120":0.00629,"122":0.07548,"123":0.00629,"124":0.01258,"125":1.13849,"126":5.12635,"127":0.01887,"128":0.04403,"129":0.00629,"130":0.01258,"131":0.03145,"132":0.06919,"133":0.03145,"134":0.01887,"135":0.01887,"136":0.01887,"137":0.04403,"138":0.07548,"139":0.16354,"140":0.41514,"141":3.64191,"142":13.20271,"143":0.01887,"144":0.00629,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 78 80 81 84 86 88 89 90 91 92 95 96 98 99 100 101 102 104 106 107 110 113 115 117 121 145 146"},F:{"92":0.01258,"95":0.01887,"117":0.03145,"122":0.62271,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01258,"109":0.03145,"114":0.71706,"122":0.00629,"129":0.00629,"130":0.00629,"131":0.00629,"132":0.00629,"134":0.00629,"136":0.00629,"137":0.00629,"138":0.01258,"139":0.02516,"140":0.01887,"141":0.61013,"142":4.20801,"143":0.00629,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 133 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 16.5 17.0 17.2","5.1":0.00629,"13.1":0.01258,"15.6":0.03145,"16.3":0.00629,"16.6":0.03774,"17.1":0.01887,"17.3":0.00629,"17.4":0.00629,"17.5":0.00629,"17.6":0.16354,"18.0":0.03145,"18.1":0.00629,"18.2":0.00629,"18.3":0.00629,"18.4":0.15725,"18.5-18.6":0.03145,"26.0":0.18241,"26.1":0.15725,"26.2":0.00629},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00102,"5.0-5.1":0,"6.0-6.1":0.00406,"7.0-7.1":0.00305,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00914,"10.0-10.2":0.00102,"10.3":0.01624,"11.0-11.2":0.18882,"11.3-11.4":0.00609,"12.0-12.1":0.00203,"12.2-12.5":0.04771,"13.0-13.1":0,"13.2":0.00508,"13.3":0.00203,"13.4-13.7":0.00914,"14.0-14.4":0.01523,"14.5-14.8":0.01929,"15.0-15.1":0.01624,"15.2-15.3":0.0132,"15.4":0.01421,"15.5":0.01523,"15.6-15.8":0.22029,"16.0":0.02741,"16.1":0.05076,"16.2":0.02639,"16.3":0.04873,"16.4":0.01218,"16.5":0.0203,"16.6-16.7":0.29744,"17.0":0.02538,"17.1":0.03045,"17.2":0.02233,"17.3":0.03147,"17.4":0.05177,"17.5":0.09847,"17.6-17.7":0.24161,"18.0":0.0538,"18.1":0.1137,"18.2":0.06091,"18.3":0.19795,"18.4":0.10152,"18.5-18.7":7.08882,"26.0":0.48626,"26.1":0.44362},P:{"4":0.06263,"21":0.01044,"22":0.01044,"24":0.02088,"25":0.05219,"26":0.02088,"27":0.04175,"28":0.2505,"29":1.05419,_:"20 23 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","5.0-5.4":0.01044,"7.2-7.4":0.05219,"8.2":0.01044,"16.0":0.03131},I:{"0":0.01852,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.21883,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.08531},H:{"0":0},L:{"0":27.95875},R:{_:"0"},M:{"0":0.09273}};
Index: node_modules/caniuse-lite/data/regions/HR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/HR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/HR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.02104,"68":0.00526,"77":0.01052,"78":0.01052,"88":0.00526,"105":0.00526,"115":0.29988,"125":0.00526,"128":0.02104,"133":0.05787,"134":0.00526,"135":0.00526,"136":0.01052,"138":0.01578,"139":0.00526,"140":0.10522,"141":0.01052,"142":0.02104,"143":0.05261,"144":1.35734,"145":1.60987,"146":0.00526,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 137 147 148 3.5 3.6"},D:{"41":0.01052,"49":0.01052,"66":0.00526,"69":0.00526,"75":0.02104,"76":0.00526,"77":0.01052,"79":0.19466,"80":0.00526,"81":0.01578,"84":0.00526,"86":0.00526,"87":0.16309,"88":0.01052,"91":0.00526,"92":0.00526,"93":0.00526,"94":0.01578,"95":0.00526,"96":0.00526,"99":0.00526,"101":0.00526,"103":0.02631,"104":0.03157,"106":0.00526,"107":0.00526,"108":0.05261,"109":1.14164,"110":0.00526,"111":0.03683,"112":1.50991,"114":0.01052,"116":0.05787,"117":0.00526,"118":0.02104,"119":0.01052,"120":0.05261,"121":0.01578,"122":0.04735,"123":0.01052,"124":0.04209,"125":0.06839,"126":0.17887,"127":0.01052,"128":0.04209,"129":0.01578,"130":0.02631,"131":0.10522,"132":0.05787,"133":0.05261,"134":0.03683,"135":0.07892,"136":0.05787,"137":0.05787,"138":0.25253,"139":0.63132,"140":0.47875,"141":6.67621,"142":21.85419,"143":0.03683,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 70 71 72 73 74 78 83 85 89 90 97 98 100 102 105 113 115 144 145 146"},F:{"36":0.00526,"40":0.00526,"46":0.04209,"85":0.00526,"92":0.07365,"93":0.02631,"95":0.03157,"120":0.00526,"122":0.54188,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00526,"109":0.02104,"114":0.02631,"118":0.00526,"124":0.01052,"131":0.01052,"132":0.00526,"133":0.00526,"134":0.00526,"135":0.00526,"137":0.01052,"138":0.01578,"139":0.02631,"140":0.05261,"141":0.34723,"142":3.30391,"143":0.03683,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 120 121 122 123 125 126 127 128 129 130 136"},E:{"14":0.00526,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.1 16.2 17.0","13.1":0.01052,"14.1":0.02104,"15.6":0.05787,"16.0":0.01578,"16.3":0.00526,"16.4":0.00526,"16.5":0.01052,"16.6":0.07892,"17.1":0.06313,"17.2":0.01052,"17.3":0.00526,"17.4":0.01578,"17.5":0.06839,"17.6":0.09996,"18.0":0.01052,"18.1":0.06839,"18.2":0.01052,"18.3":0.02631,"18.4":0.01578,"18.5-18.6":0.08418,"26.0":0.14205,"26.1":0.20518,"26.2":0.00526},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00091,"5.0-5.1":0,"6.0-6.1":0.00364,"7.0-7.1":0.00273,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00818,"10.0-10.2":0.00091,"10.3":0.01455,"11.0-11.2":0.16915,"11.3-11.4":0.00546,"12.0-12.1":0.00182,"12.2-12.5":0.04274,"13.0-13.1":0,"13.2":0.00455,"13.3":0.00182,"13.4-13.7":0.00818,"14.0-14.4":0.01364,"14.5-14.8":0.01728,"15.0-15.1":0.01455,"15.2-15.3":0.01182,"15.4":0.01273,"15.5":0.01364,"15.6-15.8":0.19734,"16.0":0.02455,"16.1":0.04547,"16.2":0.02364,"16.3":0.04365,"16.4":0.01091,"16.5":0.01819,"16.6-16.7":0.26646,"17.0":0.02274,"17.1":0.02728,"17.2":0.02001,"17.3":0.02819,"17.4":0.04638,"17.5":0.08821,"17.6-17.7":0.21644,"18.0":0.0482,"18.1":0.10185,"18.2":0.05456,"18.3":0.17734,"18.4":0.09094,"18.5-18.7":6.35044,"26.0":0.43561,"26.1":0.39741},P:{"4":0.20846,"22":0.01042,"23":0.03127,"24":0.02085,"25":0.02085,"26":0.04169,"27":0.08339,"28":0.3127,"29":2.85596,_:"20 21 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","5.0-5.4":0.04169,"6.2-6.4":0.01042,"7.2-7.4":0.14592,"8.2":0.02085,"19.0":0.01042},I:{"0":0.07099,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.36964,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.04739},H:{"0":0},L:{"0":38.34584},R:{_:"0"},M:{"0":0.43125}};
Index: node_modules/caniuse-lite/data/regions/HT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/HT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/HT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00217,"46":0.00217,"52":0.01732,"57":0.00217,"58":0.0065,"60":0.00433,"65":0.00217,"68":0.00217,"78":0.00217,"112":0.00433,"115":0.01949,"121":0.00217,"127":0.01083,"128":0.00217,"134":0.00217,"136":0.00217,"138":0.00217,"139":0.00217,"140":0.00217,"142":0.00217,"143":0.00866,"144":0.14289,"145":0.14289,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 53 54 55 56 59 61 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 122 123 124 125 126 129 130 131 132 133 135 137 141 146 147 148 3.5 3.6"},D:{"49":0.00217,"50":0.00217,"55":0.00217,"56":0.00433,"60":0.00433,"68":0.00433,"69":0.01083,"71":0.00217,"73":0.08444,"74":0.00217,"75":0.0065,"76":0.0065,"79":0.01299,"81":0.0065,"83":0.00433,"86":0.00217,"87":0.01732,"88":0.01083,"89":0.00217,"90":0.0065,"91":0.00433,"92":0.00217,"93":0.02382,"94":0.01949,"98":0.00217,"99":0.00433,"101":0.00866,"102":0.0065,"103":0.05196,"105":0.01516,"106":0.00217,"108":0.05413,"109":0.1299,"110":0.00433,"111":0.05846,"112":0.00217,"113":0.00217,"114":0.05846,"116":0.03464,"117":0.01083,"118":0.00217,"119":0.04763,"120":0.12774,"121":0.00217,"122":0.02165,"123":0.0065,"124":0.00217,"125":0.23166,"126":0.04547,"127":0.03248,"128":0.0433,"129":0.00433,"130":0.01299,"131":0.06495,"132":0.00433,"133":0.02165,"134":0.01949,"135":0.01732,"136":0.03464,"137":0.06062,"138":0.25547,"139":0.2165,"140":0.29661,"141":1.64757,"142":5.36487,"143":0.03248,"144":0.00866,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 57 58 59 61 62 63 64 65 66 67 70 72 77 78 80 84 85 95 96 97 100 104 107 115 145 146"},F:{"37":0.00866,"60":0.00217,"91":0.00217,"92":0.02165,"93":0.0065,"95":0.02165,"113":0.00217,"116":0.00217,"117":0.00217,"119":0.00217,"120":0.01299,"122":0.14073,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00433,"14":0.02165,"15":0.00433,"16":0.00217,"17":0.01083,"18":0.03031,"84":0.01516,"88":0.00217,"89":0.00433,"90":0.01299,"92":0.06062,"100":0.00433,"101":0.00433,"109":0.10825,"112":0.00217,"114":0.01949,"120":0.00217,"122":0.00866,"124":0.00217,"126":0.00217,"127":0.00217,"129":0.00217,"131":0.00433,"132":0.00217,"133":0.01299,"134":0.00217,"135":0.00433,"136":0.0065,"137":0.01732,"138":0.02815,"139":0.02382,"140":0.04114,"141":0.27929,"142":2.21263,"143":0.00217,_:"13 79 80 81 83 85 86 87 91 93 94 95 96 97 98 99 102 103 104 105 106 107 108 110 111 113 115 116 117 118 119 121 123 125 128 130"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 15.2-15.3 16.0 16.1 16.4 17.0 17.2 18.0","5.1":0.00866,"11.1":0.00866,"12.1":0.0065,"13.1":0.09959,"14.1":0.01083,"15.1":0.00217,"15.4":0.00217,"15.5":0.00217,"15.6":0.0866,"16.2":0.00217,"16.3":0.00217,"16.5":0.0065,"16.6":0.07794,"17.1":0.01299,"17.3":0.00217,"17.4":0.00866,"17.5":0.01299,"17.6":0.09959,"18.1":0.0065,"18.2":0.00433,"18.3":0.01083,"18.4":0.01299,"18.5-18.6":0.0931,"26.0":0.09743,"26.1":0.18403,"26.2":0.01299},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00099,"5.0-5.1":0,"6.0-6.1":0.00394,"7.0-7.1":0.00296,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00887,"10.0-10.2":0.00099,"10.3":0.01577,"11.0-11.2":0.18333,"11.3-11.4":0.00591,"12.0-12.1":0.00197,"12.2-12.5":0.04633,"13.0-13.1":0,"13.2":0.00493,"13.3":0.00197,"13.4-13.7":0.00887,"14.0-14.4":0.01478,"14.5-14.8":0.01873,"15.0-15.1":0.01577,"15.2-15.3":0.01281,"15.4":0.0138,"15.5":0.01478,"15.6-15.8":0.21388,"16.0":0.02661,"16.1":0.04928,"16.2":0.02563,"16.3":0.04731,"16.4":0.01183,"16.5":0.01971,"16.6-16.7":0.28879,"17.0":0.02464,"17.1":0.02957,"17.2":0.02168,"17.3":0.03055,"17.4":0.05027,"17.5":0.09561,"17.6-17.7":0.23458,"18.0":0.05224,"18.1":0.11039,"18.2":0.05914,"18.3":0.1922,"18.4":0.09856,"18.5-18.7":6.88275,"26.0":0.47212,"26.1":0.43073},P:{"4":0.02067,"21":0.03101,"22":0.01034,"23":0.02067,"24":0.18607,"25":0.09304,"26":0.04135,"27":0.15506,"28":0.45484,"29":0.62024,_:"20 8.2 10.1 12.0 15.0 17.0 19.0","5.0-5.4":0.02067,"6.2-6.4":0.01034,"7.2-7.4":0.05169,"9.2":0.02067,"11.1-11.2":0.0827,"13.0":0.02067,"14.0":0.02067,"16.0":0.10337,"18.0":0.01034},I:{"0":0.17995,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":0.59546,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.07052},H:{"0":0},L:{"0":72.21263},R:{_:"0"},M:{"0":0.2899}};
Index: node_modules/caniuse-lite/data/regions/HU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/HU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/HU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"12":0.00362,"48":0.00723,"52":0.00723,"61":0.00362,"78":0.01085,"107":0.00723,"108":0.00723,"115":0.46272,"125":0.01085,"127":0.00362,"128":0.01085,"129":0.00362,"131":0.00362,"133":0.00362,"134":0.00362,"135":0.00362,"136":0.01446,"137":0.00362,"138":0.00723,"139":0.00723,"140":0.06869,"141":0.00723,"142":0.01446,"143":0.04338,"144":1.29056,"145":1.6376,"146":0.00362,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 130 132 147 148 3.5 3.6"},D:{"39":0.00723,"40":0.00723,"41":0.00723,"42":0.00723,"43":0.00723,"44":0.00723,"45":0.00723,"46":0.00723,"47":0.00723,"48":0.00723,"49":0.00723,"50":0.00723,"51":0.00723,"52":0.00723,"53":0.00723,"54":0.00723,"55":0.00723,"56":0.00723,"57":0.00723,"58":0.00723,"59":0.00723,"60":0.00723,"79":0.01085,"87":0.01085,"88":0.01446,"91":0.01808,"100":0.00362,"102":0.00362,"103":0.01085,"104":0.00723,"106":0.00362,"107":0.00362,"108":0.00362,"109":0.83145,"111":0.00362,"112":0.58202,"114":0.01808,"115":0.00362,"116":0.02531,"118":0.00723,"119":0.01085,"120":0.01085,"121":0.05784,"122":0.02892,"123":0.00723,"124":0.03254,"125":0.02531,"126":0.09038,"127":0.05061,"128":0.047,"129":0.00723,"130":0.02169,"131":0.03615,"132":0.02892,"133":0.02892,"134":0.03615,"135":0.02892,"136":0.02892,"137":0.04338,"138":0.11207,"139":0.11568,"140":0.33258,"141":3.64031,"142":13.05738,"143":0.02892,"144":0.00362,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 89 90 92 93 94 95 96 97 98 99 101 105 110 113 117 145 146"},F:{"79":0.00362,"92":0.03254,"93":0.00723,"95":0.05423,"112":0.00362,"114":0.00362,"119":0.00362,"120":0.00362,"121":0.00362,"122":0.41934,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 115 116 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00362,"109":0.01808,"114":0.01085,"131":0.00362,"133":0.00362,"135":0.00362,"136":0.00362,"138":0.01808,"139":0.01085,"140":0.02892,"141":0.26751,"142":2.83416,"143":0.00362,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132 134 137"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0","13.1":0.00723,"14.1":0.00362,"15.5":0.00362,"15.6":0.03254,"16.1":0.00362,"16.2":0.00362,"16.3":0.00723,"16.4":0.00362,"16.5":0.00362,"16.6":0.04338,"17.0":0.00362,"17.1":0.05784,"17.2":0.00362,"17.3":0.01085,"17.4":0.01085,"17.5":0.01446,"17.6":0.06869,"18.0":0.00723,"18.1":0.01085,"18.2":0.00362,"18.3":0.02531,"18.4":0.01446,"18.5-18.6":0.047,"26.0":0.15183,"26.1":0.17352,"26.2":0.00723},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0009,"5.0-5.1":0,"6.0-6.1":0.00358,"7.0-7.1":0.00269,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00806,"10.0-10.2":0.0009,"10.3":0.01432,"11.0-11.2":0.1665,"11.3-11.4":0.00537,"12.0-12.1":0.00179,"12.2-12.5":0.04207,"13.0-13.1":0,"13.2":0.00448,"13.3":0.00179,"13.4-13.7":0.00806,"14.0-14.4":0.01343,"14.5-14.8":0.01701,"15.0-15.1":0.01432,"15.2-15.3":0.01164,"15.4":0.01253,"15.5":0.01343,"15.6-15.8":0.19425,"16.0":0.02417,"16.1":0.04476,"16.2":0.02327,"16.3":0.04297,"16.4":0.01074,"16.5":0.0179,"16.6-16.7":0.26229,"17.0":0.02238,"17.1":0.02686,"17.2":0.01969,"17.3":0.02775,"17.4":0.04565,"17.5":0.08683,"17.6-17.7":0.21305,"18.0":0.04744,"18.1":0.10026,"18.2":0.05371,"18.3":0.17456,"18.4":0.08952,"18.5-18.7":6.25102,"26.0":0.42879,"26.1":0.39119},P:{"20":0.0104,"21":0.0104,"22":0.0208,"23":0.0208,"24":0.0208,"25":0.0208,"26":0.05199,"27":0.07279,"28":0.30155,"29":2.35004,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.0104,"13.0":0.0104,"19.0":0.0104},I:{"0":0.10202,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":0.2554,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00362,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00639},H:{"0":0},L:{"0":57.02409},R:{_:"0"},M:{"0":0.2554}};
Index: node_modules/caniuse-lite/data/regions/ID.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ID.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ID.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"113":0.02468,"114":0.00494,"115":0.10857,"125":0.00494,"126":0.00494,"127":0.00987,"128":0.00494,"130":0.00494,"132":0.00494,"133":0.00494,"134":0.00494,"135":0.00494,"136":0.00987,"137":0.00494,"138":0.01974,"139":0.00987,"140":0.02961,"141":0.01481,"142":0.02961,"143":0.04442,"144":1.03635,"145":1.16466,"146":0.00987,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 116 117 118 119 120 121 122 123 124 129 131 147 148 3.5 3.6"},D:{"39":0.00494,"40":0.00494,"41":0.00494,"42":0.00494,"43":0.00494,"44":0.00494,"45":0.00494,"46":0.00494,"47":0.00494,"48":0.00494,"49":0.00494,"50":0.00494,"51":0.00494,"52":0.00494,"53":0.00494,"54":0.00494,"55":0.00494,"56":0.00494,"57":0.00494,"58":0.00494,"59":0.00494,"60":0.00494,"79":0.00494,"80":0.00494,"85":0.02468,"87":0.00494,"89":0.00494,"95":0.00494,"98":0.00494,"103":0.01481,"104":0.00987,"105":0.00494,"106":0.00494,"107":0.00494,"108":0.00494,"109":0.65636,"110":0.00494,"111":0.02468,"113":0.00494,"114":0.01974,"115":0.00494,"116":0.05922,"117":0.02468,"118":0.01481,"119":0.00987,"120":0.03455,"121":0.10364,"122":0.06416,"123":0.02468,"124":0.02961,"125":0.0987,"126":0.10364,"127":0.02961,"128":0.0987,"129":0.02468,"130":0.03455,"131":0.11351,"132":0.07403,"133":0.06416,"134":0.10857,"135":0.07896,"136":0.06909,"137":0.0839,"138":0.28623,"139":0.23688,"140":0.46883,"141":7.51601,"142":25.13396,"143":0.04935,"144":0.00494,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 86 88 90 91 92 93 94 96 97 99 100 101 102 112 145 146"},F:{"92":0.01974,"95":0.00987,"122":0.09377,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00494,"92":0.00494,"109":0.00494,"114":0.02468,"122":0.00494,"127":0.00494,"131":0.00494,"133":0.00494,"134":0.00494,"136":0.00494,"137":0.00494,"138":0.00987,"139":0.00987,"140":0.01974,"141":0.43428,"142":4.81163,"143":0.01481,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 128 129 130 132 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 16.0 26.2","5.1":0.00494,"13.1":0.00494,"14.1":0.00494,"15.1":0.00494,"15.4":0.00494,"15.5":0.00494,"15.6":0.04442,"16.1":0.01481,"16.2":0.00987,"16.3":0.00987,"16.4":0.00494,"16.5":0.01974,"16.6":0.06416,"17.0":0.00987,"17.1":0.01481,"17.2":0.01974,"17.3":0.00987,"17.4":0.02468,"17.5":0.03948,"17.6":0.11351,"18.0":0.02468,"18.1":0.03455,"18.2":0.01974,"18.3":0.06416,"18.4":0.02961,"18.5-18.6":0.14805,"26.0":0.1826,"26.1":0.12338},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0006,"5.0-5.1":0,"6.0-6.1":0.0024,"7.0-7.1":0.0018,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00541,"10.0-10.2":0.0006,"10.3":0.00961,"11.0-11.2":0.11173,"11.3-11.4":0.0036,"12.0-12.1":0.0012,"12.2-12.5":0.02823,"13.0-13.1":0,"13.2":0.003,"13.3":0.0012,"13.4-13.7":0.00541,"14.0-14.4":0.00901,"14.5-14.8":0.01141,"15.0-15.1":0.00961,"15.2-15.3":0.00781,"15.4":0.00841,"15.5":0.00901,"15.6-15.8":0.13035,"16.0":0.01622,"16.1":0.03004,"16.2":0.01562,"16.3":0.02883,"16.4":0.00721,"16.5":0.01201,"16.6-16.7":0.17601,"17.0":0.01502,"17.1":0.01802,"17.2":0.01322,"17.3":0.01862,"17.4":0.03064,"17.5":0.05827,"17.6-17.7":0.14297,"18.0":0.03184,"18.1":0.06728,"18.2":0.03604,"18.3":0.11714,"18.4":0.06007,"18.5-18.7":4.19475,"26.0":0.28774,"26.1":0.26251},P:{"21":0.01035,"22":0.01035,"23":0.01035,"24":0.01035,"25":0.02071,"26":0.02071,"27":0.04142,"28":0.19673,"29":0.82833,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02071},I:{"0":0.06069,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.39507,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.10857,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00507},O:{"0":0.16715},H:{"0":0},L:{"0":45.83336},R:{_:"0"},M:{"0":0.07598}};
Index: node_modules/caniuse-lite/data/regions/IE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/IE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/IE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"77":0.00745,"78":0.00373,"88":0.00373,"109":0.00745,"115":0.0447,"128":0.00373,"132":0.01863,"136":0.00373,"139":0.00373,"140":0.09685,"141":0.00745,"142":0.00745,"143":0.01863,"144":0.4768,"145":0.46935,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 133 134 135 137 138 146 147 148 3.5 3.6"},D:{"49":0.01118,"79":0.0149,"86":0.00373,"87":0.01118,"88":0.00745,"93":0.00745,"102":0.00373,"103":0.04843,"104":0.00745,"106":0.00373,"108":0.01118,"109":0.16763,"111":0.00373,"112":0.57738,"113":0.00745,"114":0.02235,"115":0.00745,"116":0.1043,"117":0.00373,"118":0.00373,"119":0.0149,"120":0.0596,"121":0.00373,"122":0.0596,"123":0.00373,"124":0.02608,"125":2.19775,"126":0.12293,"127":0.00745,"128":0.04843,"129":0.01118,"130":6.35485,"131":0.06333,"132":0.03353,"133":0.04843,"134":0.0745,"135":0.08195,"136":0.03353,"137":0.07823,"138":0.22723,"139":0.29428,"140":0.298,"141":3.52758,"142":8.0162,"143":0.0149,"144":0.00373,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 89 90 91 92 94 95 96 97 98 99 100 101 105 107 110 145 146"},F:{"46":0.00373,"92":0.02608,"93":0.00373,"95":0.00373,"96":0.00373,"120":0.00373,"122":0.1639,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00373,"91":0.00373,"109":0.00373,"114":0.00373,"121":0.00745,"125":0.00373,"131":0.00373,"134":0.02235,"135":0.00373,"136":0.00373,"137":0.00745,"138":0.01863,"139":0.01118,"140":0.04098,"141":0.54013,"142":4.4402,"143":0.00373,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 122 123 124 126 127 128 129 130 132 133"},E:{"8":0.00373,"14":0.01118,_:"0 4 5 6 7 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.01118,"14.1":0.0298,"15.1":0.00373,"15.2-15.3":0.00373,"15.4":0.00373,"15.5":0.01118,"15.6":0.12665,"16.0":0.00745,"16.1":0.01118,"16.2":0.01863,"16.3":0.0298,"16.4":0.00745,"16.5":0.0149,"16.6":0.16763,"17.0":0.00745,"17.1":0.13038,"17.2":0.0149,"17.3":0.01863,"17.4":0.0298,"17.5":0.04098,"17.6":0.14528,"18.0":0.01118,"18.1":0.03725,"18.2":0.02235,"18.3":0.06333,"18.4":0.05588,"18.5-18.6":0.18625,"26.0":0.19743,"26.1":0.20488,"26.2":0.00373},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00252,"5.0-5.1":0,"6.0-6.1":0.0101,"7.0-7.1":0.00757,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02271,"10.0-10.2":0.00252,"10.3":0.04038,"11.0-11.2":0.46943,"11.3-11.4":0.01514,"12.0-12.1":0.00505,"12.2-12.5":0.11862,"13.0-13.1":0,"13.2":0.01262,"13.3":0.00505,"13.4-13.7":0.02271,"14.0-14.4":0.03786,"14.5-14.8":0.04795,"15.0-15.1":0.04038,"15.2-15.3":0.03281,"15.4":0.03533,"15.5":0.03786,"15.6-15.8":0.54767,"16.0":0.06814,"16.1":0.12619,"16.2":0.06562,"16.3":0.12114,"16.4":0.03029,"16.5":0.05048,"16.6-16.7":0.73947,"17.0":0.0631,"17.1":0.07571,"17.2":0.05552,"17.3":0.07824,"17.4":0.12871,"17.5":0.24481,"17.6-17.7":0.60067,"18.0":0.13376,"18.1":0.28267,"18.2":0.15143,"18.3":0.49214,"18.4":0.25238,"18.5-18.7":17.62373,"26.0":1.2089,"26.1":1.1029},P:{"20":0.01047,"21":0.02095,"22":0.02095,"23":0.02095,"24":0.02095,"25":0.02095,"26":0.0419,"27":0.06284,"28":0.36659,"29":3.58213,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.01047},I:{"0":0.03133,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.08785,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.28636,"11":0.01909,_:"6 7 8 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00628,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00628},H:{"0":0},L:{"0":36.24533},R:{_:"0"},M:{"0":0.31375}};
Index: node_modules/caniuse-lite/data/regions/IL.js
===================================================================
--- node_modules/caniuse-lite/data/regions/IL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/IL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00403,"24":0.00403,"25":0.00805,"26":0.02013,"27":0.00403,"36":0.00403,"51":0.00403,"52":0.00805,"115":0.08052,"125":0.00403,"127":0.00403,"128":0.00403,"133":0.00403,"134":0.00403,"136":0.00403,"139":0.0161,"140":0.02013,"141":0.44689,"142":0.00805,"143":0.02416,"144":0.37442,"145":0.46299,"146":0.00805,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 129 130 131 132 135 137 138 147 148 3.5 3.6"},D:{"31":0.03221,"32":0.00805,"38":0.01208,"41":0.00403,"56":0.00805,"65":0.00403,"68":0.00403,"69":0.00403,"79":0.02818,"81":0.00403,"83":0.00403,"86":0.00403,"87":0.02818,"88":0.00403,"90":0.00403,"91":0.03221,"96":0.00403,"99":0.00403,"100":0.00403,"102":0.00403,"103":0.00805,"104":0.00403,"106":0.00403,"108":0.03221,"109":0.47909,"110":0.00403,"111":0.00403,"112":1.97274,"113":0.00403,"114":0.02818,"115":0.00805,"116":0.16104,"117":0.00403,"119":0.03221,"120":0.08052,"121":0.00805,"122":0.08857,"123":0.01208,"124":0.00805,"125":0.04026,"126":0.27779,"127":0.01208,"128":0.07247,"129":0.02416,"130":0.03623,"131":0.11273,"132":0.04026,"133":0.06442,"134":1.24806,"135":0.18117,"136":0.06442,"137":0.06844,"138":0.16909,"139":0.17312,"140":0.35026,"141":5.21367,"142":15.48802,"143":0.04429,"144":0.00403,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 34 35 36 37 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 66 67 70 71 72 73 74 75 76 77 78 80 84 85 89 92 93 94 95 97 98 101 105 107 118 145 146"},F:{"91":0.00403,"92":0.02818,"93":0.00805,"95":0.0161,"120":0.00805,"122":0.24559,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00403,"104":0.00403,"109":0.02818,"114":0.03221,"122":0.00403,"128":0.00403,"129":0.00403,"130":0.00403,"131":0.00805,"132":0.00403,"133":0.00805,"134":0.00403,"135":0.00403,"136":0.00805,"137":0.0161,"138":0.0161,"139":0.0161,"140":0.02416,"141":0.27377,"142":2.323,"143":0.00403,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127"},E:{"7":0.00805,"8":0.1852,"14":0.00403,_:"0 4 5 6 9 10 11 12 13 15 3.1 3.2 7.1 9.1 10.1 11.1 12.1 16.0 16.4 17.0","5.1":0.00403,"6.1":0.00805,"13.1":0.00403,"14.1":0.0161,"15.1":0.00403,"15.2-15.3":0.00403,"15.4":0.00403,"15.5":0.00403,"15.6":0.04026,"16.1":0.00403,"16.2":0.00403,"16.3":0.01208,"16.5":0.00403,"16.6":0.08455,"17.1":0.07247,"17.2":0.00403,"17.3":0.00403,"17.4":0.01208,"17.5":0.01208,"17.6":0.05636,"18.0":0.00403,"18.1":0.03623,"18.2":0.00403,"18.3":0.0161,"18.4":0.00805,"18.5-18.6":0.06844,"26.0":0.09662,"26.1":0.11273,"26.2":0.00403},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0014,"5.0-5.1":0,"6.0-6.1":0.00559,"7.0-7.1":0.00419,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01258,"10.0-10.2":0.0014,"10.3":0.02236,"11.0-11.2":0.2599,"11.3-11.4":0.00838,"12.0-12.1":0.00279,"12.2-12.5":0.06567,"13.0-13.1":0,"13.2":0.00699,"13.3":0.00279,"13.4-13.7":0.01258,"14.0-14.4":0.02096,"14.5-14.8":0.02655,"15.0-15.1":0.02236,"15.2-15.3":0.01817,"15.4":0.01956,"15.5":0.02096,"15.6-15.8":0.30322,"16.0":0.03773,"16.1":0.06987,"16.2":0.03633,"16.3":0.06707,"16.4":0.01677,"16.5":0.02795,"16.6-16.7":0.40941,"17.0":0.03493,"17.1":0.04192,"17.2":0.03074,"17.3":0.04332,"17.4":0.07126,"17.5":0.13554,"17.6-17.7":0.33256,"18.0":0.07406,"18.1":0.1565,"18.2":0.08384,"18.3":0.27248,"18.4":0.13973,"18.5-18.7":9.75748,"26.0":0.66932,"26.1":0.61063},P:{"4":0.03091,"20":0.0103,"21":0.03091,"22":0.03091,"23":0.04121,"24":0.04121,"25":0.08242,"26":0.07212,"27":0.13393,"28":0.81387,"29":5.41895,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0 16.0 18.0","7.2-7.4":0.0103,"11.1-11.2":0.0103,"13.0":0.0103,"14.0":0.0103,"17.0":0.0103,"19.0":0.0103},I:{"0":0.00597,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.22104,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.00537,"10":0.00537,"11":0.02147,_:"6 7 8 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0239},H:{"0":0},L:{"0":44.18883},R:{_:"0"},M:{"0":0.23299}};
Index: node_modules/caniuse-lite/data/regions/IM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/IM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/IM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00439,"113":0.00878,"115":0.45196,"128":0.00439,"131":0.00439,"136":0.00878,"140":0.02194,"142":0.00878,"143":0.12286,"144":0.41247,"145":0.69769,"146":0.00439,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 132 133 134 135 137 138 139 141 147 148 3.5 3.6"},D:{"47":0.00439,"68":0.00439,"69":0.00439,"101":0.00439,"103":0.01755,"108":0.00439,"109":0.57483,"112":0.01755,"114":0.04827,"116":0.12286,"119":0.05266,"120":0.00878,"121":0.02194,"122":0.00878,"124":0.17552,"125":0.21062,"126":0.04388,"128":0.00878,"130":0.17991,"131":0.35982,"132":0.02633,"133":0.00439,"134":0.07898,"135":0.01755,"136":0.00439,"137":0.01755,"138":0.1843,"139":0.13603,"140":0.28083,"141":4.12033,"142":12.58478,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 104 105 106 107 110 111 113 115 117 118 123 127 129 143 144 145 146"},F:{"92":0.03072,"93":0.00878,"95":0.01755,"116":0.04827,"122":0.15797,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00439,"85":0.00439,"107":0.1448,"109":0.01755,"131":0.00439,"133":0.0351,"135":0.00439,"136":0.03072,"137":0.00878,"138":0.00439,"139":0.00439,"140":0.00878,"141":0.6582,"142":6.91549,"143":0.00439,_:"12 13 14 16 17 18 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132 134"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4","13.1":0.03072,"14.1":0.08337,"15.5":0.00878,"15.6":0.37298,"16.0":0.00439,"16.1":0.01755,"16.2":0.03949,"16.3":0.0746,"16.4":0.00439,"16.5":0.06582,"16.6":0.24573,"17.0":0.00439,"17.1":0.66259,"17.2":0.00439,"17.3":0.00439,"17.4":0.00439,"17.5":0.35104,"17.6":0.44758,"18.0":0.09215,"18.1":0.1448,"18.2":0.01755,"18.3":0.06143,"18.4":0.07898,"18.5-18.6":0.28961,"26.0":0.29838,"26.1":0.72841,"26.2":0.39492},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00307,"5.0-5.1":0,"6.0-6.1":0.01228,"7.0-7.1":0.00921,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02762,"10.0-10.2":0.00307,"10.3":0.04911,"11.0-11.2":0.57087,"11.3-11.4":0.01842,"12.0-12.1":0.00614,"12.2-12.5":0.14425,"13.0-13.1":0,"13.2":0.01535,"13.3":0.00614,"13.4-13.7":0.02762,"14.0-14.4":0.04604,"14.5-14.8":0.05831,"15.0-15.1":0.04911,"15.2-15.3":0.0399,"15.4":0.04297,"15.5":0.04604,"15.6-15.8":0.66602,"16.0":0.08287,"16.1":0.15346,"16.2":0.0798,"16.3":0.14732,"16.4":0.03683,"16.5":0.06138,"16.6-16.7":0.89928,"17.0":0.07673,"17.1":0.09208,"17.2":0.06752,"17.3":0.09515,"17.4":0.15653,"17.5":0.29771,"17.6-17.7":0.73047,"18.0":0.16267,"18.1":0.34375,"18.2":0.18415,"18.3":0.59849,"18.4":0.30692,"18.5-18.7":21.43224,"26.0":1.47015,"26.1":1.34124},P:{"24":0.01134,"26":0.02267,"27":0.06802,"28":0.55546,"29":2.73194,_:"4 20 21 22 23 25 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","17.0":0.02267},I:{"0":0.0056,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.1403,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02806},H:{"0":0},L:{"0":21.74995},R:{_:"0"},M:{"0":1.31882}};
Index: node_modules/caniuse-lite/data/regions/IN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/IN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/IN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"42":0.00259,"52":0.00259,"113":0.00259,"115":0.08301,"125":0.00259,"127":0.00259,"128":0.00259,"136":0.00778,"139":0.00259,"140":0.01297,"141":0.00259,"142":0.00259,"143":0.00778,"144":0.15564,"145":0.18677,"146":0.00519,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 123 124 126 129 130 131 132 133 134 135 137 138 147 148 3.5 3.6"},D:{"49":0.00259,"52":0.00259,"68":0.00259,"69":0.00259,"70":0.00259,"71":0.00259,"73":0.00259,"74":0.00259,"76":0.00259,"79":0.00259,"80":0.00259,"81":0.00259,"83":0.00259,"85":0.00259,"86":0.00259,"87":0.00778,"89":0.00259,"91":0.00519,"93":0.00259,"94":0.00259,"99":0.00259,"102":0.00259,"103":0.01038,"104":0.00259,"105":0.00259,"106":0.00259,"108":0.00519,"109":0.75745,"111":0.00259,"112":0.03891,"114":0.00778,"115":0.00259,"116":0.00778,"117":0.00259,"118":0.00259,"119":0.02335,"120":0.01038,"121":0.00519,"122":0.01038,"123":0.00519,"124":0.00778,"125":0.07263,"126":0.06485,"127":0.01556,"128":0.01297,"129":0.00778,"130":0.03891,"131":0.05447,"132":0.01816,"133":0.01816,"134":0.03113,"135":0.02853,"136":0.03113,"137":0.03632,"138":0.10895,"139":0.0856,"140":0.1712,"141":1.91956,"142":6.26451,"143":0.02075,"144":0.00519,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 72 75 77 78 84 88 90 92 95 96 97 98 100 101 107 110 113 145 146"},F:{"85":0.00259,"90":0.00259,"91":0.00778,"92":0.19196,"93":0.02594,"95":0.00778,"122":0.03372,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00259,"92":0.00519,"109":0.00519,"112":0.00259,"114":0.02075,"122":0.00259,"131":0.00259,"133":0.00259,"134":0.00259,"135":0.00259,"136":0.00259,"137":0.00259,"138":0.00519,"139":0.00519,"140":0.01297,"141":0.09079,"142":0.78858,"143":0.00519,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 132"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3","15.6":0.00519,"16.6":0.00778,"17.1":0.00259,"17.4":0.00259,"17.5":0.00259,"17.6":0.01038,"18.0":0.00259,"18.1":0.00259,"18.2":0.00259,"18.3":0.00778,"18.4":0.00259,"18.5-18.6":0.01556,"26.0":0.03891,"26.1":0.03891,"26.2":0.00259},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00019,"5.0-5.1":0,"6.0-6.1":0.00076,"7.0-7.1":0.00057,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00171,"10.0-10.2":0.00019,"10.3":0.00305,"11.0-11.2":0.0354,"11.3-11.4":0.00114,"12.0-12.1":0.00038,"12.2-12.5":0.00895,"13.0-13.1":0,"13.2":0.00095,"13.3":0.00038,"13.4-13.7":0.00171,"14.0-14.4":0.00286,"14.5-14.8":0.00362,"15.0-15.1":0.00305,"15.2-15.3":0.00247,"15.4":0.00266,"15.5":0.00286,"15.6-15.8":0.0413,"16.0":0.00514,"16.1":0.00952,"16.2":0.00495,"16.3":0.00914,"16.4":0.00228,"16.5":0.00381,"16.6-16.7":0.05577,"17.0":0.00476,"17.1":0.00571,"17.2":0.00419,"17.3":0.0059,"17.4":0.00971,"17.5":0.01846,"17.6-17.7":0.0453,"18.0":0.01009,"18.1":0.02132,"18.2":0.01142,"18.3":0.03712,"18.4":0.01903,"18.5-18.7":1.3291,"26.0":0.09117,"26.1":0.08318},P:{"23":0.01039,"24":0.01039,"25":0.01039,"26":0.02079,"27":0.04158,"28":0.13513,"29":0.34301,_:"4 20 21 22 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02079},I:{"0":0.01479,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":2.18142,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01297,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.10368,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":1.04425},H:{"0":0.07},L:{"0":81.43641},R:{_:"0"},M:{"0":0.1259}};
Index: node_modules/caniuse-lite/data/regions/IQ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/IQ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/IQ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00689,"52":0.00345,"72":0.00345,"101":0.00689,"115":0.03102,"122":0.01034,"123":0.02758,"144":0.03102,"145":0.03792,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"11":0.00345,"38":0.00345,"43":0.00345,"56":0.00689,"65":0.00689,"66":0.00345,"68":0.00345,"69":0.01724,"70":0.00345,"72":0.00345,"73":0.01034,"74":0.01034,"75":0.00689,"77":0.00345,"79":0.03792,"81":0.00345,"83":0.05171,"85":0.00345,"86":0.00345,"87":0.04481,"88":0.00345,"89":0.00345,"90":0.00345,"91":0.02758,"93":0.01034,"94":0.00689,"95":0.01034,"96":0.00345,"97":0.00345,"98":0.05171,"99":0.00345,"100":0.00345,"101":0.00689,"102":0.01724,"103":0.03102,"104":0.00345,"105":0.00345,"106":0.00345,"107":0.00345,"108":0.01379,"109":0.3447,"110":0.02068,"111":0.01379,"112":9.28967,"113":0.00345,"114":0.02068,"116":0.01034,"119":0.01724,"120":0.02068,"121":0.01379,"122":0.04481,"123":0.00689,"124":0.00345,"125":0.14822,"126":2.17506,"127":0.01034,"128":0.01034,"129":0.00345,"130":0.00345,"131":0.02068,"132":0.01379,"133":0.00689,"134":0.74111,"135":0.01034,"136":0.00689,"137":0.03792,"138":0.05515,"139":0.23784,"140":0.06549,"141":0.58944,"142":2.39567,"143":0.01379,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 67 71 76 78 80 84 92 115 117 118 144 145 146"},F:{"28":0.00345,"92":0.05171,"93":0.01034,"95":0.00689,"122":0.02413,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00345,"102":0.01034,"109":0.01034,"114":0.25163,"121":0.00345,"122":0.00689,"140":0.00345,"141":0.03102,"142":0.21716,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 143"},E:{"14":0.00345,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 16.4","5.1":0.00345,"13.1":0.00689,"14.1":0.01034,"15.4":0.00345,"15.5":0.00345,"15.6":0.02068,"16.1":0.00689,"16.2":0.00689,"16.3":0.01034,"16.5":0.00345,"16.6":0.02758,"17.0":0.00345,"17.1":0.02068,"17.2":0.00689,"17.3":0.01034,"17.4":0.01034,"17.5":0.01379,"17.6":0.02068,"18.0":0.00345,"18.1":0.01379,"18.2":0.00345,"18.3":0.02068,"18.4":0.00345,"18.5-18.6":0.04826,"26.0":0.06205,"26.1":0.04826,"26.2":0.00345},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00105,"5.0-5.1":0,"6.0-6.1":0.0042,"7.0-7.1":0.00315,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00945,"10.0-10.2":0.00105,"10.3":0.0168,"11.0-11.2":0.19526,"11.3-11.4":0.0063,"12.0-12.1":0.0021,"12.2-12.5":0.04934,"13.0-13.1":0,"13.2":0.00525,"13.3":0.0021,"13.4-13.7":0.00945,"14.0-14.4":0.01575,"14.5-14.8":0.01995,"15.0-15.1":0.0168,"15.2-15.3":0.01365,"15.4":0.0147,"15.5":0.01575,"15.6-15.8":0.2278,"16.0":0.02834,"16.1":0.05249,"16.2":0.02729,"16.3":0.05039,"16.4":0.0126,"16.5":0.021,"16.6-16.7":0.30759,"17.0":0.02624,"17.1":0.03149,"17.2":0.0231,"17.3":0.03254,"17.4":0.05354,"17.5":0.10183,"17.6-17.7":0.24985,"18.0":0.05564,"18.1":0.11758,"18.2":0.06299,"18.3":0.20471,"18.4":0.10498,"18.5-18.7":7.33069,"26.0":0.50285,"26.1":0.45876},P:{"4":0.031,"20":0.01033,"21":0.031,"22":0.02067,"23":0.05167,"24":0.04134,"25":0.08268,"26":0.19635,"27":0.09301,"28":0.38237,"29":1.97387,_:"5.0-5.4 9.2 10.1 12.0 16.0 18.0","6.2-6.4":0.01033,"7.2-7.4":0.10334,"8.2":0.01033,"11.1-11.2":0.02067,"13.0":0.01033,"14.0":0.02067,"15.0":0.01033,"17.0":0.031,"19.0":0.02067},I:{"0":0.04581,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.55045,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02413,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.13106},H:{"0":0},L:{"0":66.9785},R:{_:"0"},M:{"0":0.08519}};
Index: node_modules/caniuse-lite/data/regions/IR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/IR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/IR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"43":0.00324,"47":0.00324,"52":0.00971,"56":0.00324,"60":0.00324,"72":0.00324,"94":0.00324,"98":0.00324,"106":0.00324,"114":0.00324,"115":1.00285,"121":0.00324,"127":0.03235,"128":0.01618,"130":0.00324,"131":0.00324,"132":0.00324,"133":0.00647,"134":0.00324,"135":0.00647,"136":0.00971,"137":0.00647,"138":0.00971,"139":0.00647,"140":0.08088,"141":0.01618,"142":0.02588,"143":0.05823,"144":0.98991,"145":1.19048,"146":0.00324,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 99 100 101 102 103 104 105 107 108 109 110 111 112 113 116 117 118 119 120 122 123 124 125 126 129 147 148 3.5 3.6"},D:{"47":0.00324,"49":0.00324,"51":0.00324,"62":0.00324,"63":0.00324,"64":0.00324,"67":0.00324,"68":0.00324,"69":0.00324,"70":0.00324,"71":0.01294,"72":0.00324,"73":0.00324,"74":0.00324,"75":0.00324,"76":0.00324,"77":0.00324,"78":0.01294,"79":0.01294,"80":0.00971,"81":0.00971,"83":0.01294,"84":0.00971,"85":0.00647,"86":0.02265,"87":0.02588,"88":0.00647,"89":0.00971,"90":0.00647,"91":0.00647,"92":0.01618,"93":0.00324,"94":0.00647,"95":0.00647,"96":0.00971,"97":0.00647,"98":0.00971,"99":0.00647,"100":0.00647,"101":0.00647,"102":0.00971,"103":0.01618,"104":0.01294,"105":0.00971,"106":0.01294,"107":0.02588,"108":0.02265,"109":2.72711,"110":0.00647,"111":0.00971,"112":0.32997,"113":0.00647,"114":0.01618,"115":0.00971,"116":0.01618,"117":0.01294,"118":0.01618,"119":0.02265,"120":0.02912,"121":0.02265,"122":0.03559,"123":0.03559,"124":0.02265,"125":0.02265,"126":0.22969,"127":0.03235,"128":0.02912,"129":0.02912,"130":0.04853,"131":0.13587,"132":0.055,"133":0.06794,"134":0.08735,"135":0.10352,"136":0.1294,"137":0.3138,"138":0.32997,"139":0.29439,"140":0.53378,"141":3.38381,"142":8.82832,"143":0.02265,"144":0.00324,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 52 53 54 55 56 57 58 59 60 61 65 66 145 146"},F:{"79":0.00971,"92":0.01294,"93":0.00324,"95":0.04529,"114":0.00324,"119":0.00324,"120":0.00647,"122":0.07117,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00324,"13":0.00324,"14":0.00324,"15":0.00324,"16":0.00324,"17":0.00324,"18":0.01294,"88":0.00324,"89":0.00324,"90":0.00324,"92":0.055,"100":0.00647,"109":0.10676,"114":0.01294,"122":0.00971,"127":0.00324,"128":0.00324,"129":0.00324,"131":0.00647,"132":0.00324,"133":0.00971,"134":0.00324,"135":0.00647,"136":0.00647,"137":0.00647,"138":0.00971,"139":0.00971,"140":0.02265,"141":0.1197,"142":0.76023,_:"79 80 81 83 84 85 86 87 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 130 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 17.4 18.0 18.2 26.2","13.1":0.00324,"15.6":0.00647,"16.6":0.00647,"17.1":0.00324,"17.5":0.00324,"17.6":0.00324,"18.1":0.00324,"18.3":0.00647,"18.4":0.00324,"18.5-18.6":0.00971,"26.0":0.01941,"26.1":0.01941},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0,"6.0-6.1":0.00242,"7.0-7.1":0.00182,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00546,"10.0-10.2":0.00061,"10.3":0.0097,"11.0-11.2":0.11274,"11.3-11.4":0.00364,"12.0-12.1":0.00121,"12.2-12.5":0.02849,"13.0-13.1":0,"13.2":0.00303,"13.3":0.00121,"13.4-13.7":0.00546,"14.0-14.4":0.00909,"14.5-14.8":0.01152,"15.0-15.1":0.0097,"15.2-15.3":0.00788,"15.4":0.00849,"15.5":0.00909,"15.6-15.8":0.13153,"16.0":0.01637,"16.1":0.03031,"16.2":0.01576,"16.3":0.02909,"16.4":0.00727,"16.5":0.01212,"16.6-16.7":0.1776,"17.0":0.01515,"17.1":0.01818,"17.2":0.01334,"17.3":0.01879,"17.4":0.03091,"17.5":0.0588,"17.6-17.7":0.14426,"18.0":0.03213,"18.1":0.06789,"18.2":0.03637,"18.3":0.1182,"18.4":0.06061,"18.5-18.7":4.2327,"26.0":0.29034,"26.1":0.26488},P:{"4":0.03994,"20":0.02996,"21":0.04993,"22":0.09985,"23":0.10984,"24":0.16975,"25":0.22966,"26":0.24963,"27":0.41937,"28":1.30805,"29":1.65752,"5.0-5.4":0.00999,"6.2-6.4":0.01997,"7.2-7.4":0.11982,"8.2":0.00999,"9.2":0.01997,_:"10.1 12.0","11.1-11.2":0.02996,"13.0":0.02996,"14.0":0.02996,"15.0":0.00999,"16.0":0.02996,"17.0":0.04993,"18.0":0.02996,"19.0":0.02996},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.26413,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00324,"11":2.71417,_:"6 7 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02706},H:{"0":0.02},L:{"0":61.30364},R:{_:"0"},M:{"0":0.98093}};
Index: node_modules/caniuse-lite/data/regions/IS.js
===================================================================
--- node_modules/caniuse-lite/data/regions/IS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/IS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.19236,"60":0.00663,"78":0.00663,"103":0.0199,"113":0.00663,"115":0.05306,"125":0.01327,"128":0.03317,"134":0.00663,"135":0.00663,"139":0.00663,"140":0.27195,"141":0.00663,"142":0.0199,"143":0.0398,"144":1.06791,"145":1.2868,"146":0.00663,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 133 136 137 138 147 148 3.5 3.6"},D:{"38":0.0199,"79":0.0199,"87":0.00663,"92":0.00663,"98":0.02653,"99":0.01327,"101":0.00663,"103":0.0199,"104":0.0199,"108":0.03317,"109":0.21889,"110":0.01327,"112":0.00663,"113":0.01327,"114":0.30512,"115":0.01327,"116":0.14593,"117":0.00663,"118":0.0796,"120":0.01327,"121":0.00663,"122":0.09286,"123":0.01327,"124":0.05306,"125":0.09286,"126":0.03317,"127":0.57044,"128":0.10613,"129":0.11276,"130":0.0597,"131":0.12603,"132":0.35818,"133":0.0995,"134":0.04643,"135":0.15256,"136":0.39135,"137":0.37808,"138":0.84902,"139":0.7031,"140":1.16741,"141":10.07553,"142":23.48082,"143":0.0199,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 93 94 95 96 97 100 102 105 106 107 111 119 144 145 146"},F:{"92":0.0199,"95":0.06633,"114":0.00663,"119":0.02653,"122":1.04138,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"98":0.00663,"109":0.00663,"123":0.00663,"129":0.00663,"130":0.00663,"133":0.00663,"135":0.00663,"136":0.00663,"137":0.00663,"138":0.03317,"139":0.01327,"140":0.03317,"141":0.80259,"142":6.48707,"143":0.00663,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 124 125 126 127 128 131 132 134"},E:{"14":0.00663,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3","13.1":0.00663,"14.1":0.01327,"15.4":0.0199,"15.5":0.0398,"15.6":0.39135,"16.0":0.01327,"16.1":0.01327,"16.2":0.00663,"16.3":0.40461,"16.4":0.07296,"16.5":0.07296,"16.6":0.32502,"17.0":0.0199,"17.1":0.21889,"17.2":0.04643,"17.3":0.13929,"17.4":0.0398,"17.5":0.29849,"17.6":0.45104,"18.0":0.09286,"18.1":0.06633,"18.2":0.0597,"18.3":0.29849,"18.4":0.21889,"18.5-18.6":0.24542,"26.0":0.78269,"26.1":0.83576,"26.2":0.0199},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00158,"5.0-5.1":0,"6.0-6.1":0.00631,"7.0-7.1":0.00473,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0142,"10.0-10.2":0.00158,"10.3":0.02524,"11.0-11.2":0.29338,"11.3-11.4":0.00946,"12.0-12.1":0.00315,"12.2-12.5":0.07413,"13.0-13.1":0,"13.2":0.00789,"13.3":0.00315,"13.4-13.7":0.0142,"14.0-14.4":0.02366,"14.5-14.8":0.02997,"15.0-15.1":0.02524,"15.2-15.3":0.0205,"15.4":0.02208,"15.5":0.02366,"15.6-15.8":0.34228,"16.0":0.04259,"16.1":0.07887,"16.2":0.04101,"16.3":0.07571,"16.4":0.01893,"16.5":0.03155,"16.6-16.7":0.46215,"17.0":0.03943,"17.1":0.04732,"17.2":0.0347,"17.3":0.0489,"17.4":0.08044,"17.5":0.153,"17.6-17.7":0.3754,"18.0":0.0836,"18.1":0.17666,"18.2":0.09464,"18.3":0.30757,"18.4":0.15773,"18.5-18.7":11.01434,"26.0":0.75553,"26.1":0.68928},P:{"26":0.03117,"27":0.01039,"28":0.21819,"29":2.23387,_:"4 20 21 22 23 24 25 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01039,"8.2":0.01039},I:{"0":0.01681,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.09425,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.05722},H:{"0":0},L:{"0":15.91237},R:{_:"0"},M:{"0":0.52173}};
Index: node_modules/caniuse-lite/data/regions/IT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/IT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/IT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"2":0.00497,"52":0.02486,"59":0.04474,"76":0.00497,"78":0.0348,"82":0.00497,"102":0.00994,"113":0.00497,"115":0.28832,"119":0.00497,"125":0.00497,"127":0.00497,"128":0.01491,"132":0.00497,"133":0.00497,"134":0.00497,"135":0.00497,"136":0.01491,"137":0.00497,"138":0.00497,"139":0.00497,"140":0.10439,"141":0.01491,"142":0.02983,"143":0.04971,"144":1.34217,"145":1.72494,"146":0.01988,_:"3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 114 116 117 118 120 121 122 123 124 126 129 130 131 147 148 3.5 3.6"},D:{"38":0.00497,"39":0.01491,"40":0.01491,"41":0.01491,"42":0.01491,"43":0.01491,"44":0.01491,"45":0.01491,"46":0.01491,"47":0.01491,"48":0.01988,"49":0.03977,"50":0.01491,"51":0.01491,"52":0.01491,"53":0.01491,"54":0.01491,"55":0.01491,"56":0.01491,"57":0.01491,"58":0.01491,"59":0.01491,"60":0.01491,"63":0.01491,"65":0.00497,"66":0.19884,"74":0.01988,"77":0.01491,"79":0.02983,"81":0.00497,"85":0.02486,"86":0.01988,"87":0.02983,"88":0.00497,"90":0.00497,"91":0.23364,"94":0.00497,"101":0.00497,"102":0.00497,"103":0.06462,"104":0.00497,"105":0.00497,"106":0.03977,"107":0.00497,"108":0.01491,"109":1.40182,"110":0.00497,"111":0.00994,"112":0.00994,"113":0.00497,"114":0.01988,"115":0.00994,"116":0.16901,"117":0.00497,"118":0.00994,"119":0.02983,"120":0.0348,"121":0.01491,"122":0.06462,"123":0.01988,"124":0.06462,"125":0.12428,"126":0.04971,"127":0.01988,"128":0.13919,"129":0.01988,"130":0.10439,"131":0.18393,"132":0.04474,"133":0.06462,"134":0.08451,"135":0.17896,"136":0.07457,"137":0.10439,"138":0.35294,"139":0.25352,"140":0.40265,"141":5.74648,"142":20.29659,"143":0.04474,"144":0.00994,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 61 62 64 67 68 69 70 71 72 73 75 76 78 80 83 84 89 92 93 95 96 97 98 99 100 145 146"},F:{"46":0.00497,"89":0.00497,"92":0.05468,"93":0.00497,"95":0.0348,"114":0.00497,"120":0.08948,"122":0.37283,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01988,"85":0.01491,"92":0.00994,"109":0.02983,"114":0.00994,"121":0.00497,"122":0.01491,"124":0.00497,"126":0.00497,"129":0.00497,"131":0.00994,"132":0.00994,"133":0.00497,"134":0.00994,"135":0.00497,"136":0.00497,"137":0.00994,"138":0.02486,"139":0.01491,"140":0.04474,"141":0.37283,"142":3.75311,"143":0.00994,_:"12 13 14 15 16 18 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 123 125 127 128 130"},E:{"13":0.00497,"14":0.00994,"15":0.00497,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.04474,"12.1":0.00497,"13.1":0.03977,"14.1":0.04474,"15.1":0.00497,"15.2-15.3":0.00497,"15.4":0.00994,"15.5":0.01491,"15.6":0.19387,"16.0":0.01491,"16.1":0.01491,"16.2":0.01491,"16.3":0.03977,"16.4":0.01491,"16.5":0.01988,"16.6":0.13919,"17.0":0.00994,"17.1":0.09942,"17.2":0.0348,"17.3":0.01988,"17.4":0.02983,"17.5":0.05468,"17.6":0.25352,"18.0":0.01988,"18.1":0.04971,"18.2":0.01988,"18.3":0.06462,"18.4":0.04474,"18.5-18.6":0.20878,"26.0":0.4971,"26.1":0.55675,"26.2":0.01988},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00127,"5.0-5.1":0,"6.0-6.1":0.00506,"7.0-7.1":0.0038,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01139,"10.0-10.2":0.00127,"10.3":0.02026,"11.0-11.2":0.23549,"11.3-11.4":0.0076,"12.0-12.1":0.00253,"12.2-12.5":0.0595,"13.0-13.1":0,"13.2":0.00633,"13.3":0.00253,"13.4-13.7":0.01139,"14.0-14.4":0.01899,"14.5-14.8":0.02405,"15.0-15.1":0.02026,"15.2-15.3":0.01646,"15.4":0.01772,"15.5":0.01899,"15.6-15.8":0.27473,"16.0":0.03418,"16.1":0.0633,"16.2":0.03292,"16.3":0.06077,"16.4":0.01519,"16.5":0.02532,"16.6-16.7":0.37095,"17.0":0.03165,"17.1":0.03798,"17.2":0.02785,"17.3":0.03925,"17.4":0.06457,"17.5":0.12281,"17.6-17.7":0.30132,"18.0":0.0671,"18.1":0.1418,"18.2":0.07596,"18.3":0.24688,"18.4":0.12661,"18.5-18.7":8.84083,"26.0":0.60644,"26.1":0.55326},P:{"4":0.04149,"20":0.01037,"21":0.01037,"22":0.01037,"23":0.02075,"24":0.08299,"25":0.02075,"26":0.04149,"27":0.07261,"28":0.34232,"29":2.15763,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.01037,"19.0":0.01037},I:{"0":0.03014,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.33198,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02307,"9":0.00577,"10":0.00577,"11":0.10956,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.06539},H:{"0":0},L:{"0":37.38482},R:{_:"0"},M:{"0":0.4024}};
Index: node_modules/caniuse-lite/data/regions/JE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/JE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/JE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.00425,"78":0.00425,"115":0.03399,"136":0.07223,"140":0.03824,"143":0.01275,"144":0.61611,"145":0.58636,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 141 142 146 147 148 3.5 3.6"},D:{"76":0.0085,"80":0.017,"81":0.00425,"87":0.06798,"93":0.0085,"98":0.00425,"102":0.00425,"103":0.08498,"105":0.00425,"109":0.07648,"111":0.00425,"116":0.02549,"119":0.00425,"120":0.00425,"122":0.34417,"123":0.01275,"124":0.0085,"125":0.08073,"126":0.10198,"128":0.09773,"129":0.00425,"132":0.00425,"133":0.0085,"134":0.02549,"135":0.06374,"136":0.03824,"137":0.0085,"138":0.70958,"139":0.11897,"140":0.88379,"141":4.54643,"142":9.97665,"143":0.04249,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 83 84 85 86 88 89 90 91 92 94 95 96 97 99 100 101 104 106 107 108 110 112 113 114 115 117 118 121 127 130 131 144 145 146"},F:{"111":0.00425,"122":0.07648,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.01275,"125":0.00425,"129":0.39941,"131":0.00425,"132":0.17421,"134":0.00425,"136":0.00425,"137":0.00425,"138":0.00425,"139":0.0085,"140":0.28893,"141":0.76907,"142":8.20057,"143":0.01275,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 126 127 128 130 133 135"},E:{"14":0.02549,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.4 17.0","12.1":0.00425,"13.1":0.03399,"14.1":0.03824,"15.1":0.00425,"15.2-15.3":0.01275,"15.5":0.01275,"15.6":0.37816,"16.0":0.06374,"16.1":0.04674,"16.2":0.0085,"16.3":0.05949,"16.4":0.02974,"16.5":0.02974,"16.6":0.39941,"17.1":0.87954,"17.2":0.00425,"17.3":0.04249,"17.4":0.05524,"17.5":0.07223,"17.6":0.47164,"18.0":0.00425,"18.1":0.06798,"18.2":0.00425,"18.3":0.04249,"18.4":0.02549,"18.5-18.6":0.31443,"26.0":0.40366,"26.1":0.94328,"26.2":0.00425},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00309,"5.0-5.1":0,"6.0-6.1":0.01236,"7.0-7.1":0.00927,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0278,"10.0-10.2":0.00309,"10.3":0.04943,"11.0-11.2":0.57464,"11.3-11.4":0.01854,"12.0-12.1":0.00618,"12.2-12.5":0.1452,"13.0-13.1":0,"13.2":0.01545,"13.3":0.00618,"13.4-13.7":0.0278,"14.0-14.4":0.04634,"14.5-14.8":0.0587,"15.0-15.1":0.04943,"15.2-15.3":0.04016,"15.4":0.04325,"15.5":0.04634,"15.6-15.8":0.67041,"16.0":0.08341,"16.1":0.15447,"16.2":0.08033,"16.3":0.14829,"16.4":0.03707,"16.5":0.06179,"16.6-16.7":0.90521,"17.0":0.07724,"17.1":0.09268,"17.2":0.06797,"17.3":0.09577,"17.4":0.15756,"17.5":0.29968,"17.6-17.7":0.73529,"18.0":0.16374,"18.1":0.34602,"18.2":0.18537,"18.3":0.60244,"18.4":0.30894,"18.5-18.7":21.57354,"26.0":1.47984,"26.1":1.35008},P:{"4":0.02199,"21":0.011,"26":0.011,"27":0.011,"28":0.20892,"29":3.12276,_:"20 22 23 24 25 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","16.0":0.10996},I:{"0":0.00574,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.02876,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":24.52202},R:{_:"0"},M:{"0":0.10927}};
Index: node_modules/caniuse-lite/data/regions/JM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/JM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/JM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.05425,"115":0.00603,"125":0.01206,"139":0.01206,"140":0.01808,"142":0.01206,"143":0.01206,"144":0.24112,"145":0.6028,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 128 129 130 131 132 133 134 135 136 137 138 141 146 147 148 3.5 3.6"},D:{"65":0.00603,"69":0.06028,"70":0.01206,"73":0.01808,"75":0.00603,"76":0.00603,"79":0.01206,"83":0.01808,"87":0.01206,"88":0.00603,"91":0.00603,"93":0.01808,"96":0.00603,"98":0.01206,"99":0.00603,"100":0.00603,"101":0.00603,"102":0.00603,"103":0.06028,"105":0.00603,"108":0.00603,"109":0.1507,"111":0.07234,"112":24.14817,"113":0.01206,"114":0.01206,"116":0.06028,"118":0.00603,"119":0.01206,"120":0.00603,"121":0.00603,"122":0.10248,"123":0.00603,"124":0.01808,"125":1.0549,"126":5.15394,"127":0.00603,"128":0.09042,"129":0.00603,"130":0.01808,"131":0.04822,"132":0.12659,"133":0.01206,"134":0.01808,"135":0.01808,"136":0.04822,"137":0.06631,"138":0.16276,"139":0.14467,"140":0.26523,"141":3.25512,"142":11.4532,"143":0.03617,"144":0.00603,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 71 72 74 77 78 80 81 84 85 86 89 90 92 94 95 97 104 106 107 110 115 117 145 146"},F:{"92":0.03617,"102":0.00603,"122":0.53649,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01206,"92":0.00603,"114":0.57266,"135":0.00603,"137":0.00603,"138":0.00603,"139":0.01206,"140":0.02411,"141":0.4943,"142":3.39979,"143":0.01206,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 136"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.5 17.0","13.1":0.00603,"14.1":0.01206,"15.6":0.06028,"16.3":0.00603,"16.4":0.01808,"16.6":0.09042,"17.1":0.03014,"17.2":0.00603,"17.3":0.01206,"17.4":0.00603,"17.5":0.03014,"17.6":0.09042,"18.0":0.00603,"18.1":0.01206,"18.2":0.01206,"18.3":0.11453,"18.4":0.01206,"18.5-18.6":0.12056,"26.0":0.27126,"26.1":0.41593,"26.2":0.00603},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00118,"5.0-5.1":0,"6.0-6.1":0.00473,"7.0-7.1":0.00355,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01064,"10.0-10.2":0.00118,"10.3":0.01892,"11.0-11.2":0.21994,"11.3-11.4":0.00709,"12.0-12.1":0.00236,"12.2-12.5":0.05558,"13.0-13.1":0,"13.2":0.00591,"13.3":0.00236,"13.4-13.7":0.01064,"14.0-14.4":0.01774,"14.5-14.8":0.02247,"15.0-15.1":0.01892,"15.2-15.3":0.01537,"15.4":0.01655,"15.5":0.01774,"15.6-15.8":0.25659,"16.0":0.03193,"16.1":0.05912,"16.2":0.03074,"16.3":0.05676,"16.4":0.01419,"16.5":0.02365,"16.6-16.7":0.34646,"17.0":0.02956,"17.1":0.03547,"17.2":0.02601,"17.3":0.03666,"17.4":0.06031,"17.5":0.1147,"17.6-17.7":0.28143,"18.0":0.06267,"18.1":0.13244,"18.2":0.07095,"18.3":0.23058,"18.4":0.11825,"18.5-18.7":8.25715,"26.0":0.5664,"26.1":0.51674},P:{"4":0.01067,"20":0.02134,"23":0.03202,"24":0.02134,"25":0.02134,"26":0.05336,"27":0.07471,"28":0.49092,"29":2.35857,_:"21 22 5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","6.2-6.4":0.03202,"7.2-7.4":0.04269,"16.0":0.01067},I:{"0":0.0357,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.21846,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00397},O:{"0":0.06752},H:{"0":0},L:{"0":27.95375},R:{_:"0"},M:{"0":0.11519}};
Index: node_modules/caniuse-lite/data/regions/JO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/JO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/JO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01172,"115":0.0469,"125":0.00293,"128":0.00293,"136":0.00293,"140":0.00586,"143":0.00293,"144":0.24914,"145":0.30482,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 133 134 135 137 138 139 141 142 146 147 148 3.5 3.6"},D:{"11":0.00293,"66":0.00293,"69":0.01172,"73":0.00293,"79":0.00879,"83":0.00586,"84":0.00293,"86":0.00586,"87":0.01759,"88":0.00293,"91":0.00293,"96":0.01466,"98":0.04103,"100":0.00879,"101":0.00293,"103":0.00586,"104":0.00293,"106":0.00879,"107":0.00293,"108":0.01759,"109":0.74447,"111":0.01172,"112":7.39784,"113":0.00293,"114":0.00879,"116":0.00586,"117":0.09086,"119":0.01759,"120":0.0381,"121":0.00586,"122":0.11138,"123":0.00586,"124":0.01172,"125":0.15534,"126":2.26273,"127":0.00586,"128":0.02638,"129":0.00586,"130":0.00586,"131":0.02052,"132":0.02931,"133":0.00879,"134":0.01172,"135":0.02052,"136":0.02931,"137":0.04103,"138":0.11724,"139":0.05569,"140":0.1231,"141":2.25394,"142":6.76182,"143":0.01759,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 70 71 72 74 75 76 77 78 80 81 85 89 90 92 93 94 95 97 99 102 105 110 115 118 144 145 146"},F:{"92":0.01466,"93":0.00293,"95":0.00293,"114":0.00293,"115":0.00293,"116":0.00293,"119":0.02931,"120":0.02345,"121":0.00586,"122":0.06155,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"84":0.00293,"92":0.00586,"109":0.01172,"114":0.34586,"122":0.00293,"125":0.00293,"131":0.00293,"133":0.00293,"135":0.00586,"136":0.00293,"137":0.00293,"138":0.00293,"139":0.00879,"140":0.02931,"141":0.14948,"142":1.2193,"143":0.00586,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 126 127 128 129 130 132 134"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.1 16.4 16.5 17.0 17.2","5.1":0.00293,"14.1":0.00293,"15.5":0.00293,"15.6":0.01759,"16.0":0.00586,"16.2":0.00293,"16.3":0.00293,"16.6":0.05569,"17.1":0.01759,"17.3":0.00879,"17.4":0.00586,"17.5":0.00293,"17.6":0.02931,"18.0":0.00293,"18.1":0.00586,"18.2":0.00293,"18.3":0.01172,"18.4":0.00293,"18.5-18.6":0.02638,"26.0":0.05276,"26.1":0.0469,"26.2":0.00293},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00152,"5.0-5.1":0,"6.0-6.1":0.00606,"7.0-7.1":0.00455,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01364,"10.0-10.2":0.00152,"10.3":0.02425,"11.0-11.2":0.28194,"11.3-11.4":0.00909,"12.0-12.1":0.00303,"12.2-12.5":0.07124,"13.0-13.1":0,"13.2":0.00758,"13.3":0.00303,"13.4-13.7":0.01364,"14.0-14.4":0.02274,"14.5-14.8":0.0288,"15.0-15.1":0.02425,"15.2-15.3":0.01971,"15.4":0.02122,"15.5":0.02274,"15.6-15.8":0.32893,"16.0":0.04093,"16.1":0.07579,"16.2":0.03941,"16.3":0.07276,"16.4":0.01819,"16.5":0.03032,"16.6-16.7":0.44413,"17.0":0.0379,"17.1":0.04547,"17.2":0.03335,"17.3":0.04699,"17.4":0.07731,"17.5":0.14703,"17.6-17.7":0.36076,"18.0":0.08034,"18.1":0.16977,"18.2":0.09095,"18.3":0.29558,"18.4":0.15158,"18.5-18.7":10.58489,"26.0":0.72607,"26.1":0.66241},P:{"21":0.01037,"22":0.02074,"23":0.02074,"24":0.01037,"25":0.08295,"26":0.04148,"27":0.06222,"28":0.22813,"29":1.34801,_:"4 20 5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","6.2-6.4":0.01037,"7.2-7.4":0.03111},I:{"0":0.0353,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.05656,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03517,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02121},H:{"0":0},L:{"0":58.5981},R:{_:"0"},M:{"0":0.06363}};
Index: node_modules/caniuse-lite/data/regions/JP.js
===================================================================
--- node_modules/caniuse-lite/data/regions/JP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/JP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00514,"48":0.00514,"52":0.02572,"56":0.00514,"66":0.00514,"78":0.01543,"113":0.01543,"115":0.1749,"125":0.00514,"128":0.01029,"132":0.00514,"133":0.00514,"134":0.01029,"135":0.01029,"136":0.01543,"137":0.00514,"138":0.00514,"139":0.00514,"140":0.05144,"141":0.01029,"142":0.01543,"143":0.03086,"144":1.12654,"145":1.31686,"146":0.00514,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 147 148 3.5 3.6"},D:{"39":0.02058,"40":0.02058,"41":0.02058,"42":0.02058,"43":0.02058,"44":0.02058,"45":0.02058,"46":0.02058,"47":0.02058,"48":0.02058,"49":0.04115,"50":0.02572,"51":0.02058,"52":0.03086,"53":0.02058,"54":0.02058,"55":0.02572,"56":0.02572,"57":0.02058,"58":0.02572,"59":0.02058,"60":0.02058,"69":0.00514,"70":0.00514,"74":0.01029,"75":0.00514,"78":0.00514,"79":0.01029,"80":0.01029,"81":0.01029,"83":0.01029,"85":0.01029,"86":0.01029,"87":0.01029,"88":0.00514,"89":0.00514,"90":0.00514,"91":0.00514,"93":0.01029,"95":0.01029,"96":0.00514,"97":0.01029,"98":0.01543,"99":0.00514,"100":0.00514,"101":0.02058,"102":0.00514,"103":0.0463,"104":0.12346,"105":0.00514,"106":0.01029,"107":0.01029,"108":0.00514,"109":0.59156,"110":0.0463,"111":0.01029,"112":0.01029,"113":0.02058,"114":0.05144,"115":0.01029,"116":0.07716,"117":0.00514,"118":0.01543,"119":0.05658,"120":0.0823,"121":0.03086,"122":0.03086,"123":0.02058,"124":0.08745,"125":0.84876,"126":0.02572,"127":0.02058,"128":0.0823,"129":0.02058,"130":0.31378,"131":0.07716,"132":0.05144,"133":0.06687,"134":0.06687,"135":0.05658,"136":0.09259,"137":0.10288,"138":0.33436,"139":0.14918,"140":0.36008,"141":4.17178,"142":14.55238,"143":0.03086,"144":0.04115,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 71 72 73 76 77 84 92 94 145 146"},F:{"63":0.00514,"79":0.01029,"90":0.00514,"92":0.06687,"93":0.01029,"95":0.02058,"122":0.08745,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00514,"92":0.00514,"109":0.15946,"111":0.00514,"113":0.00514,"114":0.00514,"115":0.00514,"116":0.00514,"118":0.00514,"119":0.00514,"120":0.01029,"121":0.00514,"122":0.01029,"123":0.01029,"124":0.00514,"126":0.01029,"127":0.00514,"128":0.01029,"129":0.00514,"130":0.01029,"131":0.02058,"132":0.01543,"133":0.01543,"134":0.01543,"135":0.02058,"136":0.02058,"137":0.02572,"138":0.0463,"139":0.05658,"140":0.10288,"141":1.13682,"142":9.44438,"143":0.02572,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112 117 125"},E:{"13":0.00514,"14":0.02058,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3","12.1":0.00514,"13.1":0.04115,"14.1":0.06687,"15.4":0.01543,"15.5":0.01029,"15.6":0.15432,"16.0":0.00514,"16.1":0.02058,"16.2":0.01543,"16.3":0.02572,"16.4":0.01543,"16.5":0.01029,"16.6":0.18004,"17.0":0.00514,"17.1":0.1286,"17.2":0.01029,"17.3":0.01543,"17.4":0.03086,"17.5":0.04115,"17.6":0.18518,"18.0":0.01543,"18.1":0.02058,"18.2":0.01543,"18.3":0.06173,"18.4":0.03086,"18.5-18.6":0.13374,"26.0":0.27263,"26.1":0.26749,"26.2":0.00514},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00225,"5.0-5.1":0,"6.0-6.1":0.00898,"7.0-7.1":0.00674,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02021,"10.0-10.2":0.00225,"10.3":0.03593,"11.0-11.2":0.41765,"11.3-11.4":0.01347,"12.0-12.1":0.00449,"12.2-12.5":0.10553,"13.0-13.1":0,"13.2":0.01123,"13.3":0.00449,"13.4-13.7":0.02021,"14.0-14.4":0.03368,"14.5-14.8":0.04266,"15.0-15.1":0.03593,"15.2-15.3":0.02919,"15.4":0.03144,"15.5":0.03368,"15.6-15.8":0.48725,"16.0":0.06063,"16.1":0.11227,"16.2":0.05838,"16.3":0.10778,"16.4":0.02694,"16.5":0.04491,"16.6-16.7":0.65791,"17.0":0.05614,"17.1":0.06736,"17.2":0.0494,"17.3":0.06961,"17.4":0.11452,"17.5":0.21781,"17.6-17.7":0.53441,"18.0":0.11901,"18.1":0.25149,"18.2":0.13472,"18.3":0.43786,"18.4":0.22454,"18.5-18.7":15.67973,"26.0":1.07555,"26.1":0.98125},P:{"26":0.01096,"27":0.01096,"28":0.08766,"29":0.74508,_:"4 20 21 22 23 24 25 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.02425,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.11654,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.13655,"11":0.23896,_:"6 7 8 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.09226},O:{"0":0.12626},H:{"0":0},L:{"0":31.93986},R:{_:"0"},M:{"0":0.48074}};
Index: node_modules/caniuse-lite/data/regions/KE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03059,"47":0.0051,"76":0.0051,"115":0.10706,"127":0.0051,"128":0.01529,"132":0.0051,"134":0.0051,"136":0.0051,"140":0.03059,"141":0.0051,"142":0.0102,"143":0.02549,"144":0.39255,"145":0.43843,"146":0.0051,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 133 135 137 138 139 147 148 3.5 3.6"},D:{"49":0.0051,"51":0.02549,"65":0.0051,"66":0.0102,"69":0.04588,"71":0.0051,"72":0.0102,"73":0.03059,"74":0.0051,"75":0.0051,"76":0.0051,"77":0.0051,"79":0.0102,"80":0.0051,"81":0.0051,"83":0.09176,"86":0.0051,"87":0.02549,"88":0.0051,"91":0.0102,"93":0.0102,"94":0.0051,"95":0.0051,"98":0.0102,"99":0.0051,"100":0.0102,"102":0.0051,"103":0.07137,"104":0.0102,"106":0.0051,"108":0.0051,"109":0.49451,"111":0.05098,"112":14.12146,"113":0.02549,"114":0.03059,"116":0.03059,"117":0.0051,"118":0.0051,"119":0.02549,"120":0.0102,"121":0.0102,"122":0.06118,"123":0.0051,"124":0.0102,"125":0.49451,"126":4.35369,"127":0.0102,"128":0.02549,"129":0.01529,"130":0.01529,"131":0.07137,"132":0.06118,"133":0.02549,"134":2.02391,"135":0.03569,"136":0.04588,"137":0.09176,"138":0.22941,"139":0.69333,"140":0.34666,"141":3.11998,"142":8.28935,"143":0.03569,"144":0.0051,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 67 68 70 78 84 85 89 90 92 96 97 101 105 107 110 115 145 146"},F:{"86":0.0051,"89":0.0051,"90":0.02549,"91":0.0102,"92":0.15294,"93":0.02039,"95":0.01529,"120":0.0102,"122":0.11216,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.0051,"18":0.01529,"90":0.0051,"92":0.01529,"100":0.0051,"109":0.0102,"114":0.44353,"117":0.02549,"122":0.0051,"125":0.0102,"127":0.0051,"133":0.0051,"135":0.0051,"136":0.0051,"137":0.0051,"138":0.0102,"139":0.01529,"140":0.03059,"141":0.2447,"142":1.7843,"143":0.0051,_:"12 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 118 119 120 121 123 124 126 128 129 130 131 132 134"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.1 16.2 16.3 16.5 17.2 18.0","5.1":0.0051,"13.1":0.0102,"14.1":0.0051,"15.6":0.03059,"16.0":0.0102,"16.4":0.03059,"16.6":0.03059,"17.0":0.0051,"17.1":0.0051,"17.3":0.0051,"17.4":0.0051,"17.5":0.0051,"17.6":0.05098,"18.1":0.0051,"18.2":0.0051,"18.3":0.0102,"18.4":0.0051,"18.5-18.6":0.01529,"26.0":0.04588,"26.1":0.06118,"26.2":0.0051},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00016,"5.0-5.1":0,"6.0-6.1":0.00063,"7.0-7.1":0.00047,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00142,"10.0-10.2":0.00016,"10.3":0.00252,"11.0-11.2":0.02927,"11.3-11.4":0.00094,"12.0-12.1":0.00031,"12.2-12.5":0.0074,"13.0-13.1":0,"13.2":0.00079,"13.3":0.00031,"13.4-13.7":0.00142,"14.0-14.4":0.00236,"14.5-14.8":0.00299,"15.0-15.1":0.00252,"15.2-15.3":0.00205,"15.4":0.0022,"15.5":0.00236,"15.6-15.8":0.03415,"16.0":0.00425,"16.1":0.00787,"16.2":0.00409,"16.3":0.00755,"16.4":0.00189,"16.5":0.00315,"16.6-16.7":0.0461,"17.0":0.00393,"17.1":0.00472,"17.2":0.00346,"17.3":0.00488,"17.4":0.00803,"17.5":0.01526,"17.6-17.7":0.03745,"18.0":0.00834,"18.1":0.01762,"18.2":0.00944,"18.3":0.03068,"18.4":0.01574,"18.5-18.7":1.0988,"26.0":0.07537,"26.1":0.06876},P:{"4":0.0105,"22":0.02101,"23":0.0105,"24":0.07353,"25":0.07353,"26":0.04202,"27":0.09454,"28":0.33614,"29":0.55673,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.10504},I:{"0":0.03916,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":12.98227,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.08667,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.0049},O:{"0":0.10294},H:{"0":1.66},L:{"0":40.69233},R:{_:"0"},M:{"0":0.13726}};
Index: node_modules/caniuse-lite/data/regions/KG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03266,"115":0.03266,"127":0.02449,"140":0.01633,"142":0.02449,"143":0.0898,"144":1.00417,"145":0.2041,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 128 129 130 131 132 133 134 135 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"49":0.00816,"69":0.03266,"75":0.00816,"79":0.00816,"99":0.00816,"101":0.00816,"103":0.00816,"105":0.02449,"106":0.00816,"109":0.53066,"111":0.03266,"112":18.2547,"116":0.00816,"117":0.00816,"119":0.02449,"120":0.00816,"122":0.08164,"123":0.00816,"125":32.1335,"126":4.48204,"128":0.00816,"130":0.02449,"131":0.02449,"132":0.03266,"133":0.01633,"134":0.00816,"135":0.00816,"136":0.04082,"137":0.02449,"138":0.04082,"139":0.17144,"140":0.45718,"141":4.77594,"142":9.45391,"143":0.00816,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 102 104 107 108 110 113 114 115 118 121 124 127 129 144 145 146"},F:{"80":0.00816,"85":0.00816,"92":0.04082,"93":0.02449,"95":0.06531,"122":0.15512,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 84 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"114":0.47351,"120":0.00816,"132":0.00816,"140":0.07348,"141":0.75109,"142":1.85323,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 122 123 124 125 126 127 128 129 130 131 133 134 135 136 137 138 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.4 16.5 16.6 18.1 26.2","15.6":0.00816,"16.1":0.00816,"17.0":0.00816,"17.1":0.00816,"17.2":0.05715,"17.3":0.05715,"17.4":0.05715,"17.5":0.05715,"17.6":0.08164,"18.0":0.01633,"18.2":0.18777,"18.3":0.19594,"18.4":0.18777,"18.5-18.6":0.22043,"26.0":0.26125,"26.1":0.18777},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00037,"5.0-5.1":0,"6.0-6.1":0.00148,"7.0-7.1":0.00111,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00332,"10.0-10.2":0.00037,"10.3":0.0059,"11.0-11.2":0.06861,"11.3-11.4":0.00221,"12.0-12.1":0.00074,"12.2-12.5":0.01734,"13.0-13.1":0,"13.2":0.00184,"13.3":0.00074,"13.4-13.7":0.00332,"14.0-14.4":0.00553,"14.5-14.8":0.00701,"15.0-15.1":0.0059,"15.2-15.3":0.0048,"15.4":0.00516,"15.5":0.00553,"15.6-15.8":0.08004,"16.0":0.00996,"16.1":0.01844,"16.2":0.00959,"16.3":0.0177,"16.4":0.00443,"16.5":0.00738,"16.6-16.7":0.10807,"17.0":0.00922,"17.1":0.01107,"17.2":0.00811,"17.3":0.01143,"17.4":0.01881,"17.5":0.03578,"17.6-17.7":0.08779,"18.0":0.01955,"18.1":0.04131,"18.2":0.02213,"18.3":0.07193,"18.4":0.03689,"18.5-18.7":2.5757,"26.0":0.17668,"26.1":0.16119},P:{"23":0.01069,"25":0.02139,"26":0.01069,"27":0.04278,"28":0.08556,"29":0.23528,_:"4 20 21 22 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02139},I:{"0":0.00733,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.28825,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01652},O:{"0":0.09547},H:{"0":0},L:{"0":15.3586},R:{_:"0"},M:{"0":0.02938}};
Index: node_modules/caniuse-lite/data/regions/KH.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"78":0.03744,"91":0.00624,"105":0.01872,"114":0.01248,"115":0.06864,"127":0.00624,"128":0.00624,"132":0.00624,"133":0.00624,"134":0.00624,"136":0.00624,"137":0.00624,"139":0.00624,"140":0.01248,"141":0.00624,"142":0.00624,"143":0.01248,"144":0.38064,"145":0.44928,"146":0.00624,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 113 116 117 118 119 120 121 122 123 124 125 126 129 130 131 135 138 147 148 3.5 3.6"},D:{"56":0.00624,"69":0.00624,"79":0.00624,"86":0.00624,"91":0.00624,"100":0.01872,"101":0.00624,"103":0.01248,"104":0.05616,"108":0.00624,"109":0.21216,"110":0.00624,"111":0.00624,"112":2.73312,"114":0.04368,"115":0.01248,"116":0.01872,"117":0.00624,"119":0.00624,"120":0.2496,"121":0.01248,"122":0.0312,"123":0.09984,"124":0.02496,"125":0.19968,"126":6.66432,"127":0.08736,"128":0.08112,"129":0.11856,"130":0.01872,"131":0.24336,"132":0.13728,"133":0.06864,"134":7.50672,"135":0.06864,"136":0.21216,"137":0.28704,"138":0.23712,"139":2.93904,"140":0.33696,"141":5.75952,"142":21.88992,"143":0.06864,"144":0.01872,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 83 84 85 87 88 89 90 92 93 94 95 96 97 98 99 102 105 106 107 113 118 145 146"},F:{"89":0.00624,"92":0.00624,"95":0.00624,"114":0.01248,"120":0.00624,"122":0.16224,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01248,"89":0.01872,"92":0.04368,"100":0.00624,"109":0.00624,"112":0.01248,"114":0.03744,"117":0.00624,"118":0.0624,"120":0.03744,"122":0.00624,"128":0.00624,"131":0.02496,"132":0.01248,"133":0.00624,"134":0.01248,"135":0.00624,"136":0.01872,"137":0.00624,"138":0.01248,"139":0.01248,"140":0.02496,"141":0.18096,"142":2.28384,"143":0.01248,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 113 115 116 119 121 123 124 125 126 127 129 130"},E:{"11":0.00624,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.2 16.4 16.5 17.0 17.3","13.1":0.00624,"14.1":0.03744,"15.4":0.08736,"15.6":0.06864,"16.0":0.00624,"16.1":0.00624,"16.3":0.0312,"16.6":0.05616,"17.1":0.04368,"17.2":0.00624,"17.4":0.00624,"17.5":0.00624,"17.6":0.04368,"18.0":0.00624,"18.1":0.00624,"18.2":0.01248,"18.3":0.01872,"18.4":0.02496,"18.5-18.6":0.04992,"26.0":0.08736,"26.1":0.13728,"26.2":0.00624},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00118,"5.0-5.1":0,"6.0-6.1":0.00472,"7.0-7.1":0.00354,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01063,"10.0-10.2":0.00118,"10.3":0.01889,"11.0-11.2":0.21961,"11.3-11.4":0.00708,"12.0-12.1":0.00236,"12.2-12.5":0.05549,"13.0-13.1":0,"13.2":0.0059,"13.3":0.00236,"13.4-13.7":0.01063,"14.0-14.4":0.01771,"14.5-14.8":0.02243,"15.0-15.1":0.01889,"15.2-15.3":0.01535,"15.4":0.01653,"15.5":0.01771,"15.6-15.8":0.25621,"16.0":0.03188,"16.1":0.05904,"16.2":0.0307,"16.3":0.05667,"16.4":0.01417,"16.5":0.02361,"16.6-16.7":0.34595,"17.0":0.02952,"17.1":0.03542,"17.2":0.02598,"17.3":0.0366,"17.4":0.06022,"17.5":0.11453,"17.6-17.7":0.28101,"18.0":0.06258,"18.1":0.13224,"18.2":0.07084,"18.3":0.23024,"18.4":0.11807,"18.5-18.7":8.24484,"26.0":0.56556,"26.1":0.51597},P:{"22":0.01099,"24":0.01099,"25":0.01099,"26":0.01099,"27":0.01099,"28":0.06593,"29":0.4505,_:"4 20 21 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.02628,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.20299,_:"10 11 12 11.1 11.5 12.1"},A:{"11":1.3728,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.11277},O:{"0":0.30072},H:{"0":0},L:{"0":28.15119},R:{_:"0"},M:{"0":0.14284}};
Index: node_modules/caniuse-lite/data/regions/KI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.01872,"140":0.01872,"141":0.379,"144":0.12165,"145":0.2012,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 142 143 146 147 148 3.5 3.6"},D:{"99":0.01872,"109":0.07954,"112":0.07954,"125":0.77671,"126":0.06083,"127":0.01872,"131":0.06083,"132":0.01872,"133":0.06083,"138":0.61763,"139":0.15909,"140":0.01872,"141":2.84951,"142":4.59946,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 110 111 113 114 115 116 117 118 119 120 121 122 123 124 128 129 130 134 135 136 137 143 144 145 146"},F:{"122":0.31817,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"114":0.07954,"128":0.01872,"132":0.01872,"135":0.28074,"136":0.04211,"137":0.04211,"139":0.01872,"140":0.06083,"141":2.0494,"142":7.58934,"143":0.01872,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 133 134 138"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.3 17.5 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.1 26.2","15.6":0.01872,"16.6":0.01872,"17.4":0.04211,"17.6":0.04211,"26.0":0.01872},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00017,"5.0-5.1":0,"6.0-6.1":0.00068,"7.0-7.1":0.00051,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00153,"10.0-10.2":0.00017,"10.3":0.00272,"11.0-11.2":0.03167,"11.3-11.4":0.00102,"12.0-12.1":0.00034,"12.2-12.5":0.008,"13.0-13.1":0,"13.2":0.00085,"13.3":0.00034,"13.4-13.7":0.00153,"14.0-14.4":0.00255,"14.5-14.8":0.00324,"15.0-15.1":0.00272,"15.2-15.3":0.00221,"15.4":0.00238,"15.5":0.00255,"15.6-15.8":0.03695,"16.0":0.0046,"16.1":0.00851,"16.2":0.00443,"16.3":0.00817,"16.4":0.00204,"16.5":0.00341,"16.6-16.7":0.04989,"17.0":0.00426,"17.1":0.00511,"17.2":0.00375,"17.3":0.00528,"17.4":0.00868,"17.5":0.01652,"17.6-17.7":0.04052,"18.0":0.00902,"18.1":0.01907,"18.2":0.01022,"18.3":0.0332,"18.4":0.01703,"18.5-18.7":1.18901,"26.0":0.08156,"26.1":0.07441},P:{"22":0.10697,"24":0.21394,"25":1.35853,"26":0.02139,"27":0.29952,"28":1.52968,"29":1.63665,_:"4 20 21 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.14899},O:{_:"0"},H:{"0":0},L:{"0":70.92342},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/KM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"50":0.06633,"91":0.03015,"94":0.00603,"115":0.08744,"127":0.02111,"133":0.00905,"140":0.03618,"141":0.02111,"143":0.12362,"144":2.73461,"145":0.84722,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 128 129 130 131 132 134 135 136 137 138 139 142 146 147 148 3.5 3.6"},D:{"50":0.04824,"64":0.04221,"68":0.11457,"70":0.02714,"71":0.0995,"77":0.00905,"81":0.09347,"83":0.00603,"86":0.03015,"90":0.03618,"94":0.05729,"95":0.01508,"97":0.00603,"99":0.02111,"100":0.00603,"102":0.00905,"103":0.00603,"104":0.02111,"109":0.63014,"111":0.01508,"115":0.00603,"116":0.00905,"117":0.03015,"118":0.00603,"119":0.0995,"120":0.00905,"122":0.01508,"123":0.00603,"124":0.02111,"125":0.28643,"126":0.04824,"127":0.02111,"128":0.11457,"131":0.43115,"132":0.00905,"133":0.02714,"134":0.00905,"135":0.14171,"136":0.08744,"137":0.02714,"138":0.18693,"139":0.26532,"140":0.38894,"141":2.64114,"142":7.31741,"143":0.02111,"144":0.01508,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 69 72 73 74 75 76 78 79 80 84 85 87 88 89 91 92 93 96 98 101 105 106 107 108 110 112 113 114 121 129 130 145 146"},F:{"64":0.02714,"79":0.00905,"92":0.00905,"119":0.00603,"120":0.01508,"122":0.19296,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00905,"13":0.01508,"17":0.02111,"18":0.03015,"90":0.11457,"92":0.05729,"109":0.00905,"114":0.05729,"122":0.02111,"128":0.00905,"134":0.02111,"135":0.00603,"136":0.03015,"138":0.00603,"139":0.05729,"140":0.03618,"141":0.62411,"142":1.64318,_:"14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 129 130 131 132 133 137 143"},E:{"12":0.00603,_:"0 4 5 6 7 8 9 10 11 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.5 16.0 16.1 16.2 16.3 16.4 17.0 17.1 17.3 18.0 18.2 18.3 26.2","13.1":0.01508,"15.4":0.00603,"15.6":0.46431,"16.5":0.00603,"16.6":0.19899,"17.2":0.01508,"17.4":0.00603,"17.5":0.00905,"17.6":0.10854,"18.1":0.00905,"18.4":0.05729,"18.5-18.6":0.34371,"26.0":0.68139,"26.1":0.03618},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00065,"5.0-5.1":0,"6.0-6.1":0.0026,"7.0-7.1":0.00195,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00585,"10.0-10.2":0.00065,"10.3":0.01039,"11.0-11.2":0.12083,"11.3-11.4":0.0039,"12.0-12.1":0.0013,"12.2-12.5":0.03053,"13.0-13.1":0,"13.2":0.00325,"13.3":0.0013,"13.4-13.7":0.00585,"14.0-14.4":0.00974,"14.5-14.8":0.01234,"15.0-15.1":0.01039,"15.2-15.3":0.00844,"15.4":0.00909,"15.5":0.00974,"15.6-15.8":0.14096,"16.0":0.01754,"16.1":0.03248,"16.2":0.01689,"16.3":0.03118,"16.4":0.0078,"16.5":0.01299,"16.6-16.7":0.19033,"17.0":0.01624,"17.1":0.01949,"17.2":0.01429,"17.3":0.02014,"17.4":0.03313,"17.5":0.06301,"17.6-17.7":0.15461,"18.0":0.03443,"18.1":0.07276,"18.2":0.03898,"18.3":0.12667,"18.4":0.06496,"18.5-18.7":4.53619,"26.0":0.31116,"26.1":0.28388},P:{"4":0.03053,"21":0.01018,"22":0.0814,"24":0.1628,"25":0.09158,"26":0.0814,"27":0.11193,"28":0.2442,"29":0.2442,_:"20 23 5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 19.0","7.2-7.4":0.19333,"9.2":0.01018,"16.0":0.02035,"18.0":0.01018},I:{"0":0.12555,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.34624,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00603,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.04191},O:{"0":0.1397},H:{"0":0.01},L:{"0":66.12978},R:{_:"0"},M:{"0":0.10478}};
Index: node_modules/caniuse-lite/data/regions/KN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0268,"115":0.09381,"140":0.0134,"144":0.43777,"145":0.31716,"146":0.00447,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 141 142 143 147 148 3.5 3.6"},D:{"62":0.00893,"69":0.03127,"70":0.00447,"79":0.04914,"83":0.00447,"87":0.12954,"97":0.25909,"103":0.4601,"109":0.10721,"111":0.0268,"112":0.00447,"114":0.00447,"116":0.00447,"119":0.00447,"122":0.00447,"125":1.08101,"126":0.06701,"127":0.00447,"130":0.0134,"132":0.05807,"135":0.00447,"137":0.00893,"138":0.28142,"139":0.14294,"140":0.34843,"141":3.03756,"142":15.91145,"143":0.04467,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 71 72 73 74 75 76 77 78 80 81 84 85 86 88 89 90 91 92 93 94 95 96 98 99 100 101 102 104 105 106 107 108 110 113 115 117 118 120 121 123 124 128 129 131 133 134 136 144 145 146"},F:{"92":0.04914,"102":0.00447,"117":0.00447,"122":0.46457,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00447,"18":0.00447,"109":0.0134,"114":0.0536,"128":0.00447,"130":0.00447,"134":0.00447,"135":0.00447,"137":0.00447,"138":0.00447,"139":0.06701,"140":0.06254,"141":1.19716,"142":4.60994,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 129 131 132 133 136 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.3 17.0 18.0 18.1 26.2","9.1":0.00447,"14.1":0.00447,"15.6":0.04914,"16.2":0.00893,"16.4":0.00893,"16.5":0.00447,"16.6":0.11168,"17.1":0.0536,"17.2":0.08934,"17.3":0.00447,"17.4":0.03574,"17.5":0.00447,"17.6":0.02234,"18.2":0.00447,"18.3":0.0402,"18.4":0.0536,"18.5-18.6":0.31269,"26.0":0.42437,"26.1":0.46904},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00128,"5.0-5.1":0,"6.0-6.1":0.00512,"7.0-7.1":0.00384,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01152,"10.0-10.2":0.00128,"10.3":0.02048,"11.0-11.2":0.23804,"11.3-11.4":0.00768,"12.0-12.1":0.00256,"12.2-12.5":0.06015,"13.0-13.1":0,"13.2":0.0064,"13.3":0.00256,"13.4-13.7":0.01152,"14.0-14.4":0.0192,"14.5-14.8":0.02432,"15.0-15.1":0.02048,"15.2-15.3":0.01664,"15.4":0.01792,"15.5":0.0192,"15.6-15.8":0.27771,"16.0":0.03455,"16.1":0.06399,"16.2":0.03327,"16.3":0.06143,"16.4":0.01536,"16.5":0.0256,"16.6-16.7":0.37498,"17.0":0.03199,"17.1":0.03839,"17.2":0.02816,"17.3":0.03967,"17.4":0.06527,"17.5":0.12414,"17.6-17.7":0.30459,"18.0":0.06783,"18.1":0.14334,"18.2":0.07679,"18.3":0.24956,"18.4":0.12798,"18.5-18.7":8.93672,"26.0":0.61302,"26.1":0.55927},P:{"4":0.03226,"20":0.01075,"21":0.02151,"22":0.02151,"23":0.01075,"24":0.10753,"25":0.03226,"26":0.03226,"27":0.04301,"28":0.30108,"29":2.6667,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0","7.2-7.4":0.11828,"16.0":0.01075,"19.0":0.01075},I:{"0":0.01658,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.85762,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0166},H:{"0":0},L:{"0":41.06358},R:{_:"0"},M:{"0":0.25452}};
Index: node_modules/caniuse-lite/data/regions/KP.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":5.95478,"131":4.76011,"142":2.38315,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132 133 134 135 136 137 138 139 140 141 143 144 145 146 147 148 3.5 3.6"},D:{"109":8.33174,"136":2.38315,"141":4.76011,"142":22.61826,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 140 143 144 145 146"},F:{"56":1.18848,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"142":4.76011,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.0 26.1 26.2"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00221,"5.0-5.1":0,"6.0-6.1":0.00885,"7.0-7.1":0.00663,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0199,"10.0-10.2":0.00221,"10.3":0.03538,"11.0-11.2":0.41134,"11.3-11.4":0.01327,"12.0-12.1":0.00442,"12.2-12.5":0.10394,"13.0-13.1":0,"13.2":0.01106,"13.3":0.00442,"13.4-13.7":0.0199,"14.0-14.4":0.03317,"14.5-14.8":0.04202,"15.0-15.1":0.03538,"15.2-15.3":0.02875,"15.4":0.03096,"15.5":0.03317,"15.6-15.8":0.4799,"16.0":0.05971,"16.1":0.11058,"16.2":0.0575,"16.3":0.10615,"16.4":0.02654,"16.5":0.04423,"16.6-16.7":0.64797,"17.0":0.05529,"17.1":0.06635,"17.2":0.04865,"17.3":0.06856,"17.4":0.11279,"17.5":0.21452,"17.6-17.7":0.52634,"18.0":0.11721,"18.1":0.24769,"18.2":0.13269,"18.3":0.43124,"18.4":0.22115,"18.5-18.7":15.44294,"26.0":1.05931,"26.1":0.96643},P:{"28":2.45681,_:"4 20 21 22 23 24 25 26 27 29 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":18.27444},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/KR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.005,"92":0.005,"115":0.12498,"132":0.46491,"133":0.005,"135":0.005,"136":0.005,"140":0.015,"141":0.02,"142":0.005,"144":0.23995,"145":0.29994,"146":0.01,"147":0.005,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 134 137 138 139 143 148 3.5 3.6"},D:{"39":0.015,"40":0.015,"41":0.015,"42":0.02999,"43":0.015,"44":0.02,"45":0.02,"46":0.015,"47":0.02,"48":0.02,"49":0.02,"50":0.015,"51":0.015,"52":0.015,"53":0.015,"54":0.015,"55":0.02,"56":0.015,"57":0.02,"58":0.015,"59":0.02,"60":0.02,"61":0.01,"65":0.005,"71":0.005,"80":0.005,"87":0.01,"91":0.025,"95":0.005,"96":0.01,"99":0.01,"103":0.005,"105":0.02,"106":0.005,"108":0.02,"109":0.34993,"111":1.22476,"112":0.01,"114":0.01,"116":0.025,"118":0.005,"119":0.005,"120":0.02999,"121":0.04999,"122":0.02999,"123":0.06999,"124":0.015,"125":0.015,"126":0.02999,"127":0.015,"128":0.04499,"129":0.02,"130":0.04499,"131":0.07998,"132":0.03999,"133":0.06499,"134":0.05999,"135":0.05499,"136":0.05999,"137":0.05999,"138":0.18496,"139":0.13497,"140":0.25495,"141":5.78384,"142":22.77045,"143":0.05999,"144":0.01,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 62 63 64 66 67 68 69 70 72 73 74 75 76 77 78 79 81 83 84 85 86 88 89 90 92 93 94 97 98 100 101 102 104 107 110 113 115 117 145 146"},F:{"92":0.03499,"93":0.005,"95":0.005,"114":0.005,"122":0.06499,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.005,"109":0.03999,"111":0.005,"112":0.005,"113":0.005,"114":0.005,"116":0.005,"117":0.005,"118":0.01,"119":0.01,"120":0.01,"121":0.005,"122":0.005,"124":0.005,"125":0.005,"126":0.005,"127":0.005,"128":0.01,"129":0.005,"130":0.01,"131":0.02999,"132":0.015,"133":0.015,"134":0.02,"135":0.02,"136":0.025,"137":0.02,"138":0.03499,"139":0.03499,"140":0.07998,"141":0.67487,"142":6.82364,"143":0.01,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 115 123"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.3 16.5","15.5":0.005,"15.6":0.025,"16.4":0.005,"16.6":0.015,"17.0":0.01,"17.1":0.015,"17.2":0.005,"17.3":0.005,"17.4":0.01,"17.5":0.01,"17.6":0.02999,"18.0":0.005,"18.1":0.005,"18.2":0.005,"18.3":0.02,"18.4":0.01,"18.5-18.6":0.03499,"26.0":0.15497,"26.1":0.19496,"26.2":0.01},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00086,"5.0-5.1":0,"6.0-6.1":0.00345,"7.0-7.1":0.00259,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00777,"10.0-10.2":0.00086,"10.3":0.01382,"11.0-11.2":0.16064,"11.3-11.4":0.00518,"12.0-12.1":0.00173,"12.2-12.5":0.04059,"13.0-13.1":0,"13.2":0.00432,"13.3":0.00173,"13.4-13.7":0.00777,"14.0-14.4":0.01296,"14.5-14.8":0.01641,"15.0-15.1":0.01382,"15.2-15.3":0.01123,"15.4":0.01209,"15.5":0.01296,"15.6-15.8":0.18742,"16.0":0.02332,"16.1":0.04318,"16.2":0.02246,"16.3":0.04146,"16.4":0.01036,"16.5":0.01727,"16.6-16.7":0.25306,"17.0":0.02159,"17.1":0.02591,"17.2":0.019,"17.3":0.02677,"17.4":0.04405,"17.5":0.08378,"17.6-17.7":0.20555,"18.0":0.04577,"18.1":0.09673,"18.2":0.05182,"18.3":0.16842,"18.4":0.08637,"18.5-18.7":6.03103,"26.0":0.4137,"26.1":0.37742},P:{"21":0.01017,"22":0.02033,"23":0.02033,"24":0.02033,"25":0.0305,"26":0.05084,"27":0.19318,"28":1.49459,"29":12.61761,_:"4 20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.11486,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.10002,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.34493,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01},O:{"0":0.04001},H:{"0":0},L:{"0":24.90336},R:{_:"0"},M:{"0":0.11502}};
Index: node_modules/caniuse-lite/data/regions/KW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00682,"48":0.00341,"115":0.0307,"121":0.00341,"125":0.01364,"128":0.00341,"132":0.00682,"134":0.02388,"137":0.00341,"139":0.00341,"140":0.01023,"142":0.00341,"143":0.00682,"144":0.22854,"145":0.2183,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 122 123 124 126 127 129 130 131 133 135 136 138 141 146 147 148 3.5 3.6"},D:{"41":0.00341,"65":0.00341,"69":0.00682,"79":0.01023,"80":0.00341,"83":0.00682,"85":0.00341,"87":0.01023,"91":0.02388,"98":0.00682,"103":0.07163,"105":0.00341,"109":0.24559,"110":0.00341,"111":0.01023,"112":5.93514,"114":0.01706,"115":0.00341,"116":0.01023,"117":0.00682,"118":0.00341,"119":0.03411,"120":0.0307,"121":0.01364,"122":0.0307,"123":0.00682,"124":0.00341,"125":0.32063,"126":0.77771,"127":0.01023,"128":0.0307,"129":0.01023,"130":0.01706,"131":0.02388,"132":0.01364,"133":0.05117,"134":0.02388,"135":0.11256,"136":0.05117,"137":0.03411,"138":0.12621,"139":0.19784,"140":0.34792,"141":3.23704,"142":8.85155,"143":0.02729,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 70 71 72 73 74 75 76 77 78 81 84 86 88 89 90 92 93 94 95 96 97 99 100 101 102 104 106 107 108 113 144 145 146"},F:{"46":0.02047,"85":0.01023,"92":0.14326,"93":0.01706,"95":0.00682,"122":0.29335,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00341,"92":0.01364,"109":0.01706,"114":0.04093,"128":0.00341,"130":0.00341,"131":0.01023,"132":0.00341,"133":0.00341,"134":0.00341,"135":0.00341,"137":0.00341,"138":0.01023,"139":0.01364,"140":0.03752,"141":0.249,"142":1.82489,"143":0.01023,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 129 136"},E:{"7":0.00341,"14":0.00341,_:"0 4 5 6 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 16.4 17.0","13.1":0.01706,"14.1":0.01023,"15.4":0.00341,"15.5":0.00341,"15.6":0.02729,"16.1":0.01364,"16.2":0.00341,"16.3":0.00682,"16.5":0.01023,"16.6":0.0614,"17.1":0.02047,"17.2":0.00341,"17.3":0.00341,"17.4":0.01706,"17.5":0.02047,"17.6":0.06481,"18.0":0.01364,"18.1":0.01023,"18.2":0.01706,"18.3":0.0307,"18.4":0.01023,"18.5-18.6":0.11256,"26.0":0.15691,"26.1":0.23195,"26.2":0.00341},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00193,"5.0-5.1":0,"6.0-6.1":0.00771,"7.0-7.1":0.00579,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01736,"10.0-10.2":0.00193,"10.3":0.03086,"11.0-11.2":0.35872,"11.3-11.4":0.01157,"12.0-12.1":0.00386,"12.2-12.5":0.09064,"13.0-13.1":0,"13.2":0.00964,"13.3":0.00386,"13.4-13.7":0.01736,"14.0-14.4":0.02893,"14.5-14.8":0.03664,"15.0-15.1":0.03086,"15.2-15.3":0.02507,"15.4":0.027,"15.5":0.02893,"15.6-15.8":0.41851,"16.0":0.05207,"16.1":0.09643,"16.2":0.05014,"16.3":0.09257,"16.4":0.02314,"16.5":0.03857,"16.6-16.7":0.56508,"17.0":0.04822,"17.1":0.05786,"17.2":0.04243,"17.3":0.05979,"17.4":0.09836,"17.5":0.18707,"17.6-17.7":0.45901,"18.0":0.10222,"18.1":0.216,"18.2":0.11572,"18.3":0.37608,"18.4":0.19286,"18.5-18.7":13.46742,"26.0":0.9238,"26.1":0.8428},P:{"21":0.03056,"22":0.04075,"23":0.05093,"24":0.04075,"25":0.09168,"26":0.04075,"27":0.26485,"28":0.74362,"29":2.05768,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 16.0 17.0","7.2-7.4":0.01019,"11.1-11.2":0.01019,"13.0":0.01019,"15.0":0.02037,"18.0":0.01019,"19.0":0.01019},I:{"0":0.02632,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":1.36392,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02047,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.90269},H:{"0":0},L:{"0":48.04416},R:{_:"0"},M:{"0":0.11201}};
Index: node_modules/caniuse-lite/data/regions/KY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00999,"49":0.005,"111":0.005,"134":0.04496,"140":0.09992,"143":0.14988,"144":0.33473,"145":0.56954,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 135 136 137 138 139 141 142 146 147 148 3.5 3.6"},D:{"56":0.005,"69":0.01499,"78":0.005,"79":0.02498,"81":0.00999,"87":0.00999,"92":0.005,"93":0.00999,"96":0.005,"102":0.02998,"103":0.03497,"109":0.21483,"111":0.02998,"112":0.005,"114":0.005,"116":0.28977,"120":0.00999,"122":0.03997,"125":0.55456,"126":0.00999,"127":0.00999,"129":0.00999,"130":0.01499,"131":0.03497,"132":0.04496,"133":0.005,"134":0.06994,"135":0.00999,"137":0.02998,"138":1.08413,"139":0.15987,"140":0.4946,"141":4.32654,"142":19.83912,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 80 83 84 85 86 88 89 90 91 94 95 97 98 99 100 101 104 105 106 107 108 110 113 115 117 118 119 121 123 124 128 136 143 144 145 146"},F:{"92":0.005,"120":0.005,"122":0.2548,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.005,"110":0.00999,"114":0.00999,"122":0.02998,"128":0.005,"129":0.005,"132":0.005,"133":0.05496,"134":0.005,"138":0.15488,"139":0.005,"140":0.07494,"141":1.58373,"142":8.02358,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 130 131 135 136 137 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.2 17.0 26.2","13.1":0.01998,"14.1":0.26479,"15.6":0.13489,"16.0":0.005,"16.1":0.00999,"16.3":0.01499,"16.4":0.00999,"16.5":0.005,"16.6":0.29976,"17.1":0.18985,"17.2":0.00999,"17.3":0.02498,"17.4":0.02498,"17.5":0.02498,"17.6":0.07994,"18.0":0.005,"18.1":0.00999,"18.2":0.02498,"18.3":0.07994,"18.4":0.02998,"18.5-18.6":0.17486,"26.0":0.80436,"26.1":1.09412},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0,"6.0-6.1":0.00994,"7.0-7.1":0.00745,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02236,"10.0-10.2":0.00248,"10.3":0.03976,"11.0-11.2":0.46221,"11.3-11.4":0.01491,"12.0-12.1":0.00497,"12.2-12.5":0.11679,"13.0-13.1":0,"13.2":0.01242,"13.3":0.00497,"13.4-13.7":0.02236,"14.0-14.4":0.03727,"14.5-14.8":0.04721,"15.0-15.1":0.03976,"15.2-15.3":0.0323,"15.4":0.03479,"15.5":0.03727,"15.6-15.8":0.53924,"16.0":0.06709,"16.1":0.12425,"16.2":0.06461,"16.3":0.11928,"16.4":0.02982,"16.5":0.0497,"16.6-16.7":0.7281,"17.0":0.06212,"17.1":0.07455,"17.2":0.05467,"17.3":0.07703,"17.4":0.12673,"17.5":0.24104,"17.6-17.7":0.59143,"18.0":0.1317,"18.1":0.27832,"18.2":0.1491,"18.3":0.48457,"18.4":0.2485,"18.5-18.7":17.35263,"26.0":1.19031,"26.1":1.08594},P:{"4":0.03211,"23":0.0107,"25":0.0107,"26":0.0107,"28":0.19268,"29":3.04,_:"20 21 22 24 27 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.0107,"7.2-7.4":0.0107},I:{"0":0.005,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.1001,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.06006},H:{"0":0},L:{"0":21.78922},R:{_:"0"},M:{"0":1.001}};
Index: node_modules/caniuse-lite/data/regions/KZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/KZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/KZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03294,"52":0.14494,"71":0.03294,"115":0.19105,"122":0.01318,"125":0.02635,"127":0.00659,"128":0.01318,"133":0.02635,"135":0.00659,"136":0.07247,"137":0.00659,"139":0.00659,"140":0.09882,"141":0.00659,"142":0.01318,"143":0.01976,"144":0.63245,"145":0.7115,"146":0.00659,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 123 124 126 129 130 131 132 134 138 147 148 3.5 3.6"},D:{"49":0.00659,"69":0.03294,"78":0.00659,"79":0.01318,"86":0.00659,"87":0.01318,"90":0.00659,"99":0.00659,"100":0.00659,"101":0.00659,"103":0.00659,"104":0.01318,"106":0.13835,"107":0.00659,"108":0.02635,"109":1.45595,"111":0.03953,"112":20.44915,"114":0.02635,"116":0.01976,"119":0.02635,"120":0.02635,"121":0.01318,"122":0.10541,"123":0.02635,"124":0.03953,"125":0.43481,"126":4.59184,"127":0.01318,"128":0.0527,"129":0.01976,"130":0.01318,"131":0.04612,"132":0.09223,"133":0.10541,"134":0.10541,"135":0.03953,"136":0.04612,"137":0.17129,"138":0.13176,"139":0.21082,"140":0.34916,"141":3.30059,"142":13.53175,"143":0.01976,"144":0.00659,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 80 81 83 84 85 88 89 91 92 93 94 95 96 97 98 102 105 110 113 115 117 118 145 146"},F:{"54":0.00659,"79":0.01318,"85":0.01318,"87":0.01976,"92":0.03294,"93":0.00659,"95":0.30964,"109":0.00659,"119":0.00659,"120":0.00659,"122":0.43481,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00659,"92":0.01318,"109":0.02635,"114":0.42163,"122":0.00659,"124":0.00659,"126":0.00659,"131":0.00659,"132":0.00659,"133":0.01318,"134":0.01976,"135":0.00659,"136":0.00659,"137":0.01318,"138":0.01976,"139":0.00659,"140":0.02635,"141":0.28987,"142":2.88554,"143":0.00659,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 125 127 128 129 130"},E:{"14":0.00659,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.0","5.1":0.00659,"14.1":0.00659,"15.5":0.00659,"15.6":0.06588,"16.1":0.02635,"16.2":0.01318,"16.3":0.01318,"16.4":0.00659,"16.5":0.01318,"16.6":0.06588,"17.0":0.00659,"17.1":0.0527,"17.2":0.00659,"17.3":0.01976,"17.4":0.02635,"17.5":0.04612,"17.6":0.13835,"18.0":0.01976,"18.1":0.02635,"18.2":0.02635,"18.3":0.07247,"18.4":0.0527,"18.5-18.6":0.18446,"26.0":0.25693,"26.1":0.24376,"26.2":0.00659},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00126,"5.0-5.1":0,"6.0-6.1":0.00505,"7.0-7.1":0.00379,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01137,"10.0-10.2":0.00126,"10.3":0.0202,"11.0-11.2":0.23488,"11.3-11.4":0.00758,"12.0-12.1":0.00253,"12.2-12.5":0.05935,"13.0-13.1":0,"13.2":0.00631,"13.3":0.00253,"13.4-13.7":0.01137,"14.0-14.4":0.01894,"14.5-14.8":0.02399,"15.0-15.1":0.0202,"15.2-15.3":0.01642,"15.4":0.01768,"15.5":0.01894,"15.6-15.8":0.27402,"16.0":0.0341,"16.1":0.06314,"16.2":0.03283,"16.3":0.06061,"16.4":0.01515,"16.5":0.02526,"16.6-16.7":0.36999,"17.0":0.03157,"17.1":0.03788,"17.2":0.02778,"17.3":0.03915,"17.4":0.0644,"17.5":0.12249,"17.6-17.7":0.30054,"18.0":0.06693,"18.1":0.14143,"18.2":0.07577,"18.3":0.24624,"18.4":0.12628,"18.5-18.7":8.818,"26.0":0.60487,"26.1":0.55184},P:{"4":0.20873,"21":0.02087,"22":0.01044,"23":0.01044,"24":0.02087,"25":0.01044,"26":0.03131,"27":0.04175,"28":0.17742,"29":0.86625,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02087},I:{"0":0.01704,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.41285,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.02353,"8":0.02353,"11":0.11764,_:"7 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01024},O:{"0":0.46403},H:{"0":0},L:{"0":19.51179},R:{_:"0"},M:{"0":0.0853}};
Index: node_modules/caniuse-lite/data/regions/LA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"38":0.01663,"101":0.00333,"104":0.00333,"115":0.03326,"125":0.00998,"130":0.00333,"133":0.00333,"135":0.00333,"138":0.00665,"140":0.00665,"142":0.00333,"143":0.00665,"144":0.153,"145":0.14967,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 128 129 131 132 134 136 137 139 141 146 147 148 3.5 3.6"},D:{"48":0.03326,"56":0.00333,"69":0.00333,"70":0.00998,"71":0.00333,"77":0.00333,"79":0.00333,"83":0.01996,"87":0.00998,"88":0.00333,"90":0.00333,"91":0.00333,"97":0.00333,"98":0.00665,"99":0.00333,"104":0.04324,"108":0.00333,"109":0.27938,"111":0.00333,"114":0.0133,"115":0.00333,"116":0.02661,"117":0.00333,"118":0.00333,"119":0.00665,"120":0.00333,"121":0.00333,"122":0.0133,"123":0.00665,"124":0.01663,"125":0.11974,"126":0.0133,"127":0.00998,"128":0.02993,"129":0.00333,"130":0.0133,"131":0.09978,"132":0.10976,"133":0.06985,"134":8.59438,"135":0.03659,"136":0.02328,"137":0.04989,"138":0.20621,"139":2.77721,"140":0.10643,"141":1.43018,"142":5.33823,"143":0.0133,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 72 73 74 75 76 78 80 81 84 85 86 89 92 93 94 95 96 100 101 102 103 105 106 107 110 112 113 144 145 146"},F:{"84":0.00333,"89":0.00333,"92":0.02328,"93":0.00333,"95":0.00333,"119":0.00333,"120":0.00333,"122":0.03659,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 88 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00333,"17":0.00333,"18":0.01663,"92":0.01663,"109":0.00998,"114":0.05987,"119":0.00333,"120":0.00333,"122":0.00333,"128":0.00333,"131":0.00998,"132":0.03326,"134":0.00333,"135":0.00333,"136":0.00333,"137":0.00333,"138":0.00333,"139":0.00665,"140":0.01663,"141":0.13969,"142":1.34703,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 121 123 124 125 126 127 129 130 133 143"},E:{"4":0.00333,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.0 16.1 16.2 17.2 26.2","13.1":0.00665,"14.1":0.00333,"15.4":0.00665,"15.6":0.03659,"16.3":0.00665,"16.4":0.00333,"16.5":0.00333,"16.6":0.04656,"17.0":0.00333,"17.1":0.0133,"17.3":0.00333,"17.4":0.00665,"17.5":0.00665,"17.6":0.01996,"18.0":0.00333,"18.1":0.00333,"18.2":0.00333,"18.3":0.00998,"18.4":0.00665,"18.5-18.6":0.03326,"26.0":0.05987,"26.1":0.0898},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00177,"5.0-5.1":0,"6.0-6.1":0.00707,"7.0-7.1":0.0053,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01591,"10.0-10.2":0.00177,"10.3":0.02828,"11.0-11.2":0.32871,"11.3-11.4":0.0106,"12.0-12.1":0.00353,"12.2-12.5":0.08306,"13.0-13.1":0,"13.2":0.00884,"13.3":0.00353,"13.4-13.7":0.01591,"14.0-14.4":0.02651,"14.5-14.8":0.03358,"15.0-15.1":0.02828,"15.2-15.3":0.02297,"15.4":0.02474,"15.5":0.02651,"15.6-15.8":0.3835,"16.0":0.04772,"16.1":0.08836,"16.2":0.04595,"16.3":0.08483,"16.4":0.02121,"16.5":0.03535,"16.6-16.7":0.51781,"17.0":0.04418,"17.1":0.05302,"17.2":0.03888,"17.3":0.05479,"17.4":0.09013,"17.5":0.17143,"17.6-17.7":0.42061,"18.0":0.09367,"18.1":0.19793,"18.2":0.10604,"18.3":0.34462,"18.4":0.17673,"18.5-18.7":12.34088,"26.0":0.84652,"26.1":0.7723},P:{"4":0.0308,"20":0.01027,"21":0.01027,"22":0.0308,"23":0.04107,"24":0.02054,"25":0.07187,"26":0.08214,"27":0.14375,"28":0.61606,"29":1.43748,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.15402,"11.1-11.2":0.01027,"17.0":0.01027},I:{"0":0.02666,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.30033,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0898,"9":0.01796,"10":0.03592,"11":0.03592,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.04004},O:{"0":0.40044},H:{"0":0},L:{"0":55.09091},R:{_:"0"},M:{"0":0.1535}};
Index: node_modules/caniuse-lite/data/regions/LB.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LB.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LB.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0285,"52":0.0057,"115":0.1026,"128":0.0057,"140":0.0114,"142":0.0171,"143":0.0342,"144":0.3477,"145":0.4674,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"38":0.0114,"49":0.0114,"56":0.0057,"60":0.0057,"65":0.0057,"69":0.0399,"73":0.0057,"79":0.0114,"80":0.0057,"83":0.0114,"84":0.0171,"85":0.0057,"86":0.0057,"87":0.0228,"89":0.0057,"91":0.0057,"94":0.0057,"96":0.0057,"98":0.0285,"99":0.0057,"100":0.0057,"103":0.0114,"107":0.0057,"108":0.0228,"109":0.7923,"110":0.0057,"111":0.0342,"112":23.2446,"114":0.0057,"116":0.0627,"118":0.0057,"119":0.0114,"120":0.0456,"121":0.0057,"122":0.0969,"123":0.0228,"124":0.0171,"125":0.4446,"126":3.2205,"127":0.0114,"128":0.0228,"129":0.0114,"130":0.0057,"131":0.0741,"132":0.057,"133":0.0228,"134":0.0342,"135":0.0456,"136":0.0342,"137":0.0399,"138":0.3363,"139":0.1482,"140":0.342,"141":3.3174,"142":9.975,"143":0.0171,"144":0.0057,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 61 62 63 64 66 67 68 70 71 72 74 75 76 77 78 81 88 90 92 93 95 97 101 102 104 105 106 113 115 117 145 146"},F:{"92":0.0513,"93":0.0342,"95":0.0228,"117":0.0057,"122":0.1995,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0114,"92":0.0171,"109":0.0114,"114":0.7752,"122":0.0057,"133":0.0057,"134":0.0057,"135":0.0114,"136":0.0057,"137":0.0057,"138":0.0114,"139":0.0057,"140":0.0171,"141":0.2451,"142":2.1603,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 131 132 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.4","5.1":0.0228,"13.1":0.0057,"14.1":0.0114,"15.6":0.2109,"16.1":0.0057,"16.2":0.0057,"16.3":0.0057,"16.5":0.0057,"16.6":0.0912,"17.0":0.0114,"17.1":0.0513,"17.2":0.0057,"17.3":0.0057,"17.4":0.0171,"17.5":0.0171,"17.6":0.0513,"18.0":0.0057,"18.1":0.0114,"18.2":0.0171,"18.3":0.0285,"18.4":0.0057,"18.5-18.6":0.1197,"26.0":0.1539,"26.1":0.2166,"26.2":0.0057},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.001,"5.0-5.1":0,"6.0-6.1":0.00401,"7.0-7.1":0.00301,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00902,"10.0-10.2":0.001,"10.3":0.01603,"11.0-11.2":0.18639,"11.3-11.4":0.00601,"12.0-12.1":0.002,"12.2-12.5":0.0471,"13.0-13.1":0,"13.2":0.00501,"13.3":0.002,"13.4-13.7":0.00902,"14.0-14.4":0.01503,"14.5-14.8":0.01904,"15.0-15.1":0.01603,"15.2-15.3":0.01303,"15.4":0.01403,"15.5":0.01503,"15.6-15.8":0.21746,"16.0":0.02706,"16.1":0.0501,"16.2":0.02605,"16.3":0.0481,"16.4":0.01203,"16.5":0.02004,"16.6-16.7":0.29361,"17.0":0.02505,"17.1":0.03006,"17.2":0.02205,"17.3":0.03107,"17.4":0.05111,"17.5":0.0972,"17.6-17.7":0.2385,"18.0":0.05311,"18.1":0.11223,"18.2":0.06013,"18.3":0.19541,"18.4":0.10021,"18.5-18.7":6.99764,"26.0":0.48,"26.1":0.43792},P:{"4":0.02068,"20":0.01034,"21":0.02068,"22":0.02068,"23":0.0517,"24":0.08272,"25":0.19645,"26":0.09306,"27":0.18611,"28":0.50664,"29":2.66763,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 16.0 18.0","6.2-6.4":0.01034,"7.2-7.4":0.1034,"15.0":0.02068,"17.0":0.03102,"19.0":0.01034},I:{"0":0.02146,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.26224,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0798,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.12467},H:{"0":0},L:{"0":35.28577},R:{_:"0"},M:{"0":0.12467}};
Index: node_modules/caniuse-lite/data/regions/LC.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03643,"67":0.00405,"115":0.00405,"119":0.00405,"126":0.0081,"128":0.00405,"140":0.01214,"141":0.0081,"143":0.04048,"144":1.62325,"145":1.3156,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 120 121 122 123 124 125 127 129 130 131 132 133 134 135 136 137 138 139 142 146 147 148 3.5 3.6"},D:{"69":0.03238,"74":0.00405,"79":0.00405,"86":0.01619,"87":0.00405,"88":0.00405,"91":0.00405,"93":0.01619,"97":0.00405,"103":0.02024,"109":0.16597,"111":0.04858,"112":0.02024,"116":0.00405,"119":0.0081,"120":0.00405,"122":0.02024,"124":0.0081,"125":0.75698,"126":0.07691,"127":0.02429,"128":0.02024,"130":0.0081,"131":0.02429,"132":0.06477,"133":0.0081,"134":0.00405,"135":0.01214,"136":0.01619,"137":0.06477,"138":0.07691,"139":0.07286,"140":0.32789,"141":5.1612,"142":14.69424,"143":0.05262,"144":0.02429,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 75 76 77 78 80 81 83 84 85 89 90 92 94 95 96 98 99 100 101 102 104 105 106 107 108 110 113 114 115 117 118 121 123 129 145 146"},F:{"90":0.00405,"91":0.00405,"93":0.01214,"122":0.45338,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 92 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00405,"114":0.18216,"122":0.00405,"126":0.00405,"127":0.00405,"128":0.00405,"130":0.05262,"131":0.0081,"132":0.00405,"134":0.2024,"135":0.00405,"136":0.0081,"137":0.00405,"138":0.1012,"139":0.00405,"140":0.06882,"141":0.72864,"142":5.04786,"143":0.00405,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 123 124 125 129 133"},E:{"14":0.02024,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 17.0 17.3","13.1":0.01214,"14.1":0.00405,"15.6":0.06072,"16.1":0.00405,"16.4":0.00405,"16.5":0.00405,"16.6":0.13358,"17.1":0.02834,"17.2":0.00405,"17.4":0.01214,"17.5":0.04453,"17.6":0.06072,"18.0":0.00405,"18.1":0.0081,"18.2":0.04453,"18.3":0.01619,"18.4":0.03238,"18.5-18.6":0.15787,"26.0":0.13358,"26.1":0.29955,"26.2":0.00405},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0016,"5.0-5.1":0,"6.0-6.1":0.00639,"7.0-7.1":0.00479,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01437,"10.0-10.2":0.0016,"10.3":0.02555,"11.0-11.2":0.29698,"11.3-11.4":0.00958,"12.0-12.1":0.00319,"12.2-12.5":0.07504,"13.0-13.1":0,"13.2":0.00798,"13.3":0.00319,"13.4-13.7":0.01437,"14.0-14.4":0.02395,"14.5-14.8":0.03034,"15.0-15.1":0.02555,"15.2-15.3":0.02076,"15.4":0.02235,"15.5":0.02395,"15.6-15.8":0.34647,"16.0":0.04311,"16.1":0.07983,"16.2":0.04151,"16.3":0.07664,"16.4":0.01916,"16.5":0.03193,"16.6-16.7":0.46782,"17.0":0.03992,"17.1":0.0479,"17.2":0.03513,"17.3":0.0495,"17.4":0.08143,"17.5":0.15488,"17.6-17.7":0.38,"18.0":0.08462,"18.1":0.17883,"18.2":0.0958,"18.3":0.31135,"18.4":0.15967,"18.5-18.7":11.14943,"26.0":0.7648,"26.1":0.69774},P:{"4":0.01035,"22":0.01035,"23":0.01035,"24":0.04142,"25":0.04142,"26":0.04142,"27":0.04142,"28":0.3831,"29":4.17265,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.09319,"11.1-11.2":0.01035},I:{"0":0.01189,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.18448,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0119},H:{"0":0},L:{"0":43.35346},R:{_:"0"},M:{"0":0.39872}};
Index: node_modules/caniuse-lite/data/regions/LI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"3":0.14316,"115":0.93393,"127":0.01363,"128":0.01363,"133":0.07499,"134":0.02727,"135":0.02727,"136":0.03409,"137":0.00682,"138":0.00682,"139":0.00682,"140":0.25905,"142":0.14316,"143":0.00682,"144":3.10855,"145":4.26744,"146":0.02045,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 141 147 148 3.5 3.6"},D:{"48":1.47929,"68":0.00682,"96":0.02727,"98":0.01363,"99":0.00682,"102":0.00682,"104":0.12271,"109":0.31358,"112":0.00682,"114":0.01363,"115":0.00682,"116":0.04772,"117":0.00682,"118":0.03409,"119":0.02727,"120":0.02045,"122":0.02727,"124":0.83167,"125":0.07499,"126":0.05454,"127":0.03409,"128":0.00682,"129":0.00682,"130":0.00682,"131":1.19298,"132":0.17043,"133":0.33403,"134":0.83167,"135":0.52491,"136":0.49082,"137":0.14316,"138":1.13162,"139":0.08862,"140":0.57263,"141":4.47195,"142":13.75671,"144":0.01363,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 97 100 101 103 105 106 107 108 110 111 113 121 123 143 145 146"},F:{"114":0.34767,"116":0.19769,"118":0.01363,"119":0.00682,"122":0.44992,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 117 120 121 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1","9.5-9.6":0.00682},B:{"109":0.01363,"123":0.00682,"131":0.14997,"132":0.08862,"133":0.05454,"134":0.06135,"135":0.04772,"136":0.0409,"137":0.08862,"138":0.3204,"140":0.3204,"141":0.75669,"142":9.8233,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 124 125 126 127 128 129 130 139 143"},E:{"4":0.22496,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.2-15.3 15.4 16.1 16.2 16.4 17.3 18.0","15.1":0.00682,"15.5":0.01363,"15.6":0.19088,"16.0":0.02727,"16.3":0.43629,"16.5":0.01363,"16.6":0.12952,"17.0":0.00682,"17.1":0.25905,"17.2":0.02045,"17.4":0.03409,"17.5":0.01363,"17.6":0.25905,"18.1":0.02045,"18.2":0.11589,"18.3":0.43629,"18.4":0.02727,"18.5-18.6":0.31358,"26.0":0.79077,"26.1":0.33403,"26.2":0.02045},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00187,"5.0-5.1":0,"6.0-6.1":0.00749,"7.0-7.1":0.00562,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01686,"10.0-10.2":0.00187,"10.3":0.02997,"11.0-11.2":0.34841,"11.3-11.4":0.01124,"12.0-12.1":0.00375,"12.2-12.5":0.08804,"13.0-13.1":0,"13.2":0.00937,"13.3":0.00375,"13.4-13.7":0.01686,"14.0-14.4":0.0281,"14.5-14.8":0.03559,"15.0-15.1":0.02997,"15.2-15.3":0.02435,"15.4":0.02622,"15.5":0.0281,"15.6-15.8":0.40648,"16.0":0.05058,"16.1":0.09366,"16.2":0.0487,"16.3":0.08991,"16.4":0.02248,"16.5":0.03746,"16.6-16.7":0.54885,"17.0":0.04683,"17.1":0.0562,"17.2":0.04121,"17.3":0.05807,"17.4":0.09553,"17.5":0.1817,"17.6-17.7":0.44582,"18.0":0.09928,"18.1":0.2098,"18.2":0.11239,"18.3":0.36527,"18.4":0.18732,"18.5-18.7":13.08052,"26.0":0.89726,"26.1":0.81859},P:{"28":0.0416,"29":1.63266,_:"4 20 21 22 23 24 25 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.00954,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.1687,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.72266,"7":0.83829,"8":2.79429,"9":0.7612,"10":1.51277,"11":0.10599,_:"5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00955},H:{"0":0},L:{"0":9.87829},R:{_:"0"},M:{"0":0.74801}};
Index: node_modules/caniuse-lite/data/regions/LK.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.11746,"127":0.00734,"128":0.00734,"140":0.02936,"141":0.00734,"142":0.03671,"143":0.00734,"144":0.43312,"145":0.49919,"146":0.00734,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 134 135 136 137 138 139 147 148 3.5 3.6"},D:{"63":0.00734,"64":0.00734,"70":0.00734,"71":0.00734,"74":0.00734,"76":0.00734,"79":0.00734,"80":0.00734,"86":0.00734,"87":0.00734,"93":0.00734,"94":0.00734,"100":0.00734,"103":0.03671,"106":0.00734,"108":0.00734,"109":0.70474,"111":0.01468,"112":0.70474,"113":0.00734,"114":0.00734,"116":0.01468,"119":0.00734,"120":0.00734,"121":0.00734,"122":0.02202,"123":0.02202,"124":0.01468,"125":0.04405,"126":0.10277,"127":0.02936,"128":0.02202,"129":0.02202,"130":0.01468,"131":0.05873,"132":0.02202,"133":0.01468,"134":0.02202,"135":0.05139,"136":0.05139,"137":0.05139,"138":0.14682,"139":0.10277,"140":0.41844,"141":2.95108,"142":11.76762,"143":0.05139,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 65 66 67 68 69 72 73 75 77 78 81 83 84 85 88 89 90 91 92 95 96 97 98 99 101 102 104 105 107 110 115 117 118 144 145 146"},F:{"90":0.01468,"91":0.00734,"92":0.08809,"95":0.06607,"120":0.00734,"122":0.13948,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01468,"92":0.02936,"109":0.00734,"114":0.01468,"122":0.01468,"131":0.00734,"134":0.00734,"135":0.00734,"136":0.00734,"137":0.00734,"138":0.01468,"139":0.07341,"140":0.1248,"141":3.73657,"142":43.52479,"143":0.00734,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 132 133"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 17.0 17.2 17.3 26.2","15.6":0.01468,"16.3":0.00734,"16.5":0.00734,"16.6":0.01468,"17.1":0.00734,"17.4":0.00734,"17.5":0.01468,"17.6":0.02202,"18.0":0.00734,"18.1":0.00734,"18.2":0.00734,"18.3":0.01468,"18.4":0.00734,"18.5-18.6":0.02936,"26.0":0.05139,"26.1":0.04405},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00033,"5.0-5.1":0,"6.0-6.1":0.00133,"7.0-7.1":0.001,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.003,"10.0-10.2":0.00033,"10.3":0.00534,"11.0-11.2":0.06207,"11.3-11.4":0.002,"12.0-12.1":0.00067,"12.2-12.5":0.01568,"13.0-13.1":0,"13.2":0.00167,"13.3":0.00067,"13.4-13.7":0.003,"14.0-14.4":0.00501,"14.5-14.8":0.00634,"15.0-15.1":0.00534,"15.2-15.3":0.00434,"15.4":0.00467,"15.5":0.00501,"15.6-15.8":0.07241,"16.0":0.00901,"16.1":0.01669,"16.2":0.00868,"16.3":0.01602,"16.4":0.004,"16.5":0.00667,"16.6-16.7":0.09778,"17.0":0.00834,"17.1":0.01001,"17.2":0.00734,"17.3":0.01034,"17.4":0.01702,"17.5":0.03237,"17.6-17.7":0.07942,"18.0":0.01769,"18.1":0.03737,"18.2":0.02002,"18.3":0.06507,"18.4":0.03337,"18.5-18.7":2.33026,"26.0":0.15984,"26.1":0.14583},P:{"4":0.02061,"20":0.0103,"21":0.02061,"22":0.03091,"23":0.03091,"24":0.04121,"25":0.11334,"26":0.07213,"27":0.09273,"28":0.31941,"29":0.39154,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0","7.2-7.4":0.19577,"11.1-11.2":0.0103,"13.0":0.0103,"17.0":0.0103,"18.0":0.0103,"19.0":0.02061},I:{"0":0.01062,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.71527,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00734,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.35631},H:{"0":0},L:{"0":25.6763},R:{_:"0"},M:{"0":0.07179}};
Index: node_modules/caniuse-lite/data/regions/LR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"53":0.00579,"57":0.00869,"58":0.0029,"65":0.0029,"72":0.00579,"85":0.0029,"93":0.0029,"106":0.0029,"108":0.00579,"112":0.00579,"115":0.01448,"127":0.01448,"138":0.01158,"140":0.03475,"141":0.0029,"142":0.02606,"143":0.00869,"144":0.23458,"145":0.22589,"146":0.0029,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 102 103 104 105 107 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 128 129 130 131 132 133 134 135 136 137 139 147 148 3.5 3.6"},D:{"47":0.00579,"57":0.0029,"64":0.0029,"67":0.01448,"68":0.00869,"69":0.00579,"70":0.03186,"71":0.01738,"72":0.00869,"75":0.01158,"77":0.00869,"79":0.02027,"81":0.00579,"83":0.01158,"88":0.0029,"91":0.00869,"92":0.02606,"93":0.01738,"94":0.00869,"96":0.02317,"99":0.0029,"100":0.00579,"103":0.02027,"104":0.02896,"105":0.00869,"106":0.0029,"108":0.0029,"109":0.13611,"110":0.04923,"111":0.02606,"113":0.0029,"114":0.04344,"116":0.05502,"117":0.0029,"119":0.01738,"120":0.02896,"122":0.03186,"123":0.00869,"124":0.00869,"125":0.12453,"126":0.06082,"127":0.00579,"128":0.03186,"129":0.02606,"131":0.08109,"132":0.01448,"133":0.00579,"134":0.02606,"135":0.03186,"136":0.02027,"137":0.03475,"138":0.08398,"139":0.10136,"140":0.41702,"141":1.83317,"142":3.78797,"143":0.0029,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 65 66 73 74 76 78 80 84 85 86 87 89 90 95 97 98 101 102 107 112 115 118 121 130 144 145 146"},F:{"21":0.0029,"36":0.02317,"37":0.0029,"68":0.0029,"79":0.03186,"90":0.04634,"91":0.02606,"92":0.18534,"93":0.02606,"95":0.03475,"108":0.00579,"113":0.0029,"114":0.00579,"119":0.00579,"120":0.01448,"122":0.16797,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 94 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02606,"13":0.0029,"14":0.0029,"15":0.0029,"16":0.00869,"17":0.02896,"18":0.2172,"84":0.01158,"90":0.02027,"92":0.08688,"97":0.01158,"100":0.00869,"103":0.0029,"109":0.0029,"113":0.0029,"114":0.07819,"118":0.0029,"120":0.0029,"122":0.01448,"124":0.0029,"126":0.0029,"127":0.0029,"128":0.00579,"129":0.00579,"130":0.0029,"131":0.01448,"132":0.0029,"133":0.00579,"134":0.01158,"135":0.01738,"136":0.01448,"137":0.01448,"138":0.01738,"139":0.03765,"140":0.08688,"141":0.52128,"142":2.88152,"143":0.05792,_:"79 80 81 83 85 86 87 88 89 91 93 94 95 96 98 99 101 102 104 105 106 107 108 110 111 112 115 116 117 119 121 123 125"},E:{"12":0.0029,"13":0.0029,"14":0.01158,"15":0.01158,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.0 16.2 16.3 16.4 17.0 17.2 17.3 17.4 18.0 18.1 18.2 18.4 26.2","13.1":0.01158,"14.1":0.0029,"15.4":0.01738,"15.6":0.05502,"16.1":0.00869,"16.5":0.0029,"16.6":0.00579,"17.1":0.00579,"17.5":0.00869,"17.6":0.30408,"18.3":0.0029,"18.5-18.6":0.01738,"26.0":0.02606,"26.1":0.03475},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00058,"5.0-5.1":0,"6.0-6.1":0.00234,"7.0-7.1":0.00175,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00526,"10.0-10.2":0.00058,"10.3":0.00934,"11.0-11.2":0.10863,"11.3-11.4":0.0035,"12.0-12.1":0.00117,"12.2-12.5":0.02745,"13.0-13.1":0,"13.2":0.00292,"13.3":0.00117,"13.4-13.7":0.00526,"14.0-14.4":0.00876,"14.5-14.8":0.0111,"15.0-15.1":0.00934,"15.2-15.3":0.00759,"15.4":0.00818,"15.5":0.00876,"15.6-15.8":0.12673,"16.0":0.01577,"16.1":0.0292,"16.2":0.01518,"16.3":0.02803,"16.4":0.00701,"16.5":0.01168,"16.6-16.7":0.17112,"17.0":0.0146,"17.1":0.01752,"17.2":0.01285,"17.3":0.0181,"17.4":0.02979,"17.5":0.05665,"17.6-17.7":0.139,"18.0":0.03095,"18.1":0.06541,"18.2":0.03504,"18.3":0.11389,"18.4":0.0584,"18.5-18.7":4.07829,"26.0":0.27975,"26.1":0.25522},P:{"22":0.02068,"24":0.02068,"25":0.03103,"26":0.01034,"27":0.20683,"28":0.22752,"29":0.34128,_:"4 20 21 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0 17.0 18.0 19.0","7.2-7.4":0.01034,"11.1-11.2":0.01034,"13.0":0.01034,"14.0":0.01034,"16.0":0.03103},I:{"0":0.01419,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":2.86682,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00579,"11":0.00579,_:"6 7 8 9 5.5"},N:{_:"10 11"},S:{"2.5":0.00711,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.39078},H:{"0":4.97},L:{"0":69.97167},R:{_:"0"},M:{"0":0.38367}};
Index: node_modules/caniuse-lite/data/regions/LS.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"43":0.00409,"88":0.00409,"115":0.02046,"128":0.01227,"140":0.03273,"141":0.01636,"142":0.00409,"144":0.15137,"145":0.24955,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 137 138 139 143 146 147 148 3.5 3.6"},D:{"63":0.00409,"69":0.00409,"71":0.00409,"75":0.00409,"76":0.00409,"79":0.00818,"80":0.00409,"83":0.01636,"86":0.02864,"90":0.00409,"96":0.00409,"99":0.00409,"103":0.02046,"104":0.00409,"106":0.00409,"108":0.00409,"109":0.50728,"111":0.02455,"112":0.03273,"113":0.00409,"114":0.00409,"115":0.00409,"116":0.01227,"117":0.00818,"119":0.00409,"120":0.01227,"121":0.01227,"122":0.01227,"123":0.00409,"124":0.05318,"125":0.09818,"126":0.00818,"127":0.03273,"128":0.00409,"129":0.00409,"131":0.06137,"132":0.045,"133":0.02046,"134":0.02864,"135":0.02046,"136":0.01636,"137":0.03682,"138":0.09,"139":0.05727,"140":0.23319,"141":2.45869,"142":8.21064,"143":0.4541,"144":0.37228,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 72 73 74 77 78 81 84 85 87 88 89 91 92 93 94 95 97 98 100 101 102 105 107 110 118 130 145 146"},F:{"38":0.00409,"45":0.00409,"79":0.00409,"82":0.00818,"91":0.00409,"92":0.37228,"93":0.04909,"95":0.18,"120":0.00818,"122":0.135,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00409,"17":0.00409,"18":0.01636,"88":0.00409,"92":0.02046,"100":0.01636,"109":0.02046,"114":0.03682,"120":0.00409,"128":0.00409,"131":0.00818,"132":0.00409,"133":0.00409,"135":0.00409,"136":0.00818,"137":0.03273,"138":0.01636,"139":0.02046,"140":0.05318,"141":0.51547,"142":3.05189,_:"13 14 15 16 79 80 81 83 84 85 86 87 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 122 123 124 125 126 127 129 130 134 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 17.4 17.5 18.0 18.4 26.2","13.1":0.00409,"15.6":0.01227,"16.6":0.00818,"17.1":0.00818,"17.6":0.01227,"18.1":0.00409,"18.2":0.00818,"18.3":0.00409,"18.5-18.6":0.03682,"26.0":0.02455,"26.1":0.00818},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00035,"5.0-5.1":0,"6.0-6.1":0.00139,"7.0-7.1":0.00104,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00312,"10.0-10.2":0.00035,"10.3":0.00555,"11.0-11.2":0.06452,"11.3-11.4":0.00208,"12.0-12.1":0.00069,"12.2-12.5":0.0163,"13.0-13.1":0,"13.2":0.00173,"13.3":0.00069,"13.4-13.7":0.00312,"14.0-14.4":0.0052,"14.5-14.8":0.00659,"15.0-15.1":0.00555,"15.2-15.3":0.00451,"15.4":0.00486,"15.5":0.0052,"15.6-15.8":0.07527,"16.0":0.00937,"16.1":0.01734,"16.2":0.00902,"16.3":0.01665,"16.4":0.00416,"16.5":0.00694,"16.6-16.7":0.10163,"17.0":0.00867,"17.1":0.01041,"17.2":0.00763,"17.3":0.01075,"17.4":0.01769,"17.5":0.03365,"17.6-17.7":0.08255,"18.0":0.01838,"18.1":0.03885,"18.2":0.02081,"18.3":0.06764,"18.4":0.03469,"18.5-18.7":2.42211,"26.0":0.16615,"26.1":0.15158},P:{"4":0.39461,"22":0.07083,"23":0.02024,"24":0.15177,"25":0.14166,"26":0.08095,"27":0.2226,"28":0.45532,"29":2.49923,_:"20 21 6.2-6.4 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","5.0-5.4":0.01012,"7.2-7.4":0.2226,"8.2":0.01012,"13.0":0.01012,"17.0":0.02024,"18.0":0.01012,"19.0":0.18213},I:{"0":0.0118,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":2.90904,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.23728,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01182},O:{"0":0.25409},H:{"0":0.27},L:{"0":68.86884},R:{_:"0"},M:{"0":0.07091}};
Index: node_modules/caniuse-lite/data/regions/LT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.00565,"77":0.00565,"106":0.00565,"115":0.32177,"125":0.00565,"128":0.01694,"129":0.00565,"130":0.01129,"132":0.01129,"133":0.00565,"134":0.01129,"135":0.00565,"136":0.01129,"137":0.00565,"138":0.00565,"139":0.02823,"140":0.13548,"141":0.02823,"142":0.02258,"143":0.07903,"144":1.3548,"145":1.84592,"146":0.01129,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 131 147 148 3.5 3.6"},D:{"39":0.06774,"40":0.07339,"41":0.0621,"42":0.06774,"43":0.06774,"44":0.06774,"45":0.0621,"46":0.06774,"47":0.06774,"48":0.06774,"49":0.06774,"50":0.07339,"51":0.06774,"52":0.06774,"53":0.06774,"54":0.06774,"55":0.06774,"56":0.06774,"57":0.06774,"58":0.06774,"59":0.06774,"60":0.06774,"79":0.10726,"81":0.00565,"85":0.05081,"87":0.02258,"88":0.18629,"90":0.01129,"91":0.00565,"92":0.00565,"98":0.01694,"102":0.00565,"103":0.01129,"104":0.03387,"105":0.00565,"106":0.02823,"107":0.00565,"108":0.03387,"109":0.77901,"110":0.00565,"111":0.00565,"112":0.01694,"113":0.04516,"114":0.15806,"115":0.16935,"116":0.2258,"117":0.01129,"118":0.01129,"119":0.02823,"120":0.73385,"121":8.78362,"122":0.28225,"123":0.01129,"124":0.05081,"125":0.07903,"126":0.03387,"127":0.01694,"128":0.02823,"129":0.16371,"130":0.02823,"131":0.32177,"132":0.03387,"133":0.05081,"134":0.07903,"135":0.03952,"136":0.07903,"137":0.13548,"138":0.25967,"139":1.63705,"140":0.41773,"141":4.09263,"142":17.22854,"143":0.03952,"144":0.00565,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 86 89 93 94 95 96 97 99 100 101 145 146"},F:{"92":0.02823,"93":0.00565,"95":0.03387,"102":0.00565,"114":0.00565,"119":0.00565,"120":0.01129,"121":0.00565,"122":1.11207,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.03387,"92":0.00565,"109":0.03952,"114":0.00565,"120":0.00565,"122":0.00565,"123":0.01129,"130":0.00565,"131":0.01694,"132":0.02823,"133":0.00565,"134":0.00565,"135":0.00565,"136":0.00565,"137":0.01129,"138":0.01694,"139":0.02258,"140":0.06774,"141":0.41209,"142":3.7257,"143":0.00565,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 124 125 126 127 128 129"},E:{"10":0.00565,"11":0.01129,"14":0.00565,"15":0.00565,_:"0 4 5 6 7 8 9 12 13 3.1 3.2 5.1 6.1 7.1 9.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0","10.1":0.01694,"13.1":0.00565,"14.1":0.01129,"15.5":0.00565,"15.6":0.0621,"16.1":0.00565,"16.2":0.00565,"16.3":0.01129,"16.4":0.01129,"16.5":0.00565,"16.6":0.06774,"17.0":0.00565,"17.1":0.02823,"17.2":0.00565,"17.3":0.01694,"17.4":0.03952,"17.5":0.03387,"17.6":0.15806,"18.0":0.01129,"18.1":0.05645,"18.2":0.00565,"18.3":0.05081,"18.4":0.01694,"18.5-18.6":0.08468,"26.0":0.20322,"26.1":0.28225,"26.2":0.01694},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.001,"5.0-5.1":0,"6.0-6.1":0.00401,"7.0-7.1":0.00301,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00903,"10.0-10.2":0.001,"10.3":0.01605,"11.0-11.2":0.18655,"11.3-11.4":0.00602,"12.0-12.1":0.00201,"12.2-12.5":0.04714,"13.0-13.1":0,"13.2":0.00501,"13.3":0.00201,"13.4-13.7":0.00903,"14.0-14.4":0.01504,"14.5-14.8":0.01906,"15.0-15.1":0.01605,"15.2-15.3":0.01304,"15.4":0.01404,"15.5":0.01504,"15.6-15.8":0.21764,"16.0":0.02708,"16.1":0.05015,"16.2":0.02608,"16.3":0.04814,"16.4":0.01204,"16.5":0.02006,"16.6-16.7":0.29387,"17.0":0.02507,"17.1":0.03009,"17.2":0.02207,"17.3":0.03109,"17.4":0.05115,"17.5":0.09729,"17.6-17.7":0.2387,"18.0":0.05316,"18.1":0.11233,"18.2":0.06018,"18.3":0.19558,"18.4":0.1003,"18.5-18.7":7.00365,"26.0":0.48042,"26.1":0.43829},P:{"4":0.04097,"22":0.01024,"23":0.01024,"24":0.02049,"25":0.02049,"26":0.05122,"27":0.04097,"28":0.24584,"29":1.70041,_:"20 21 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01024,"7.2-7.4":0.03073},I:{"0":0.0174,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.44421,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.00706,"11":0.02117,_:"6 7 8 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01307},H:{"0":0},L:{"0":31.56745},R:{_:"0"},M:{"0":0.38324}};
Index: node_modules/caniuse-lite/data/regions/LU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"50":0.0072,"52":0.0072,"60":0.05039,"68":0.0072,"78":0.10079,"91":0.0216,"102":0.07919,"104":0.0144,"108":0.06479,"115":0.25916,"125":0.0144,"128":0.33115,"133":0.0144,"134":0.0072,"135":0.0072,"136":0.06479,"137":0.0072,"139":0.05759,"140":2.9084,"141":0.0072,"142":0.30236,"143":0.08639,"144":1.87894,"145":2.30368,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 105 106 107 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 138 146 147 148 3.5 3.6"},D:{"66":0.0216,"77":0.05759,"79":0.07199,"87":0.0144,"88":0.0072,"92":0.0072,"102":0.0072,"103":0.0288,"104":0.0072,"108":0.05039,"109":0.47513,"111":0.0072,"112":0.0144,"114":0.23037,"116":0.14398,"117":0.0072,"118":0.7199,"119":0.0216,"120":0.0216,"121":0.0144,"122":0.06479,"123":0.0072,"124":0.0072,"125":25.10291,"126":0.0144,"127":0.0072,"128":0.07199,"130":0.036,"131":0.07199,"132":0.0288,"133":0.05759,"134":0.12238,"135":0.0288,"136":0.10079,"137":0.07199,"138":0.20877,"139":0.07919,"140":0.66231,"141":5.14729,"142":10.91368,"143":0.05039,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 78 80 81 83 84 85 86 89 90 91 93 94 95 96 97 98 99 100 101 105 106 107 110 113 115 129 144 145 146"},F:{"79":0.0072,"81":0.0072,"82":0.0072,"84":0.0072,"85":0.0072,"86":0.0072,"89":0.0072,"90":0.0072,"92":0.04319,"93":0.0072,"95":0.0216,"96":0.036,"114":0.0072,"116":0.0144,"117":0.036,"122":0.53273,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 87 88 91 94 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"102":0.0144,"103":0.0144,"104":0.0072,"105":0.0144,"108":0.0216,"109":0.0144,"120":0.0144,"122":0.0144,"131":0.0288,"132":0.0072,"133":0.0216,"134":0.036,"135":0.0144,"136":0.0072,"137":0.0072,"138":0.036,"139":0.0072,"140":0.26636,"141":1.11585,"142":5.32006,"143":0.0072,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 106 107 110 111 112 113 114 115 116 117 118 119 121 123 124 125 126 127 128 129 130"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3 26.2","11.1":0.0072,"12.1":0.0072,"13.1":0.0072,"14.1":0.04319,"15.1":0.0072,"15.4":0.0072,"15.5":0.0072,"15.6":0.10079,"16.0":0.0072,"16.1":0.04319,"16.2":0.0072,"16.3":0.05039,"16.4":0.0072,"16.5":0.036,"16.6":0.12238,"17.0":0.0072,"17.1":0.23037,"17.2":0.11518,"17.3":0.07199,"17.4":0.09359,"17.5":0.10079,"17.6":0.38875,"18.0":0.0216,"18.1":0.05759,"18.2":0.16558,"18.3":0.24477,"18.4":0.17998,"18.5-18.6":0.53993,"26.0":0.58312,"26.1":0.58312},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0011,"5.0-5.1":0,"6.0-6.1":0.00439,"7.0-7.1":0.00329,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00987,"10.0-10.2":0.0011,"10.3":0.01755,"11.0-11.2":0.20402,"11.3-11.4":0.00658,"12.0-12.1":0.00219,"12.2-12.5":0.05155,"13.0-13.1":0,"13.2":0.00548,"13.3":0.00219,"13.4-13.7":0.00987,"14.0-14.4":0.01645,"14.5-14.8":0.02084,"15.0-15.1":0.01755,"15.2-15.3":0.01426,"15.4":0.01536,"15.5":0.01645,"15.6-15.8":0.23802,"16.0":0.02962,"16.1":0.05484,"16.2":0.02852,"16.3":0.05265,"16.4":0.01316,"16.5":0.02194,"16.6-16.7":0.32138,"17.0":0.02742,"17.1":0.03291,"17.2":0.02413,"17.3":0.034,"17.4":0.05594,"17.5":0.1064,"17.6-17.7":0.26106,"18.0":0.05813,"18.1":0.12285,"18.2":0.06581,"18.3":0.21389,"18.4":0.10969,"18.5-18.7":7.65945,"26.0":0.5254,"26.1":0.47933},P:{"4":0.07319,"24":0.02091,"25":0.02091,"26":0.01046,"27":0.01046,"28":0.07319,"29":2.55135,_:"20 21 22 23 5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","6.2-6.4":0.01046,"7.2-7.4":0.01046},I:{"0":0.0028,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.45936,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0144,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.0028},O:{"0":0.03641},H:{"0":0},L:{"0":13.86714},R:{_:"0"},M:{"0":1.29686}};
Index: node_modules/caniuse-lite/data/regions/LV.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"3":0.01266,"16":0.03165,"48":0.01266,"52":0.01266,"60":0.01899,"68":0.00633,"72":0.01266,"77":0.03165,"112":0.00633,"113":0.01899,"114":0.02532,"115":0.4367,"118":0.00633,"123":0.00633,"125":0.01266,"127":0.01266,"128":0.01266,"132":0.00633,"133":0.00633,"134":0.01266,"135":0.00633,"136":0.07595,"137":0.00633,"138":0.00633,"139":0.01899,"140":0.16455,"141":0.01899,"142":0.03165,"143":0.06962,"144":1.7468,"145":2.29743,"146":0.01266,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 116 117 119 120 121 122 124 126 129 130 131 147 148 3.5 3.6"},D:{"48":0.12025,"49":0.00633,"79":0.03797,"87":0.10126,"92":0.00633,"97":0.00633,"99":0.00633,"102":0.02532,"103":0.02532,"104":0.03165,"105":0.00633,"106":0.02532,"108":0.01899,"109":2.01262,"111":0.00633,"112":1.76579,"113":0.01266,"114":0.01266,"115":0.01266,"116":0.09494,"117":0.00633,"118":0.00633,"119":0.01899,"120":0.09494,"121":0.01266,"122":0.06962,"123":0.01266,"124":0.02532,"125":0.06962,"126":0.20253,"127":0.01899,"128":0.08861,"129":0.01266,"130":0.05063,"131":0.14557,"132":0.03165,"133":0.12025,"134":0.08228,"135":0.36708,"136":0.05696,"137":0.05696,"138":0.3481,"139":0.91138,"140":0.55062,"141":4.99991,"142":24.6831,"143":0.03165,"144":0.14557,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 93 94 95 96 98 100 101 107 110 145 146"},F:{"79":0.00633,"82":0.00633,"86":0.00633,"92":0.06962,"93":0.01266,"95":0.40506,"102":0.00633,"114":0.00633,"117":0.00633,"119":0.01899,"120":0.02532,"121":0.00633,"122":0.82277,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 87 88 89 90 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00633,"109":0.01266,"121":0.02532,"130":0.05063,"131":0.01899,"132":0.01266,"133":0.05696,"134":0.00633,"136":0.00633,"137":0.00633,"138":0.00633,"139":0.00633,"140":0.05696,"141":0.45569,"142":4.00626,"143":0.00633,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 122 123 124 125 126 127 128 129 135"},E:{"4":0.01899,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.4 15.5 16.0 16.2 17.0","12.1":0.06329,"13.1":0.03797,"14.1":0.01266,"15.1":0.01266,"15.6":0.07595,"16.1":0.00633,"16.3":0.00633,"16.4":0.0443,"16.5":0.01266,"16.6":0.08861,"17.1":0.05696,"17.2":0.00633,"17.3":0.01899,"17.4":0.02532,"17.5":0.03797,"17.6":0.13291,"18.0":0.00633,"18.1":0.01899,"18.2":0.01266,"18.3":0.03797,"18.4":0.01266,"18.5-18.6":0.1519,"26.0":0.33544,"26.1":0.49366,"26.2":0.03165},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00097,"5.0-5.1":0,"6.0-6.1":0.00388,"7.0-7.1":0.00291,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00873,"10.0-10.2":0.00097,"10.3":0.01552,"11.0-11.2":0.18047,"11.3-11.4":0.00582,"12.0-12.1":0.00194,"12.2-12.5":0.0456,"13.0-13.1":0,"13.2":0.00485,"13.3":0.00194,"13.4-13.7":0.00873,"14.0-14.4":0.01455,"14.5-14.8":0.01843,"15.0-15.1":0.01552,"15.2-15.3":0.01261,"15.4":0.01358,"15.5":0.01455,"15.6-15.8":0.21054,"16.0":0.0262,"16.1":0.04851,"16.2":0.02523,"16.3":0.04657,"16.4":0.01164,"16.5":0.0194,"16.6-16.7":0.28428,"17.0":0.02426,"17.1":0.02911,"17.2":0.02135,"17.3":0.03008,"17.4":0.04948,"17.5":0.09411,"17.6-17.7":0.23092,"18.0":0.05142,"18.1":0.10867,"18.2":0.05821,"18.3":0.1892,"18.4":0.09702,"18.5-18.7":6.77522,"26.0":0.46475,"26.1":0.424},P:{"4":0.03117,"20":0.01039,"22":0.01039,"23":0.01039,"24":0.02078,"25":0.01039,"26":0.07273,"27":0.05195,"28":0.3117,"29":2.27538,_:"21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01039},I:{"0":0.022,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.38913,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.32133,"9":0.0489,"10":0.10478,"11":1.41104,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.04772},H:{"0":0},L:{"0":25.89124},R:{_:"0"},M:{"0":0.32672}};
Index: node_modules/caniuse-lite/data/regions/LY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/LY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/LY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0068,"44":0.00227,"47":0.00453,"72":0.00227,"78":0.00227,"115":0.10428,"121":0.00453,"125":0.00227,"128":0.00227,"137":0.00227,"140":0.00907,"142":0.00227,"143":0.00453,"144":0.11562,"145":0.14282,"146":0.00227,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 122 123 124 126 127 129 130 131 132 133 134 135 136 138 139 141 147 148 3.5 3.6"},D:{"43":0.00227,"51":0.02947,"56":0.00907,"58":0.00227,"63":0.00227,"64":0.00227,"65":0.0068,"66":0.00227,"68":0.00227,"69":0.00907,"70":0.00907,"71":0.00453,"73":0.01814,"74":0.00227,"75":0.00453,"78":0.00227,"79":0.01587,"81":0.00227,"83":0.02267,"85":0.00227,"86":0.00907,"87":0.02494,"88":0.00907,"89":0.00907,"90":0.0068,"91":0.0204,"92":0.00227,"93":0.00227,"94":0.00453,"95":0.00227,"96":0.0204,"98":0.01587,"99":0.00453,"100":0.00453,"101":0.0136,"102":0.00227,"103":0.0272,"104":0.00453,"105":0.00227,"106":0.00227,"108":0.00907,"109":0.79345,"110":0.00453,"111":0.01134,"112":0.00907,"114":0.0068,"115":0.0136,"116":0.0204,"118":0.00453,"119":0.00453,"120":0.01134,"121":0.00453,"122":0.01587,"123":0.0204,"124":0.03174,"125":0.16322,"126":0.1927,"127":0.00453,"128":0.0136,"129":0.00907,"130":0.01134,"131":0.07935,"132":0.0204,"133":0.0136,"134":0.01587,"135":0.02947,"136":0.02267,"137":0.07481,"138":0.07254,"139":0.05441,"140":0.15869,"141":1.63677,"142":4.70176,"143":0.00907,"144":0.00453,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 52 53 54 55 57 59 60 61 62 67 72 76 77 80 84 97 107 113 117 145 146"},F:{"46":0.00453,"79":0.01587,"84":0.00227,"85":0.00227,"90":0.00227,"91":0.02267,"92":0.16549,"93":0.01814,"95":0.02947,"114":0.0068,"117":0.00453,"120":0.00453,"122":0.32872,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 86 87 88 89 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00227,"18":0.0068,"84":0.00227,"89":0.00227,"90":0.00227,"92":0.0272,"100":0.00227,"109":0.00907,"114":0.47154,"122":0.0068,"123":0.00453,"125":0.0068,"129":0.00227,"131":0.05441,"132":0.00227,"135":0.00227,"136":0.00907,"137":0.00907,"138":0.01134,"139":0.00907,"140":0.02494,"141":0.28111,"142":1.42368,"143":0.00453,_:"12 13 15 16 17 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 124 126 127 128 130 133 134"},E:{"13":0.00227,"15":0.00227,_:"0 4 5 6 7 8 9 10 11 12 14 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.4 16.5 17.2 17.3 26.2","5.1":0.02267,"13.1":0.00227,"14.1":0.16096,"15.6":0.00907,"16.1":0.01814,"16.3":0.00227,"16.6":0.0068,"17.0":0.00227,"17.1":0.00453,"17.4":0.0136,"17.5":0.00453,"17.6":0.0136,"18.0":0.00227,"18.1":0.0068,"18.2":0.00453,"18.3":0.03174,"18.4":0.01134,"18.5-18.6":0.01814,"26.0":0.04307,"26.1":0.04761},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00097,"5.0-5.1":0,"6.0-6.1":0.00388,"7.0-7.1":0.00291,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00874,"10.0-10.2":0.00097,"10.3":0.01554,"11.0-11.2":0.18063,"11.3-11.4":0.00583,"12.0-12.1":0.00194,"12.2-12.5":0.04564,"13.0-13.1":0,"13.2":0.00486,"13.3":0.00194,"13.4-13.7":0.00874,"14.0-14.4":0.01457,"14.5-14.8":0.01845,"15.0-15.1":0.01554,"15.2-15.3":0.01262,"15.4":0.0136,"15.5":0.01457,"15.6-15.8":0.21074,"16.0":0.02622,"16.1":0.04856,"16.2":0.02525,"16.3":0.04661,"16.4":0.01165,"16.5":0.01942,"16.6-16.7":0.28454,"17.0":0.02428,"17.1":0.02913,"17.2":0.02137,"17.3":0.03011,"17.4":0.04953,"17.5":0.0942,"17.6-17.7":0.23113,"18.0":0.05147,"18.1":0.10877,"18.2":0.05827,"18.3":0.18937,"18.4":0.09711,"18.5-18.7":6.78147,"26.0":0.46518,"26.1":0.42439},P:{"4":0.05086,"20":0.02034,"21":0.05086,"22":0.08138,"23":0.06103,"24":0.38653,"25":0.38653,"26":0.20344,"27":0.41705,"28":1.05788,"29":1.64786,_:"5.0-5.4 8.2 10.1 12.0 13.0","6.2-6.4":0.05086,"7.2-7.4":0.19327,"9.2":0.02034,"11.1-11.2":0.02034,"14.0":0.01017,"15.0":0.01017,"16.0":0.02034,"17.0":0.03052,"18.0":0.02034,"19.0":0.03052},I:{"0":0.09265,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":5.66529,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02947,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.24742},H:{"0":0.01},L:{"0":65.77328},R:{_:"0"},M:{"0":0.13144}};
Index: node_modules/caniuse-lite/data/regions/MA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"3":0.0057,"5":0.0228,"52":0.6783,"65":0.0114,"75":0.0057,"78":0.0057,"115":0.1767,"125":0.0171,"127":0.0057,"128":0.0114,"130":0.0057,"133":0.0057,"134":0.0057,"135":0.0057,"136":0.0057,"137":0.0057,"138":0.0057,"139":0.0057,"140":0.0342,"141":0.0057,"142":0.0114,"143":0.0627,"144":0.6384,"145":0.5985,"146":0.0057,_:"2 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 129 131 132 147 148 3.5 3.6"},D:{"29":0.0114,"48":0.0057,"49":0.0114,"55":0.0057,"56":0.0228,"63":0.0057,"65":0.0057,"66":0.0057,"67":0.0057,"68":0.0114,"69":0.0285,"70":0.0057,"71":0.0057,"72":0.0171,"73":0.0171,"74":0.0057,"75":0.0114,"76":0.0057,"79":0.0456,"80":0.0057,"81":0.0114,"83":0.0399,"84":0.0057,"85":0.0171,"86":0.0114,"87":0.0456,"88":0.0057,"91":0.0057,"93":0.0057,"95":0.0057,"96":0.0057,"98":0.0114,"99":0.0057,"100":0.0057,"101":0.0114,"102":0.0057,"103":0.0285,"104":0.0684,"106":0.0114,"107":0.0114,"108":0.0114,"109":1.1229,"110":0.0171,"111":0.0228,"112":17.9094,"113":0.0114,"114":0.0171,"116":0.0627,"117":0.0057,"118":0.0057,"119":0.057,"120":0.0228,"121":0.0114,"122":0.1539,"123":0.0114,"124":0.057,"125":0.3705,"126":3.4827,"127":0.0171,"128":0.057,"129":0.0285,"130":0.0342,"131":0.0855,"132":0.0627,"133":0.0342,"134":0.0684,"135":0.0627,"136":0.0684,"137":0.1026,"138":0.3306,"139":0.1824,"140":0.3876,"141":4.7367,"142":12.825,"143":0.0399,"144":0.0057,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 53 54 57 58 59 60 61 62 64 77 78 89 90 92 94 97 105 115 145 146"},F:{"79":0.0057,"92":0.0171,"95":0.0684,"102":0.0057,"114":0.0057,"117":0.0057,"118":0.0057,"120":0.0057,"122":0.3591,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0057,"92":0.0228,"109":0.0228,"114":0.1938,"122":0.0057,"129":0.0057,"131":0.0171,"132":0.0057,"133":0.0057,"134":0.0114,"135":0.0114,"136":0.0171,"137":0.0057,"138":0.0114,"139":0.0114,"140":0.0342,"141":0.3933,"142":2.7189,"143":0.0057,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 130"},E:{"4":0.0057,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 17.0 17.2 26.2","5.1":0.0171,"12.1":0.0057,"13.1":0.0057,"14.1":0.0114,"15.6":0.0399,"16.5":0.0057,"16.6":0.0456,"17.1":0.0114,"17.3":0.0057,"17.4":0.0171,"17.5":0.0171,"17.6":0.0513,"18.0":0.0114,"18.1":0.0114,"18.2":0.0057,"18.3":0.0171,"18.4":0.0171,"18.5-18.6":0.0513,"26.0":0.0969,"26.1":0.0969},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0,"6.0-6.1":0.00284,"7.0-7.1":0.00213,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00639,"10.0-10.2":0.00071,"10.3":0.01135,"11.0-11.2":0.13197,"11.3-11.4":0.00426,"12.0-12.1":0.00142,"12.2-12.5":0.03335,"13.0-13.1":0,"13.2":0.00355,"13.3":0.00142,"13.4-13.7":0.00639,"14.0-14.4":0.01064,"14.5-14.8":0.01348,"15.0-15.1":0.01135,"15.2-15.3":0.00922,"15.4":0.00993,"15.5":0.01064,"15.6-15.8":0.15396,"16.0":0.01916,"16.1":0.03548,"16.2":0.01845,"16.3":0.03406,"16.4":0.00851,"16.5":0.01419,"16.6-16.7":0.20788,"17.0":0.01774,"17.1":0.02129,"17.2":0.01561,"17.3":0.02199,"17.4":0.03618,"17.5":0.06882,"17.6-17.7":0.16886,"18.0":0.0376,"18.1":0.07946,"18.2":0.04257,"18.3":0.13835,"18.4":0.07095,"18.5-18.7":4.95444,"26.0":0.33985,"26.1":0.31005},P:{"4":0.1146,"21":0.02084,"22":0.01042,"23":0.02084,"24":0.03126,"25":0.05209,"26":0.06251,"27":0.07293,"28":0.30213,"29":1.21895,_:"20 8.2 9.2 10.1 11.1-11.2 12.0 15.0 16.0 18.0","5.0-5.4":0.01042,"6.2-6.4":0.01042,"7.2-7.4":0.12502,"13.0":0.01042,"14.0":0.01042,"17.0":0.01042,"19.0":0.01042},I:{"0":0.06012,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.2451,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.12825,"9":0.02138,"10":0.03563,"11":0.49875,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0516},H:{"0":0},L:{"0":36.8343},R:{_:"0"},M:{"0":0.1505}};
Index: node_modules/caniuse-lite/data/regions/MC.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"102":0.00681,"113":0.03407,"115":2.87551,"116":0.00681,"128":0.38158,"133":0.03407,"134":0.12947,"135":0.00681,"136":0.04088,"137":0.03407,"138":0.00681,"139":0.00681,"140":0.53831,"143":0.00681,"144":3.18895,"145":2.75286,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 114 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 141 142 146 147 148 3.5 3.6"},D:{"70":0.00681,"75":0.00681,"79":0.01363,"80":0.00681,"83":0.00681,"85":0.00681,"86":0.00681,"89":0.00681,"90":0.06133,"94":0.00681,"95":0.00681,"97":0.02044,"98":0.70184,"99":0.21805,"100":0.00681,"103":2.40534,"109":0.18398,"110":0.00681,"112":0.27937,"115":0.00681,"116":0.27256,"119":0.00681,"120":0.03407,"122":0.00681,"123":0.00681,"124":0.00681,"125":0.0954,"127":0.00681,"128":0.0477,"129":0.00681,"131":0.17035,"132":0.10221,"133":0.14309,"134":0.32026,"135":0.46335,"136":0.12265,"137":0.10221,"138":0.39521,"139":0.293,"140":0.18398,"141":5.58748,"142":14.72505,"143":0.00681,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 76 77 78 81 84 87 88 91 92 93 96 101 102 104 105 106 107 108 111 113 114 117 118 121 126 130 144 145 146"},F:{"83":0.01363,"84":0.00681,"89":0.00681,"92":0.02726,"102":0.00681,"114":0.38158,"120":0.10902,"122":0.71547,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"98":0.07495,"99":0.02726,"109":0.00681,"117":0.00681,"127":0.0477,"131":0.17035,"132":0.01363,"133":0.16354,"134":0.0954,"135":0.06133,"137":0.39521,"140":0.02044,"141":0.27937,"142":4.48361,"143":0.00681,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 118 119 120 121 122 123 124 125 126 128 129 130 136 138 139"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 17.0","13.1":0.05451,"14.1":0.0477,"15.5":0.00681,"15.6":0.19079,"16.1":0.00681,"16.2":0.00681,"16.3":0.00681,"16.4":0.10902,"16.5":0.08858,"16.6":0.27937,"17.1":0.38158,"17.2":0.45654,"17.3":0.07495,"17.4":0.05451,"17.5":0.0954,"17.6":0.47017,"18.0":0.06133,"18.1":0.12947,"18.2":0.00681,"18.3":0.12265,"18.4":0.15672,"18.5-18.6":0.55875,"26.0":0.82449,"26.1":2.26906,"26.2":0.02044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00184,"5.0-5.1":0,"6.0-6.1":0.00736,"7.0-7.1":0.00552,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01656,"10.0-10.2":0.00184,"10.3":0.02943,"11.0-11.2":0.34216,"11.3-11.4":0.01104,"12.0-12.1":0.00368,"12.2-12.5":0.08646,"13.0-13.1":0,"13.2":0.0092,"13.3":0.00368,"13.4-13.7":0.01656,"14.0-14.4":0.02759,"14.5-14.8":0.03495,"15.0-15.1":0.02943,"15.2-15.3":0.02391,"15.4":0.02575,"15.5":0.02759,"15.6-15.8":0.39919,"16.0":0.04967,"16.1":0.09198,"16.2":0.04783,"16.3":0.0883,"16.4":0.02208,"16.5":0.03679,"16.6-16.7":0.539,"17.0":0.04599,"17.1":0.05519,"17.2":0.04047,"17.3":0.05703,"17.4":0.09382,"17.5":0.17844,"17.6-17.7":0.43782,"18.0":0.0975,"18.1":0.20603,"18.2":0.11038,"18.3":0.35872,"18.4":0.18396,"18.5-18.7":12.8459,"26.0":0.88117,"26.1":0.8039},P:{"25":0.01102,"28":0.01102,"29":0.89235,_:"4 20 21 22 23 24 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.02863,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.0223,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02628,"9":0.00876,"10":0.00876,"11":0.01752,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":11.33767},R:{_:"0"},M:{"0":0.20709}};
Index: node_modules/caniuse-lite/data/regions/MD.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01658,"52":0.06631,"57":0.0221,"63":0.00553,"88":0.04421,"92":0.00553,"109":0.00553,"113":0.00553,"115":0.19341,"121":0.00553,"125":0.00553,"128":0.01658,"132":0.00553,"135":0.00553,"136":0.00553,"138":0.00553,"139":0.00553,"140":0.14368,"141":0.00553,"142":0.00553,"143":0.01658,"144":0.52497,"145":0.8068,"146":0.00553,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 114 116 117 118 119 120 122 123 124 126 127 129 130 131 133 134 137 147 148 3.5 3.6"},D:{"38":0.01105,"49":0.01105,"69":0.01105,"70":0.00553,"79":0.00553,"81":0.00553,"85":0.01658,"86":0.01105,"87":0.00553,"89":0.00553,"90":0.01105,"91":0.00553,"97":0.00553,"98":0.01105,"101":0.00553,"102":0.09947,"103":0.01105,"106":0.06079,"107":0.00553,"108":0.01105,"109":2.68011,"110":0.00553,"111":0.0221,"112":8.81397,"113":0.00553,"114":0.00553,"116":0.09947,"117":0.01105,"118":0.04973,"119":0.00553,"120":0.02763,"121":0.00553,"122":0.04973,"123":0.01105,"124":0.02763,"125":0.23762,"126":2.11646,"127":0.03316,"128":0.03316,"129":0.20446,"130":0.01658,"131":0.08842,"132":0.08289,"133":0.03316,"134":0.09394,"135":0.03868,"136":0.04973,"137":0.04973,"138":0.50839,"139":0.16578,"140":0.71838,"141":5.6752,"142":14.37313,"143":0.0221,"144":0.01105,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78 80 83 84 88 92 93 94 95 96 99 100 104 105 115 145 146"},F:{"79":0.09947,"82":0.00553,"85":0.04421,"86":0.00553,"91":0.00553,"92":0.09947,"93":0.01105,"95":0.19341,"114":0.00553,"120":0.03316,"121":0.00553,"122":0.45313,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00553,"92":0.00553,"109":0.00553,"110":0.00553,"114":0.22657,"118":0.01105,"131":0.00553,"133":0.00553,"135":0.00553,"136":0.00553,"138":0.0221,"139":0.00553,"140":0.04421,"141":0.22104,"142":1.96726,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 113 115 116 117 119 120 121 122 123 124 125 126 127 128 129 130 132 134 137 143"},E:{"14":0.00553,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.4 16.5 17.0 17.2 26.2","5.1":0.00553,"13.1":0.00553,"15.5":0.00553,"15.6":0.03316,"16.3":0.00553,"16.6":0.03868,"17.1":0.0221,"17.3":0.00553,"17.4":0.01105,"17.5":0.03868,"17.6":0.04421,"18.0":0.00553,"18.1":0.01658,"18.2":0.02763,"18.3":0.06631,"18.4":0.01105,"18.5-18.6":0.10499,"26.0":0.24867,"26.1":2.81826},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00091,"5.0-5.1":0,"6.0-6.1":0.00362,"7.0-7.1":0.00272,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00815,"10.0-10.2":0.00091,"10.3":0.01448,"11.0-11.2":0.16838,"11.3-11.4":0.00543,"12.0-12.1":0.00181,"12.2-12.5":0.04255,"13.0-13.1":0,"13.2":0.00453,"13.3":0.00181,"13.4-13.7":0.00815,"14.0-14.4":0.01358,"14.5-14.8":0.0172,"15.0-15.1":0.01448,"15.2-15.3":0.01177,"15.4":0.01267,"15.5":0.01358,"15.6-15.8":0.19645,"16.0":0.02444,"16.1":0.04526,"16.2":0.02354,"16.3":0.04345,"16.4":0.01086,"16.5":0.01811,"16.6-16.7":0.26525,"17.0":0.02263,"17.1":0.02716,"17.2":0.01992,"17.3":0.02806,"17.4":0.04617,"17.5":0.08781,"17.6-17.7":0.21546,"18.0":0.04798,"18.1":0.10139,"18.2":0.05432,"18.3":0.17653,"18.4":0.09053,"18.5-18.7":6.32166,"26.0":0.43364,"26.1":0.39561},P:{"4":0.02074,"20":0.01037,"21":0.01037,"22":0.02074,"23":0.02074,"24":0.03111,"25":0.12445,"26":0.05185,"27":0.06222,"28":0.36297,"29":1.84597,"5.0-5.4":0.01037,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 19.0","7.2-7.4":0.02074,"17.0":0.01037,"18.0":0.01037},I:{"0":0.00447,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.6981,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.14368,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00448},O:{"0":0.06713},H:{"0":0},L:{"0":34.50002},R:{_:"0"},M:{"0":0.40275}};
Index: node_modules/caniuse-lite/data/regions/ME.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ME.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ME.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.00328,"68":0.00984,"78":0.00984,"86":0.00328,"115":0.06232,"133":0.00656,"134":0.00328,"135":0.02296,"136":0.00328,"139":0.00328,"140":0.00984,"142":0.00328,"143":0.03608,"144":0.58056,"145":0.51496,"146":0.00328,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 137 138 141 147 148 3.5 3.6"},D:{"49":0.00656,"53":0.00328,"64":0.02952,"68":0.00984,"69":0.00328,"79":0.5576,"83":0.11152,"84":0.00328,"86":0.00656,"87":0.40344,"88":0.0164,"89":0.00328,"90":0.00656,"93":0.01312,"94":0.06232,"96":0.00328,"97":0.00984,"99":0.00328,"100":0.00656,"101":0.00328,"102":0.00656,"103":0.01968,"105":0.00656,"106":0.00328,"108":0.0492,"109":1.1316,"110":0.01312,"111":0.01968,"112":0.00328,"113":0.02296,"114":0.00656,"116":0.04592,"118":0.00328,"119":0.02296,"120":0.07872,"121":0.00328,"122":0.09184,"123":0.01312,"124":0.0164,"125":0.07216,"126":0.10824,"127":0.02952,"128":0.06232,"129":0.00328,"130":0.00984,"131":0.164,"132":0.1312,"133":0.06888,"134":0.04264,"135":0.04264,"136":0.04264,"137":0.07544,"138":0.19024,"139":0.10824,"140":0.31488,"141":3.71296,"142":12.91336,"143":0.02952,"144":0.00328,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 65 66 67 70 71 72 73 74 75 76 77 78 80 81 85 91 92 95 98 104 107 115 117 145 146"},F:{"40":0.00328,"46":0.07544,"92":0.0164,"93":0.00328,"95":0.0164,"120":0.00328,"122":0.26896,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.02624,"109":0.00328,"114":0.02624,"124":0.00328,"131":0.00328,"134":0.00656,"135":0.00656,"136":0.00328,"137":0.00984,"138":0.00656,"139":0.00656,"140":0.00984,"141":0.18696,"142":1.28576,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 125 126 127 128 129 130 132 133 143"},E:{"14":0.00328,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 18.2 26.2","13.1":0.00328,"14.1":0.02624,"15.4":0.00984,"15.5":0.00656,"15.6":0.02296,"16.1":0.00328,"16.2":0.00656,"16.3":0.00328,"16.4":0.00328,"16.5":0.00328,"16.6":0.0328,"17.0":0.00328,"17.1":0.02296,"17.2":0.00656,"17.3":0.00328,"17.4":0.01312,"17.5":0.0492,"17.6":0.08528,"18.0":0.00328,"18.1":0.00656,"18.3":0.00984,"18.4":0.03936,"18.5-18.6":0.0984,"26.0":0.07872,"26.1":0.0984},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00159,"5.0-5.1":0,"6.0-6.1":0.00636,"7.0-7.1":0.00477,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0143,"10.0-10.2":0.00159,"10.3":0.02543,"11.0-11.2":0.29561,"11.3-11.4":0.00954,"12.0-12.1":0.00318,"12.2-12.5":0.0747,"13.0-13.1":0,"13.2":0.00795,"13.3":0.00318,"13.4-13.7":0.0143,"14.0-14.4":0.02384,"14.5-14.8":0.0302,"15.0-15.1":0.02543,"15.2-15.3":0.02066,"15.4":0.02225,"15.5":0.02384,"15.6-15.8":0.34487,"16.0":0.04291,"16.1":0.07946,"16.2":0.04132,"16.3":0.07629,"16.4":0.01907,"16.5":0.03179,"16.6-16.7":0.46566,"17.0":0.03973,"17.1":0.04768,"17.2":0.03496,"17.3":0.04927,"17.4":0.08105,"17.5":0.15416,"17.6-17.7":0.37825,"18.0":0.08423,"18.1":0.178,"18.2":0.09536,"18.3":0.30991,"18.4":0.15893,"18.5-18.7":11.09794,"26.0":0.76127,"26.1":0.69452},P:{"4":0.22741,"20":0.05168,"21":0.01034,"22":0.03101,"23":0.10337,"24":0.03101,"25":0.13438,"26":0.14471,"27":0.16539,"28":0.6202,"29":3.87623,"5.0-5.4":0.03101,"6.2-6.4":0.02067,"7.2-7.4":0.29976,"8.2":0.07236,_:"9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.02013,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.26208,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":51.19024},R:{_:"0"},M:{"0":0.21504}};
Index: node_modules/caniuse-lite/data/regions/MG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00425,"45":0.00425,"47":0.00425,"48":0.00425,"52":0.01274,"56":0.00425,"57":0.00425,"60":0.00425,"62":0.00425,"67":0.00425,"68":0.00849,"72":0.01274,"75":0.00849,"76":0.00425,"78":0.02124,"81":0.00425,"82":0.00425,"84":0.00425,"86":0.00425,"92":0.00425,"95":0.00425,"109":0.00425,"111":0.00425,"112":0.00425,"113":0.00425,"115":0.59033,"121":0.00425,"125":0.02973,"127":0.02548,"128":0.03822,"129":0.00425,"133":0.00425,"134":0.01274,"135":0.00849,"136":0.08494,"137":0.00425,"138":0.00849,"139":0.01274,"140":0.12316,"141":0.02124,"142":0.02548,"143":0.08069,"144":1.41425,"145":1.71154,"146":0.02973,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 49 50 51 53 54 55 58 59 61 63 64 65 66 69 70 71 73 74 77 79 80 83 85 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 114 116 117 118 119 120 122 123 124 126 130 131 132 147 148 3.5 3.6"},D:{"11":0.00425,"43":0.00849,"52":0.00425,"58":0.00849,"59":0.00425,"60":0.00849,"61":0.00425,"63":0.00425,"64":0.00425,"65":0.00849,"67":0.00425,"68":0.01699,"69":0.00849,"70":0.00849,"71":0.00425,"73":0.01699,"74":0.00425,"75":0.01699,"76":0.00425,"79":0.03822,"80":0.02548,"81":0.02548,"83":0.00849,"84":0.00425,"85":0.02124,"86":0.02548,"87":0.03822,"89":0.00425,"90":0.01274,"91":0.00425,"93":0.00425,"94":0.01274,"95":0.01699,"99":0.00425,"100":0.00425,"101":0.02548,"102":0.00425,"103":0.03398,"105":0.01699,"106":0.02548,"107":0.00425,"108":0.00849,"109":1.49919,"110":0.00425,"111":0.01274,"112":0.00849,"113":0.00849,"114":0.00425,"115":0.00849,"116":0.09343,"117":0.01274,"118":0.00849,"119":0.02973,"120":0.01699,"121":0.01274,"122":0.09343,"123":0.04247,"124":0.02548,"125":0.10193,"126":0.07645,"127":0.02973,"128":0.07645,"129":0.09343,"130":0.02973,"131":0.09343,"132":0.02973,"133":0.05946,"134":0.05521,"135":0.20386,"136":0.15714,"137":0.19112,"138":0.46717,"139":0.22934,"140":0.55211,"141":4.75239,"142":15.1533,"143":0.02973,"144":0.00425,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 62 66 72 77 78 88 92 96 97 98 104 145 146"},F:{"34":0.00425,"36":0.00425,"42":0.00849,"53":0.00425,"64":0.00425,"79":0.01699,"82":0.00425,"85":0.00425,"92":0.05946,"95":0.04247,"102":0.00425,"106":0.00425,"115":0.00425,"118":0.00425,"120":0.00849,"121":0.00425,"122":0.2888,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 107 108 109 110 111 112 113 114 116 117 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00425},B:{"13":0.00425,"14":0.00425,"17":0.01274,"18":0.03398,"84":0.00849,"86":0.00425,"89":0.00425,"90":0.01274,"92":0.1444,"100":0.02124,"109":0.08494,"114":0.14865,"116":0.00425,"120":0.00425,"122":0.03398,"128":0.00425,"129":0.00425,"130":0.00425,"131":0.00425,"132":0.00425,"133":0.00849,"134":0.00425,"135":0.00425,"136":0.01274,"137":0.00425,"138":0.02973,"139":0.05096,"140":0.05946,"141":0.35675,"142":3.35938,"143":0.00849,_:"12 15 16 79 80 81 83 85 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 117 118 119 121 123 124 125 126 127"},E:{"11":0.00425,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 17.0 17.1 26.2","13.1":0.01699,"14.1":0.01699,"15.6":0.05096,"16.3":0.00425,"16.5":0.00425,"16.6":0.07645,"17.2":0.00425,"17.3":0.00425,"17.4":0.00849,"17.5":0.02973,"17.6":0.02548,"18.0":0.01699,"18.1":0.00425,"18.2":0.00425,"18.3":0.02124,"18.4":0.00425,"18.5-18.6":0.02124,"26.0":0.08069,"26.1":0.06795},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00031,"5.0-5.1":0,"6.0-6.1":0.00124,"7.0-7.1":0.00093,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00279,"10.0-10.2":0.00031,"10.3":0.00495,"11.0-11.2":0.05756,"11.3-11.4":0.00186,"12.0-12.1":0.00062,"12.2-12.5":0.01454,"13.0-13.1":0,"13.2":0.00155,"13.3":0.00062,"13.4-13.7":0.00279,"14.0-14.4":0.00464,"14.5-14.8":0.00588,"15.0-15.1":0.00495,"15.2-15.3":0.00402,"15.4":0.00433,"15.5":0.00464,"15.6-15.8":0.06715,"16.0":0.00836,"16.1":0.01547,"16.2":0.00805,"16.3":0.01485,"16.4":0.00371,"16.5":0.00619,"16.6-16.7":0.09067,"17.0":0.00774,"17.1":0.00928,"17.2":0.00681,"17.3":0.00959,"17.4":0.01578,"17.5":0.03002,"17.6-17.7":0.07365,"18.0":0.0164,"18.1":0.03466,"18.2":0.01857,"18.3":0.06034,"18.4":0.03095,"18.5-18.7":2.16094,"26.0":0.14823,"26.1":0.13523},P:{"23":0.0107,"24":0.0107,"25":0.0107,"26":0.0107,"27":0.0107,"28":0.11772,"29":0.26753,_:"4 20 21 22 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 16.0 17.0 18.0 19.0","7.2-7.4":0.0107,"15.0":0.0107},I:{"0":0.17232,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":1.2571,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01699,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.09203,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00575},O:{"0":0.53494},H:{"0":0.48},L:{"0":57.09007},R:{_:"0"},M:{"0":0.17256}};
Index: node_modules/caniuse-lite/data/regions/MH.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"134":0.04167,"142":0.01191,"143":0.18454,"144":0.22621,"145":0.15478,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 135 136 137 138 139 140 141 146 147 148 3.5 3.6"},D:{"70":0.07144,"73":0.05358,"91":0.01191,"97":0.04167,"103":0.18454,"104":0.02977,"109":0.11311,"112":0.01191,"114":0.01191,"116":0.02977,"120":0.05358,"125":0.57149,"126":0.16668,"127":0.01191,"132":0.43457,"134":0.02977,"138":0.09525,"139":1.73232,"140":0.71436,"141":5.57201,"142":34.59884,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 92 93 94 95 96 98 99 100 101 102 105 106 107 108 110 111 113 115 117 118 119 121 122 123 124 128 129 130 131 133 135 136 137 143 144 145 146"},F:{"122":0.02977,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"114":0.01191,"121":0.02977,"126":0.01191,"133":0.02977,"138":0.08334,"139":0.02977,"140":0.23812,"141":1.56564,"142":3.9647,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 122 123 124 125 127 128 129 130 131 132 134 135 136 137 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.6 17.0 17.2 18.0","15.4":0.01191,"16.5":0.02977,"17.1":0.15478,"17.3":0.07144,"17.4":0.01191,"17.5":1.63708,"17.6":0.01191,"18.1":0.05358,"18.2":0.04167,"18.3":0.07144,"18.4":0.11311,"18.5-18.6":0.04167,"26.0":1.94068,"26.1":0.16668,"26.2":0.02977},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00063,"5.0-5.1":0,"6.0-6.1":0.00254,"7.0-7.1":0.0019,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0057,"10.0-10.2":0.00063,"10.3":0.01014,"11.0-11.2":0.11788,"11.3-11.4":0.0038,"12.0-12.1":0.00127,"12.2-12.5":0.02979,"13.0-13.1":0,"13.2":0.00317,"13.3":0.00127,"13.4-13.7":0.0057,"14.0-14.4":0.00951,"14.5-14.8":0.01204,"15.0-15.1":0.01014,"15.2-15.3":0.00824,"15.4":0.00887,"15.5":0.00951,"15.6-15.8":0.13753,"16.0":0.01711,"16.1":0.03169,"16.2":0.01648,"16.3":0.03042,"16.4":0.00761,"16.5":0.01268,"16.6-16.7":0.18569,"17.0":0.01584,"17.1":0.01901,"17.2":0.01394,"17.3":0.01965,"17.4":0.03232,"17.5":0.06147,"17.6-17.7":0.15083,"18.0":0.03359,"18.1":0.07098,"18.2":0.03803,"18.3":0.12358,"18.4":0.06338,"18.5-18.7":4.42555,"26.0":0.30357,"26.1":0.27695},P:{"28":0.03035,"29":0.21247,_:"4 20 21 22 23 24 25 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.01617,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.01619,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":35.63305},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/MK.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00362,"48":0.00724,"49":0.00362,"52":0.04707,"78":0.00362,"111":0.00362,"115":0.23174,"118":0.00362,"125":0.00362,"127":0.00362,"132":0.01448,"133":0.00362,"134":0.00724,"135":0.00362,"136":0.00362,"138":0.00362,"139":0.00362,"140":0.03259,"141":0.00724,"142":0.01086,"143":0.03259,"144":0.69161,"145":0.83645,"146":0.00362,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 116 117 119 120 121 122 123 124 126 128 129 130 131 137 147 148 3.5 3.6"},D:{"49":0.01086,"53":0.00362,"56":0.00362,"58":0.01086,"64":0.00362,"65":0.00362,"66":0.00362,"68":0.00362,"69":0.01811,"70":0.00724,"73":0.00724,"79":0.28606,"83":0.01448,"86":0.00362,"87":0.12674,"89":0.00362,"92":0.00362,"93":0.01086,"94":0.00724,"95":0.01086,"96":0.00362,"98":0.00362,"99":0.00724,"100":0.00362,"101":0.00362,"102":0.02173,"103":0.00724,"104":0.01086,"108":0.02173,"109":1.81412,"110":0.00724,"111":0.01811,"112":2.91853,"113":0.00362,"114":0.01086,"116":0.03983,"117":0.00362,"118":0.00362,"119":0.00724,"120":0.03621,"121":0.01811,"122":0.08328,"123":0.02535,"124":0.02173,"125":0.11225,"126":0.48521,"127":0.00724,"128":0.03621,"129":0.01086,"130":0.01086,"131":0.0688,"132":0.03259,"133":0.11225,"134":0.05069,"135":0.05069,"136":0.05069,"137":0.04345,"138":0.14484,"139":0.1376,"140":0.33313,"141":4.85214,"142":14.14363,"143":0.02897,"144":0.00362,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 59 60 61 62 63 67 71 72 74 75 76 77 78 80 81 84 85 88 90 91 97 105 106 107 115 145 146"},F:{"36":0.01086,"46":0.04345,"92":0.03621,"93":0.00724,"95":0.04345,"114":0.00724,"115":0.00362,"117":0.00362,"119":0.00724,"120":0.00362,"122":0.2245,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 116 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00362,"92":0.00362,"109":0.01086,"114":0.05069,"115":0.01448,"122":0.00362,"131":0.01811,"132":0.00362,"133":0.00724,"134":0.01086,"135":0.00724,"136":0.01448,"137":0.00724,"138":0.01086,"139":0.00362,"140":0.01448,"141":0.16657,"142":1.64393,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 116 117 118 119 120 121 123 124 125 126 127 128 129 130 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 17.2 18.0 18.1 18.2","13.1":0.00362,"15.6":0.01448,"16.3":0.01811,"16.5":0.00724,"16.6":0.03621,"17.0":0.01086,"17.1":0.06518,"17.3":0.00362,"17.4":0.00724,"17.5":0.02535,"17.6":0.02535,"18.3":0.04345,"18.4":0.00724,"18.5-18.6":0.03983,"26.0":0.07242,"26.1":0.10863,"26.2":0.01086},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0019,"5.0-5.1":0,"6.0-6.1":0.00761,"7.0-7.1":0.00571,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01712,"10.0-10.2":0.0019,"10.3":0.03044,"11.0-11.2":0.35387,"11.3-11.4":0.01142,"12.0-12.1":0.00381,"12.2-12.5":0.08942,"13.0-13.1":0,"13.2":0.00951,"13.3":0.00381,"13.4-13.7":0.01712,"14.0-14.4":0.02854,"14.5-14.8":0.03615,"15.0-15.1":0.03044,"15.2-15.3":0.02473,"15.4":0.02664,"15.5":0.02854,"15.6-15.8":0.41285,"16.0":0.05137,"16.1":0.09513,"16.2":0.04947,"16.3":0.09132,"16.4":0.02283,"16.5":0.03805,"16.6-16.7":0.55744,"17.0":0.04756,"17.1":0.05708,"17.2":0.04186,"17.3":0.05898,"17.4":0.09703,"17.5":0.18454,"17.6-17.7":0.4528,"18.0":0.10083,"18.1":0.21308,"18.2":0.11415,"18.3":0.37099,"18.4":0.19025,"18.5-18.7":13.28527,"26.0":0.91131,"26.1":0.8314},P:{"4":0.19363,"21":0.01019,"22":0.01019,"23":0.01019,"24":0.02038,"25":0.04076,"26":0.03057,"27":0.06115,"28":0.3363,"29":2.12989,_:"20 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.02038,"6.2-6.4":0.01019,"7.2-7.4":0.15286,"13.0":0.01019},I:{"0":0.01274,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.17864,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01086,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00638},H:{"0":0},L:{"0":44.58578},R:{_:"0"},M:{"0":0.0957}};
Index: node_modules/caniuse-lite/data/regions/ML.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ML.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ML.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01741,"52":0.0029,"56":0.0029,"60":0.0029,"72":0.0029,"84":0.0029,"85":0.0029,"115":0.07835,"125":0.0029,"127":0.01161,"132":0.0029,"133":0.01161,"136":0.0029,"137":0.0029,"139":0.0029,"140":0.01451,"141":0.0058,"142":0.00871,"143":0.02031,"144":0.36275,"145":0.49334,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 128 129 130 131 134 135 138 146 147 148 3.5 3.6"},D:{"39":0.0029,"49":0.02322,"58":0.0058,"62":0.0058,"65":0.0029,"66":0.0029,"68":0.0029,"69":0.02612,"72":0.00871,"73":0.0058,"74":0.0058,"75":0.0058,"78":0.0058,"79":0.02902,"81":0.0029,"83":0.0029,"84":0.0029,"86":0.0029,"87":0.02031,"88":0.00871,"89":0.0029,"91":0.0029,"92":0.00871,"93":0.0029,"95":0.00871,"97":0.0058,"98":0.01741,"99":0.0029,"103":0.01741,"107":0.0029,"109":0.09286,"111":0.02322,"112":8.60443,"114":0.01741,"115":0.0029,"116":0.01451,"119":0.00871,"120":0.0029,"122":0.03482,"124":0.0058,"125":0.15671,"126":1.45971,"127":0.0058,"128":0.02902,"129":0.00871,"130":0.0058,"131":0.10447,"132":0.02031,"133":0.0058,"134":0.00871,"135":0.03192,"136":0.01451,"137":0.02322,"138":0.22345,"139":0.07255,"140":0.13349,"141":1.31751,"142":3.59558,"143":0.0029,"144":0.0029,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 63 64 67 70 71 76 77 80 85 90 94 96 100 101 102 104 105 106 108 110 113 117 118 121 123 145 146"},F:{"79":0.0029,"90":0.01161,"92":0.01741,"95":0.00871,"109":0.0029,"113":0.0029,"114":0.01161,"119":0.0058,"120":0.0058,"121":0.0029,"122":0.09577,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0029,"14":0.0029,"16":0.0029,"18":0.02031,"89":0.00871,"90":0.0058,"92":0.03773,"100":0.02031,"109":0.00871,"113":0.0029,"114":0.22055,"122":0.0058,"128":0.0029,"129":0.0029,"132":0.0029,"133":0.0029,"134":0.01161,"135":0.0029,"136":0.0058,"137":0.0058,"138":0.01741,"139":0.02031,"140":0.05514,"141":0.15381,"142":1.87469,"143":0.02902,_:"13 15 17 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 119 120 121 123 124 125 126 127 130 131"},E:{"7":0.0029,"13":0.0029,_:"0 4 5 6 8 9 10 11 12 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.4 16.5 17.0 17.2 18.0 18.1 18.2 26.2","13.1":0.00871,"14.1":0.03773,"15.6":0.02031,"16.1":0.0029,"16.6":0.05804,"17.1":0.0029,"17.3":0.03773,"17.4":0.0029,"17.5":0.01741,"17.6":0.05804,"18.3":0.02031,"18.4":0.0058,"18.5-18.6":0.00871,"26.0":0.07835,"26.1":0.09286},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0,"6.0-6.1":0.0025,"7.0-7.1":0.00187,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00562,"10.0-10.2":0.00062,"10.3":0.00998,"11.0-11.2":0.11605,"11.3-11.4":0.00374,"12.0-12.1":0.00125,"12.2-12.5":0.02932,"13.0-13.1":0,"13.2":0.00312,"13.3":0.00125,"13.4-13.7":0.00562,"14.0-14.4":0.00936,"14.5-14.8":0.01185,"15.0-15.1":0.00998,"15.2-15.3":0.00811,"15.4":0.00873,"15.5":0.00936,"15.6-15.8":0.13539,"16.0":0.01685,"16.1":0.0312,"16.2":0.01622,"16.3":0.02995,"16.4":0.00749,"16.5":0.01248,"16.6-16.7":0.18281,"17.0":0.0156,"17.1":0.01872,"17.2":0.01373,"17.3":0.01934,"17.4":0.03182,"17.5":0.06052,"17.6-17.7":0.14849,"18.0":0.03307,"18.1":0.06988,"18.2":0.03743,"18.3":0.12166,"18.4":0.06239,"18.5-18.7":4.35679,"26.0":0.29885,"26.1":0.27265},P:{"4":0.01029,"20":0.01029,"21":0.01029,"22":0.02059,"23":0.02059,"24":0.13382,"25":0.13382,"26":0.05147,"27":0.20588,"28":0.48383,"29":0.60736,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.06177,"19.0":0.01029},I:{"0":0.01418,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.75368,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.04353,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.0071,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.0071},O:{"0":0.08518},H:{"0":0.02},L:{"0":69.4409},R:{_:"0"},M:{"0":0.09227}};
Index: node_modules/caniuse-lite/data/regions/MM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"49":0.00321,"57":0.00321,"72":0.00321,"108":0.00321,"113":0.00321,"115":0.09642,"123":0.00321,"127":0.01928,"128":0.00321,"133":0.00964,"134":0.00321,"135":0.00321,"136":0.00321,"137":0.00321,"138":0.00643,"139":0.00643,"140":0.01286,"141":0.01286,"142":0.01607,"143":0.06107,"144":0.45639,"145":0.51103,"146":0.00643,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 114 116 117 118 119 120 121 122 124 125 126 129 130 131 132 147 148 3.5 3.6"},D:{"37":0.00321,"50":0.00643,"55":0.00321,"56":0.00321,"61":0.00321,"62":0.00321,"65":0.00321,"66":0.00321,"67":0.00321,"68":0.00321,"70":0.00643,"71":0.00964,"72":0.00321,"74":0.00321,"76":0.00321,"79":0.00643,"80":0.00964,"81":0.00321,"83":0.00321,"86":0.00321,"87":0.00643,"88":0.00321,"89":0.00643,"91":0.00321,"92":0.00321,"93":0.00321,"95":0.00964,"97":0.00643,"99":0.00643,"100":0.00321,"103":0.00964,"105":0.00643,"106":0.00643,"107":0.00321,"108":0.00964,"109":0.27319,"110":0.00321,"111":0.00321,"112":0.00321,"113":0.00321,"114":0.03857,"115":0.00643,"116":0.01928,"117":0.00321,"118":0.00321,"119":0.00964,"120":0.00964,"121":0.00964,"122":0.045,"123":0.01286,"124":0.01928,"125":0.04821,"126":2.12445,"127":0.00964,"128":0.03214,"129":0.01928,"130":0.02571,"131":0.05464,"132":0.01286,"133":0.01928,"134":2.69655,"135":0.04821,"136":0.02571,"137":0.04821,"138":0.13499,"139":1.00598,"140":0.55924,"141":1.84484,"142":7.64932,"143":0.03535,"144":0.00643,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 57 58 59 60 63 64 69 73 75 77 78 84 85 90 94 96 98 101 102 104 145 146"},F:{"92":0.01607,"95":0.00643,"101":0.00321,"109":0.00321,"114":0.00321,"116":0.00321,"117":0.00321,"119":0.00321,"120":0.01286,"121":0.00643,"122":0.10606,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 102 103 104 105 106 107 108 110 111 112 113 115 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01928,"90":0.00964,"92":0.02893,"100":0.00321,"109":0.00964,"114":0.07071,"120":0.01286,"122":0.00643,"124":0.00321,"128":0.00321,"130":0.00643,"133":0.00964,"134":0.00321,"136":0.00643,"137":0.00321,"138":0.00643,"139":0.00643,"140":0.01928,"141":0.1607,"142":1.28881,"143":0.00643,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 123 125 126 127 129 131 132 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 15.4 15.5 16.0 16.2 16.4 16.5 17.2 17.3","13.1":0.00964,"14.1":0.00964,"15.1":0.00964,"15.6":0.01928,"16.1":0.00964,"16.3":0.00643,"16.6":0.06107,"17.0":0.00321,"17.1":0.01286,"17.4":0.00964,"17.5":0.00643,"17.6":0.03535,"18.0":0.00643,"18.1":0.00643,"18.2":0.00321,"18.3":0.01928,"18.4":0.00643,"18.5-18.6":0.04821,"26.0":0.13499,"26.1":0.13177,"26.2":0.00321},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00059,"5.0-5.1":0,"6.0-6.1":0.00238,"7.0-7.1":0.00178,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00535,"10.0-10.2":0.00059,"10.3":0.00951,"11.0-11.2":0.11058,"11.3-11.4":0.00357,"12.0-12.1":0.00119,"12.2-12.5":0.02794,"13.0-13.1":0,"13.2":0.00297,"13.3":0.00119,"13.4-13.7":0.00535,"14.0-14.4":0.00892,"14.5-14.8":0.0113,"15.0-15.1":0.00951,"15.2-15.3":0.00773,"15.4":0.00832,"15.5":0.00892,"15.6-15.8":0.12902,"16.0":0.01605,"16.1":0.02973,"16.2":0.01546,"16.3":0.02854,"16.4":0.00713,"16.5":0.01189,"16.6-16.7":0.1742,"17.0":0.01486,"17.1":0.01784,"17.2":0.01308,"17.3":0.01843,"17.4":0.03032,"17.5":0.05767,"17.6-17.7":0.1415,"18.0":0.03151,"18.1":0.06659,"18.2":0.03567,"18.3":0.11594,"18.4":0.05945,"18.5-18.7":4.15168,"26.0":0.28479,"26.1":0.25981},P:{"4":0.01062,"21":0.01062,"22":0.01062,"23":0.01062,"25":0.01062,"26":0.01062,"27":0.01062,"28":0.06374,"29":0.33994,_:"20 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01062},I:{"0":0.14233,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.16289,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.10181},O:{"0":0.40043},H:{"0":0},L:{"0":71.30118},R:{_:"0"},M:{"0":0.10181}};
Index: node_modules/caniuse-lite/data/regions/MN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01969,"115":0.10502,"124":0.00656,"127":0.00656,"128":0.00656,"138":0.00656,"140":0.01313,"142":0.01313,"143":0.01969,"144":0.39384,"145":0.53168,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 125 126 129 130 131 132 133 134 135 136 137 139 141 146 147 148 3.5 3.6"},D:{"49":0.00656,"50":0.00656,"66":0.00656,"69":0.03282,"70":0.00656,"71":0.00656,"72":0.00656,"74":0.01969,"77":0.00656,"78":0.00656,"79":0.00656,"80":0.00656,"81":0.00656,"85":0.00656,"86":0.00656,"87":0.01969,"92":0.00656,"94":0.00656,"96":0.00656,"99":0.00656,"100":0.00656,"102":0.01969,"103":0.01969,"104":0.00656,"106":0.00656,"107":0.00656,"108":0.01313,"109":1.06337,"110":0.00656,"111":0.03282,"112":20.32214,"114":0.01313,"116":0.03938,"117":0.00656,"119":0.01313,"120":0.01969,"121":0.00656,"122":0.13128,"123":0.01313,"124":0.01313,"125":0.50543,"126":1.87074,"127":0.01313,"128":0.05251,"129":0.01969,"130":0.01969,"131":0.11815,"132":0.11159,"133":0.04595,"134":0.07877,"135":0.05251,"136":0.05251,"137":0.11815,"138":0.59732,"139":0.20348,"140":0.54481,"141":4.60793,"142":17.20424,"143":0.03938,"144":0.01313,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 73 75 76 83 84 88 89 90 91 93 95 97 98 101 105 113 115 118 145 146"},F:{"79":0.00656,"86":0.00656,"92":0.00656,"95":0.01969,"119":0.00656,"120":0.01313,"121":0.00656,"122":0.61702,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00656,"18":0.03282,"90":0.00656,"92":0.03938,"100":0.00656,"109":0.12472,"111":0.00656,"114":0.46604,"121":0.00656,"122":0.02626,"123":0.01313,"126":0.00656,"127":0.00656,"128":0.00656,"129":0.00656,"130":0.00656,"131":0.01313,"132":0.00656,"133":0.01969,"134":0.00656,"135":0.01313,"136":0.02626,"137":0.01313,"138":0.02626,"139":0.02626,"140":0.10502,"141":0.70891,"142":5.86822,"143":0.02626,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113 115 116 117 118 119 120 124 125"},E:{"14":0.00656,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.5 16.0 16.5 17.0","12.1":0.00656,"13.1":0.00656,"14.1":0.03282,"15.1":0.00656,"15.2-15.3":0.00656,"15.4":0.00656,"15.6":0.05251,"16.1":0.00656,"16.2":0.00656,"16.3":0.01313,"16.4":0.01313,"16.6":0.19692,"17.1":0.05251,"17.2":0.01969,"17.3":0.01313,"17.4":0.05908,"17.5":0.03282,"17.6":0.0722,"18.0":0.00656,"18.1":0.01969,"18.2":0.01313,"18.3":0.0919,"18.4":0.03938,"18.5-18.6":0.19036,"26.0":0.21005,"26.1":0.20348,"26.2":0.00656},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00104,"5.0-5.1":0,"6.0-6.1":0.00414,"7.0-7.1":0.00311,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00932,"10.0-10.2":0.00104,"10.3":0.01657,"11.0-11.2":0.19268,"11.3-11.4":0.00622,"12.0-12.1":0.00207,"12.2-12.5":0.04869,"13.0-13.1":0,"13.2":0.00518,"13.3":0.00207,"13.4-13.7":0.00932,"14.0-14.4":0.01554,"14.5-14.8":0.01968,"15.0-15.1":0.01657,"15.2-15.3":0.01347,"15.4":0.0145,"15.5":0.01554,"15.6-15.8":0.22479,"16.0":0.02797,"16.1":0.0518,"16.2":0.02693,"16.3":0.04972,"16.4":0.01243,"16.5":0.02072,"16.6-16.7":0.30352,"17.0":0.0259,"17.1":0.03108,"17.2":0.02279,"17.3":0.03211,"17.4":0.05283,"17.5":0.10048,"17.6-17.7":0.24655,"18.0":0.0549,"18.1":0.11602,"18.2":0.06215,"18.3":0.202,"18.4":0.10359,"18.5-18.7":7.23377,"26.0":0.4962,"26.1":0.45269},P:{"4":0.06227,"21":0.01038,"23":0.02076,"24":0.01038,"25":0.02076,"26":0.04151,"27":0.12454,"28":0.44627,"29":1.8266,_:"20 22 5.0-5.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","6.2-6.4":0.01038,"7.2-7.4":0.06227,"9.2":0.01038},I:{"0":0.01716,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.11342,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0919,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.02062},O:{"0":0.06874},H:{"0":0},L:{"0":24.01748},R:{_:"0"},M:{"0":0.1203}};
Index: node_modules/caniuse-lite/data/regions/MO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"72":0.01616,"115":0.04444,"123":0.00404,"128":0.17776,"131":0.00404,"140":0.34744,"142":0.00404,"143":0.03232,"144":0.48884,"145":0.56964,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 124 125 126 127 129 130 132 133 134 135 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"11":0.00404,"37":0.00404,"49":0.00404,"58":0.00808,"68":0.00404,"71":0.01212,"72":0.01212,"78":0.00808,"79":0.06464,"81":0.00404,"83":0.00808,"85":0.00404,"86":0.00404,"87":0.00808,"88":0.00404,"92":0.02828,"97":0.02828,"99":0.00404,"101":0.00808,"102":0.00808,"103":0.00808,"105":0.03636,"107":0.00808,"108":0.04848,"109":0.31108,"111":0.00404,"114":0.16968,"115":0.02424,"116":0.02828,"117":0.00808,"118":0.01212,"119":0.0202,"120":0.02828,"121":0.01212,"122":0.05656,"123":0.00808,"124":0.03636,"125":2.89668,"126":0.02424,"127":0.03636,"128":0.12524,"129":0.00808,"130":0.13332,"131":0.04444,"132":0.07272,"133":0.0202,"134":0.14948,"135":0.0404,"136":0.05252,"137":0.06464,"138":0.16968,"139":0.16564,"140":0.25856,"141":4.77124,"142":12.11596,"143":0.13332,"144":0.0808,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 69 70 73 74 75 76 77 80 84 89 90 91 93 94 95 96 98 100 104 106 110 112 113 145 146"},F:{"92":0.02828,"93":0.00404,"95":0.0202,"122":0.09696,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01616,"90":0.00404,"92":0.00808,"100":0.00404,"108":0.00404,"109":0.0202,"113":0.00404,"114":0.00404,"118":0.00808,"120":0.01616,"122":0.01616,"124":0.01616,"125":0.00808,"126":0.00808,"127":0.0202,"128":0.00404,"130":0.00404,"131":0.00808,"133":0.00808,"134":0.00404,"135":0.09696,"136":0.00404,"137":0.02424,"138":0.0404,"139":0.03232,"140":0.06868,"141":0.65852,"142":4.62176,"143":0.01212,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111 112 115 116 117 119 121 123 129 132"},E:{"14":0.00808,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.0","13.1":0.0202,"14.1":0.18988,"15.1":0.00808,"15.2-15.3":0.00404,"15.4":0.00808,"15.5":0.00808,"15.6":0.09292,"16.0":0.00404,"16.1":0.00404,"16.2":0.00404,"16.3":0.01212,"16.4":0.03232,"16.5":0.04444,"16.6":0.29088,"17.1":0.202,"17.2":0.0202,"17.3":0.01616,"17.4":0.18584,"17.5":0.04444,"17.6":0.09696,"18.0":0.03232,"18.1":0.01616,"18.2":0.02828,"18.3":0.0808,"18.4":0.03232,"18.5-18.6":0.16968,"26.0":0.21816,"26.1":0.26664,"26.2":0.00404},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0,"6.0-6.1":0.00992,"7.0-7.1":0.00744,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02232,"10.0-10.2":0.00248,"10.3":0.03968,"11.0-11.2":0.46127,"11.3-11.4":0.01488,"12.0-12.1":0.00496,"12.2-12.5":0.11656,"13.0-13.1":0,"13.2":0.0124,"13.3":0.00496,"13.4-13.7":0.02232,"14.0-14.4":0.0372,"14.5-14.8":0.04712,"15.0-15.1":0.03968,"15.2-15.3":0.03224,"15.4":0.03472,"15.5":0.0372,"15.6-15.8":0.53815,"16.0":0.06696,"16.1":0.124,"16.2":0.06448,"16.3":0.11904,"16.4":0.02976,"16.5":0.0496,"16.6-16.7":0.72663,"17.0":0.062,"17.1":0.0744,"17.2":0.05456,"17.3":0.07688,"17.4":0.12648,"17.5":0.24056,"17.6-17.7":0.59023,"18.0":0.13144,"18.1":0.27776,"18.2":0.1488,"18.3":0.48359,"18.4":0.248,"18.5-18.7":17.31753,"26.0":1.1879,"26.1":1.08374},P:{"4":0.0314,"21":0.01047,"23":0.01047,"24":0.01047,"26":0.04187,"27":0.02093,"28":0.55476,"29":2.9936,_:"20 22 25 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 19.0","7.2-7.4":0.01047,"13.0":0.02093,"17.0":0.01047,"18.0":0.0628},I:{"0":0.03571,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.07152,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.34744,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.21456},O:{"0":0.73904},H:{"0":0},L:{"0":34.02088},R:{_:"0"},M:{"0":0.87016}};
Index: node_modules/caniuse-lite/data/regions/MP.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.02273,"136":0.02652,"143":0.00379,"144":0.43952,"145":0.76159,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 140 141 142 146 147 148 3.5 3.6"},D:{"76":0.01137,"79":0.13262,"100":0.00379,"103":0.0341,"109":0.28418,"115":0.04547,"116":0.01516,"121":0.00379,"122":0.17051,"125":0.4471,"126":0.02652,"127":0.00379,"128":0.10988,"130":0.01137,"132":0.01516,"133":0.00379,"134":0.01137,"135":0.01137,"136":0.0341,"137":0.08715,"138":0.73507,"139":0.09851,"140":0.25765,"141":4.9257,"142":10.01433,"143":0.07578,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 104 105 106 107 108 110 111 112 113 114 117 118 119 120 123 124 129 131 144 145 146"},F:{"122":0.94725,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"132":0.01137,"134":0.00379,"136":0.00379,"137":0.00379,"141":2.1029,"142":6.88461,"143":0.0341,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 133 135 138 139 140"},E:{"14":0.00379,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.5 16.0 16.1 16.2 16.3 17.2 17.4 18.0 18.1","13.1":0.01516,"15.4":0.00379,"15.6":0.02273,"16.4":0.02273,"16.5":0.09473,"16.6":0.14398,"17.0":0.02273,"17.1":0.08336,"17.3":0.04547,"17.5":0.06062,"17.6":0.02652,"18.2":0.00379,"18.3":0.02273,"18.4":0.11367,"18.5-18.6":0.29554,"26.0":0.05305,"26.1":0.18187,"26.2":0.01516},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00103,"5.0-5.1":0,"6.0-6.1":0.00414,"7.0-7.1":0.0031,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00931,"10.0-10.2":0.00103,"10.3":0.01656,"11.0-11.2":0.19249,"11.3-11.4":0.00621,"12.0-12.1":0.00207,"12.2-12.5":0.04864,"13.0-13.1":0,"13.2":0.00517,"13.3":0.00207,"13.4-13.7":0.00931,"14.0-14.4":0.01552,"14.5-14.8":0.01966,"15.0-15.1":0.01656,"15.2-15.3":0.01345,"15.4":0.01449,"15.5":0.01552,"15.6-15.8":0.22458,"16.0":0.02794,"16.1":0.05175,"16.2":0.02691,"16.3":0.04968,"16.4":0.01242,"16.5":0.0207,"16.6-16.7":0.30323,"17.0":0.02587,"17.1":0.03105,"17.2":0.02277,"17.3":0.03208,"17.4":0.05278,"17.5":0.10039,"17.6-17.7":0.24631,"18.0":0.05485,"18.1":0.11591,"18.2":0.0621,"18.3":0.20181,"18.4":0.10349,"18.5-18.7":7.22684,"26.0":0.49573,"26.1":0.45226},P:{"21":0.02031,"25":0.04062,"27":0.01015,"28":0.13201,"29":2.95488,_:"4 20 22 23 24 26 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 19.0","18.0":0.01015},I:{"0":0.0062,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.06833,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01242},O:{"0":0.37272},H:{"0":0},L:{"0":39.27484},R:{_:"0"},M:{"0":2.1245}};
Index: node_modules/caniuse-lite/data/regions/MQ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MQ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MQ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00422,"45":0.00422,"78":0.02952,"109":0.00422,"115":0.06747,"128":0.01265,"135":0.00422,"136":0.0253,"140":0.02952,"142":0.00422,"143":0.00843,"144":1.96934,"145":3.26818,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 137 138 139 141 146 147 148 3.5 3.6"},D:{"56":0.01265,"63":0.00422,"70":0.00422,"75":0.00843,"79":0.00422,"87":0.00422,"97":0.00422,"99":0.00422,"102":0.00422,"103":0.00422,"108":0.00422,"109":0.32049,"111":0.01687,"114":0.02109,"116":0.09699,"119":0.01687,"122":0.02952,"123":0.00422,"125":0.13073,"126":0.03374,"128":0.03374,"130":0.00843,"131":0.09277,"132":0.02952,"133":0.01265,"134":0.01687,"135":0.00843,"136":0.02109,"137":0.0253,"138":0.10121,"139":0.16446,"140":3.46637,"141":4.22965,"142":10.97263,"143":0.03374,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 64 65 66 67 68 69 71 72 73 74 76 77 78 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 98 100 101 104 105 106 107 110 112 113 115 117 118 120 121 124 127 129 144 145 146"},F:{"28":0.08012,"40":0.00843,"46":0.00843,"92":0.01265,"95":0.00843,"102":0.00422,"118":0.00843,"120":0.00422,"121":0.00422,"122":0.33314,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"88":0.00422,"92":0.01687,"109":0.02109,"114":0.03795,"119":0.01687,"122":0.01265,"130":0.00422,"133":0.00422,"135":0.00422,"136":0.00843,"137":0.01265,"138":0.0506,"139":0.02952,"140":0.15181,"141":0.62833,"142":4.88329,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 120 121 123 124 125 126 127 128 129 131 132 134 143"},E:{"14":0.00843,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.2-15.3 16.0","14.1":0.01687,"15.1":0.1982,"15.4":0.00422,"15.5":0.18555,"15.6":0.15181,"16.1":0.01687,"16.2":0.00422,"16.3":0.00843,"16.4":0.00843,"16.5":0.00422,"16.6":0.1476,"17.0":0.00422,"17.1":0.07169,"17.2":0.01265,"17.3":0.00843,"17.4":0.02952,"17.5":0.02109,"17.6":0.24037,"18.0":0.00843,"18.1":0.01687,"18.2":0.00422,"18.3":0.06747,"18.4":0.01687,"18.5-18.6":0.66629,"26.0":0.46809,"26.1":0.53556,"26.2":0.06326},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00151,"5.0-5.1":0,"6.0-6.1":0.00603,"7.0-7.1":0.00452,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01356,"10.0-10.2":0.00151,"10.3":0.02411,"11.0-11.2":0.28026,"11.3-11.4":0.00904,"12.0-12.1":0.00301,"12.2-12.5":0.07082,"13.0-13.1":0,"13.2":0.00753,"13.3":0.00301,"13.4-13.7":0.01356,"14.0-14.4":0.0226,"14.5-14.8":0.02863,"15.0-15.1":0.02411,"15.2-15.3":0.01959,"15.4":0.0211,"15.5":0.0226,"15.6-15.8":0.32697,"16.0":0.04068,"16.1":0.07534,"16.2":0.03918,"16.3":0.07233,"16.4":0.01808,"16.5":0.03014,"16.6-16.7":0.44149,"17.0":0.03767,"17.1":0.0452,"17.2":0.03315,"17.3":0.04671,"17.4":0.07685,"17.5":0.14616,"17.6-17.7":0.35862,"18.0":0.07986,"18.1":0.16876,"18.2":0.09041,"18.3":0.29382,"18.4":0.15068,"18.5-18.7":10.52191,"26.0":0.72175,"26.1":0.65847},P:{"22":0.01045,"23":0.01045,"24":0.02091,"25":0.06273,"26":0.37638,"27":0.10455,"28":0.72139,"29":3.50241,_:"4 20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.04182},I:{"0":0.01155,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.0536,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00422,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0.01},L:{"0":41.22124},R:{_:"0"},M:{"0":0.42209}};
Index: node_modules/caniuse-lite/data/regions/MR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00164,"34":0.00164,"47":0.00164,"72":0.00329,"115":0.07394,"128":0.00164,"136":0.00164,"137":0.00164,"140":0.00493,"142":0.00493,"143":0.00493,"144":0.13801,"145":0.17252,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 138 139 141 146 147 148 3.5 3.6"},D:{"37":0.00164,"38":0.00164,"58":0.00657,"64":0.00164,"65":0.00657,"69":0.00329,"70":0.01314,"72":0.00329,"74":0.00986,"75":0.00164,"77":0.00986,"79":0.00329,"83":0.00657,"86":0.00329,"87":0.00329,"88":0.00164,"90":0.00329,"93":0.00493,"98":0.01807,"99":0.00329,"100":0.00657,"103":0.00329,"104":0.00329,"107":0.00164,"108":0.00329,"109":0.19223,"111":0.00329,"113":0.00493,"114":0.00164,"116":0.00822,"119":0.00164,"120":0.04272,"122":0.00329,"123":0.02957,"124":0.00164,"125":0.03943,"126":0.03779,"128":0.00164,"129":0.00657,"130":0.00164,"131":0.03122,"132":0.00164,"133":0.00329,"134":0.00493,"135":0.01643,"136":0.03122,"137":0.01972,"138":0.05258,"139":0.04929,"140":0.11337,"141":0.69499,"142":1.75637,"143":0.00164,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 66 67 68 71 73 76 78 80 81 84 85 89 91 92 94 95 96 97 101 102 105 106 110 112 115 117 118 121 127 144 145 146"},F:{"46":0.00164,"79":0.00164,"85":0.01479,"91":0.00164,"92":0.00822,"95":0.05422,"122":0.02629,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00164,"18":0.00986,"84":0.00164,"89":0.00164,"90":0.00164,"92":0.00822,"100":0.00164,"109":0.00164,"114":0.08379,"125":0.00164,"127":0.00164,"133":0.00164,"134":0.00164,"135":0.00164,"136":0.00164,"137":0.00164,"138":0.00657,"139":0.01314,"140":0.00986,"141":0.12651,"142":0.84943,"143":0.00164,_:"13 14 15 16 17 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 126 128 129 130 131 132"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 16.0 16.2 16.4 16.5 17.0 17.2 17.3 17.4 26.2","5.1":0.00493,"11.1":0.00164,"15.5":0.00164,"15.6":0.01314,"16.1":0.00329,"16.3":0.00329,"16.6":0.03943,"17.1":0.00329,"17.5":0.00329,"17.6":0.01807,"18.0":0.00493,"18.1":0.00164,"18.2":0.01479,"18.3":0.00493,"18.4":0.00164,"18.5-18.6":0.04765,"26.0":0.05258,"26.1":0.02957},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00192,"5.0-5.1":0,"6.0-6.1":0.00768,"7.0-7.1":0.00576,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01729,"10.0-10.2":0.00192,"10.3":0.03074,"11.0-11.2":0.35731,"11.3-11.4":0.01153,"12.0-12.1":0.00384,"12.2-12.5":0.09029,"13.0-13.1":0,"13.2":0.00961,"13.3":0.00384,"13.4-13.7":0.01729,"14.0-14.4":0.02882,"14.5-14.8":0.0365,"15.0-15.1":0.03074,"15.2-15.3":0.02497,"15.4":0.02689,"15.5":0.02882,"15.6-15.8":0.41687,"16.0":0.05187,"16.1":0.09605,"16.2":0.04995,"16.3":0.09221,"16.4":0.02305,"16.5":0.03842,"16.6-16.7":0.56287,"17.0":0.04803,"17.1":0.05763,"17.2":0.04226,"17.3":0.05955,"17.4":0.09797,"17.5":0.18634,"17.6-17.7":0.45721,"18.0":0.10182,"18.1":0.21516,"18.2":0.11526,"18.3":0.3746,"18.4":0.1921,"18.5-18.7":13.41465,"26.0":0.92018,"26.1":0.8395},P:{"20":0.02022,"21":0.09101,"22":0.21235,"23":0.12134,"24":1.22356,"25":0.54605,"26":0.52583,"27":0.80896,"28":1.8505,"29":1.56737,_:"4 5.0-5.4 6.2-6.4 8.2 10.1 12.0 15.0 17.0","7.2-7.4":1.173,"9.2":0.01011,"11.1-11.2":0.03034,"13.0":0.01011,"14.0":0.05056,"16.0":0.06067,"18.0":0.04045,"19.0":0.22246},I:{"0":0.08344,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.58492,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02507},H:{"0":0},L:{"0":65.78703},R:{_:"0"},M:{"0":0.04178}};
Index: node_modules/caniuse-lite/data/regions/MS.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.05676,"144":0.05676,"145":0.11352,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"58":0.05676,"93":0.05676,"106":0.17028,"109":0.11352,"111":0.11352,"116":0.22704,"125":0.39164,"130":1.18061,"132":0.11352,"137":0.11352,"138":0.05676,"139":0.22704,"140":1.79362,"141":4.3762,"142":24.17408,"143":0.05676,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 102 103 104 105 107 108 110 112 113 114 115 117 118 119 120 121 122 123 124 126 127 128 129 131 133 134 135 136 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.05676,"140":0.05676,"141":0.78329,"142":9.87056,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.3 17.5 18.0 18.1 18.2 18.3 18.5-18.6 26.1 26.2","16.1":4.5408,"16.6":0.95357,"17.4":0.05676,"17.6":0.05676,"18.4":0.05676,"26.0":0.11352},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00155,"5.0-5.1":0,"6.0-6.1":0.00619,"7.0-7.1":0.00464,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01393,"10.0-10.2":0.00155,"10.3":0.02477,"11.0-11.2":0.28791,"11.3-11.4":0.00929,"12.0-12.1":0.0031,"12.2-12.5":0.07275,"13.0-13.1":0,"13.2":0.00774,"13.3":0.0031,"13.4-13.7":0.01393,"14.0-14.4":0.02322,"14.5-14.8":0.02941,"15.0-15.1":0.02477,"15.2-15.3":0.02012,"15.4":0.02167,"15.5":0.02322,"15.6-15.8":0.3359,"16.0":0.04179,"16.1":0.0774,"16.2":0.04025,"16.3":0.0743,"16.4":0.01858,"16.5":0.03096,"16.6-16.7":0.45354,"17.0":0.0387,"17.1":0.04644,"17.2":0.03405,"17.3":0.04799,"17.4":0.07894,"17.5":0.15015,"17.6-17.7":0.3684,"18.0":0.08204,"18.1":0.17337,"18.2":0.09288,"18.3":0.30184,"18.4":0.15479,"18.5-18.7":10.80911,"26.0":0.74145,"26.1":0.67644},P:{"4":0.32511,"29":2.27578,_:"20 21 22 23 24 25 26 27 28 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.06967,"17.0":0.12772},I:{"0":0.25914,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":26.07684},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/MT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.01094,"113":0.00547,"115":0.04377,"121":0.00547,"133":0.00547,"134":0.00547,"136":0.00547,"140":0.00547,"141":0.02736,"142":0.01094,"143":0.03283,"144":0.50333,"145":0.72764,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 122 123 124 125 126 127 128 129 130 131 132 135 137 138 139 146 147 148 3.5 3.6"},D:{"77":0.00547,"79":0.00547,"86":0.01094,"87":0.00547,"89":0.00547,"90":0.00547,"100":0.00547,"103":0.08754,"107":0.00547,"108":0.01094,"109":0.53069,"111":0.01641,"112":2.77927,"114":0.00547,"115":0.01094,"116":0.10942,"117":0.00547,"118":0.01641,"119":0.01094,"120":0.04377,"122":0.18054,"123":1.02308,"124":0.43221,"125":0.07659,"126":0.30638,"127":0.26261,"128":0.10395,"129":0.01094,"130":0.01094,"131":0.09848,"132":0.02736,"133":0.02736,"134":0.04377,"135":0.02188,"136":0.01641,"137":0.09848,"138":0.20243,"139":0.55257,"140":0.4158,"141":7.38585,"142":22.45298,"143":0.02188,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 83 84 85 88 91 92 93 94 95 96 97 98 99 101 102 104 105 106 110 113 121 144 145 146"},F:{"28":0.00547,"92":0.02188,"93":0.00547,"111":0.01094,"122":0.61275,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00547,"109":0.01641,"112":0.01094,"114":0.01094,"117":0.02736,"120":0.01094,"122":0.00547,"129":0.00547,"131":0.01641,"133":0.00547,"137":0.00547,"138":0.00547,"139":0.01094,"140":0.0383,"141":0.66746,"142":6.15488,"143":0.00547,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 115 116 118 119 121 123 124 125 126 127 128 130 132 134 135 136"},E:{"14":0.00547,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.4 16.0 16.1","12.1":0.01094,"13.1":0.00547,"14.1":0.01641,"15.1":0.01641,"15.2-15.3":0.00547,"15.5":0.01094,"15.6":0.09301,"16.2":0.00547,"16.3":0.01641,"16.4":0.11489,"16.5":0.02188,"16.6":0.11489,"17.0":0.02188,"17.1":0.06018,"17.2":0.02188,"17.3":0.03283,"17.4":0.06018,"17.5":0.0383,"17.6":0.15866,"18.0":0.01641,"18.1":0.03283,"18.2":0.01641,"18.3":0.06018,"18.4":0.02736,"18.5-18.6":0.15319,"26.0":0.62917,"26.1":0.33373,"26.2":0.05471},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00159,"5.0-5.1":0,"6.0-6.1":0.00637,"7.0-7.1":0.00477,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01432,"10.0-10.2":0.00159,"10.3":0.02546,"11.0-11.2":0.29602,"11.3-11.4":0.00955,"12.0-12.1":0.00318,"12.2-12.5":0.0748,"13.0-13.1":0,"13.2":0.00796,"13.3":0.00318,"13.4-13.7":0.01432,"14.0-14.4":0.02387,"14.5-14.8":0.03024,"15.0-15.1":0.02546,"15.2-15.3":0.02069,"15.4":0.02228,"15.5":0.02387,"15.6-15.8":0.34535,"16.0":0.04297,"16.1":0.07957,"16.2":0.04138,"16.3":0.07639,"16.4":0.0191,"16.5":0.03183,"16.6-16.7":0.46631,"17.0":0.03979,"17.1":0.04774,"17.2":0.03501,"17.3":0.04934,"17.4":0.08117,"17.5":0.15437,"17.6-17.7":0.37877,"18.0":0.08435,"18.1":0.17825,"18.2":0.09549,"18.3":0.31034,"18.4":0.15915,"18.5-18.7":11.11338,"26.0":0.76232,"26.1":0.69548},P:{"4":0.01041,"21":0.02083,"26":0.01041,"27":0.02083,"28":0.14578,"29":2.40543,_:"20 22 23 24 25 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.03124},I:{"0":0.06332,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.18569,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.04982},H:{"0":0},L:{"0":28.96917},R:{_:"0"},M:{"0":0.22192}};
Index: node_modules/caniuse-lite/data/regions/MU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00344,"52":0.00344,"78":0.00344,"80":0.00344,"115":0.09979,"119":0.00344,"120":0.00688,"124":0.00344,"125":0.00344,"128":0.00344,"133":0.00344,"136":0.00344,"139":0.00344,"140":0.04129,"141":0.35786,"142":0.00688,"143":0.02409,"144":0.46798,"145":0.77078,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 121 122 123 126 127 129 130 131 132 134 135 137 138 146 147 148 3.5 3.6"},D:{"68":0.00344,"69":0.00688,"75":0.00344,"79":0.01721,"87":0.00688,"88":0.00344,"91":0.00688,"96":0.00344,"97":0.01032,"99":0.00344,"103":0.01032,"107":0.00344,"108":0.00344,"109":0.36819,"110":0.00344,"111":0.00688,"112":3.14852,"114":0.02753,"115":0.00344,"116":0.04129,"117":0.03785,"118":0.01376,"119":0.01376,"120":0.01721,"121":0.01721,"122":0.05162,"123":0.01032,"124":0.02065,"125":0.68476,"126":0.2856,"127":0.01721,"128":0.02753,"129":0.21678,"130":0.16173,"131":0.03097,"132":0.01376,"133":0.09979,"134":0.02409,"135":0.02753,"136":0.02753,"137":0.07226,"138":0.22711,"139":0.16861,"140":0.39572,"141":3.96747,"142":11.72005,"143":0.02065,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 72 73 74 76 77 78 80 81 83 84 85 86 89 90 92 93 94 95 98 100 101 102 104 105 106 113 144 145 146"},F:{"92":0.01032,"106":0.00344,"117":0.00344,"122":0.24087,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 109 110 111 112 113 114 115 116 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00344,"92":0.00344,"100":0.00344,"109":0.01032,"113":0.00344,"114":0.02065,"118":0.00344,"120":0.00688,"122":0.00344,"125":0.00344,"129":0.01032,"130":0.00344,"133":0.00344,"134":0.00344,"135":0.00344,"136":0.00688,"137":0.00688,"138":0.01376,"139":0.00688,"140":0.02409,"141":0.32345,"142":2.77689,"143":0.00688,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116 117 119 121 123 124 126 127 128 131 132"},E:{"14":0.01721,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 16.2 16.4","13.1":0.00344,"14.1":0.00344,"15.4":0.00344,"15.5":0.00344,"15.6":0.03785,"16.1":0.00344,"16.3":0.00688,"16.5":0.00688,"16.6":0.04473,"17.0":0.00344,"17.1":0.02065,"17.2":0.01032,"17.3":0.00688,"17.4":0.03441,"17.5":0.02065,"17.6":0.1514,"18.0":0.01376,"18.1":0.01376,"18.2":0.01721,"18.3":0.02065,"18.4":0.01376,"18.5-18.6":0.06882,"26.0":0.20646,"26.1":0.23743,"26.2":0.01032},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00075,"5.0-5.1":0,"6.0-6.1":0.00301,"7.0-7.1":0.00226,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00677,"10.0-10.2":0.00075,"10.3":0.01204,"11.0-11.2":0.13995,"11.3-11.4":0.00451,"12.0-12.1":0.0015,"12.2-12.5":0.03536,"13.0-13.1":0,"13.2":0.00376,"13.3":0.0015,"13.4-13.7":0.00677,"14.0-14.4":0.01129,"14.5-14.8":0.0143,"15.0-15.1":0.01204,"15.2-15.3":0.00978,"15.4":0.01053,"15.5":0.01129,"15.6-15.8":0.16328,"16.0":0.02032,"16.1":0.03762,"16.2":0.01956,"16.3":0.03612,"16.4":0.00903,"16.5":0.01505,"16.6-16.7":0.22046,"17.0":0.01881,"17.1":0.02257,"17.2":0.01655,"17.3":0.02333,"17.4":0.03837,"17.5":0.07299,"17.6-17.7":0.17908,"18.0":0.03988,"18.1":0.08427,"18.2":0.04515,"18.3":0.14672,"18.4":0.07524,"18.5-18.7":5.25423,"26.0":0.36041,"26.1":0.32881},P:{"4":0.03079,"21":0.01026,"22":0.04106,"23":0.02053,"24":0.05132,"25":0.02053,"26":0.04106,"27":0.08211,"28":0.62612,"29":3.00743,_:"20 5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 17.0 18.0","6.2-6.4":0.02053,"7.2-7.4":0.11291,"14.0":0.01026,"16.0":0.04106,"19.0":0.01026},I:{"0":0.13102,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.60352,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.328},H:{"0":0},L:{"0":57.07651},R:{_:"0"},M:{"0":0.2952}};
Index: node_modules/caniuse-lite/data/regions/MV.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00285,"115":0.01995,"116":0.0057,"135":0.00855,"136":0.00285,"139":0.0057,"141":0.00285,"142":0.00285,"143":0.00285,"144":0.2508,"145":0.2565,"146":0.00285,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 137 138 140 147 148 3.5 3.6"},D:{"58":0.0057,"67":0.0057,"69":0.00285,"74":0.00285,"78":0.00855,"83":0.0057,"86":0.00285,"87":0.00285,"88":0.00285,"89":0.00285,"90":0.00285,"103":0.0114,"108":0.0057,"109":0.1083,"111":0.00285,"112":0.00285,"113":0.0057,"114":0.00285,"116":0.0057,"117":0.0057,"118":0.00285,"119":0.0057,"120":0.00285,"121":0.0114,"122":0.0171,"123":0.0057,"124":0.00285,"125":0.09975,"126":0.00285,"127":0.0057,"128":0.0684,"129":0.05415,"130":0.00855,"131":0.02565,"132":0.0171,"133":0.20235,"134":0.0228,"135":0.02565,"136":0.0228,"137":0.0285,"138":0.1083,"139":0.114,"140":0.171,"141":3.534,"142":11.62515,"143":0.0285,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 68 70 71 72 73 75 76 77 79 80 81 84 85 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 110 115 144 145 146"},F:{"92":0.0399,"93":0.00285,"119":0.00285,"120":0.00285,"121":0.00855,"122":0.21375,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00285,"18":0.00285,"109":0.00285,"114":0.05415,"118":0.00855,"120":0.00285,"121":0.00285,"122":0.00285,"128":0.00285,"130":0.00855,"131":0.01995,"132":0.00285,"134":0.00285,"136":0.01425,"137":0.00285,"138":0.0228,"139":0.00855,"140":0.01995,"141":0.3363,"142":1.9152,"143":0.00285,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 123 124 125 126 127 129 133 135"},E:{"14":0.0057,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.2 17.0","9.1":0.00285,"13.1":0.0057,"14.1":0.00285,"15.5":0.00285,"15.6":0.01425,"16.1":0.01425,"16.3":0.00285,"16.4":0.00285,"16.5":0.00285,"16.6":0.01995,"17.1":0.00855,"17.2":0.00285,"17.3":0.00855,"17.4":0.00855,"17.5":0.0513,"17.6":0.11115,"18.0":0.00285,"18.1":0.0285,"18.2":0.01425,"18.3":0.01995,"18.4":0.0171,"18.5-18.6":0.057,"26.0":0.2451,"26.1":0.19665,"26.2":0.0114},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00182,"5.0-5.1":0,"6.0-6.1":0.00729,"7.0-7.1":0.00547,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0164,"10.0-10.2":0.00182,"10.3":0.02916,"11.0-11.2":0.33899,"11.3-11.4":0.01094,"12.0-12.1":0.00365,"12.2-12.5":0.08566,"13.0-13.1":0,"13.2":0.00911,"13.3":0.00365,"13.4-13.7":0.0164,"14.0-14.4":0.02734,"14.5-14.8":0.03463,"15.0-15.1":0.02916,"15.2-15.3":0.02369,"15.4":0.02552,"15.5":0.02734,"15.6-15.8":0.39549,"16.0":0.04921,"16.1":0.09113,"16.2":0.04739,"16.3":0.08748,"16.4":0.02187,"16.5":0.03645,"16.6-16.7":0.534,"17.0":0.04556,"17.1":0.05468,"17.2":0.0401,"17.3":0.0565,"17.4":0.09295,"17.5":0.17679,"17.6-17.7":0.43376,"18.0":0.09659,"18.1":0.20412,"18.2":0.10935,"18.3":0.35539,"18.4":0.18225,"18.5-18.7":12.72676,"26.0":0.87299,"26.1":0.79645},P:{"4":0.01014,"24":0.01014,"25":0.04057,"26":0.02028,"27":0.06085,"28":0.17241,"29":1.10546,_:"20 21 22 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01014},I:{"0":0.01428,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.80795,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.3003},H:{"0":0},L:{"0":57.25545},R:{_:"0"},M:{"0":0.23595}};
Index: node_modules/caniuse-lite/data/regions/MW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00628,"46":0.00314,"54":0.00314,"56":0.00314,"72":0.00941,"98":0.00314,"101":0.00314,"112":0.00628,"115":0.11611,"118":0.00314,"127":0.00941,"128":0.00314,"133":0.00314,"134":0.00314,"135":0.00314,"136":0.01255,"137":0.00314,"138":0.00314,"139":0.00941,"140":0.01255,"141":0.00941,"142":0.00941,"143":0.0251,"144":0.60563,"145":0.55856,"146":0.00314,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 102 103 104 105 106 107 108 109 110 111 113 114 116 117 119 120 121 122 123 124 125 126 129 130 131 132 147 148 3.5 3.6"},D:{"40":0.00314,"43":0.00314,"45":0.00314,"48":0.00314,"50":0.00941,"56":0.00314,"58":0.00314,"59":0.00314,"60":0.03452,"63":0.00314,"64":0.00314,"65":0.01255,"66":0.00314,"67":0.00628,"68":0.00314,"69":0.01255,"70":0.01569,"71":0.02824,"73":0.00628,"74":0.00628,"76":0.00314,"77":0.00314,"79":0.01255,"80":0.00628,"81":0.00628,"83":0.0251,"84":0.00314,"86":0.03138,"87":0.00628,"88":0.00941,"89":0.00628,"90":0.00628,"91":0.03138,"92":0.00314,"93":0.00314,"94":0.00314,"95":0.01883,"96":0.00314,"98":0.00941,"99":0.00314,"100":0.00314,"101":0.01255,"102":0.00941,"103":0.03766,"104":0.00314,"105":0.07217,"106":0.02824,"108":0.00314,"109":0.38911,"110":0.00314,"111":0.01883,"114":0.02824,"116":0.02197,"117":0.00314,"118":0.00314,"119":0.01255,"120":0.01569,"121":0.03452,"122":0.07845,"123":0.00941,"124":0.00314,"125":0.10042,"126":0.03138,"127":0.00628,"128":0.05648,"129":0.01569,"130":0.01255,"131":0.05335,"132":0.01883,"133":0.05021,"134":0.01883,"135":0.03138,"136":0.03452,"137":0.05648,"138":0.23849,"139":0.14749,"140":0.39539,"141":2.50726,"142":7.17033,"143":0.02197,"144":0.00314,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 46 47 49 51 52 53 54 55 57 61 62 72 75 78 85 97 107 112 113 115 145 146"},F:{"34":0.00628,"36":0.00628,"37":0.00314,"40":0.00314,"42":0.01255,"49":0.00314,"79":0.00628,"89":0.00314,"90":0.00314,"91":0.00941,"92":0.04707,"93":0.01255,"95":0.07217,"113":0.00314,"117":0.00628,"120":0.01569,"121":0.00314,"122":0.26045,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 38 39 41 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.09728,"13":0.01569,"14":0.00628,"15":0.01569,"16":0.00628,"17":0.02197,"18":0.09414,"84":0.00941,"89":0.00941,"90":0.0251,"92":0.08473,"100":0.02197,"109":0.00941,"112":0.00628,"114":0.03766,"115":0.00314,"117":0.00628,"121":0.00314,"122":0.0251,"126":0.00314,"130":0.00314,"131":0.00628,"132":0.00314,"133":0.00628,"134":0.00941,"135":0.01569,"136":0.00628,"137":0.00941,"138":0.02824,"139":0.05335,"140":0.09728,"141":0.42991,"142":2.7991,"143":0.00314,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 113 116 118 119 120 123 124 125 127 128 129"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 12.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.4 18.0 18.1 18.2 18.4","10.1":0.00314,"11.1":0.00628,"13.1":0.00941,"14.1":0.01255,"15.5":0.00941,"15.6":0.07217,"16.6":0.01883,"17.3":0.00314,"17.5":0.00314,"17.6":0.03452,"18.3":0.01569,"18.5-18.6":0.01255,"26.0":0.03452,"26.1":0.04079,"26.2":0.00314},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00021,"5.0-5.1":0,"6.0-6.1":0.00083,"7.0-7.1":0.00063,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00188,"10.0-10.2":0.00021,"10.3":0.00334,"11.0-11.2":0.0388,"11.3-11.4":0.00125,"12.0-12.1":0.00042,"12.2-12.5":0.0098,"13.0-13.1":0,"13.2":0.00104,"13.3":0.00042,"13.4-13.7":0.00188,"14.0-14.4":0.00313,"14.5-14.8":0.00396,"15.0-15.1":0.00334,"15.2-15.3":0.00271,"15.4":0.00292,"15.5":0.00313,"15.6-15.8":0.04527,"16.0":0.00563,"16.1":0.01043,"16.2":0.00542,"16.3":0.01001,"16.4":0.0025,"16.5":0.00417,"16.6-16.7":0.06112,"17.0":0.00522,"17.1":0.00626,"17.2":0.00459,"17.3":0.00647,"17.4":0.01064,"17.5":0.02023,"17.6-17.7":0.04965,"18.0":0.01106,"18.1":0.02336,"18.2":0.01252,"18.3":0.04068,"18.4":0.02086,"18.5-18.7":1.45669,"26.0":0.09992,"26.1":0.09116},P:{"4":0.14483,"21":0.01034,"22":0.01034,"23":0.04138,"24":0.06207,"25":0.04138,"26":0.0931,"27":0.08276,"28":0.2069,"29":0.46552,_:"20 5.0-5.4 8.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 18.0","6.2-6.4":0.01034,"7.2-7.4":0.12414,"9.2":0.01034,"14.0":0.01034,"17.0":0.04138,"19.0":0.01034},I:{"0":0.04797,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":3.63102,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00628,"11":0.01883,_:"6 7 8 9 5.5"},N:{_:"10 11"},S:{"2.5":0.07548,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00686},O:{"0":0.67248},H:{"0":1.44},L:{"0":69.93501},R:{_:"0"},M:{"0":0.1441}};
Index: node_modules/caniuse-lite/data/regions/MX.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MX.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MX.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"3":0.00477,"4":0.0143,"5":0.00477,"34":0.00477,"52":0.00477,"67":0.00477,"78":0.00477,"99":0.00477,"112":0.00477,"115":0.10966,"120":0.00954,"128":0.00477,"131":0.00477,"134":0.00477,"136":0.00954,"138":0.00954,"139":0.00477,"140":0.03338,"141":0.00477,"142":0.00954,"143":0.01907,"144":0.50541,"145":0.62938,"146":0.00477,_:"2 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 121 122 123 124 125 126 127 129 130 132 133 135 137 147 148 3.5 3.6"},D:{"49":0.00477,"52":0.00954,"69":0.00477,"74":0.00477,"75":0.00477,"76":0.03338,"78":0.00477,"79":0.01907,"80":0.00477,"87":0.03338,"88":0.00477,"91":0.00477,"93":0.00477,"94":0.00477,"97":0.00954,"99":0.00477,"102":0.00477,"103":0.05245,"104":0.00954,"105":0.00477,"106":0.00477,"107":0.00477,"108":0.00954,"109":0.74381,"110":0.00477,"111":0.05722,"112":8.04838,"113":0.00477,"114":0.07629,"116":0.09536,"118":0.00477,"119":0.00954,"120":0.0143,"121":0.0143,"122":0.09536,"123":0.0143,"124":0.02384,"125":0.26701,"126":1.28259,"127":0.02861,"128":0.30038,"129":0.19549,"130":0.19549,"131":0.23363,"132":0.2241,"133":0.02861,"134":0.03338,"135":0.07152,"136":0.03338,"137":0.06198,"138":0.20502,"139":0.14304,"140":0.3576,"141":3.44726,"142":15.07165,"143":0.04291,"144":0.00477,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 77 81 83 84 85 86 89 90 92 95 96 98 100 101 115 117 145 146"},F:{"92":0.02384,"93":0.00477,"95":0.03338,"114":0.00477,"120":0.02384,"122":0.4625,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00477,"92":0.00954,"99":0.00477,"109":0.03338,"114":0.10013,"122":0.00477,"124":0.00477,"126":0.00477,"128":0.00477,"129":0.00477,"130":0.00477,"131":0.00954,"132":0.00477,"133":0.00954,"134":0.00954,"135":0.0143,"136":0.00954,"137":0.00954,"138":0.01907,"139":0.01907,"140":0.04291,"141":0.78195,"142":4.61542,"143":0.00954,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 125 127"},E:{"4":0.00477,"14":0.00477,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 16.0","5.1":0.00477,"12.1":0.00477,"13.1":0.00954,"14.1":0.0143,"15.2-15.3":0.00477,"15.4":0.00954,"15.5":0.00477,"15.6":0.07152,"16.1":0.00954,"16.2":0.00477,"16.3":0.0143,"16.4":0.00477,"16.5":0.00954,"16.6":0.07152,"17.0":0.00477,"17.1":0.05245,"17.2":0.01907,"17.3":0.00954,"17.4":0.01907,"17.5":0.02384,"17.6":0.10966,"18.0":0.00954,"18.1":0.01907,"18.2":0.00954,"18.3":0.02861,"18.4":0.01907,"18.5-18.6":0.07629,"26.0":0.20502,"26.1":0.21933,"26.2":0.00954},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00114,"5.0-5.1":0,"6.0-6.1":0.00456,"7.0-7.1":0.00342,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01025,"10.0-10.2":0.00114,"10.3":0.01822,"11.0-11.2":0.21186,"11.3-11.4":0.00683,"12.0-12.1":0.00228,"12.2-12.5":0.05353,"13.0-13.1":0,"13.2":0.0057,"13.3":0.00228,"13.4-13.7":0.01025,"14.0-14.4":0.01709,"14.5-14.8":0.02164,"15.0-15.1":0.01822,"15.2-15.3":0.01481,"15.4":0.01595,"15.5":0.01709,"15.6-15.8":0.24716,"16.0":0.03075,"16.1":0.05695,"16.2":0.02961,"16.3":0.05467,"16.4":0.01367,"16.5":0.02278,"16.6-16.7":0.33373,"17.0":0.02848,"17.1":0.03417,"17.2":0.02506,"17.3":0.03531,"17.4":0.05809,"17.5":0.11048,"17.6-17.7":0.27108,"18.0":0.06037,"18.1":0.12757,"18.2":0.06834,"18.3":0.22211,"18.4":0.1139,"18.5-18.7":7.95368,"26.0":0.54558,"26.1":0.49775},P:{"4":0.0218,"24":0.0109,"26":0.0109,"27":0.0109,"28":0.0545,"29":0.5232,_:"20 21 22 23 25 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.0218},I:{"0":0.07315,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.15173,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01172,"10":0.00586,"11":0.39247,_:"6 7 9 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.04186},H:{"0":0},L:{"0":43.73146},R:{_:"0"},M:{"0":0.19882}};
Index: node_modules/caniuse-lite/data/regions/MY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.25797,"123":0.00586,"125":0.00586,"127":0.00586,"132":0.00586,"135":0.00586,"136":0.00586,"137":0.01173,"138":0.02345,"139":0.00586,"140":0.01173,"141":0.00586,"142":0.01173,"143":0.02345,"144":0.78564,"145":1.13742,"146":0.00586,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 124 126 128 129 130 131 133 134 147 148 3.5 3.6"},D:{"39":0.02345,"40":0.02345,"41":0.02345,"42":0.02345,"43":0.02345,"44":0.02345,"45":0.02345,"46":0.02345,"47":0.02345,"48":0.02345,"49":0.02345,"50":0.02345,"51":0.02345,"52":0.02345,"53":0.02345,"54":0.02345,"55":0.02345,"56":0.02345,"57":0.02345,"58":0.02345,"59":0.02345,"60":0.02345,"68":0.00586,"69":0.00586,"70":0.00586,"75":0.01173,"76":0.05863,"78":0.00586,"79":0.02345,"81":0.00586,"83":0.00586,"84":0.00586,"86":0.03518,"87":0.01759,"88":0.00586,"89":0.02345,"90":0.00586,"91":0.1114,"92":0.00586,"93":0.13485,"94":0.01173,"96":0.00586,"98":0.02345,"99":0.00586,"100":0.00586,"101":0.00586,"102":0.04104,"103":2.36865,"104":0.00586,"105":0.17589,"106":0.00586,"107":0.00586,"108":0.00586,"109":1.61819,"111":0.02932,"112":0.25211,"113":0.01173,"114":0.04104,"115":0.00586,"116":0.07622,"117":0.00586,"118":0.01173,"119":0.02345,"120":0.02932,"121":0.0469,"122":0.09967,"123":0.02932,"124":0.06449,"125":0.18762,"126":0.46904,"127":0.0469,"128":0.06449,"129":0.01759,"130":0.02345,"131":0.09381,"132":0.07622,"133":0.06449,"134":0.06449,"135":0.07036,"136":0.07036,"137":0.25797,"138":0.35764,"139":0.17589,"140":0.856,"141":7.98541,"142":27.38021,"143":0.05277,"144":0.01759,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 71 72 73 74 77 80 85 95 97 110 145 146"},F:{"36":0.00586,"85":0.00586,"92":0.05277,"93":0.00586,"95":0.01759,"122":0.24625,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00586,"109":0.01173,"114":0.02345,"118":0.00586,"122":0.00586,"128":0.01759,"131":0.00586,"132":0.00586,"133":0.00586,"134":0.00586,"135":0.00586,"138":0.01173,"139":0.01173,"140":0.01759,"141":0.41627,"142":3.27742,"143":0.00586,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 120 121 123 124 125 126 127 129 130 136 137"},E:{"13":0.01173,"14":0.00586,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3","13.1":0.00586,"14.1":0.02932,"15.4":0.00586,"15.5":0.00586,"15.6":0.0469,"16.0":0.00586,"16.1":0.02345,"16.2":0.00586,"16.3":0.01173,"16.4":0.00586,"16.5":0.01759,"16.6":0.08208,"17.0":0.00586,"17.1":0.03518,"17.2":0.01173,"17.3":0.01173,"17.4":0.01759,"17.5":0.03518,"17.6":0.12312,"18.0":0.01173,"18.1":0.01759,"18.2":0.01173,"18.3":0.04104,"18.4":0.02345,"18.5-18.6":0.12899,"26.0":0.28729,"26.1":0.19348,"26.2":0.00586},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.001,"5.0-5.1":0,"6.0-6.1":0.00398,"7.0-7.1":0.00299,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00896,"10.0-10.2":0.001,"10.3":0.01593,"11.0-11.2":0.18521,"11.3-11.4":0.00597,"12.0-12.1":0.00199,"12.2-12.5":0.0468,"13.0-13.1":0,"13.2":0.00498,"13.3":0.00199,"13.4-13.7":0.00896,"14.0-14.4":0.01494,"14.5-14.8":0.01892,"15.0-15.1":0.01593,"15.2-15.3":0.01295,"15.4":0.01394,"15.5":0.01494,"15.6-15.8":0.21608,"16.0":0.02689,"16.1":0.04979,"16.2":0.02589,"16.3":0.0478,"16.4":0.01195,"16.5":0.01992,"16.6-16.7":0.29176,"17.0":0.02489,"17.1":0.02987,"17.2":0.02191,"17.3":0.03087,"17.4":0.05078,"17.5":0.09659,"17.6-17.7":0.23699,"18.0":0.05278,"18.1":0.11153,"18.2":0.05975,"18.3":0.19418,"18.4":0.09958,"18.5-18.7":6.9535,"26.0":0.47698,"26.1":0.43515},P:{"4":0.04174,"22":0.01043,"23":0.01043,"25":0.01043,"26":0.01043,"27":0.02087,"28":0.12521,"29":0.89733,_:"20 21 24 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.04174,"8.2":0.01043},I:{"0":0.01239,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.48403,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.05277,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01241},O:{"0":0.28132},H:{"0":0},L:{"0":33.67735},R:{_:"0"},M:{"0":0.2234}};
Index: node_modules/caniuse-lite/data/regions/MZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/MZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/MZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00646,"45":0.00323,"48":0.00323,"90":0.01292,"96":0.00646,"112":0.00969,"113":0.01615,"114":0.01292,"115":0.12274,"116":0.00646,"124":0.01615,"125":0.00323,"127":0.00323,"128":0.00646,"133":0.0323,"134":0.00323,"135":0.00323,"136":0.00323,"137":0.00646,"140":0.02261,"141":0.00646,"142":0.00969,"143":0.01292,"144":0.3876,"145":0.50711,"146":0.00323,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 95 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 117 118 119 120 121 122 123 126 129 130 131 132 138 139 147 148 3.5 3.6"},D:{"11":0.00323,"38":0.00323,"43":0.01292,"46":0.00323,"48":0.00323,"49":0.00323,"55":0.00323,"58":0.00323,"59":0.00323,"61":0.00323,"64":0.00323,"65":0.00646,"67":0.00323,"68":0.00323,"69":0.00646,"70":0.00969,"71":0.00323,"73":0.01292,"74":0.00646,"75":0.00646,"76":0.00323,"78":0.00323,"79":0.00969,"80":0.00969,"81":0.00969,"83":0.00969,"85":0.00323,"86":0.02907,"87":0.04199,"88":0.00323,"89":0.00646,"91":0.01292,"92":0.00969,"94":0.00646,"95":0.01292,"97":0.00323,"98":0.01615,"99":0.00646,"100":0.00323,"102":0.00323,"103":0.00646,"104":0.00323,"105":0.00323,"106":0.02584,"107":0.00323,"109":0.91732,"110":0.00323,"111":0.0323,"112":0.05814,"113":0.02261,"114":0.58463,"115":0.01615,"116":0.08721,"117":0.00323,"119":0.01292,"120":0.01615,"121":0.00646,"122":0.0323,"123":0.01292,"124":0.01938,"125":0.13889,"126":0.0646,"127":0.00969,"128":0.05168,"129":0.00969,"130":0.02261,"131":0.06783,"132":0.04845,"133":0.0646,"134":0.05491,"135":0.06137,"136":0.05491,"137":0.08075,"138":0.19703,"139":0.1938,"140":0.34884,"141":3.0039,"142":7.19967,"143":0.02907,"144":0.0323,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 47 50 51 52 53 54 56 57 60 62 63 66 72 77 84 90 93 96 101 108 118 145 146"},F:{"36":0.00323,"42":0.00323,"46":0.00323,"57":0.00323,"79":0.00969,"81":0.00646,"86":0.00323,"88":0.00323,"90":0.00323,"91":0.00646,"92":0.04522,"93":0.00646,"95":0.04522,"102":0.00323,"113":0.00969,"117":0.00323,"120":0.00969,"122":0.2907,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 85 87 89 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 114 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00969,"13":0.00323,"14":0.00969,"15":0.00646,"16":0.00646,"17":0.00646,"18":0.03876,"84":0.01615,"89":0.00969,"90":0.01292,"91":0.01615,"92":0.10336,"100":0.01938,"109":0.02261,"111":0.00323,"114":0.15827,"120":0.03876,"122":0.01615,"127":0.00969,"128":0.00646,"130":0.00323,"131":0.00646,"132":0.00323,"133":0.00969,"134":0.00646,"135":0.01938,"136":0.02584,"137":0.01938,"138":0.01615,"139":0.04199,"140":0.05168,"141":0.51357,"142":4.05365,"143":0.03553,_:"79 80 81 83 85 86 87 88 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113 115 116 117 118 119 121 123 124 125 126 129"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.4 16.5 17.0 18.2","5.1":0.01292,"11.1":0.00323,"13.1":0.02584,"14.1":0.00323,"15.6":0.02907,"16.1":0.00323,"16.6":0.05168,"17.1":0.00646,"17.2":0.00323,"17.3":0.00323,"17.4":0.00323,"17.5":0.00323,"17.6":0.0646,"18.0":0.00323,"18.1":0.00646,"18.3":0.00969,"18.4":0.02584,"18.5-18.6":0.04845,"26.0":0.10659,"26.1":0.10013,"26.2":0.00323},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00052,"5.0-5.1":0,"6.0-6.1":0.00209,"7.0-7.1":0.00157,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0047,"10.0-10.2":0.00052,"10.3":0.00835,"11.0-11.2":0.09709,"11.3-11.4":0.00313,"12.0-12.1":0.00104,"12.2-12.5":0.02453,"13.0-13.1":0,"13.2":0.00261,"13.3":0.00104,"13.4-13.7":0.0047,"14.0-14.4":0.00783,"14.5-14.8":0.00992,"15.0-15.1":0.00835,"15.2-15.3":0.00679,"15.4":0.00731,"15.5":0.00783,"15.6-15.8":0.11327,"16.0":0.01409,"16.1":0.0261,"16.2":0.01357,"16.3":0.02505,"16.4":0.00626,"16.5":0.01044,"16.6-16.7":0.15294,"17.0":0.01305,"17.1":0.01566,"17.2":0.01148,"17.3":0.01618,"17.4":0.02662,"17.5":0.05063,"17.6-17.7":0.12423,"18.0":0.02766,"18.1":0.05846,"18.2":0.03132,"18.3":0.10178,"18.4":0.0522,"18.5-18.7":3.6449,"26.0":0.25002,"26.1":0.2281},P:{"4":0.04114,"20":0.01029,"21":0.01029,"22":0.04114,"23":0.05143,"24":0.09258,"25":0.072,"26":0.05143,"27":0.12343,"28":0.63774,"29":1.23434,_:"5.0-5.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0","6.2-6.4":0.01029,"7.2-7.4":0.09258,"9.2":0.15429,"18.0":0.02057,"19.0":0.01029},I:{"0":0.04056,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":4.09639,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02907,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.15571,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01354},O:{"0":0.23695},H:{"0":0.69},L:{"0":63.92796},R:{_:"0"},M:{"0":0.18279}};
Index: node_modules/caniuse-lite/data/regions/NA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00361,"28":0.00361,"34":0.00361,"115":0.206,"127":0.00723,"128":0.00361,"134":0.00361,"136":0.00361,"139":0.00361,"140":0.04337,"141":0.01084,"142":0.01084,"143":0.06144,"144":0.83122,"145":0.79508,"146":0.00361,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 135 137 138 147 148 3.5 3.6"},D:{"49":0.00723,"55":0.00361,"69":0.00723,"71":0.00361,"72":0.00723,"73":0.00723,"74":0.0253,"78":0.01446,"79":0.01084,"80":0.00361,"83":0.01084,"87":0.01446,"90":0.00361,"91":0.00361,"92":0.00361,"93":0.00361,"98":0.00361,"100":0.02168,"103":0.00361,"104":0.00361,"109":0.45536,"111":0.04337,"112":0.08674,"114":0.01084,"115":0.00361,"116":0.07589,"119":0.01446,"120":0.00723,"121":0.00361,"122":0.14095,"123":0.00361,"124":0.01446,"125":0.10842,"126":0.03975,"127":0.01446,"128":0.0253,"129":0.00723,"130":0.01084,"131":0.06505,"132":0.02891,"133":0.01807,"134":0.02891,"135":0.04698,"136":0.06144,"137":0.01807,"138":0.12288,"139":0.11203,"140":0.40115,"141":3.62484,"142":9.90236,"143":0.01084,"144":0.00723,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 70 75 76 77 81 84 85 86 88 89 94 95 96 97 99 101 102 105 106 107 108 110 113 117 118 145 146"},F:{"80":0.0253,"92":0.01084,"93":0.00361,"95":0.01084,"113":0.00361,"114":0.03253,"120":0.00723,"122":0.16986,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00361,"13":0.00361,"14":0.00361,"16":0.00723,"17":0.00723,"18":0.04698,"89":0.00361,"90":0.00361,"92":0.02891,"100":0.00723,"109":0.02168,"114":0.04698,"115":0.00361,"116":0.03253,"117":0.00361,"119":0.00361,"122":0.01084,"124":0.00361,"127":0.00361,"129":0.04698,"130":0.00361,"131":0.01446,"133":0.00361,"134":0.01084,"135":0.00361,"136":0.01084,"137":0.00723,"138":0.03253,"139":0.02168,"140":0.04698,"141":0.62522,"142":4.65122,"143":0.00361,_:"15 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 118 120 121 123 125 126 128 132"},E:{"8":0.00361,"14":0.00361,"15":0.00361,_:"0 4 5 6 7 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.4 15.5 16.0 16.1 16.3 17.0 17.2","13.1":0.01084,"14.1":0.01807,"15.1":0.01084,"15.2-15.3":0.01807,"15.6":0.06144,"16.2":0.00361,"16.4":0.00723,"16.5":0.00361,"16.6":0.21323,"17.1":0.01807,"17.3":0.00361,"17.4":0.01084,"17.5":0.01084,"17.6":0.06867,"18.0":0.00361,"18.1":0.01084,"18.2":0.00361,"18.3":0.02168,"18.4":0.00723,"18.5-18.6":0.05782,"26.0":0.27105,"26.1":0.34333,"26.2":0.00723},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00085,"5.0-5.1":0,"6.0-6.1":0.00341,"7.0-7.1":0.00255,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00766,"10.0-10.2":0.00085,"10.3":0.01362,"11.0-11.2":0.15833,"11.3-11.4":0.00511,"12.0-12.1":0.0017,"12.2-12.5":0.04001,"13.0-13.1":0,"13.2":0.00426,"13.3":0.0017,"13.4-13.7":0.00766,"14.0-14.4":0.01277,"14.5-14.8":0.01617,"15.0-15.1":0.01362,"15.2-15.3":0.01107,"15.4":0.01192,"15.5":0.01277,"15.6-15.8":0.18472,"16.0":0.02298,"16.1":0.04256,"16.2":0.02213,"16.3":0.04086,"16.4":0.01022,"16.5":0.01703,"16.6-16.7":0.24942,"17.0":0.02128,"17.1":0.02554,"17.2":0.01873,"17.3":0.02639,"17.4":0.04341,"17.5":0.08257,"17.6-17.7":0.2026,"18.0":0.04512,"18.1":0.09534,"18.2":0.05108,"18.3":0.16599,"18.4":0.08513,"18.5-18.7":5.94431,"26.0":0.40775,"26.1":0.372},P:{"4":0.12314,"20":0.01026,"22":0.01026,"23":0.03079,"24":0.10262,"25":0.05131,"26":0.05131,"27":0.23603,"28":0.65677,"29":4.5461,_:"21 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 19.0","5.0-5.4":0.01026,"7.2-7.4":0.28734,"8.2":0.02052,"14.0":0.02052,"17.0":0.02052,"18.0":0.01026},I:{"0":0.02551,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":1.05394,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03253,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.17242},H:{"0":0.07},L:{"0":55.26821},R:{_:"0"},M:{"0":0.37677}};
Index: node_modules/caniuse-lite/data/regions/NC.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"48":0.00672,"53":0.4634,"80":0.00336,"102":0.01007,"109":0.00336,"115":0.04365,"123":0.00336,"127":0.00336,"128":0.06044,"129":0.02015,"131":0.00336,"133":0.00336,"135":0.0403,"136":0.00672,"137":0.07388,"139":0.06716,"140":0.07052,"141":0.00672,"142":0.02015,"143":0.02686,"144":1.25925,"145":2.05174,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 114 116 117 118 119 120 121 122 124 125 126 130 132 134 138 146 147 148 3.5 3.6"},D:{"69":0.00336,"79":0.02686,"80":0.00336,"86":0.00672,"93":0.00336,"94":0.00336,"103":0.00672,"109":0.66153,"111":0.00336,"116":0.05037,"120":0.00336,"121":0.00672,"122":0.01679,"123":0.00336,"125":0.1041,"126":0.00672,"127":0.1041,"128":0.06044,"129":0.00336,"131":0.05037,"132":0.00336,"133":0.00336,"134":0.01679,"135":0.00672,"136":0.01679,"137":0.00672,"138":0.05037,"139":1.27604,"140":0.42311,"141":2.02152,"142":9.41583,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 81 83 84 85 87 88 89 90 91 92 95 96 97 98 99 100 101 102 104 105 106 107 108 110 112 113 114 115 117 118 119 124 130 143 144 145 146"},F:{"85":0.00336,"93":0.00336,"95":0.00336,"102":0.00672,"119":0.00336,"122":0.18469,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00336,"92":0.00336,"109":0.00336,"112":0.00336,"114":0.08395,"117":0.00336,"121":0.00336,"126":0.00336,"127":0.00672,"128":0.00672,"131":0.01343,"133":0.01007,"134":0.02351,"135":0.00672,"136":0.01007,"137":0.01007,"138":0.02015,"139":0.02351,"140":0.05709,"141":0.71525,"142":6.28953,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 115 116 118 119 120 122 123 124 125 129 130 132 143"},E:{"13":0.00336,_:"0 4 5 6 7 8 9 10 11 12 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 15.4 15.5 16.2 16.4 17.0 17.2 17.3 26.2","13.1":0.01007,"14.1":0.01343,"15.1":0.00336,"15.6":0.15783,"16.0":0.01679,"16.1":0.02686,"16.3":0.02351,"16.5":0.01343,"16.6":0.11417,"17.1":0.0638,"17.4":0.00672,"17.5":0.03694,"17.6":0.1041,"18.0":0.03022,"18.1":0.01343,"18.2":0.00336,"18.3":0.00672,"18.4":0.01679,"18.5-18.6":0.05373,"26.0":0.12089,"26.1":0.16454},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00099,"5.0-5.1":0,"6.0-6.1":0.00394,"7.0-7.1":0.00296,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00887,"10.0-10.2":0.00099,"10.3":0.01577,"11.0-11.2":0.18334,"11.3-11.4":0.00591,"12.0-12.1":0.00197,"12.2-12.5":0.04633,"13.0-13.1":0,"13.2":0.00493,"13.3":0.00197,"13.4-13.7":0.00887,"14.0-14.4":0.01479,"14.5-14.8":0.01873,"15.0-15.1":0.01577,"15.2-15.3":0.01281,"15.4":0.0138,"15.5":0.01479,"15.6-15.8":0.21389,"16.0":0.02661,"16.1":0.04928,"16.2":0.02563,"16.3":0.04731,"16.4":0.01183,"16.5":0.01971,"16.6-16.7":0.2888,"17.0":0.02464,"17.1":0.02957,"17.2":0.02168,"17.3":0.03056,"17.4":0.05027,"17.5":0.09561,"17.6-17.7":0.23459,"18.0":0.05224,"18.1":0.1104,"18.2":0.05914,"18.3":0.19221,"18.4":0.09857,"18.5-18.7":6.88295,"26.0":0.47214,"26.1":0.43074},P:{"4":0.01073,"20":0.01073,"22":0.01073,"23":0.01073,"24":0.02146,"25":0.04292,"26":0.04292,"27":0.08584,"28":0.25751,"29":1.92056,_:"21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 17.0 18.0 19.0","7.2-7.4":0.01073,"13.0":0.06438,"16.0":0.02146},I:{"0":0.02653,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.16605,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":55.09206},R:{_:"0"},M:{"0":0.54464}};
Index: node_modules/caniuse-lite/data/regions/NE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00206,"42":0.00206,"44":0.00206,"47":0.00825,"48":0.00206,"50":0.00206,"52":0.00412,"54":0.00206,"65":0.00412,"67":0.00619,"72":0.00206,"73":0.00206,"77":0.00619,"81":0.00206,"86":0.00412,"90":0.00206,"91":0.00206,"95":0.00619,"98":0.00206,"103":0.00206,"111":0.00206,"112":0.00206,"115":0.07217,"119":0.00206,"127":0.01443,"128":0.01031,"133":0.00206,"136":0.0165,"137":0.00206,"138":0.01031,"139":0.00206,"140":0.07217,"141":0.00412,"142":0.01856,"143":0.03093,"144":0.71345,"145":0.75675,"146":0.00206,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 45 46 49 51 53 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 74 75 76 78 79 80 82 83 84 85 87 88 89 92 93 94 96 97 99 100 101 102 104 105 106 107 108 109 110 113 114 116 117 118 120 121 122 123 124 125 126 129 130 131 132 134 135 147 148 3.5 3.6"},D:{"31":0.00206,"40":0.00206,"43":0.00206,"47":0.00412,"49":0.00206,"54":0.00206,"60":0.00206,"61":0.00412,"64":0.00825,"65":0.00206,"67":0.00206,"69":0.02887,"70":0.00619,"71":0.00206,"72":0.00412,"73":0.00206,"74":0.00412,"76":0.00825,"77":0.00206,"79":0.00206,"81":0.00206,"83":0.01443,"84":0.00412,"86":0.01031,"87":0.00412,"88":0.00206,"93":0.00206,"95":0.00825,"97":0.00206,"98":0.00206,"103":0.00206,"108":0.00206,"109":0.25363,"111":0.00619,"114":0.01443,"115":0.00206,"116":0.01031,"119":0.00206,"120":0.00412,"121":0.00206,"122":0.02062,"123":0.00412,"124":0.00412,"125":0.07423,"126":0.03505,"127":0.00619,"128":0.0165,"129":0.00206,"130":0.01443,"131":0.03505,"132":0.01443,"133":0.01237,"134":0.01443,"135":0.00825,"136":0.03505,"137":0.04536,"138":0.31755,"139":0.0866,"140":0.13815,"141":1.85374,"142":3.43735,"143":0.03712,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 44 45 46 48 50 51 52 53 55 56 57 58 59 62 63 66 68 75 78 80 85 89 90 91 92 94 96 99 100 101 102 104 105 106 107 110 112 113 117 118 144 145 146"},F:{"36":0.00412,"40":0.01237,"42":0.00206,"49":0.00206,"64":0.00206,"66":0.00206,"79":0.03093,"82":0.00412,"83":0.00206,"86":0.00412,"90":0.00206,"91":0.00412,"92":0.02268,"93":0.00412,"95":0.02474,"113":0.00619,"117":0.00412,"118":0.00206,"119":0.00206,"120":0.03918,"122":0.16496,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 65 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 85 87 88 89 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00412,"13":0.00825,"14":0.00206,"15":0.00206,"16":0.00206,"17":0.00825,"18":0.02474,"83":0.00206,"84":0.00825,"85":0.00206,"89":0.0165,"90":0.00825,"92":0.05774,"95":0.00206,"98":0.00206,"100":0.00825,"109":0.01237,"110":0.00206,"111":0.00206,"114":0.07629,"116":0.00206,"122":0.01237,"124":0.19589,"129":0.00206,"131":0.0165,"134":0.00825,"136":0.00825,"137":0.00412,"138":0.01856,"139":0.03712,"140":0.03505,"141":0.54024,"142":2.18366,"143":0.00412,_:"79 80 81 86 87 88 91 93 94 96 97 99 101 102 103 104 105 106 107 108 112 113 115 117 118 119 120 121 123 125 126 127 128 130 132 133 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.1 15.4 15.5 16.0 16.1 16.3 16.4 16.5 17.0 17.1 17.2 17.3 17.4 17.5 18.0 18.5-18.6 26.2","5.1":0.00412,"11.1":0.00206,"13.1":0.00619,"14.1":0.00619,"15.2-15.3":0.00206,"15.6":0.00412,"16.2":0.01856,"16.6":0.0165,"17.6":0.03093,"18.1":0.01031,"18.2":0.00825,"18.3":0.00412,"18.4":0.00619,"26.0":0.08454,"26.1":0.06186},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00023,"5.0-5.1":0,"6.0-6.1":0.00091,"7.0-7.1":0.00068,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00205,"10.0-10.2":0.00023,"10.3":0.00365,"11.0-11.2":0.04237,"11.3-11.4":0.00137,"12.0-12.1":0.00046,"12.2-12.5":0.01071,"13.0-13.1":0,"13.2":0.00114,"13.3":0.00046,"13.4-13.7":0.00205,"14.0-14.4":0.00342,"14.5-14.8":0.00433,"15.0-15.1":0.00365,"15.2-15.3":0.00296,"15.4":0.00319,"15.5":0.00342,"15.6-15.8":0.04944,"16.0":0.00615,"16.1":0.01139,"16.2":0.00592,"16.3":0.01094,"16.4":0.00273,"16.5":0.00456,"16.6-16.7":0.06675,"17.0":0.0057,"17.1":0.00683,"17.2":0.00501,"17.3":0.00706,"17.4":0.01162,"17.5":0.0221,"17.6-17.7":0.05422,"18.0":0.01207,"18.1":0.02552,"18.2":0.01367,"18.3":0.04443,"18.4":0.02278,"18.5-18.7":1.59087,"26.0":0.10913,"26.1":0.09956},P:{"4":0.01029,"22":0.072,"24":0.01029,"25":0.02057,"26":0.01029,"27":0.06172,"28":0.16457,"29":0.34972,_:"20 21 23 5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01029,"9.2":0.01029,"11.1-11.2":0.01029},I:{"0":0.07134,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":3.18849,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.16702,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.02381,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00794},O:{"0":0.43659},H:{"0":0.59},L:{"0":78.41436},R:{_:"0"},M:{"0":0.05557}};
Index: node_modules/caniuse-lite/data/regions/NF.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 3.5 3.6"},D:{"138":0.65392,"141":1.30784,"142":1.96176,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 139 140 143 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"111":0.65392,"141":6.53652,"142":11.7652,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.2","26.0":1.96176,"26.1":0.65392},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00253,"5.0-5.1":0,"6.0-6.1":0.01012,"7.0-7.1":0.00759,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02276,"10.0-10.2":0.00253,"10.3":0.04047,"11.0-11.2":0.47047,"11.3-11.4":0.01518,"12.0-12.1":0.00506,"12.2-12.5":0.11888,"13.0-13.1":0,"13.2":0.01265,"13.3":0.00506,"13.4-13.7":0.02276,"14.0-14.4":0.03794,"14.5-14.8":0.04806,"15.0-15.1":0.04047,"15.2-15.3":0.03288,"15.4":0.03541,"15.5":0.03794,"15.6-15.8":0.54888,"16.0":0.06829,"16.1":0.12647,"16.2":0.06576,"16.3":0.12141,"16.4":0.03035,"16.5":0.05059,"16.6-16.7":0.74112,"17.0":0.06324,"17.1":0.07588,"17.2":0.05565,"17.3":0.07841,"17.4":0.129,"17.5":0.24535,"17.6-17.7":0.602,"18.0":0.13406,"18.1":0.28329,"18.2":0.15176,"18.3":0.49323,"18.4":0.25294,"18.5-18.7":17.66284,"26.0":1.21159,"26.1":1.10535},P:{"28":1.33299,"29":5.3218,_:"4 20 21 22 23 24 25 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":41.90279},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/NG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00274,"31":0.00274,"43":0.00547,"47":0.00274,"52":0.00547,"65":0.00547,"72":0.00274,"78":0.00274,"99":0.00274,"109":0.00274,"112":0.00274,"114":0.00274,"115":0.42134,"127":0.00547,"128":0.00274,"134":0.00274,"136":0.00274,"138":0.00274,"139":0.00274,"140":0.04378,"141":0.00274,"142":0.00821,"143":0.01368,"144":0.25445,"145":0.26539,"146":0.00274,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 110 111 113 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 135 137 147 148 3.5 3.6"},D:{"47":0.02462,"55":0.00274,"58":0.00274,"62":0.02736,"63":0.00547,"64":0.00274,"65":0.00274,"68":0.00547,"69":0.00547,"70":0.03557,"71":0.00274,"73":0.00274,"74":0.00547,"75":0.00547,"76":0.00547,"77":0.00274,"78":0.00274,"79":0.01915,"80":0.01368,"81":0.00547,"83":0.00547,"85":0.00274,"86":0.00821,"87":0.01094,"88":0.00274,"89":0.00274,"90":0.00274,"91":0.00274,"92":0.00274,"93":0.01094,"94":0.00274,"95":0.00821,"97":0.00274,"98":0.00274,"100":0.00274,"102":0.03557,"103":0.02736,"104":0.00821,"105":0.02189,"106":0.01094,"107":0.00274,"108":0.00821,"109":0.43776,"111":0.02462,"112":0.50616,"113":0.00274,"114":0.01642,"115":0.00547,"116":0.02462,"117":0.00274,"118":0.00274,"119":0.02736,"120":0.01094,"121":0.00547,"122":0.02189,"123":0.00821,"124":0.01642,"125":0.02736,"126":0.12312,"127":0.01642,"128":0.02462,"129":0.01094,"130":0.01642,"131":0.07114,"132":0.02189,"133":0.02736,"134":0.0301,"135":0.03557,"136":0.0383,"137":0.06566,"138":0.21888,"139":0.15322,"140":0.24624,"141":1.71274,"142":4.41864,"143":0.02189,"144":0.00274,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 56 57 59 60 61 66 67 72 84 96 99 101 110 145 146"},F:{"79":0.00274,"84":0.00274,"85":0.00547,"86":0.00547,"87":0.01368,"88":0.00821,"89":0.01915,"90":0.05472,"91":0.08208,"92":0.46512,"93":0.06293,"94":0.00274,"95":0.02189,"114":0.00274,"120":0.00274,"121":0.00274,"122":0.08755,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00274,"13":0.00274,"15":0.00274,"18":0.01915,"84":0.00274,"89":0.00274,"90":0.00547,"92":0.02189,"100":0.00821,"109":0.00821,"111":0.00274,"114":0.16416,"122":0.00821,"126":0.00274,"128":0.00547,"131":0.00547,"132":0.00274,"133":0.00274,"134":0.00274,"135":0.00547,"136":0.00821,"137":0.00547,"138":0.01094,"139":0.04378,"140":0.04378,"141":0.18058,"142":0.96854,_:"14 16 17 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113 115 116 117 118 119 120 121 123 124 125 127 129 130 143"},E:{"11":0.00547,"13":0.00821,"14":0.00274,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 6.1 7.1 9.1 10.1 15.4 16.4","5.1":0.00274,"11.1":0.00274,"12.1":0.00274,"13.1":0.01368,"14.1":0.00547,"15.1":0.00274,"15.2-15.3":0.00274,"15.5":0.00274,"15.6":0.03557,"16.0":0.00274,"16.1":0.00274,"16.2":0.00274,"16.3":0.00274,"16.5":0.00274,"16.6":0.02736,"17.0":0.00274,"17.1":0.00547,"17.2":0.00274,"17.3":0.00274,"17.4":0.00274,"17.5":0.00821,"17.6":0.02736,"18.0":0.00274,"18.1":0.00547,"18.2":0.00821,"18.3":0.01094,"18.4":0.00821,"18.5-18.6":0.02462,"26.0":0.03557,"26.1":0.02736,"26.2":0.00274},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00067,"5.0-5.1":0,"6.0-6.1":0.0027,"7.0-7.1":0.00202,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00607,"10.0-10.2":0.00067,"10.3":0.01079,"11.0-11.2":0.12538,"11.3-11.4":0.00404,"12.0-12.1":0.00135,"12.2-12.5":0.03168,"13.0-13.1":0,"13.2":0.00337,"13.3":0.00135,"13.4-13.7":0.00607,"14.0-14.4":0.01011,"14.5-14.8":0.01281,"15.0-15.1":0.01079,"15.2-15.3":0.00876,"15.4":0.00944,"15.5":0.01011,"15.6-15.8":0.14628,"16.0":0.0182,"16.1":0.0337,"16.2":0.01753,"16.3":0.03236,"16.4":0.00809,"16.5":0.01348,"16.6-16.7":0.19751,"17.0":0.01685,"17.1":0.02022,"17.2":0.01483,"17.3":0.0209,"17.4":0.03438,"17.5":0.06539,"17.6-17.7":0.16044,"18.0":0.03573,"18.1":0.0755,"18.2":0.04045,"18.3":0.13145,"18.4":0.06741,"18.5-18.7":4.70723,"26.0":0.32289,"26.1":0.29458},P:{"4":0.01031,"21":0.01031,"22":0.01031,"23":0.01031,"24":0.05157,"25":0.05157,"26":0.03094,"27":0.08252,"28":0.34039,"29":0.36102,_:"20 5.0-5.4 6.2-6.4 8.2 10.1 12.0 14.0 15.0 17.0 18.0 19.0","7.2-7.4":0.02063,"9.2":0.02063,"11.1-11.2":0.01031,"13.0":0.01031,"16.0":0.01031},I:{"0":0.02902,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":17.82458,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00752,"11":0.02257,_:"6 7 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00726,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.2615},H:{"0":2.58},L:{"0":57.69762},R:{_:"0"},M:{"0":0.2833}};
Index: node_modules/caniuse-lite/data/regions/NI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03134,"115":0.02507,"127":0.00627,"128":0.02507,"138":0.01254,"139":0.01254,"140":0.03761,"141":0.00627,"142":0.04388,"143":0.00627,"144":0.43249,"145":0.61426,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 134 135 136 137 146 147 148 3.5 3.6"},D:{"69":0.03761,"73":0.00627,"75":0.00627,"79":0.00627,"87":0.00627,"88":0.00627,"91":0.00627,"97":0.01254,"98":0.0188,"99":0.00627,"101":0.01254,"103":0.0188,"108":0.00627,"109":0.26952,"110":0.02507,"111":0.06895,"112":28.0305,"114":0.01254,"116":0.03134,"119":0.00627,"120":0.01254,"122":0.08775,"123":0.00627,"124":0.01254,"125":0.68948,"126":4.10554,"127":0.04388,"128":0.02507,"129":0.00627,"130":0.01254,"131":0.0188,"132":0.04388,"133":0.06895,"134":0.03134,"135":0.0188,"136":0.02507,"137":0.03134,"138":0.07522,"139":0.05014,"140":0.30713,"141":2.58868,"142":10.59919,"143":0.01254,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 74 76 77 78 80 81 83 84 85 86 89 90 92 93 94 95 96 100 102 104 105 106 107 113 115 117 118 121 144 145 146"},F:{"92":0.03134,"95":0.00627,"120":0.00627,"122":0.51398,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00627,"92":0.01254,"100":0.00627,"109":0.0188,"114":1.22853,"122":0.01254,"131":0.00627,"132":0.00627,"134":0.00627,"135":0.00627,"136":0.00627,"137":0.01254,"138":0.01254,"139":0.0188,"140":0.02507,"141":0.54532,"142":3.45994,"143":0.01254,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 133"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 14.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.4 16.5 17.0 17.3 18.4 26.2","5.1":0.01254,"11.1":0.00627,"13.1":0.01254,"15.1":0.00627,"15.6":0.01254,"16.1":0.00627,"16.6":0.02507,"17.1":0.02507,"17.2":0.00627,"17.4":0.00627,"17.5":0.0188,"17.6":0.04388,"18.0":0.00627,"18.1":0.02507,"18.2":0.05641,"18.3":0.01254,"18.5-18.6":0.02507,"26.0":0.09402,"26.1":0.11909},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00055,"5.0-5.1":0,"6.0-6.1":0.0022,"7.0-7.1":0.00165,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00496,"10.0-10.2":0.00055,"10.3":0.00881,"11.0-11.2":0.10246,"11.3-11.4":0.00331,"12.0-12.1":0.0011,"12.2-12.5":0.02589,"13.0-13.1":0,"13.2":0.00275,"13.3":0.0011,"13.4-13.7":0.00496,"14.0-14.4":0.00826,"14.5-14.8":0.01047,"15.0-15.1":0.00881,"15.2-15.3":0.00716,"15.4":0.00771,"15.5":0.00826,"15.6-15.8":0.11953,"16.0":0.01487,"16.1":0.02754,"16.2":0.01432,"16.3":0.02644,"16.4":0.00661,"16.5":0.01102,"16.6-16.7":0.1614,"17.0":0.01377,"17.1":0.01653,"17.2":0.01212,"17.3":0.01708,"17.4":0.02809,"17.5":0.05343,"17.6-17.7":0.1311,"18.0":0.02919,"18.1":0.06169,"18.2":0.03305,"18.3":0.10741,"18.4":0.05508,"18.5-18.7":3.84654,"26.0":0.26385,"26.1":0.24072},P:{"4":0.01027,"21":0.01027,"22":0.03082,"23":0.02055,"24":0.05137,"25":0.04109,"26":0.18492,"27":0.09246,"28":0.28766,"29":1.0068,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.07191,"11.1-11.2":0.01027,"19.0":0.01027},I:{"0":0.01118,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.30229,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.00373,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01493},O:{"0":0.02986},H:{"0":0},L:{"0":34.76913},R:{_:"0"},M:{"0":0.1045}};
Index: node_modules/caniuse-lite/data/regions/NL.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"38":0.0106,"43":0.0053,"44":0.0212,"45":0.0053,"50":0.0053,"51":0.0053,"52":0.0106,"53":0.0053,"54":0.0212,"55":0.0053,"56":0.0053,"60":0.0053,"78":0.0053,"81":0.0106,"115":0.12718,"121":0.0053,"123":0.0053,"125":0.0053,"127":0.0053,"128":0.04239,"132":0.0053,"133":0.0053,"134":0.0053,"135":0.06359,"136":0.0053,"137":0.0106,"138":0.0053,"139":0.0106,"140":0.35503,"141":0.0106,"142":0.0159,"143":0.04769,"144":0.85314,"145":1.11809,"146":0.0106,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 48 49 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 122 124 126 129 130 131 147 148 3.5 3.6"},D:{"38":0.0053,"39":0.0106,"40":0.0106,"41":0.0106,"42":0.0106,"43":0.0106,"44":0.0106,"45":0.03179,"46":0.0106,"47":0.0159,"48":0.07949,"49":0.0265,"50":0.0106,"51":0.0106,"52":0.0265,"53":0.0106,"54":0.0106,"55":0.0106,"56":0.0106,"57":0.0106,"58":0.0106,"59":0.0106,"60":0.0106,"66":0.0106,"72":0.03709,"73":0.0053,"74":0.0053,"79":0.0159,"80":0.0053,"84":0.0053,"87":0.0106,"88":0.0265,"92":0.13777,"93":0.0159,"96":0.03709,"98":0.0053,"99":0.0053,"102":0.0053,"103":0.03709,"104":0.07949,"105":0.0053,"107":0.0053,"108":0.03709,"109":0.41862,"111":0.0053,"112":0.0159,"113":0.0106,"114":0.0265,"115":0.0106,"116":0.09538,"117":0.24375,"118":0.09008,"119":0.0159,"120":0.10068,"121":0.03709,"122":0.10068,"123":0.0159,"124":0.03709,"125":0.63058,"126":0.28615,"127":0.0106,"128":0.09538,"129":0.10598,"130":1.80696,"131":0.07949,"132":0.07419,"133":0.07419,"134":6.30051,"135":0.06889,"136":0.09008,"137":0.14837,"138":0.33384,"139":0.40802,"140":0.60939,"141":4.03254,"142":15.09685,"143":0.03709,"144":0.0053,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 61 62 63 64 65 67 68 69 70 71 75 76 77 78 81 83 85 86 89 90 91 94 95 97 100 101 106 110 145 146"},F:{"46":0.0053,"79":0.0053,"92":0.06359,"93":0.0106,"95":0.0159,"113":0.06889,"119":0.0053,"120":0.0053,"122":0.30204,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0106},B:{"109":0.05829,"120":0.0053,"128":0.0053,"129":0.0053,"131":0.0106,"132":0.0053,"133":0.0053,"134":0.0106,"135":0.0053,"136":0.0106,"137":0.0212,"138":0.03179,"139":0.03709,"140":0.09538,"141":0.75776,"142":6.58136,"143":0.0159,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 121 122 123 124 125 126 127 130"},E:{"9":0.0106,"14":0.0053,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3","12.1":0.0053,"13.1":0.0159,"14.1":0.0159,"15.4":0.0053,"15.5":0.0053,"15.6":0.13777,"16.0":0.0106,"16.1":0.0212,"16.2":0.0106,"16.3":0.0212,"16.4":0.0106,"16.5":0.0159,"16.6":0.21726,"17.0":0.0106,"17.1":0.16427,"17.2":0.0159,"17.3":0.0212,"17.4":0.03179,"17.5":0.05829,"17.6":0.18547,"18.0":0.0212,"18.1":0.0265,"18.2":0.0212,"18.3":0.06889,"18.4":0.03709,"18.5-18.6":0.15897,"26.0":0.35503,"26.1":0.44512,"26.2":0.0106},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00137,"5.0-5.1":0,"6.0-6.1":0.00549,"7.0-7.1":0.00412,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01235,"10.0-10.2":0.00137,"10.3":0.02196,"11.0-11.2":0.25532,"11.3-11.4":0.00824,"12.0-12.1":0.00275,"12.2-12.5":0.06452,"13.0-13.1":0,"13.2":0.00686,"13.3":0.00275,"13.4-13.7":0.01235,"14.0-14.4":0.02059,"14.5-14.8":0.02608,"15.0-15.1":0.02196,"15.2-15.3":0.01784,"15.4":0.01922,"15.5":0.02059,"15.6-15.8":0.29787,"16.0":0.03706,"16.1":0.06863,"16.2":0.03569,"16.3":0.06589,"16.4":0.01647,"16.5":0.02745,"16.6-16.7":0.4022,"17.0":0.03432,"17.1":0.04118,"17.2":0.0302,"17.3":0.04255,"17.4":0.07001,"17.5":0.13315,"17.6-17.7":0.3267,"18.0":0.07275,"18.1":0.15374,"18.2":0.08236,"18.3":0.26767,"18.4":0.13727,"18.5-18.7":9.58551,"26.0":0.65752,"26.1":0.59987},P:{"4":0.01046,"21":0.01046,"22":0.01046,"23":0.02092,"24":0.02092,"25":0.02092,"26":0.0523,"27":0.0523,"28":0.26151,"29":3.52513,_:"20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 19.0","18.0":0.01046},I:{"0":0.03286,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.4648,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00584,"7":0.00584,"8":0.01168,"9":0.06424,"10":0.01168,"11":0.18687,_:"5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.0141},O:{"0":0.18804},H:{"0":0.01},L:{"0":29.97925},R:{_:"0"},M:{"0":0.59233}};
Index: node_modules/caniuse-lite/data/regions/NO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"59":0.02685,"78":0.00537,"113":0.00537,"115":0.07518,"128":0.06444,"134":0.00537,"139":0.00537,"140":0.17721,"141":0.00537,"142":0.00537,"143":0.03222,"144":0.51552,"145":0.64977,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 135 136 137 138 146 147 148 3.5 3.6"},D:{"41":0.00537,"49":0.00537,"65":0.00537,"66":0.11814,"79":0.00537,"87":0.02148,"88":0.00537,"92":0.01611,"97":0.54237,"102":0.00537,"103":0.01611,"104":0.00537,"108":0.00537,"109":0.12351,"110":0.00537,"112":0.00537,"114":0.05907,"115":0.00537,"116":0.08055,"118":6.78231,"119":0.19869,"120":0.00537,"121":0.01611,"122":0.04296,"123":0.01074,"124":0.03222,"125":0.03759,"126":0.03222,"127":0.00537,"128":0.04296,"129":0.01074,"130":0.12351,"131":0.06981,"132":0.02148,"133":0.04833,"134":0.03222,"135":0.04833,"136":0.08055,"137":0.06444,"138":0.31683,"139":0.26313,"140":0.41349,"141":4.23693,"142":12.85578,"143":0.03759,"144":0.00537,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 89 90 91 93 94 95 96 98 99 100 101 105 106 107 111 113 117 145 146"},F:{"36":0.00537,"74":0.00537,"79":0.02685,"83":0.00537,"84":0.00537,"85":0.02685,"86":0.02148,"87":0.00537,"89":0.01074,"90":0.01611,"91":0.03222,"92":0.95586,"93":0.13962,"95":0.90753,"99":0.00537,"102":0.01074,"103":0.00537,"104":0.00537,"109":0.00537,"112":0.00537,"113":0.01074,"114":0.02685,"115":0.00537,"117":0.01611,"119":0.01611,"120":0.22554,"121":0.00537,"122":2.40039,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 82 88 94 96 97 98 100 101 105 106 107 108 110 111 116 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01611,"109":0.02685,"115":0.00537,"131":0.01611,"132":0.00537,"133":0.00537,"134":0.00537,"136":0.01074,"137":0.00537,"138":0.02685,"139":0.02148,"140":0.04296,"141":0.76791,"142":5.4237,"143":0.00537,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 135"},E:{"14":0.00537,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.1 15.2-15.3","11.1":0.02148,"12.1":0.02148,"13.1":0.01074,"14.1":0.02148,"15.4":0.00537,"15.5":0.01074,"15.6":0.15573,"16.0":0.00537,"16.1":0.02685,"16.2":0.01611,"16.3":0.02685,"16.4":0.02148,"16.5":0.01074,"16.6":0.28998,"17.0":0.00537,"17.1":0.25776,"17.2":0.03222,"17.3":0.01611,"17.4":0.0537,"17.5":0.1611,"17.6":0.22017,"18.0":0.02685,"18.1":0.06444,"18.2":0.02148,"18.3":0.10203,"18.4":0.04296,"18.5-18.6":0.19869,"26.0":0.35979,"26.1":0.44034,"26.2":0.01074},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00233,"5.0-5.1":0,"6.0-6.1":0.00932,"7.0-7.1":0.00699,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02098,"10.0-10.2":0.00233,"10.3":0.0373,"11.0-11.2":0.43361,"11.3-11.4":0.01399,"12.0-12.1":0.00466,"12.2-12.5":0.10957,"13.0-13.1":0,"13.2":0.01166,"13.3":0.00466,"13.4-13.7":0.02098,"14.0-14.4":0.03497,"14.5-14.8":0.04429,"15.0-15.1":0.0373,"15.2-15.3":0.03031,"15.4":0.03264,"15.5":0.03497,"15.6-15.8":0.50588,"16.0":0.06294,"16.1":0.11656,"16.2":0.06061,"16.3":0.1119,"16.4":0.02797,"16.5":0.04662,"16.6-16.7":0.68305,"17.0":0.05828,"17.1":0.06994,"17.2":0.05129,"17.3":0.07227,"17.4":0.11889,"17.5":0.22613,"17.6-17.7":0.55484,"18.0":0.12356,"18.1":0.2611,"18.2":0.13987,"18.3":0.45459,"18.4":0.23312,"18.5-18.7":16.27909,"26.0":1.11667,"26.1":1.01875},P:{"4":0.02093,"21":0.01047,"26":0.02093,"27":0.01047,"28":0.15699,"29":2.65829,_:"20 22 23 24 25 5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01047,"9.2":0.01047},I:{"0":0.00925,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":5.8258,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00926},H:{"0":0},L:{"0":15.19412},R:{_:"0"},M:{"0":0.31491}};
Index: node_modules/caniuse-lite/data/regions/NP.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NP.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00323,"52":0.00323,"99":0.00323,"115":0.09364,"127":0.00646,"128":0.00323,"135":0.00323,"136":0.00323,"139":0.00323,"140":0.01615,"141":0.00646,"142":0.01292,"143":0.0226,"144":0.43914,"145":0.55216,"146":0.01292,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 134 137 138 147 148 3.5 3.6"},D:{"69":0.00323,"79":0.00323,"80":0.00323,"83":0.00323,"87":0.00646,"91":0.00646,"93":0.00323,"102":0.00323,"103":0.03229,"104":0.00646,"106":0.00323,"109":1.03651,"111":0.00323,"112":2.52831,"114":0.00646,"115":0.00323,"116":0.03229,"119":0.00323,"120":0.00646,"121":0.00646,"122":0.03229,"123":0.00969,"124":0.01615,"125":0.1776,"126":0.31321,"127":0.01292,"128":0.02906,"129":0.01292,"130":0.00969,"131":0.04521,"132":0.03229,"133":0.01937,"134":0.01937,"135":0.04198,"136":0.03875,"137":0.04844,"138":0.1776,"139":0.12593,"140":0.20989,"141":3.77793,"142":14.36582,"143":0.13239,"144":0.00323,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 81 84 85 86 88 89 90 92 94 95 96 97 98 99 100 101 105 107 108 110 113 117 118 145 146"},F:{"79":0.00323,"92":0.0226,"93":0.00646,"95":0.00969,"122":0.06458,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00323,"92":0.00646,"109":0.00646,"114":0.02906,"122":0.00323,"125":0.00323,"131":0.00646,"132":0.00323,"134":0.00969,"135":0.00323,"136":0.00323,"137":0.00323,"138":0.00646,"139":0.00969,"140":0.01292,"141":0.13885,"142":1.70168,"143":0.00646,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 126 127 128 129 130 133"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 16.0 16.3 16.4","12.1":0.00323,"13.1":0.00323,"14.1":0.00646,"15.5":0.00323,"15.6":0.01937,"16.1":0.00969,"16.2":0.00323,"16.5":0.00323,"16.6":0.0226,"17.0":0.00323,"17.1":0.00969,"17.2":0.00323,"17.3":0.00646,"17.4":0.00646,"17.5":0.01292,"17.6":0.03552,"18.0":0.00323,"18.1":0.00969,"18.2":0.00323,"18.3":0.00969,"18.4":0.00323,"18.5-18.6":0.02906,"26.0":0.07104,"26.1":0.0775,"26.2":0.00323},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00115,"5.0-5.1":0,"6.0-6.1":0.00459,"7.0-7.1":0.00345,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01034,"10.0-10.2":0.00115,"10.3":0.01837,"11.0-11.2":0.2136,"11.3-11.4":0.00689,"12.0-12.1":0.0023,"12.2-12.5":0.05397,"13.0-13.1":0,"13.2":0.00574,"13.3":0.0023,"13.4-13.7":0.01034,"14.0-14.4":0.01723,"14.5-14.8":0.02182,"15.0-15.1":0.01837,"15.2-15.3":0.01493,"15.4":0.01608,"15.5":0.01723,"15.6-15.8":0.24919,"16.0":0.03101,"16.1":0.05742,"16.2":0.02986,"16.3":0.05512,"16.4":0.01378,"16.5":0.02297,"16.6-16.7":0.33647,"17.0":0.02871,"17.1":0.03445,"17.2":0.02526,"17.3":0.0356,"17.4":0.05857,"17.5":0.11139,"17.6-17.7":0.27331,"18.0":0.06086,"18.1":0.12862,"18.2":0.0689,"18.3":0.22393,"18.4":0.11484,"18.5-18.7":8.01901,"26.0":0.55007,"26.1":0.50183},P:{"23":0.0105,"25":0.0105,"26":0.0105,"27":0.0105,"28":0.06297,"29":0.51426,_:"4 20 21 22 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.0105},I:{"0":0.02705,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.54168,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.36563},H:{"0":0},L:{"0":58.71539},R:{_:"0"},M:{"0":0.05417}};
Index: node_modules/caniuse-lite/data/regions/NR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"142":0.03855,"144":0.26728,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 143 145 146 147 148 3.5 3.6"},D:{"102":0.15163,"109":0.0771,"122":0.03855,"123":0.03855,"125":1.2593,"139":0.11565,"140":0.65021,"141":1.03057,"142":3.78047,"143":0.03855,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 124 126 127 128 129 130 131 132 133 134 135 136 137 138 144 145 146"},F:{"93":0.49601,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"114":0.0771,"136":0.0771,"140":0.03855,"141":0.22873,"142":2.97863,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.1 26.2","26.0":0.03855},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00089,"5.0-5.1":0,"6.0-6.1":0.00355,"7.0-7.1":0.00266,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00798,"10.0-10.2":0.00089,"10.3":0.01419,"11.0-11.2":0.16501,"11.3-11.4":0.00532,"12.0-12.1":0.00177,"12.2-12.5":0.0417,"13.0-13.1":0,"13.2":0.00444,"13.3":0.00177,"13.4-13.7":0.00798,"14.0-14.4":0.01331,"14.5-14.8":0.01686,"15.0-15.1":0.01419,"15.2-15.3":0.01153,"15.4":0.01242,"15.5":0.01331,"15.6-15.8":0.19251,"16.0":0.02395,"16.1":0.04436,"16.2":0.02307,"16.3":0.04258,"16.4":0.01065,"16.5":0.01774,"16.6-16.7":0.25993,"17.0":0.02218,"17.1":0.02661,"17.2":0.01952,"17.3":0.0275,"17.4":0.04524,"17.5":0.08605,"17.6-17.7":0.21114,"18.0":0.04702,"18.1":0.09936,"18.2":0.05323,"18.3":0.17299,"18.4":0.08871,"18.5-18.7":6.19491,"26.0":0.42494,"26.1":0.38768},P:{"28":0.27468,"29":3.03167,_:"4 20 21 22 23 24 25 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.15603,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":1.5603},H:{"0":0},L:{"0":72.89053},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/NU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 3.5 3.6"},D:{"140":16.665,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 141 142 143 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"140":16.665,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 141 142 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.0 26.1 26.2"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00667,"5.0-5.1":0,"6.0-6.1":0.02667,"7.0-7.1":0.02,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06,"10.0-10.2":0.00667,"10.3":0.10667,"11.0-11.2":1.24006,"11.3-11.4":0.04,"12.0-12.1":0.01333,"12.2-12.5":0.31335,"13.0-13.1":0,"13.2":0.03334,"13.3":0.01333,"13.4-13.7":0.06,"14.0-14.4":0.10001,"14.5-14.8":0.12667,"15.0-15.1":0.10667,"15.2-15.3":0.08667,"15.4":0.09334,"15.5":0.10001,"15.6-15.8":1.44674,"16.0":0.18001,"16.1":0.33335,"16.2":0.17334,"16.3":0.32002,"16.4":0.08,"16.5":0.13334,"16.6-16.7":1.95343,"17.0":0.16668,"17.1":0.20001,"17.2":0.14667,"17.3":0.20668,"17.4":0.34002,"17.5":0.6467,"17.6-17.7":1.58675,"18.0":0.35335,"18.1":0.7467,"18.2":0.40002,"18.3":1.30007,"18.4":0.6667,"18.5-18.7":46.55566,"26.0":3.19349,"26.1":2.91348},P:{_:"4 20 21 22 23 24 25 26 27 28 29 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{_:"0"},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/NZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/NZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/NZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"37":0.01163,"48":0.02326,"52":0.01744,"78":0.01744,"88":0.00581,"102":0.00581,"115":0.14535,"125":0.00581,"128":0.01163,"135":0.00581,"136":0.01163,"138":0.01744,"139":0.01163,"140":0.06395,"141":0.00581,"142":0.01744,"143":0.03488,"144":0.9535,"145":1.14536,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 133 134 137 146 147 148 3.5 3.6"},D:{"29":0.00581,"34":0.00581,"38":0.05814,"49":0.01744,"53":0.00581,"61":0.01163,"79":0.03488,"83":0.00581,"87":0.0407,"88":0.00581,"90":0.00581,"92":0.00581,"93":0.02326,"94":0.00581,"95":0.00581,"96":0.00581,"97":0.00581,"99":0.00581,"101":0.00581,"103":0.13954,"104":0.01163,"107":0.00581,"108":0.0407,"109":0.3721,"110":0.00581,"111":0.01163,"112":0.00581,"113":0.01163,"114":0.06977,"115":0.00581,"116":0.13954,"119":0.02907,"120":0.04651,"121":0.02326,"122":0.04651,"123":0.01163,"124":0.04651,"125":0.11047,"126":0.05814,"127":0.03488,"128":0.12209,"129":0.01744,"130":0.02326,"131":0.07558,"132":0.03488,"133":0.05814,"134":3.33724,"135":0.0407,"136":0.0814,"137":0.13372,"138":0.40698,"139":1.08722,"140":0.52326,"141":6.37214,"142":19.86062,"143":0.05814,"144":0.01744,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 85 86 89 91 98 100 102 105 106 117 118 145 146"},F:{"46":0.00581,"92":0.01744,"95":0.02326,"102":0.00581,"119":0.00581,"120":0.01163,"121":0.00581,"122":0.41861,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00581,"92":0.00581,"105":0.00581,"109":0.01744,"111":0.00581,"113":0.00581,"114":0.00581,"120":0.00581,"123":0.00581,"124":0.00581,"126":0.00581,"127":0.01744,"131":0.01163,"132":0.01163,"133":0.00581,"134":0.01744,"135":0.02326,"136":0.00581,"137":0.01163,"138":0.01744,"139":0.02326,"140":0.05233,"141":0.89536,"142":6.83726,"143":0.01163,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 110 112 115 116 117 118 119 121 122 125 128 129 130"},E:{"4":0.00581,"13":0.01744,"14":0.01163,"15":0.00581,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00581,"13.1":0.0407,"14.1":0.06395,"15.1":0.01163,"15.2-15.3":0.01163,"15.4":0.01163,"15.5":0.01163,"15.6":0.34884,"16.0":0.03488,"16.1":0.04651,"16.2":0.03488,"16.3":0.04651,"16.4":0.01163,"16.5":0.01744,"16.6":0.42442,"17.0":0.00581,"17.1":0.43024,"17.2":0.01744,"17.3":0.04651,"17.4":0.05233,"17.5":0.09884,"17.6":0.3721,"18.0":0.05233,"18.1":0.06395,"18.2":0.02907,"18.3":0.16279,"18.4":0.09302,"18.5-18.6":0.3314,"26.0":0.44186,"26.1":0.51163,"26.2":0.01744},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00164,"5.0-5.1":0,"6.0-6.1":0.00656,"7.0-7.1":0.00492,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01476,"10.0-10.2":0.00164,"10.3":0.02624,"11.0-11.2":0.30506,"11.3-11.4":0.00984,"12.0-12.1":0.00328,"12.2-12.5":0.07708,"13.0-13.1":0,"13.2":0.0082,"13.3":0.00328,"13.4-13.7":0.01476,"14.0-14.4":0.0246,"14.5-14.8":0.03116,"15.0-15.1":0.02624,"15.2-15.3":0.02132,"15.4":0.02296,"15.5":0.0246,"15.6-15.8":0.3559,"16.0":0.04428,"16.1":0.08201,"16.2":0.04264,"16.3":0.07872,"16.4":0.01968,"16.5":0.0328,"16.6-16.7":0.48055,"17.0":0.041,"17.1":0.0492,"17.2":0.03608,"17.3":0.05084,"17.4":0.08365,"17.5":0.15909,"17.6-17.7":0.39034,"18.0":0.08693,"18.1":0.18369,"18.2":0.09841,"18.3":0.31982,"18.4":0.16401,"18.5-18.7":11.45283,"26.0":0.78561,"26.1":0.71672},P:{"4":0.07674,"21":0.02193,"22":0.17541,"23":0.01096,"24":0.01096,"25":0.03289,"26":0.03289,"27":0.03289,"28":0.25216,"29":2.65313,_:"20 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.03289,"8.2":0.01096},I:{"0":0.03761,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.18833,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.12888,"9":0.01841,"10":0.03682,"11":0.03682,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00837},O:{"0":0.0293},H:{"0":0},L:{"0":23.86118},R:{_:"0"},M:{"0":0.50639}};
Index: node_modules/caniuse-lite/data/regions/OM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/OM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/OM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0166,"115":0.02076,"128":0.00415,"140":0.00415,"142":0.00415,"143":0.00415,"144":0.19925,"145":0.22415,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"48":0.00415,"59":0.00415,"66":0.00415,"68":0.00415,"69":0.0166,"73":0.0166,"75":0.0083,"78":0.00415,"79":0.01245,"83":0.02491,"87":0.04981,"88":0.0083,"91":0.00415,"93":0.0083,"94":0.00415,"95":0.00415,"98":0.03321,"99":0.00415,"101":0.00415,"103":0.23661,"104":0.0083,"108":0.00415,"109":0.52718,"110":0.0083,"111":0.02491,"112":11.86771,"114":0.05811,"115":0.00415,"116":0.03321,"119":0.01245,"120":0.01245,"121":0.00415,"122":0.07057,"123":0.01245,"124":0.0166,"125":0.22831,"126":1.29926,"127":0.00415,"128":0.02491,"129":0.0166,"130":0.01245,"131":0.07057,"132":0.03321,"133":0.02076,"134":0.02906,"135":0.04566,"136":0.09547,"137":0.05811,"138":0.24906,"139":0.07472,"140":0.24906,"141":3.39137,"142":10.14504,"143":0.02906,"144":0.00415,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 61 62 63 64 65 67 70 71 72 74 76 77 80 81 84 85 86 89 90 92 96 97 100 102 105 106 107 113 117 118 145 146"},F:{"79":0.0083,"92":0.04566,"93":0.00415,"95":0.00415,"121":0.00415,"122":0.10793,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00415,"92":0.00415,"108":0.00415,"109":0.01245,"114":0.27812,"130":0.00415,"131":0.00415,"135":0.00415,"136":0.0083,"137":0.00415,"138":0.0083,"139":0.01245,"140":0.02076,"141":0.21585,"142":1.92191,"143":0.00415,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 132 133 134"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.4 15.5 16.0 16.1 16.4 17.0 17.2 18.0 26.2","5.1":0.00415,"13.1":0.0166,"14.1":0.0083,"15.2-15.3":0.00415,"15.6":0.05811,"16.2":0.00415,"16.3":0.01245,"16.5":0.00415,"16.6":0.03736,"17.1":0.02076,"17.3":0.00415,"17.4":0.00415,"17.5":0.0083,"17.6":0.04151,"18.1":0.00415,"18.2":0.00415,"18.3":0.0166,"18.4":0.0083,"18.5-18.6":0.06642,"26.0":0.09962,"26.1":0.07472},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00096,"5.0-5.1":0,"6.0-6.1":0.00384,"7.0-7.1":0.00288,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00865,"10.0-10.2":0.00096,"10.3":0.01538,"11.0-11.2":0.17874,"11.3-11.4":0.00577,"12.0-12.1":0.00192,"12.2-12.5":0.04517,"13.0-13.1":0,"13.2":0.0048,"13.3":0.00192,"13.4-13.7":0.00865,"14.0-14.4":0.01441,"14.5-14.8":0.01826,"15.0-15.1":0.01538,"15.2-15.3":0.01249,"15.4":0.01345,"15.5":0.01441,"15.6-15.8":0.20853,"16.0":0.02595,"16.1":0.04805,"16.2":0.02499,"16.3":0.04613,"16.4":0.01153,"16.5":0.01922,"16.6-16.7":0.28157,"17.0":0.02402,"17.1":0.02883,"17.2":0.02114,"17.3":0.02979,"17.4":0.04901,"17.5":0.09322,"17.6-17.7":0.22872,"18.0":0.05093,"18.1":0.10763,"18.2":0.05766,"18.3":0.18739,"18.4":0.0961,"18.5-18.7":6.7106,"26.0":0.46031,"26.1":0.41995},P:{"4":0.04134,"20":0.01034,"21":0.01034,"22":0.01034,"23":0.03101,"24":0.02067,"25":0.03101,"26":0.03101,"27":0.09302,"28":0.33075,"29":1.59173,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 18.0 19.0","7.2-7.4":0.02067,"11.1-11.2":0.01034,"13.0":0.01034,"16.0":0.01034,"17.0":0.01034},I:{"0":0.07009,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.91244,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02657,"9":0.01328,"10":0.01328,"11":0.01328,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00585},O:{"0":0.52056},H:{"0":0},L:{"0":52.47967},R:{_:"0"},M:{"0":0.16377}};
Index: node_modules/caniuse-lite/data/regions/PA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.02224,"5":0.02224,"115":0.01483,"120":0.02224,"128":0.00741,"139":0.02966,"140":0.01483,"142":0.02224,"143":0.04448,"144":0.67467,"145":0.33363,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 137 138 141 146 147 148 3.5 3.6"},D:{"69":0.02966,"79":0.02224,"83":0.00741,"87":0.03707,"97":0.00741,"99":0.00741,"101":0.00741,"103":0.01483,"104":0.01483,"108":0.00741,"109":0.20018,"110":0.00741,"111":0.06673,"112":17.77877,"114":0.01483,"116":0.02966,"119":0.02966,"120":0.01483,"121":0.00741,"122":0.08897,"123":0.00741,"124":0.04448,"125":19.36537,"126":3.93683,"127":0.00741,"128":0.02224,"129":0.00741,"130":0.01483,"131":0.04448,"132":0.0519,"133":0.01483,"134":0.07414,"135":0.03707,"136":0.02224,"137":0.02224,"138":0.14828,"139":0.14087,"140":0.41518,"141":4.84876,"142":11.79567,"143":0.02966,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 84 85 86 88 89 90 91 92 93 94 95 96 98 100 102 105 106 107 113 115 117 118 144 145 146"},F:{"92":0.01483,"95":0.01483,"119":0.02224,"122":0.4745,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00741,"109":0.00741,"114":0.58571,"125":0.00741,"127":0.03707,"131":0.00741,"132":0.00741,"134":0.00741,"136":0.00741,"137":0.00741,"138":0.01483,"139":0.01483,"140":0.05931,"141":0.72657,"142":3.45492,"143":0.00741,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 126 128 129 130 133 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 16.0 16.1 16.3 16.4 16.5 17.0","15.5":0.00741,"15.6":0.05931,"16.2":0.00741,"16.6":0.09638,"17.1":0.02966,"17.2":0.02966,"17.3":0.04448,"17.4":0.03707,"17.5":0.07414,"17.6":0.08155,"18.0":0.00741,"18.1":0.01483,"18.2":0.11121,"18.3":0.13345,"18.4":0.11121,"18.5-18.6":0.17794,"26.0":0.3188,"26.1":0.2669,"26.2":0.01483},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0,"6.0-6.1":0.00245,"7.0-7.1":0.00183,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0055,"10.0-10.2":0.00061,"10.3":0.00978,"11.0-11.2":0.11371,"11.3-11.4":0.00367,"12.0-12.1":0.00122,"12.2-12.5":0.02873,"13.0-13.1":0,"13.2":0.00306,"13.3":0.00122,"13.4-13.7":0.0055,"14.0-14.4":0.00917,"14.5-14.8":0.01162,"15.0-15.1":0.00978,"15.2-15.3":0.00795,"15.4":0.00856,"15.5":0.00917,"15.6-15.8":0.13266,"16.0":0.01651,"16.1":0.03057,"16.2":0.0159,"16.3":0.02934,"16.4":0.00734,"16.5":0.01223,"16.6-16.7":0.17913,"17.0":0.01528,"17.1":0.01834,"17.2":0.01345,"17.3":0.01895,"17.4":0.03118,"17.5":0.0593,"17.6-17.7":0.1455,"18.0":0.0324,"18.1":0.06847,"18.2":0.03668,"18.3":0.11921,"18.4":0.06114,"18.5-18.7":4.26907,"26.0":0.29284,"26.1":0.26716},P:{"20":0.01063,"22":0.08506,"24":0.02127,"25":0.01063,"26":0.01063,"27":0.0319,"28":0.15949,"29":1.33971,_:"4 21 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02127},I:{"0":0.01033,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.13959,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00259},O:{"0":0.0698},H:{"0":0},L:{"0":20.79039},R:{_:"0"},M:{"0":0.14993}};
Index: node_modules/caniuse-lite/data/regions/PE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.02743,"5":0.00686,"88":0.00686,"115":0.15773,"120":0.00686,"122":0.00686,"123":0.00686,"125":0.00686,"128":0.00686,"136":0.00686,"140":0.01372,"141":0.00686,"142":0.00686,"143":0.01372,"144":0.4732,"145":0.56921,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 124 126 127 129 130 131 132 133 134 135 137 138 139 146 147 148 3.5 3.6"},D:{"38":0.00686,"47":0.00686,"49":0.00686,"69":0.00686,"78":0.00686,"79":0.09601,"81":0.00686,"85":0.00686,"87":0.06858,"88":0.00686,"89":0.00686,"91":0.00686,"93":0.00686,"94":0.00686,"95":0.02057,"96":0.00686,"97":0.03429,"99":0.00686,"100":0.00686,"101":0.00686,"102":0.01372,"103":0.01372,"104":0.02057,"106":0.00686,"107":0.00686,"108":0.03429,"109":1.08356,"110":0.02057,"111":0.04801,"112":11.69289,"114":0.04801,"116":0.09601,"117":0.00686,"119":0.01372,"120":0.03429,"121":0.06172,"122":0.11659,"123":0.02057,"124":0.04115,"125":2.86664,"126":1.61849,"127":0.03429,"128":0.04115,"129":0.01372,"130":0.02057,"131":0.11659,"132":0.04801,"133":0.04801,"134":0.05486,"135":0.10287,"136":0.06172,"137":0.08915,"138":0.2606,"139":0.28804,"140":0.58293,"141":6.65912,"142":26.27986,"143":0.04801,"144":0.00686,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 80 83 84 86 90 92 98 105 113 115 118 145 146"},F:{"92":0.05486,"95":0.02057,"114":0.00686,"120":0.00686,"122":1.07671,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00686,"85":0.00686,"92":0.01372,"109":0.01372,"114":0.06858,"121":0.00686,"122":0.01372,"130":0.00686,"131":0.00686,"133":0.00686,"134":0.00686,"135":0.00686,"136":0.00686,"137":0.00686,"138":0.02057,"139":0.02057,"140":0.04801,"141":0.48692,"142":3.74447,"143":0.01372,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 123 124 125 126 127 128 129 132"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 17.0 26.2","5.1":0.00686,"13.1":0.00686,"14.1":0.00686,"15.6":0.04115,"16.3":0.00686,"16.4":0.00686,"16.5":0.02057,"16.6":0.03429,"17.1":0.01372,"17.2":0.00686,"17.3":0.01372,"17.4":0.01372,"17.5":0.01372,"17.6":0.04115,"18.0":0.00686,"18.1":0.00686,"18.2":0.02057,"18.3":0.02743,"18.4":0.03429,"18.5-18.6":0.05486,"26.0":0.12344,"26.1":0.1303},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00036,"5.0-5.1":0,"6.0-6.1":0.00144,"7.0-7.1":0.00108,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00324,"10.0-10.2":0.00036,"10.3":0.00576,"11.0-11.2":0.06694,"11.3-11.4":0.00216,"12.0-12.1":0.00072,"12.2-12.5":0.01691,"13.0-13.1":0,"13.2":0.0018,"13.3":0.00072,"13.4-13.7":0.00324,"14.0-14.4":0.0054,"14.5-14.8":0.00684,"15.0-15.1":0.00576,"15.2-15.3":0.00468,"15.4":0.00504,"15.5":0.0054,"15.6-15.8":0.07809,"16.0":0.00972,"16.1":0.01799,"16.2":0.00936,"16.3":0.01727,"16.4":0.00432,"16.5":0.0072,"16.6-16.7":0.10544,"17.0":0.009,"17.1":0.0108,"17.2":0.00792,"17.3":0.01116,"17.4":0.01835,"17.5":0.03491,"17.6-17.7":0.08565,"18.0":0.01907,"18.1":0.04031,"18.2":0.02159,"18.3":0.07018,"18.4":0.03599,"18.5-18.7":2.513,"26.0":0.17238,"26.1":0.15726},P:{"4":0.08352,"21":0.01044,"22":0.02088,"23":0.03132,"24":0.01044,"25":0.02088,"26":0.02088,"27":0.10441,"28":0.09396,"29":0.46982,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.04176},I:{"0":0.02825,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.23258,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.05486,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00629},H:{"0":0},L:{"0":29.91197},R:{_:"0"},M:{"0":0.11943}};
Index: node_modules/caniuse-lite/data/regions/PF.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"68":0.00207,"78":0.00207,"102":0.00207,"115":0.16377,"128":0.00415,"130":0.00207,"131":0.00207,"134":0.00207,"135":0.01037,"136":0.00829,"138":0.00207,"139":0.00622,"140":0.09536,"141":0.00829,"142":0.0311,"143":0.01037,"144":0.63641,"145":1.24795,"146":0.00207,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 132 133 137 147 148 3.5 3.6"},D:{"70":0.00415,"79":0.00415,"84":0.00207,"87":0.00207,"100":0.00622,"103":0.0539,"107":0.00207,"109":0.1078,"116":0.05804,"119":0.00829,"120":0.00207,"121":0.00415,"122":0.03939,"123":0.00415,"125":0.03731,"126":0.00207,"128":0.0311,"130":0.03317,"131":0.01244,"132":0.00207,"133":0.00829,"134":0.02073,"135":0.00622,"136":0.00207,"137":0.01451,"138":0.07877,"139":0.06634,"140":0.09121,"141":1.16295,"142":5.27786,"143":0.00622,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 80 81 83 85 86 88 89 90 91 92 93 94 95 96 97 98 99 101 102 104 105 106 108 110 111 112 113 114 115 117 118 124 127 129 144 145 146"},F:{"92":0.00622,"95":0.00207,"102":0.00207,"119":0.00207,"122":0.07256,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"85":0.00207,"109":0.02902,"114":0.00415,"120":0.00415,"122":0.00207,"125":0.00207,"131":0.00415,"133":0.00415,"134":0.00207,"137":0.00207,"138":0.00207,"139":0.01244,"140":0.01244,"141":0.17828,"142":2.36115,"143":0.00622,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 123 124 126 127 128 129 130 132 135 136"},E:{"8":0.00207,"13":0.01037,"14":0.00415,"15":0.00207,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.01658,"14.1":0.02073,"15.1":0.00415,"15.2-15.3":0.01037,"15.4":0.00207,"15.5":0.00622,"15.6":0.07463,"16.0":0.00829,"16.1":0.24461,"16.2":0.00829,"16.3":0.03731,"16.4":0.02073,"16.5":0.10365,"16.6":0.60324,"17.0":0.00622,"17.1":0.54105,"17.2":0.09536,"17.3":0.02488,"17.4":0.29644,"17.5":0.10987,"17.6":1.14015,"18.0":0.00207,"18.1":0.01037,"18.2":0.00622,"18.3":0.10365,"18.4":0.02902,"18.5-18.6":0.25083,"26.0":0.25913,"26.1":0.25913,"26.2":0.01244},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00101,"5.0-5.1":0,"6.0-6.1":0.00403,"7.0-7.1":0.00302,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00907,"10.0-10.2":0.00101,"10.3":0.01613,"11.0-11.2":0.18755,"11.3-11.4":0.00605,"12.0-12.1":0.00202,"12.2-12.5":0.04739,"13.0-13.1":0,"13.2":0.00504,"13.3":0.00202,"13.4-13.7":0.00907,"14.0-14.4":0.01512,"14.5-14.8":0.01916,"15.0-15.1":0.01613,"15.2-15.3":0.01311,"15.4":0.01412,"15.5":0.01512,"15.6-15.8":0.2188,"16.0":0.02722,"16.1":0.05042,"16.2":0.02622,"16.3":0.0484,"16.4":0.0121,"16.5":0.02017,"16.6-16.7":0.29544,"17.0":0.02521,"17.1":0.03025,"17.2":0.02218,"17.3":0.03126,"17.4":0.05142,"17.5":0.09781,"17.6-17.7":0.23998,"18.0":0.05344,"18.1":0.11293,"18.2":0.0605,"18.3":0.19662,"18.4":0.10083,"18.5-18.7":7.04106,"26.0":0.48298,"26.1":0.44063},P:{"24":0.01025,"25":0.03076,"26":0.02051,"27":0.01025,"28":0.47169,"29":1.68169,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01025},I:{"0":0.16623,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.03549,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00207,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.84026},H:{"0":0.02},L:{"0":67.88596},R:{_:"0"},M:{"0":0.13476}};
Index: node_modules/caniuse-lite/data/regions/PG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"49":0.00391,"68":0.00391,"78":0.00391,"115":0.0313,"126":0.00782,"127":0.00391,"139":0.00391,"140":0.01174,"141":0.00782,"142":0.01174,"143":0.02347,"144":0.29731,"145":0.18778,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 128 129 130 131 132 133 134 135 136 137 138 146 147 148 3.5 3.6"},D:{"26":0.00391,"38":0.00391,"60":0.00391,"67":0.00782,"69":0.00391,"72":0.00391,"78":0.00391,"84":0.00391,"87":0.01174,"88":0.04303,"89":0.00391,"91":0.00391,"94":0.02347,"95":0.00391,"97":0.00782,"99":0.01174,"100":0.00391,"102":0.00391,"103":0.00782,"105":0.01956,"106":0.00391,"109":0.1956,"110":0.00782,"111":0.01565,"114":0.01956,"115":0.00391,"116":0.0313,"117":0.00782,"118":0.00391,"119":0.01565,"120":0.0978,"121":0.01565,"122":0.0313,"123":0.01174,"124":0.01956,"125":0.08606,"126":0.03912,"127":0.02347,"128":0.17604,"129":0.00782,"130":0.01174,"131":0.07824,"132":0.03521,"133":0.0313,"134":0.02347,"135":0.05086,"136":0.03521,"137":0.2934,"138":0.12127,"139":0.15257,"140":0.21516,"141":1.9873,"142":6.50957,"143":0.01956,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 68 70 71 73 74 75 76 77 79 80 81 83 85 86 90 92 93 96 98 101 104 107 108 112 113 144 145 146"},F:{"87":0.00391,"89":0.00391,"90":0.00391,"91":0.01174,"92":0.11345,"93":0.01174,"95":0.00391,"113":0.00391,"114":0.00391,"116":0.00391,"120":0.01565,"122":0.10171,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 115 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00782,"13":0.00391,"14":0.00391,"15":0.00391,"16":0.00391,"17":0.00391,"18":0.05477,"84":0.00782,"89":0.01174,"90":0.00782,"92":0.05477,"100":0.03912,"110":0.00391,"112":0.00391,"114":0.02347,"116":0.00391,"117":0.00391,"120":0.00782,"122":0.01174,"124":0.00782,"125":0.01174,"126":0.01956,"127":0.00391,"128":0.00782,"129":0.00782,"130":0.00782,"131":0.00782,"132":0.03521,"133":0.01565,"134":0.01565,"135":0.01174,"136":0.01565,"137":0.01565,"138":0.13692,"139":0.05868,"140":0.10954,"141":0.6846,"142":4.13498,"143":0.00391,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 111 113 115 118 119 121 123"},E:{"15":0.01174,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 15.4 15.5 16.5 17.0 17.3 18.1 18.3 18.4 26.2","13.1":0.00782,"14.1":0.00391,"15.1":0.01174,"15.6":0.00782,"16.0":0.00391,"16.1":0.00391,"16.2":0.17995,"16.3":0.03521,"16.4":0.00391,"16.6":0.00391,"17.1":0.11345,"17.2":0.03521,"17.4":0.00782,"17.5":0.00782,"17.6":0.00782,"18.0":0.00391,"18.2":0.00391,"18.5-18.6":0.00782,"26.0":0.01956,"26.1":0.01956},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00024,"5.0-5.1":0,"6.0-6.1":0.00097,"7.0-7.1":0.00073,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00218,"10.0-10.2":0.00024,"10.3":0.00388,"11.0-11.2":0.04507,"11.3-11.4":0.00145,"12.0-12.1":0.00048,"12.2-12.5":0.01139,"13.0-13.1":0,"13.2":0.00121,"13.3":0.00048,"13.4-13.7":0.00218,"14.0-14.4":0.00363,"14.5-14.8":0.0046,"15.0-15.1":0.00388,"15.2-15.3":0.00315,"15.4":0.00339,"15.5":0.00363,"15.6-15.8":0.05258,"16.0":0.00654,"16.1":0.01212,"16.2":0.0063,"16.3":0.01163,"16.4":0.00291,"16.5":0.00485,"16.6-16.7":0.07099,"17.0":0.00606,"17.1":0.00727,"17.2":0.00533,"17.3":0.00751,"17.4":0.01236,"17.5":0.0235,"17.6-17.7":0.05767,"18.0":0.01284,"18.1":0.02714,"18.2":0.01454,"18.3":0.04725,"18.4":0.02423,"18.5-18.7":1.692,"26.0":0.11606,"26.1":0.10589},P:{"4":0.01027,"20":0.02054,"21":0.02054,"22":0.08217,"23":0.02054,"24":0.12325,"25":0.60598,"26":0.11298,"27":0.32867,"28":0.68815,"29":0.94492,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0","7.2-7.4":0.03081,"14.0":0.01027,"18.0":0.01027,"19.0":0.01027},I:{"0":0.43164,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":1.0254,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.01434,"11":0.02869,_:"6 7 8 9 5.5"},N:{_:"10 11"},S:{"2.5":0.00609,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.06697},O:{"0":0.48095},H:{"0":0.04},L:{"0":72.91287},R:{_:"0"},M:{"0":0.38354}};
Index: node_modules/caniuse-lite/data/regions/PH.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00356,"59":0.00356,"98":0.00356,"101":0.00356,"115":0.02848,"122":0.00356,"123":0.01068,"127":0.01068,"128":0.68708,"132":0.00356,"136":0.00712,"140":0.01068,"142":0.00356,"143":0.00712,"144":0.2314,"145":0.36668,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 124 125 126 129 130 131 133 134 135 137 138 139 141 146 147 148 3.5 3.6"},D:{"51":0.03204,"66":0.01424,"69":0.00356,"75":0.00356,"76":0.0178,"79":0.00712,"83":0.00356,"87":0.01424,"91":0.04628,"92":0.00356,"93":0.12104,"94":0.00712,"102":0.00356,"103":0.43432,"104":0.00356,"105":0.11392,"106":0.00356,"108":0.01424,"109":0.41652,"110":0.00356,"111":0.01424,"113":0.00712,"114":0.0712,"115":0.00356,"116":0.04984,"117":0.00356,"119":0.01068,"120":0.04272,"121":0.02492,"122":0.04984,"123":0.02136,"124":0.03204,"125":0.1068,"126":0.28124,"127":0.02492,"128":0.06408,"129":0.0178,"130":0.03204,"131":0.09968,"132":0.08544,"133":0.04628,"134":0.04984,"135":0.0712,"136":0.089,"137":0.13528,"138":0.33464,"139":0.14952,"140":0.31328,"141":4.67784,"142":17.40484,"143":0.02848,"144":0.00356,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 70 71 72 73 74 77 78 80 81 84 85 86 88 89 90 95 96 97 98 99 100 101 107 112 118 145 146"},F:{"92":0.01068,"95":0.00356,"121":0.01424,"122":0.29192,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00356,"92":0.00356,"102":0.00356,"109":0.01068,"114":0.07476,"121":0.00356,"122":0.00712,"128":0.00356,"131":0.00356,"133":0.00356,"134":0.00712,"135":0.00356,"136":0.00712,"137":0.00356,"138":0.00712,"139":0.0712,"140":0.02848,"141":0.35244,"142":2.82308,"143":0.00712,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 123 124 125 126 127 129 130 132"},E:{"14":0.01424,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.2-15.3 15.5 16.0","11.1":0.00356,"13.1":0.01424,"14.1":0.01424,"15.1":0.0178,"15.4":0.00356,"15.6":0.02492,"16.1":0.00356,"16.2":0.00356,"16.3":0.00712,"16.4":0.01068,"16.5":0.01068,"16.6":0.02848,"17.0":0.00356,"17.1":0.0178,"17.2":0.00712,"17.3":0.04984,"17.4":0.01068,"17.5":0.01424,"17.6":0.1246,"18.0":0.00712,"18.1":0.02848,"18.2":0.00712,"18.3":0.03204,"18.4":0.01068,"18.5-18.6":0.0712,"26.0":0.14596,"26.1":0.1068,"26.2":0.00356},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00035,"5.0-5.1":0,"6.0-6.1":0.00141,"7.0-7.1":0.00106,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00317,"10.0-10.2":0.00035,"10.3":0.00564,"11.0-11.2":0.06552,"11.3-11.4":0.00211,"12.0-12.1":0.0007,"12.2-12.5":0.01656,"13.0-13.1":0,"13.2":0.00176,"13.3":0.0007,"13.4-13.7":0.00317,"14.0-14.4":0.00528,"14.5-14.8":0.00669,"15.0-15.1":0.00564,"15.2-15.3":0.00458,"15.4":0.00493,"15.5":0.00528,"15.6-15.8":0.07644,"16.0":0.00951,"16.1":0.01761,"16.2":0.00916,"16.3":0.01691,"16.4":0.00423,"16.5":0.00705,"16.6-16.7":0.10321,"17.0":0.00881,"17.1":0.01057,"17.2":0.00775,"17.3":0.01092,"17.4":0.01797,"17.5":0.03417,"17.6-17.7":0.08384,"18.0":0.01867,"18.1":0.03945,"18.2":0.02114,"18.3":0.06869,"18.4":0.03523,"18.5-18.7":2.45989,"26.0":0.16874,"26.1":0.15394},P:{"24":0.01096,"25":0.01096,"26":0.01096,"27":0.02192,"28":0.06577,"29":0.38366,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01096},I:{"0":0.32798,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":0.10304,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.11036,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0322},H:{"0":0},L:{"0":62.16288},R:{_:"0"},M:{"0":0.04508}};
Index: node_modules/caniuse-lite/data/regions/PK.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0081,"52":0.00405,"112":0.00405,"115":0.14978,"127":0.00405,"128":0.00405,"133":0.00405,"134":0.0081,"135":0.00405,"136":0.00405,"137":0.00405,"138":0.00405,"139":0.00405,"140":0.01214,"141":0.00405,"142":0.00405,"143":0.01619,"144":0.25502,"145":0.27931,"146":0.00405,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 147 148 3.5 3.6"},D:{"29":0.00405,"43":0.00405,"49":0.00405,"50":0.00405,"56":0.0081,"62":0.00405,"63":0.00405,"64":0.00405,"65":0.00405,"66":0.00405,"68":0.01214,"69":0.01619,"70":0.00405,"71":0.0081,"72":0.0081,"73":0.0081,"74":0.01619,"75":0.0081,"76":0.00405,"77":0.01214,"78":0.00405,"79":0.00405,"80":0.01214,"81":0.00405,"83":0.0081,"84":0.00405,"85":0.00405,"86":0.01619,"87":0.01214,"89":0.00405,"91":0.01214,"92":0.00405,"93":0.02834,"94":0.00405,"95":0.00405,"96":0.00405,"99":0.00405,"100":0.00405,"102":0.02429,"103":0.1012,"104":0.02834,"105":0.00405,"106":0.00405,"107":0.00405,"108":0.0081,"109":1.6192,"110":0.00405,"111":0.01214,"112":4.50947,"113":0.00405,"114":0.01214,"115":0.00405,"116":0.05667,"117":0.00405,"118":0.00405,"119":0.01619,"120":0.02024,"121":0.01214,"122":0.04453,"123":0.01214,"124":0.01214,"125":1.15773,"126":0.66387,"127":0.01214,"128":0.03238,"129":0.01619,"130":0.02834,"131":0.08906,"132":0.17811,"133":0.04048,"134":0.05667,"135":0.05262,"136":0.06072,"137":0.08096,"138":0.25907,"139":0.2105,"140":0.55458,"141":4.92237,"142":13.48389,"143":0.05667,"144":0.0081,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 51 52 53 54 55 57 58 59 60 61 67 88 90 97 98 101 145 146"},F:{"92":0.06072,"93":0.01214,"95":0.03238,"114":0.0081,"117":0.00405,"120":0.00405,"122":0.11739,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0081,"15":0.00405,"16":0.00405,"18":0.01214,"92":0.02834,"100":0.00405,"109":0.01214,"110":0.00405,"113":0.00405,"114":0.08096,"122":0.00405,"131":0.01619,"132":0.01619,"133":0.0081,"134":0.0081,"135":0.0081,"136":0.01214,"137":0.00405,"138":0.0081,"139":0.01619,"140":0.01619,"141":0.16192,"142":1.23464,_:"13 14 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 112 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 18.1 26.2","5.1":0.00405,"13.1":0.00405,"14.1":0.00405,"15.2-15.3":0.00405,"15.6":0.01214,"16.6":0.01214,"17.1":0.01214,"17.2":0.00405,"17.3":0.00405,"17.4":0.00405,"17.5":0.00405,"17.6":0.02429,"18.0":0.00405,"18.2":0.0081,"18.3":0.0081,"18.4":0.0081,"18.5-18.6":0.01619,"26.0":0.03643,"26.1":0.02834},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00027,"5.0-5.1":0,"6.0-6.1":0.00109,"7.0-7.1":0.00081,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00244,"10.0-10.2":0.00027,"10.3":0.00434,"11.0-11.2":0.05047,"11.3-11.4":0.00163,"12.0-12.1":0.00054,"12.2-12.5":0.01275,"13.0-13.1":0,"13.2":0.00136,"13.3":0.00054,"13.4-13.7":0.00244,"14.0-14.4":0.00407,"14.5-14.8":0.00516,"15.0-15.1":0.00434,"15.2-15.3":0.00353,"15.4":0.0038,"15.5":0.00407,"15.6-15.8":0.05889,"16.0":0.00733,"16.1":0.01357,"16.2":0.00706,"16.3":0.01303,"16.4":0.00326,"16.5":0.00543,"16.6-16.7":0.07951,"17.0":0.00678,"17.1":0.00814,"17.2":0.00597,"17.3":0.00841,"17.4":0.01384,"17.5":0.02632,"17.6-17.7":0.06459,"18.0":0.01438,"18.1":0.03039,"18.2":0.01628,"18.3":0.05292,"18.4":0.02714,"18.5-18.7":1.89495,"26.0":0.12998,"26.1":0.11859},P:{"4":0.0221,"24":0.01105,"25":0.03316,"26":0.04421,"27":0.0221,"28":0.08841,"29":0.44207,_:"20 21 22 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.01105,"17.0":0.0221},I:{"0":0.0416,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":1.6672,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01652,"9":0.00551,"10":0.00551,"11":0.11011,_:"6 7 5.5"},N:{_:"10 11"},S:{"2.5":0.05951,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":1.95788},H:{"0":0.13},L:{"0":60.0482},R:{_:"0"},M:{"0":0.05356}};
Index: node_modules/caniuse-lite/data/regions/PL.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"47":0.00638,"52":0.03827,"77":0.01276,"78":0.00638,"110":0.00638,"113":0.00638,"115":0.39544,"120":0.00638,"127":0.00638,"128":0.04465,"131":0.00638,"133":0.01276,"134":0.00638,"135":0.00638,"136":0.01913,"137":0.00638,"138":0.00638,"139":0.01913,"140":0.2615,"141":0.01913,"142":0.03827,"143":0.0574,"144":2.00907,"145":2.44915,"146":0.00638,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 114 116 117 118 119 121 122 123 124 125 126 129 130 132 147 148 3.5 3.6"},D:{"39":0.00638,"40":0.00638,"41":0.01276,"42":0.00638,"43":0.00638,"44":0.00638,"45":0.01276,"46":0.01276,"47":0.00638,"48":0.00638,"49":0.01276,"50":0.00638,"51":0.00638,"52":0.00638,"53":0.00638,"54":0.00638,"55":0.00638,"56":0.01276,"57":0.01276,"58":0.01276,"59":0.00638,"60":0.01276,"79":0.39544,"85":0.00638,"87":0.01913,"89":0.01276,"90":0.00638,"99":0.07016,"102":0.00638,"103":0.01913,"104":0.01276,"107":0.00638,"108":0.00638,"109":0.68882,"111":0.57402,"112":0.00638,"113":0.00638,"114":0.02551,"115":0.00638,"116":0.05102,"117":0.00638,"118":0.04465,"119":0.00638,"120":0.03189,"121":0.01276,"122":0.08291,"123":0.28701,"124":0.01913,"125":0.06378,"126":0.04465,"127":0.02551,"128":0.03189,"129":0.01913,"130":0.08929,"131":0.29977,"132":0.21685,"133":0.05102,"134":0.05102,"135":0.0574,"136":0.07654,"137":0.22961,"138":0.16583,"139":0.28701,"140":0.28701,"141":4.91744,"142":22.76946,"143":0.03827,"144":0.01913,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 88 91 92 93 94 95 96 97 98 100 101 105 106 110 145 146"},F:{"85":0.00638,"92":0.10843,"93":0.01913,"95":0.14032,"114":0.00638,"118":0.01276,"119":0.01276,"120":0.01913,"121":0.01276,"122":5.27461,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00638,"109":0.08929,"114":0.00638,"120":0.00638,"130":0.00638,"131":0.00638,"132":0.00638,"133":0.00638,"134":0.00638,"135":0.01276,"136":0.01276,"137":0.01276,"138":0.01913,"139":0.02551,"140":0.03189,"141":0.44646,"142":4.51562,"143":0.00638,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 122 123 124 125 126 127 128 129"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2","13.1":0.00638,"14.1":0.00638,"15.6":0.03189,"16.1":0.00638,"16.3":0.00638,"16.4":0.00638,"16.5":0.00638,"16.6":0.05102,"17.0":0.00638,"17.1":0.02551,"17.2":0.00638,"17.3":0.00638,"17.4":0.01913,"17.5":0.01913,"17.6":0.08291,"18.0":0.01276,"18.1":0.01913,"18.2":0.00638,"18.3":0.03827,"18.4":0.01276,"18.5-18.6":0.07016,"26.0":0.2041,"26.1":0.24236,"26.2":0.01276},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00082,"5.0-5.1":0,"6.0-6.1":0.00327,"7.0-7.1":0.00246,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00737,"10.0-10.2":0.00082,"10.3":0.0131,"11.0-11.2":0.15225,"11.3-11.4":0.00491,"12.0-12.1":0.00164,"12.2-12.5":0.03847,"13.0-13.1":0,"13.2":0.00409,"13.3":0.00164,"13.4-13.7":0.00737,"14.0-14.4":0.01228,"14.5-14.8":0.01555,"15.0-15.1":0.0131,"15.2-15.3":0.01064,"15.4":0.01146,"15.5":0.01228,"15.6-15.8":0.17763,"16.0":0.0221,"16.1":0.04093,"16.2":0.02128,"16.3":0.03929,"16.4":0.00982,"16.5":0.01637,"16.6-16.7":0.23984,"17.0":0.02046,"17.1":0.02456,"17.2":0.01801,"17.3":0.02538,"17.4":0.04175,"17.5":0.0794,"17.6-17.7":0.19482,"18.0":0.04338,"18.1":0.09168,"18.2":0.04911,"18.3":0.15962,"18.4":0.08186,"18.5-18.7":5.71609,"26.0":0.3921,"26.1":0.35772},P:{"4":0.32932,"22":0.01029,"23":0.01029,"24":0.01029,"25":0.01029,"26":0.03087,"27":0.03087,"28":0.15437,"29":1.5437,_:"20 21 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01029},I:{"0":0.0217,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.69905,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00638,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.03622},H:{"0":0},L:{"0":27.47113},R:{_:"0"},M:{"0":0.34771}};
Index: node_modules/caniuse-lite/data/regions/PM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.02031,"128":0.0457,"142":0.20312,"143":0.01016,"144":0.66522,"145":0.60936,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 137 138 139 140 141 146 147 148 3.5 3.6"},D:{"109":0.26913,"116":0.01016,"123":0.01016,"125":0.02031,"126":0.05586,"131":0.02031,"133":0.02031,"134":0.01016,"136":0.01016,"138":0.03555,"139":0.16757,"140":0.54335,"141":3.13313,"142":11.3798,"143":0.05586,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 117 118 119 120 121 122 124 127 128 129 130 132 135 137 144 145 146"},F:{"40":0.02539,"122":0.11172,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"128":0.03555,"141":0.26913,"142":1.35075,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 137 138 139 140 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.4 16.0 18.2","14.1":0.01016,"15.1":0.01016,"15.2-15.3":0.01016,"15.5":0.01016,"15.6":0.37069,"16.1":0.26913,"16.2":0.12187,"16.3":0.43163,"16.4":0.05586,"16.5":0.42655,"16.6":4.31122,"17.0":0.02031,"17.1":2.21909,"17.2":0.17773,"17.3":0.14726,"17.4":1.35583,"17.5":0.78709,"17.6":11.49151,"18.0":0.02539,"18.1":0.06601,"18.3":0.20312,"18.4":0.11172,"18.5-18.6":0.57381,"26.0":0.43163,"26.1":0.9699,"26.2":0.01016},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00363,"5.0-5.1":0,"6.0-6.1":0.01451,"7.0-7.1":0.01089,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03266,"10.0-10.2":0.00363,"10.3":0.05806,"11.0-11.2":0.6749,"11.3-11.4":0.02177,"12.0-12.1":0.00726,"12.2-12.5":0.17054,"13.0-13.1":0,"13.2":0.01814,"13.3":0.00726,"13.4-13.7":0.03266,"14.0-14.4":0.05443,"14.5-14.8":0.06894,"15.0-15.1":0.05806,"15.2-15.3":0.04717,"15.4":0.0508,"15.5":0.05443,"15.6-15.8":0.78738,"16.0":0.09797,"16.1":0.18142,"16.2":0.09434,"16.3":0.17417,"16.4":0.04354,"16.5":0.07257,"16.6-16.7":1.06315,"17.0":0.09071,"17.1":0.10885,"17.2":0.07983,"17.3":0.11248,"17.4":0.18505,"17.5":0.35196,"17.6-17.7":0.86358,"18.0":0.19231,"18.1":0.40639,"18.2":0.21771,"18.3":0.70756,"18.4":0.36285,"18.5-18.7":25.3378,"26.0":1.73805,"26.1":1.58565},P:{"29":0.5365,_:"4 20 21 22 23 24 25 26 27 28 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.01969,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":12.54147},R:{_:"0"},M:{"0":0.12305}};
Index: node_modules/caniuse-lite/data/regions/PN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"145":5.13056,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 146 147 148 3.5 3.6"},D:{"142":15.384,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 143 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"142":51.28256,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.0 26.1 26.2"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00185,"5.0-5.1":0,"6.0-6.1":0.00739,"7.0-7.1":0.00554,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01662,"10.0-10.2":0.00185,"10.3":0.02954,"11.0-11.2":0.34343,"11.3-11.4":0.01108,"12.0-12.1":0.00369,"12.2-12.5":0.08678,"13.0-13.1":0,"13.2":0.00923,"13.3":0.00369,"13.4-13.7":0.01662,"14.0-14.4":0.0277,"14.5-14.8":0.03508,"15.0-15.1":0.02954,"15.2-15.3":0.024,"15.4":0.02585,"15.5":0.0277,"15.6-15.8":0.40067,"16.0":0.04985,"16.1":0.09232,"16.2":0.04801,"16.3":0.08863,"16.4":0.02216,"16.5":0.03693,"16.6-16.7":0.541,"17.0":0.04616,"17.1":0.05539,"17.2":0.04062,"17.3":0.05724,"17.4":0.09417,"17.5":0.1791,"17.6-17.7":0.43944,"18.0":0.09786,"18.1":0.2068,"18.2":0.11078,"18.3":0.36005,"18.4":0.18464,"18.5-18.7":12.89341,"26.0":0.88443,"26.1":0.80688},P:{_:"4 20 21 22 23 24 25 26 27 28 29 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":9.74656},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/PR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.00414,"5":0.00414,"52":0.01243,"78":0.00414,"113":0.00414,"115":0.07041,"120":0.09527,"134":0.00414,"137":0.01657,"140":0.03314,"141":0.01243,"142":0.00414,"143":0.06627,"144":0.61716,"145":0.81183,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 121 122 123 124 125 126 127 128 129 130 131 132 133 135 136 138 139 146 147 148 3.5 3.6"},D:{"65":0.02071,"69":0.00414,"70":0.00828,"76":0.00414,"79":0.01243,"87":0.01243,"91":0.00414,"93":0.00414,"95":0.00414,"97":0.00414,"101":0.02071,"103":0.06213,"104":0.02899,"108":0.01243,"109":0.21538,"110":0.00828,"111":0.00828,"112":2.38165,"113":0.06627,"116":0.05385,"119":0.00828,"120":0.00414,"121":0.00414,"122":0.04142,"123":0.01243,"124":0.06213,"125":0.1574,"126":0.31479,"127":0.00414,"128":0.06213,"129":0.00414,"130":0.10769,"131":0.04556,"132":0.03728,"133":0.01657,"134":0.02899,"135":0.0787,"136":0.02485,"137":0.02899,"138":0.21124,"139":0.21124,"140":0.35207,"141":2.87455,"142":10.43784,"143":0.01657,"144":0.00828,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 71 72 73 74 75 77 78 80 81 83 84 85 86 88 89 90 92 94 96 98 99 100 102 105 106 107 114 115 117 118 145 146"},F:{"73":0.00414,"77":0.00414,"92":0.00828,"93":0.00414,"119":0.00414,"120":0.00414,"122":0.48047,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00414,"109":0.01243,"114":0.00414,"122":0.01657,"124":0.00414,"130":0.02485,"131":0.00828,"132":0.01243,"133":0.00828,"134":0.00828,"135":0.00828,"136":0.00828,"137":0.00828,"138":0.02071,"139":0.02071,"140":0.03728,"141":1.01893,"142":6.48223,"143":0.03314,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 125 126 127 128 129"},E:{"14":0.02071,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3","11.1":0.01657,"13.1":0.00828,"14.1":0.02071,"15.4":0.00414,"15.5":0.01243,"15.6":0.0787,"16.0":0.01243,"16.1":0.01243,"16.2":0.00414,"16.3":0.01657,"16.4":0.02899,"16.5":0.01657,"16.6":0.17396,"17.0":0.00414,"17.1":0.06627,"17.2":0.01657,"17.3":0.02071,"17.4":0.07456,"17.5":0.08284,"17.6":0.22781,"18.0":0.02071,"18.1":0.04142,"18.2":0.06213,"18.3":0.10769,"18.4":0.0497,"18.5-18.6":0.29822,"26.0":0.45148,"26.1":0.4929,"26.2":0.02071},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00268,"5.0-5.1":0,"6.0-6.1":0.01073,"7.0-7.1":0.00805,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02414,"10.0-10.2":0.00268,"10.3":0.04292,"11.0-11.2":0.49892,"11.3-11.4":0.01609,"12.0-12.1":0.00536,"12.2-12.5":0.12607,"13.0-13.1":0,"13.2":0.01341,"13.3":0.00536,"13.4-13.7":0.02414,"14.0-14.4":0.04024,"14.5-14.8":0.05097,"15.0-15.1":0.04292,"15.2-15.3":0.03487,"15.4":0.03755,"15.5":0.04024,"15.6-15.8":0.58208,"16.0":0.07242,"16.1":0.13412,"16.2":0.06974,"16.3":0.12875,"16.4":0.03219,"16.5":0.05365,"16.6-16.7":0.78594,"17.0":0.06706,"17.1":0.08047,"17.2":0.05901,"17.3":0.08315,"17.4":0.1368,"17.5":0.26019,"17.6-17.7":0.63841,"18.0":0.14217,"18.1":0.30043,"18.2":0.16094,"18.3":0.52306,"18.4":0.26824,"18.5-18.7":18.73105,"26.0":1.28486,"26.1":1.1722},P:{"4":0.13694,"23":0.01053,"24":0.02107,"25":0.0316,"26":0.01053,"27":0.04214,"28":0.34762,"29":2.89684,_:"20 21 22 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","7.2-7.4":0.01053,"16.0":0.04214},I:{"0":0.01755,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.20503,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01172},H:{"0":0},L:{"0":33.5285},R:{_:"0"},M:{"0":0.67953}};
Index: node_modules/caniuse-lite/data/regions/PS.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00513,"115":0.0154,"127":0.00171,"128":0.00171,"140":0.00342,"141":0.00342,"142":0.00342,"143":0.00856,"144":0.11977,"145":0.14886,"146":0.00171,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 134 135 136 137 138 139 147 148 3.5 3.6"},D:{"53":0.00171,"66":0.00342,"69":0.00684,"71":0.00171,"73":0.00171,"75":0.00171,"77":0.01711,"78":0.00171,"79":0.01198,"80":0.00342,"81":0.00171,"83":0.00684,"85":0.00171,"87":0.00856,"89":0.00513,"90":0.00171,"91":0.0308,"92":0.00171,"95":0.00342,"97":0.00342,"98":0.00171,"100":0.00342,"101":0.00171,"103":0.00342,"105":0.00171,"106":0.00171,"107":0.00342,"108":0.00342,"109":0.1711,"110":0.00342,"111":0.00513,"112":3.64956,"113":0.00171,"114":0.00513,"115":0.00342,"116":0.00684,"117":0.02395,"118":0.00342,"119":0.00856,"120":0.02738,"121":0.00171,"122":0.02395,"123":0.03422,"124":0.00513,"125":0.06844,"126":0.42946,"127":0.01882,"128":0.00513,"129":0.00342,"130":0.0154,"131":0.03422,"132":0.02053,"133":0.0154,"134":0.05646,"135":0.02567,"136":0.03251,"137":0.03764,"138":0.10608,"139":0.09582,"140":0.16083,"141":1.35169,"142":4.67616,"143":0.00856,"144":0.00171,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 67 68 70 72 74 76 84 86 88 93 94 96 99 102 104 145 146"},F:{"46":0.00171,"92":0.00513,"95":0.00171,"120":0.00171,"122":0.04278,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00342,"92":0.00856,"100":0.00171,"109":0.00171,"114":0.06844,"117":0.00342,"122":0.00171,"131":0.00171,"135":0.00342,"136":0.00342,"137":0.00342,"138":0.01198,"139":0.0154,"140":0.01369,"141":0.10437,"142":0.76311,"143":0.00342,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 118 119 120 121 123 124 125 126 127 128 129 130 132 133 134"},E:{"11":0.00171,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 16.0 16.4 17.2 26.2","5.1":0.00856,"14.1":0.00171,"15.4":0.00171,"15.5":0.00171,"15.6":0.00684,"16.1":0.00171,"16.2":0.00171,"16.3":0.00342,"16.5":0.00171,"16.6":0.01882,"17.0":0.00342,"17.1":0.00342,"17.3":0.00171,"17.4":0.00342,"17.5":0.00342,"17.6":0.00513,"18.0":0.00171,"18.1":0.00342,"18.2":0.00171,"18.3":0.00513,"18.4":0.00513,"18.5-18.6":0.02053,"26.0":0.0616,"26.1":0.02567},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00054,"5.0-5.1":0,"6.0-6.1":0.00216,"7.0-7.1":0.00162,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00485,"10.0-10.2":0.00054,"10.3":0.00862,"11.0-11.2":0.10021,"11.3-11.4":0.00323,"12.0-12.1":0.00108,"12.2-12.5":0.02532,"13.0-13.1":0,"13.2":0.00269,"13.3":0.00108,"13.4-13.7":0.00485,"14.0-14.4":0.00808,"14.5-14.8":0.01024,"15.0-15.1":0.00862,"15.2-15.3":0.007,"15.4":0.00754,"15.5":0.00808,"15.6-15.8":0.11692,"16.0":0.01455,"16.1":0.02694,"16.2":0.01401,"16.3":0.02586,"16.4":0.00647,"16.5":0.01078,"16.6-16.7":0.15786,"17.0":0.01347,"17.1":0.01616,"17.2":0.01185,"17.3":0.0167,"17.4":0.02748,"17.5":0.05226,"17.6-17.7":0.12823,"18.0":0.02856,"18.1":0.06034,"18.2":0.03233,"18.3":0.10506,"18.4":0.05388,"18.5-18.7":3.76234,"26.0":0.25808,"26.1":0.23545},P:{"4":0.01017,"20":0.01017,"21":0.05083,"22":0.11182,"23":0.05083,"24":0.04066,"25":0.10165,"26":0.2033,"27":0.16264,"28":0.58958,"29":0.95552,_:"5.0-5.4 6.2-6.4 9.2 10.1 12.0","7.2-7.4":0.0305,"8.2":0.01017,"11.1-11.2":0.02033,"13.0":0.01017,"14.0":0.02033,"15.0":0.01017,"16.0":0.0305,"17.0":0.02033,"18.0":0.01017,"19.0":0.02033},I:{"0":0.01655,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.26525,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00829},H:{"0":0},L:{"0":78.56908},R:{_:"0"},M:{"0":0.05802}};
Index: node_modules/caniuse-lite/data/regions/PT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.02417,"75":0.00604,"78":0.01208,"114":0.00604,"115":0.15105,"116":0.00604,"125":0.00604,"128":0.01208,"131":0.00604,"132":0.00604,"133":0.01813,"134":0.00604,"135":0.00604,"136":0.03625,"138":0.00604,"139":0.00604,"140":0.06646,"141":0.00604,"142":0.01208,"143":0.04229,"144":1.06339,"145":1.19027,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 117 118 119 120 121 122 123 124 126 127 129 130 137 146 147 148 3.5 3.6"},D:{"38":0.00604,"39":0.01813,"40":0.01813,"41":0.01813,"42":0.01813,"43":0.01813,"44":0.01813,"45":0.01813,"46":0.01813,"47":0.01813,"48":0.01813,"49":0.02417,"50":0.01813,"51":0.01813,"52":0.01813,"53":0.01813,"54":0.01813,"55":0.01813,"56":0.01813,"57":0.01813,"58":0.01813,"59":0.01813,"60":0.01813,"79":0.03021,"81":0.01208,"85":0.00604,"87":0.02417,"101":0.01813,"103":0.04229,"104":0.01208,"106":0.00604,"108":0.01813,"109":0.65858,"111":0.00604,"112":0.00604,"113":0.00604,"114":0.03625,"115":0.00604,"116":0.0725,"117":0.92443,"119":0.01208,"120":0.06042,"121":0.01813,"122":0.10271,"123":0.03021,"124":0.03625,"125":0.09063,"126":0.06042,"127":0.01813,"128":0.0725,"129":0.01208,"130":0.21147,"131":0.07855,"132":0.08459,"133":0.07855,"134":0.04834,"135":0.0725,"136":0.06042,"137":0.10271,"138":0.24168,"139":0.19334,"140":0.54378,"141":9.31676,"142":24.05924,"143":0.05438,"144":0.00604,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 86 88 89 90 91 92 93 94 95 96 97 98 99 100 102 105 107 110 118 145 146"},F:{"92":0.02417,"93":0.00604,"95":0.00604,"102":0.00604,"114":0.00604,"120":0.00604,"121":0.00604,"122":1.80656,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00604,"109":0.04229,"114":0.01208,"120":0.00604,"121":0.00604,"126":0.00604,"130":0.00604,"131":0.00604,"132":0.00604,"133":0.00604,"134":0.00604,"135":0.01813,"136":0.00604,"137":0.00604,"138":0.01813,"139":0.01208,"140":0.04229,"141":0.68275,"142":6.5314,"143":0.01208,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 122 123 124 125 127 128 129"},E:{"14":0.00604,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.4","13.1":0.01208,"14.1":0.00604,"15.5":0.00604,"15.6":0.06042,"16.0":0.00604,"16.1":0.01208,"16.2":0.00604,"16.3":0.01208,"16.5":0.01208,"16.6":0.10876,"17.0":0.00604,"17.1":0.0725,"17.2":0.01208,"17.3":0.01208,"17.4":0.02417,"17.5":0.05438,"17.6":0.17522,"18.0":0.01813,"18.1":0.03021,"18.2":0.01208,"18.3":0.05438,"18.4":0.05438,"18.5-18.6":0.17522,"26.0":0.36856,"26.1":0.43502,"26.2":0.01813},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00101,"5.0-5.1":0,"6.0-6.1":0.00406,"7.0-7.1":0.00304,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00913,"10.0-10.2":0.00101,"10.3":0.01622,"11.0-11.2":0.18861,"11.3-11.4":0.00608,"12.0-12.1":0.00203,"12.2-12.5":0.04766,"13.0-13.1":0,"13.2":0.00507,"13.3":0.00203,"13.4-13.7":0.00913,"14.0-14.4":0.01521,"14.5-14.8":0.01927,"15.0-15.1":0.01622,"15.2-15.3":0.01318,"15.4":0.0142,"15.5":0.01521,"15.6-15.8":0.22005,"16.0":0.02738,"16.1":0.0507,"16.2":0.02637,"16.3":0.04867,"16.4":0.01217,"16.5":0.02028,"16.6-16.7":0.29711,"17.0":0.02535,"17.1":0.03042,"17.2":0.02231,"17.3":0.03144,"17.4":0.05172,"17.5":0.09836,"17.6-17.7":0.24134,"18.0":0.05374,"18.1":0.11357,"18.2":0.06084,"18.3":0.19774,"18.4":0.1014,"18.5-18.7":7.08104,"26.0":0.48572,"26.1":0.44314},P:{"22":0.01058,"23":0.01058,"24":0.01058,"25":0.01058,"26":0.02116,"27":0.04231,"28":0.12694,"29":1.51275,_:"4 20 21 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.03952,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.22561,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.10876,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00396},O:{"0":0.04354},H:{"0":0},L:{"0":30.18173},R:{_:"0"},M:{"0":0.30081}};
Index: node_modules/caniuse-lite/data/regions/PW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"135":0.01084,"144":1.08721,"145":0.6032,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 136 137 138 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"61":0.03612,"93":0.01084,"109":0.52013,"114":0.02528,"116":0.03612,"120":0.05779,"125":0.49846,"128":0.02528,"131":0.01084,"132":0.01084,"133":0.01084,"134":0.01084,"136":0.02528,"138":0.02528,"139":0.03612,"140":12.82982,"141":1.57483,"142":9.691,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 117 118 119 121 122 123 124 126 127 129 130 135 137 143 144 145 146"},F:{"92":0.01084,"122":0.17699,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.01084,"135":0.02528,"140":0.01084,"141":0.50929,"142":2.32974,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 136 137 138 139 143"},E:{"14":0.02528,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.5 17.0 17.2 17.3 17.5 18.1 18.3 18.4 26.2","16.3":0.04696,"16.4":0.04696,"16.6":0.1192,"17.1":0.01084,"17.4":0.01084,"17.6":0.01084,"18.0":0.01084,"18.2":0.04696,"18.5-18.6":0.04696,"26.0":0.31786,"26.1":0.30702},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00128,"5.0-5.1":0,"6.0-6.1":0.00512,"7.0-7.1":0.00384,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01151,"10.0-10.2":0.00128,"10.3":0.02046,"11.0-11.2":0.23787,"11.3-11.4":0.00767,"12.0-12.1":0.00256,"12.2-12.5":0.06011,"13.0-13.1":0,"13.2":0.00639,"13.3":0.00256,"13.4-13.7":0.01151,"14.0-14.4":0.01918,"14.5-14.8":0.0243,"15.0-15.1":0.02046,"15.2-15.3":0.01663,"15.4":0.0179,"15.5":0.01918,"15.6-15.8":0.27752,"16.0":0.03453,"16.1":0.06394,"16.2":0.03325,"16.3":0.06139,"16.4":0.01535,"16.5":0.02558,"16.6-16.7":0.37471,"17.0":0.03197,"17.1":0.03837,"17.2":0.02814,"17.3":0.03965,"17.4":0.06522,"17.5":0.12405,"17.6-17.7":0.30437,"18.0":0.06778,"18.1":0.14323,"18.2":0.07673,"18.3":0.24938,"18.4":0.12789,"18.5-18.7":8.9304,"26.0":0.61258,"26.1":0.55887},P:{"25":0.14309,"27":0.06132,"28":0.58259,"29":0.63369,_:"4 20 21 22 23 24 26 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01022,"14.0":0.15331},I:{"0":0.01276,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.03833,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":52.95545},R:{_:"0"},M:{"0":0.05749}};
Index: node_modules/caniuse-lite/data/regions/PY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/PY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/PY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.22842,"5":0.02538,"115":0.02538,"140":0.00846,"141":0.00846,"143":0.03384,"144":0.27918,"145":0.2961,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 142 146 147 148 3.5 3.6"},D:{"65":0.00846,"69":0.02538,"75":0.00846,"79":0.00846,"84":0.00846,"87":0.56682,"97":0.00846,"104":0.00846,"109":0.22842,"111":0.03384,"112":59.90526,"114":0.00846,"116":0.00846,"119":0.00846,"121":0.00846,"122":0.05922,"123":0.00846,"124":0.00846,"125":1.10826,"126":9.50904,"128":0.00846,"130":0.00846,"131":0.01692,"132":0.03384,"133":0.00846,"134":0.00846,"135":0.00846,"136":0.00846,"137":0.00846,"138":0.0423,"139":0.02538,"140":0.11844,"141":1.37052,"142":5.65128,"143":0.00846,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 70 71 72 73 74 76 77 78 80 81 83 85 86 88 89 90 91 92 93 94 95 96 98 99 100 101 102 103 105 106 107 108 110 113 115 117 118 120 127 129 144 145 146"},F:{"92":0.00846,"117":0.00846,"122":0.18612,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00846,"109":0.00846,"114":0.34686,"134":0.00846,"135":0.00846,"138":0.00846,"140":0.00846,"141":0.15228,"142":1.24362,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 136 137 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 17.4 17.5 18.0 18.1 18.2 26.2","15.6":0.00846,"16.6":0.00846,"17.1":0.00846,"17.6":0.0423,"18.3":0.00846,"18.4":0.00846,"18.5-18.6":0.02538,"26.0":0.03384,"26.1":0.0423},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00024,"5.0-5.1":0,"6.0-6.1":0.00097,"7.0-7.1":0.00073,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00218,"10.0-10.2":0.00024,"10.3":0.00387,"11.0-11.2":0.04497,"11.3-11.4":0.00145,"12.0-12.1":0.00048,"12.2-12.5":0.01136,"13.0-13.1":0,"13.2":0.00121,"13.3":0.00048,"13.4-13.7":0.00218,"14.0-14.4":0.00363,"14.5-14.8":0.00459,"15.0-15.1":0.00387,"15.2-15.3":0.00314,"15.4":0.00338,"15.5":0.00363,"15.6-15.8":0.05247,"16.0":0.00653,"16.1":0.01209,"16.2":0.00629,"16.3":0.01161,"16.4":0.0029,"16.5":0.00484,"16.6-16.7":0.07084,"17.0":0.00604,"17.1":0.00725,"17.2":0.00532,"17.3":0.0075,"17.4":0.01233,"17.5":0.02345,"17.6-17.7":0.05754,"18.0":0.01281,"18.1":0.02708,"18.2":0.01451,"18.3":0.04715,"18.4":0.02418,"18.5-18.7":1.68835,"26.0":0.11581,"26.1":0.10566},P:{"4":0.01049,"21":0.02097,"22":0.01049,"23":0.01049,"24":0.02097,"25":0.02097,"26":0.0734,"27":0.05243,"28":0.1468,"29":0.97516,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.0734,"17.0":0.01049},I:{"0":0.00615,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.14322,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00308},H:{"0":0},L:{"0":12.67612},R:{_:"0"},M:{"0":0.0924}};
Index: node_modules/caniuse-lite/data/regions/QA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/QA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/QA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.30091,"115":0.03381,"117":0.00338,"134":0.00338,"135":0.00338,"138":0.00338,"140":0.00338,"142":0.00338,"143":0.04057,"144":0.17581,"145":0.213,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 136 137 139 141 146 147 148 3.5 3.6"},D:{"49":0.00338,"60":0.00338,"69":0.00676,"70":0.00338,"75":0.00338,"79":0.05072,"83":0.00676,"84":0.00338,"85":0.01014,"87":0.01014,"88":0.00338,"91":0.02367,"95":0.00338,"98":0.00338,"102":0.00338,"103":0.06762,"108":0.00338,"109":0.37191,"111":0.02029,"112":4.55759,"114":0.00676,"116":0.03381,"117":0.00676,"118":0.03381,"119":0.02029,"120":0.01014,"121":0.00338,"122":0.04057,"123":0.00676,"124":0.00676,"125":0.28739,"126":0.46996,"127":0.04395,"128":0.02705,"129":0.00338,"130":0.0541,"131":0.0541,"132":0.02029,"133":0.02705,"134":0.03719,"135":0.02705,"136":0.05072,"137":0.03043,"138":0.24005,"139":0.17581,"140":0.29077,"141":2.72171,"142":8.10426,"143":0.02029,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 71 72 73 74 76 77 78 80 81 86 89 90 92 93 94 96 97 99 100 101 104 105 106 107 110 113 115 144 145 146"},F:{"46":0.01014,"92":0.18934,"93":0.02367,"114":0.00338,"120":0.01014,"121":0.00338,"122":0.1251,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00338,"18":0.00338,"92":0.00338,"109":0.00338,"114":0.09129,"122":0.00338,"124":0.00338,"131":0.00338,"132":0.00338,"133":0.01691,"134":0.00338,"135":0.00676,"136":0.01014,"137":0.00676,"138":0.01014,"139":0.00676,"140":0.05072,"141":0.31781,"142":2.27879,"143":0.00676,_:"12 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 125 126 127 128 129 130"},E:{"15":0.01352,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.0 16.2 16.4 17.2","5.1":0.00338,"14.1":0.00338,"15.5":0.00338,"15.6":0.04057,"16.1":0.00676,"16.3":0.01691,"16.5":0.00676,"16.6":0.10143,"17.0":0.00338,"17.1":0.03043,"17.3":0.00676,"17.4":0.01691,"17.5":0.071,"17.6":0.0541,"18.0":0.01014,"18.1":0.01691,"18.2":0.00676,"18.3":0.02705,"18.4":0.01352,"18.5-18.6":0.09467,"26.0":0.16567,"26.1":0.16905,"26.2":0.02367},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00094,"5.0-5.1":0,"6.0-6.1":0.00375,"7.0-7.1":0.00282,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00845,"10.0-10.2":0.00094,"10.3":0.01502,"11.0-11.2":0.17457,"11.3-11.4":0.00563,"12.0-12.1":0.00188,"12.2-12.5":0.04411,"13.0-13.1":0,"13.2":0.00469,"13.3":0.00188,"13.4-13.7":0.00845,"14.0-14.4":0.01408,"14.5-14.8":0.01783,"15.0-15.1":0.01502,"15.2-15.3":0.0122,"15.4":0.01314,"15.5":0.01408,"15.6-15.8":0.20367,"16.0":0.02534,"16.1":0.04693,"16.2":0.0244,"16.3":0.04505,"16.4":0.01126,"16.5":0.01877,"16.6-16.7":0.275,"17.0":0.02346,"17.1":0.02816,"17.2":0.02065,"17.3":0.0291,"17.4":0.04787,"17.5":0.09104,"17.6-17.7":0.22338,"18.0":0.04974,"18.1":0.10512,"18.2":0.05631,"18.3":0.18302,"18.4":0.09386,"18.5-18.7":6.55406,"26.0":0.44958,"26.1":0.41016},P:{"4":0.0103,"22":0.03091,"23":0.0103,"24":0.02061,"25":0.06183,"26":0.04122,"27":0.05152,"28":0.12365,"29":1.43234,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.03091},I:{"0":0.03305,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":1.75404,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01691,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":1.58194},H:{"0":0},L:{"0":60.89172},R:{_:"0"},M:{"0":0.1059}};
Index: node_modules/caniuse-lite/data/regions/RE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/RE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/RE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"34":0.00462,"78":0.26317,"91":0.00462,"102":0.00462,"110":0.00462,"115":0.20777,"124":0.00462,"127":0.00462,"128":0.07849,"136":0.19391,"138":0.00923,"139":0.00462,"140":0.15236,"141":0.01847,"142":0.00923,"143":0.0277,"144":2.51627,"145":1.92991,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 111 112 113 114 116 117 118 119 120 121 122 123 125 126 129 130 131 132 133 134 135 137 146 147 148 3.5 3.6"},D:{"49":0.00923,"68":0.00462,"69":0.00462,"78":0.12466,"79":0.00462,"85":0.00923,"87":0.03232,"88":0.04155,"99":0.00462,"103":0.04155,"104":0.06464,"108":0.03232,"109":0.60944,"111":0.00462,"113":0.01847,"114":0.00462,"116":0.05079,"118":0.00462,"119":0.05079,"120":0.02309,"121":0.00462,"122":0.05079,"123":0.00462,"124":0.00462,"125":1.03883,"126":0.06002,"127":0.03232,"128":0.03232,"129":0.00462,"130":0.22162,"131":0.03232,"132":0.0277,"133":0.04155,"134":0.06926,"135":0.03694,"136":0.00923,"137":0.05079,"138":0.36936,"139":0.23547,"140":0.47093,"141":4.52928,"142":12.59518,"143":0.01847,"144":0.00462,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 72 73 74 75 76 77 80 81 83 84 86 89 90 91 92 93 94 95 96 97 98 100 101 102 105 106 107 110 112 115 117 145 146"},F:{"92":0.04155,"93":0.00923,"117":0.00462,"119":0.00923,"120":0.00462,"121":0.00462,"122":0.68332,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00462,"92":0.00462,"109":0.01385,"114":0.12928,"119":0.00462,"120":0.00462,"122":0.00462,"130":0.00462,"131":0.0277,"132":0.00462,"133":0.30934,"134":0.00462,"137":0.00462,"138":0.01385,"139":0.00923,"140":0.03232,"141":1.10808,"142":6.26527,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 121 123 124 125 126 127 128 129 135 136 143"},E:{"14":0.00462,"15":0.00462,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 17.0","12.1":0.00923,"13.1":0.03694,"14.1":0.01385,"15.4":0.00462,"15.5":0.00462,"15.6":0.13851,"16.0":0.00462,"16.1":0.00923,"16.2":0.07849,"16.3":0.01847,"16.4":0.00462,"16.5":0.02309,"16.6":0.36013,"17.1":0.09234,"17.2":0.00923,"17.3":0.01385,"17.4":0.02309,"17.5":0.0277,"17.6":0.1893,"18.0":0.14774,"18.1":0.12928,"18.2":0.00923,"18.3":0.24008,"18.4":0.05079,"18.5-18.6":0.32781,"26.0":0.54942,"26.1":0.34628,"26.2":0.00462},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0014,"5.0-5.1":0,"6.0-6.1":0.00562,"7.0-7.1":0.00421,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01264,"10.0-10.2":0.0014,"10.3":0.02247,"11.0-11.2":0.26122,"11.3-11.4":0.00843,"12.0-12.1":0.00281,"12.2-12.5":0.06601,"13.0-13.1":0,"13.2":0.00702,"13.3":0.00281,"13.4-13.7":0.01264,"14.0-14.4":0.02107,"14.5-14.8":0.02668,"15.0-15.1":0.02247,"15.2-15.3":0.01826,"15.4":0.01966,"15.5":0.02107,"15.6-15.8":0.30476,"16.0":0.03792,"16.1":0.07022,"16.2":0.03652,"16.3":0.06741,"16.4":0.01685,"16.5":0.02809,"16.6-16.7":0.4115,"17.0":0.03511,"17.1":0.04213,"17.2":0.0309,"17.3":0.04354,"17.4":0.07163,"17.5":0.13623,"17.6-17.7":0.33425,"18.0":0.07443,"18.1":0.1573,"18.2":0.08427,"18.3":0.27386,"18.4":0.14044,"18.5-18.7":9.8071,"26.0":0.67272,"26.1":0.61373},P:{"21":0.05177,"22":0.02071,"23":0.01035,"24":0.01035,"25":0.10355,"26":0.03106,"27":0.05177,"28":0.30029,"29":2.0917,_:"4 20 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.14497,"8.2":0.01035,"17.0":0.01035,"19.0":0.01035},I:{"0":0.05913,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.243,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.06998},H:{"0":0.01},L:{"0":39.97954},R:{_:"0"},M:{"0":0.53292}};
Index: node_modules/caniuse-lite/data/regions/RO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/RO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/RO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.0241,"78":0.01928,"96":0.04337,"112":0.08192,"115":0.24577,"123":0.00964,"125":0.00482,"127":0.00482,"128":0.00964,"134":0.01928,"135":0.00482,"136":0.00964,"137":0.00482,"138":0.00482,"139":0.00482,"140":0.06265,"141":0.00482,"142":0.00964,"143":0.04819,"144":0.71803,"145":0.87706,"146":0.00482,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 124 126 129 130 131 132 133 147 148 3.5 3.6"},D:{"39":0.00482,"40":0.00482,"41":0.00482,"42":0.00482,"43":0.00482,"44":0.00482,"45":0.00482,"46":0.00482,"47":0.00482,"48":0.00482,"49":0.01446,"50":0.00482,"51":0.00482,"52":0.00482,"53":0.00482,"54":0.00482,"55":0.00482,"56":0.00482,"57":0.00482,"58":0.00482,"59":0.00482,"60":0.00482,"70":0.00964,"74":0.03855,"76":0.01446,"79":0.00964,"81":0.00482,"85":0.00482,"87":0.00964,"88":0.00482,"90":0.00482,"100":0.0771,"102":0.04337,"103":0.00964,"104":0.01446,"105":0.05301,"106":0.00482,"108":0.00482,"109":0.70839,"110":0.00482,"111":0.00482,"112":0.28914,"113":0.04819,"114":0.0241,"115":0.00482,"116":0.01928,"117":0.00482,"118":0.00964,"119":0.01446,"120":0.10602,"121":0.00964,"122":0.05301,"123":0.00964,"124":0.03373,"125":1.01681,"126":0.30842,"127":0.00964,"128":0.04337,"129":0.04337,"130":0.0771,"131":0.09638,"132":0.03855,"133":0.04337,"134":0.03855,"135":0.04337,"136":0.05301,"137":0.05783,"138":0.13011,"139":0.15421,"140":0.34215,"141":8.16821,"142":23.34324,"143":0.03855,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 69 71 72 73 75 77 78 80 83 84 86 89 91 92 93 94 95 96 97 98 99 101 107 144 145 146"},F:{"85":0.00482,"90":0.00482,"92":0.04819,"93":0.00964,"95":0.02891,"120":0.00482,"122":0.506,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00482,"92":0.00482,"109":0.00964,"112":0.03855,"114":0.00482,"121":0.03855,"122":0.00482,"126":0.00482,"129":0.00482,"131":0.00482,"132":0.00482,"133":0.00482,"134":0.00482,"135":0.00482,"136":0.00964,"137":0.00482,"138":0.00964,"139":0.00964,"140":0.02891,"141":0.2024,"142":2.05771,"143":0.00482,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 115 116 117 118 119 120 123 124 125 127 128 130"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0","13.1":0.00482,"14.1":0.00964,"15.6":0.02891,"16.1":0.00482,"16.2":0.00964,"16.3":0.00482,"16.4":0.01446,"16.5":0.00482,"16.6":0.03373,"17.0":0.00482,"17.1":0.01928,"17.2":0.00482,"17.3":0.00482,"17.4":0.00964,"17.5":0.01446,"17.6":0.05301,"18.0":0.00964,"18.1":0.00964,"18.2":0.00964,"18.3":0.0241,"18.4":0.01446,"18.5-18.6":0.05301,"26.0":0.11566,"26.1":0.15421,"26.2":0.00482},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0011,"5.0-5.1":0,"6.0-6.1":0.00441,"7.0-7.1":0.00331,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00992,"10.0-10.2":0.0011,"10.3":0.01763,"11.0-11.2":0.20497,"11.3-11.4":0.00661,"12.0-12.1":0.0022,"12.2-12.5":0.05179,"13.0-13.1":0,"13.2":0.00551,"13.3":0.0022,"13.4-13.7":0.00992,"14.0-14.4":0.01653,"14.5-14.8":0.02094,"15.0-15.1":0.01763,"15.2-15.3":0.01433,"15.4":0.01543,"15.5":0.01653,"15.6-15.8":0.23913,"16.0":0.02975,"16.1":0.0551,"16.2":0.02865,"16.3":0.0529,"16.4":0.01322,"16.5":0.02204,"16.6-16.7":0.32289,"17.0":0.02755,"17.1":0.03306,"17.2":0.02424,"17.3":0.03416,"17.4":0.0562,"17.5":0.10689,"17.6-17.7":0.26228,"18.0":0.05841,"18.1":0.12342,"18.2":0.06612,"18.3":0.21489,"18.4":0.1102,"18.5-18.7":7.69526,"26.0":0.52786,"26.1":0.48157},P:{"4":0.01031,"20":0.01031,"21":0.01031,"22":0.02063,"23":0.03094,"24":0.03094,"25":0.03094,"26":0.05156,"27":0.09281,"28":0.38157,"29":2.5266,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0","6.2-6.4":0.01031,"7.2-7.4":0.01031,"18.0":0.02063,"19.0":0.01031},I:{"0":0.02587,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.34713,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01928,"10":0.00964,"11":0.09638,_:"6 7 9 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02591},H:{"0":0},L:{"0":40.34686},R:{_:"0"},M:{"0":0.34195}};
Index: node_modules/caniuse-lite/data/regions/RS.js
===================================================================
--- node_modules/caniuse-lite/data/regions/RS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/RS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00459,"47":0.00459,"52":0.01377,"68":0.00459,"77":0.00459,"78":0.00459,"91":0.00459,"100":0.00459,"101":0.00918,"113":0.00459,"115":0.47277,"121":0.00459,"122":0.01377,"123":0.03672,"125":0.00918,"127":0.00918,"128":0.00459,"132":0.00459,"133":0.00459,"134":0.01377,"135":0.00459,"136":0.02754,"137":0.00459,"138":0.00918,"139":0.00918,"140":0.02754,"141":0.00918,"142":0.01836,"143":0.03213,"144":0.92259,"145":1.22094,"146":0.00459,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 124 126 129 130 131 147 148 3.5 3.6"},D:{"29":0.00459,"47":0.00459,"49":0.00459,"53":0.00459,"58":0.00459,"65":0.00918,"68":0.00918,"69":0.00918,"71":0.00459,"73":0.00459,"75":0.00918,"78":0.01836,"79":0.33966,"80":0.00459,"81":0.00459,"83":0.00459,"84":0.00459,"85":0.00459,"86":0.00459,"87":0.39933,"88":0.00459,"89":0.00459,"90":0.00459,"91":0.00918,"93":0.00459,"94":0.05967,"95":0.01377,"96":0.00459,"97":0.00459,"98":0.00459,"99":0.00459,"100":0.00459,"101":0.00459,"102":0.01377,"103":0.05508,"104":0.03213,"105":0.00459,"106":0.00918,"107":0.00459,"108":0.0459,"109":2.21238,"110":0.00918,"111":0.02295,"112":2.44188,"113":0.00459,"114":0.00918,"115":0.00459,"116":0.0459,"117":0.00459,"118":0.02754,"119":0.05508,"120":0.11475,"121":0.05967,"122":0.70227,"123":0.01836,"124":0.06426,"125":0.18819,"126":0.84456,"127":0.00918,"128":0.03213,"129":0.01377,"130":0.01836,"131":0.12852,"132":0.26622,"133":0.0459,"134":0.03672,"135":0.05967,"136":0.08721,"137":0.05967,"138":0.19737,"139":0.2754,"140":0.3672,"141":4.63131,"142":15.35355,"143":0.02754,"144":0.00459,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 59 60 61 62 63 64 66 67 70 72 74 76 77 92 145 146"},F:{"40":0.00459,"46":0.01836,"85":0.00459,"92":0.05508,"93":0.00918,"95":0.08262,"111":0.00459,"114":0.00459,"120":0.00459,"121":0.00459,"122":0.46359,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00459,"92":0.00459,"102":0.01377,"109":0.03213,"114":0.05049,"121":1.26684,"122":0.00918,"131":0.02754,"132":0.00459,"133":0.00459,"134":0.00459,"135":0.00459,"136":0.00459,"137":0.00459,"138":0.00918,"139":0.00918,"140":0.02754,"141":0.19278,"142":1.71207,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 123 124 125 126 127 128 129 130 143"},E:{"4":0.00459,"11":0.00459,"14":0.00459,_:"0 5 6 7 8 9 10 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3","12.1":0.00459,"13.1":0.02754,"14.1":0.04131,"15.4":0.00918,"15.5":0.00459,"15.6":0.05508,"16.0":0.00459,"16.1":0.00459,"16.2":0.00459,"16.3":0.00918,"16.4":0.00459,"16.5":0.00459,"16.6":0.05049,"17.0":0.00459,"17.1":0.03213,"17.2":0.00918,"17.3":0.01836,"17.4":0.02754,"17.5":0.01377,"17.6":0.05049,"18.0":0.00459,"18.1":0.01377,"18.2":0.00459,"18.3":0.01836,"18.4":0.00918,"18.5-18.6":0.03672,"26.0":0.08262,"26.1":0.10098,"26.2":0.00459},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00084,"5.0-5.1":0,"6.0-6.1":0.00335,"7.0-7.1":0.00251,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00753,"10.0-10.2":0.00084,"10.3":0.01339,"11.0-11.2":0.15567,"11.3-11.4":0.00502,"12.0-12.1":0.00167,"12.2-12.5":0.03934,"13.0-13.1":0,"13.2":0.00418,"13.3":0.00167,"13.4-13.7":0.00753,"14.0-14.4":0.01255,"14.5-14.8":0.0159,"15.0-15.1":0.01339,"15.2-15.3":0.01088,"15.4":0.01172,"15.5":0.01255,"15.6-15.8":0.18161,"16.0":0.0226,"16.1":0.04185,"16.2":0.02176,"16.3":0.04017,"16.4":0.01004,"16.5":0.01674,"16.6-16.7":0.24522,"17.0":0.02092,"17.1":0.02511,"17.2":0.01841,"17.3":0.02594,"17.4":0.04268,"17.5":0.08118,"17.6-17.7":0.19919,"18.0":0.04436,"18.1":0.09374,"18.2":0.05022,"18.3":0.1632,"18.4":0.08369,"18.5-18.7":5.84426,"26.0":0.40089,"26.1":0.36574},P:{"4":0.1252,"21":0.04173,"22":0.02087,"23":0.02087,"24":0.01043,"25":0.02087,"26":0.0313,"27":0.0626,"28":0.21911,"29":2.09715,_:"20 6.2-6.4 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01043,"7.2-7.4":0.10434,"8.2":0.01043},I:{"0":0.01621,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.25427,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.03672,"9":0.00525,"10":0.01049,"11":0.27802,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00541},O:{"0":0.01623},H:{"0":0},L:{"0":47.35629},R:{_:"0"},M:{"0":0.17853}};
Index: node_modules/caniuse-lite/data/regions/RU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/RU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/RU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0068,"31":0.0068,"52":0.08162,"68":0.0068,"78":0.0068,"102":0.0136,"104":0.0068,"111":0.0068,"113":0.0068,"114":0.0068,"115":0.42853,"123":0.0068,"125":0.0068,"127":0.0068,"128":0.02721,"131":0.0068,"133":0.0136,"134":0.0068,"135":0.0136,"136":0.02041,"137":0.0136,"138":0.0068,"139":0.0136,"140":0.08843,"141":0.0068,"142":0.02721,"143":0.02721,"144":0.54416,"145":0.73462,"146":0.0068,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 105 106 107 108 109 110 112 116 117 118 119 120 121 122 124 126 129 130 132 147 148 3.5 3.6"},D:{"26":0.0068,"38":0.0068,"39":0.02041,"40":0.02041,"41":0.08162,"42":0.02041,"43":0.02041,"44":0.02041,"45":0.15645,"46":0.02041,"47":0.02041,"48":0.02041,"49":0.04761,"50":0.02041,"51":0.02721,"52":0.02041,"53":0.02041,"54":0.02041,"55":0.02041,"56":0.02041,"57":0.02041,"58":0.03401,"59":0.02041,"60":0.02041,"68":0.0068,"69":0.0068,"71":0.0068,"75":0.0068,"76":0.02041,"78":0.02721,"79":0.05442,"80":0.0068,"81":0.0068,"83":0.0068,"84":0.0068,"85":0.09523,"86":0.02041,"87":0.02721,"88":0.0136,"89":0.0068,"90":0.0136,"91":0.0136,"92":1.15634,"94":0.0068,"96":0.0068,"97":0.0068,"99":0.02721,"100":0.0068,"101":0.0068,"102":0.03401,"103":0.0136,"104":0.04081,"105":0.0068,"106":0.08843,"107":0.0068,"108":0.02041,"109":2.0474,"110":0.0068,"111":0.02041,"112":8.01956,"114":0.06122,"115":0.0068,"116":0.16325,"117":0.0136,"118":0.0068,"119":0.0136,"120":0.05442,"121":0.02721,"122":0.07482,"123":0.82304,"124":0.02721,"125":0.48974,"126":1.51685,"127":0.0136,"128":0.05442,"129":0.02041,"130":0.03401,"131":0.19046,"132":0.04081,"133":0.09523,"134":1.79573,"135":0.05442,"136":0.10203,"137":0.05442,"138":0.19726,"139":0.13604,"140":0.29249,"141":2.54395,"142":11.72665,"143":0.02041,"144":0.0068,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 61 62 63 64 65 66 67 70 72 73 74 77 93 95 98 113 145 146"},F:{"12":0.0068,"36":0.0136,"46":0.0068,"77":0.0068,"79":0.03401,"82":0.0068,"84":0.0068,"85":0.04081,"86":0.02721,"89":0.0068,"90":0.0136,"92":0.16325,"93":0.02041,"95":0.58497,"102":0.0068,"113":0.0068,"114":0.0068,"116":0.0068,"117":0.0068,"119":0.0136,"120":0.02041,"121":0.02041,"122":0.98629,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 83 87 88 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 115 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0136},B:{"18":0.0136,"92":0.02041,"109":0.05442,"114":0.05442,"119":0.0068,"120":0.0068,"122":0.0068,"129":0.0068,"131":0.02041,"132":0.0068,"133":0.0068,"134":0.0068,"135":0.0068,"136":0.0068,"137":0.0136,"138":0.0136,"139":0.02041,"140":0.03401,"141":0.3265,"142":3.35339,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 121 123 124 125 126 127 128 130 143"},E:{"14":0.0068,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.2-15.3 15.4 16.0","9.1":0.0068,"13.1":0.0068,"14.1":0.02041,"15.1":0.0068,"15.5":0.0068,"15.6":0.06122,"16.1":0.0068,"16.2":0.0068,"16.3":0.02721,"16.4":0.0068,"16.5":0.0136,"16.6":0.08162,"17.0":0.0068,"17.1":0.06122,"17.2":0.0068,"17.3":0.0068,"17.4":0.0136,"17.5":0.02041,"17.6":0.06122,"18.0":0.0068,"18.1":0.0068,"18.2":0.0068,"18.3":0.02041,"18.4":0.0068,"18.5-18.6":0.06122,"26.0":0.11563,"26.1":0.12244,"26.2":0.0068},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00068,"5.0-5.1":0,"6.0-6.1":0.00274,"7.0-7.1":0.00205,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00616,"10.0-10.2":0.00068,"10.3":0.01094,"11.0-11.2":0.12723,"11.3-11.4":0.0041,"12.0-12.1":0.00137,"12.2-12.5":0.03215,"13.0-13.1":0,"13.2":0.00342,"13.3":0.00137,"13.4-13.7":0.00616,"14.0-14.4":0.01026,"14.5-14.8":0.013,"15.0-15.1":0.01094,"15.2-15.3":0.00889,"15.4":0.00958,"15.5":0.01026,"15.6-15.8":0.14844,"16.0":0.01847,"16.1":0.0342,"16.2":0.01779,"16.3":0.03283,"16.4":0.00821,"16.5":0.01368,"16.6-16.7":0.20043,"17.0":0.0171,"17.1":0.02052,"17.2":0.01505,"17.3":0.02121,"17.4":0.03489,"17.5":0.06635,"17.6-17.7":0.1628,"18.0":0.03625,"18.1":0.07661,"18.2":0.04104,"18.3":0.13339,"18.4":0.06841,"18.5-18.7":4.77674,"26.0":0.32766,"26.1":0.29893},P:{"4":0.08499,"21":0.01062,"23":0.01062,"24":0.01062,"26":0.01062,"27":0.02125,"28":0.07436,"29":0.69051,_:"20 22 25 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01062},I:{"0":0.03832,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.94981,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.09523,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.02239},O:{"0":0.07036},H:{"0":0},L:{"0":20.21132},R:{_:"0"},M:{"0":0.36137}};
Index: node_modules/caniuse-lite/data/regions/RW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/RW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/RW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01112,"56":0.00556,"57":0.00556,"58":0.00556,"59":0.00556,"67":0.00556,"68":0.01112,"69":0.00556,"72":0.00556,"94":0.00556,"104":0.00556,"111":0.00556,"112":0.01668,"113":0.00556,"115":0.20572,"127":0.01668,"128":0.02224,"133":0.00556,"134":0.00556,"135":0.01112,"139":0.02224,"140":0.02224,"141":0.01112,"142":0.01112,"143":0.07228,"144":0.60048,"145":0.66164,"146":0.00556,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 60 61 62 63 64 65 66 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 136 137 138 147 148 3.5 3.6"},D:{"50":0.00556,"56":0.00556,"58":0.00556,"59":0.00556,"61":0.00556,"65":0.00556,"66":0.00556,"69":0.01668,"70":0.01668,"71":0.01112,"72":0.01112,"73":0.00556,"74":0.01112,"77":0.01668,"78":0.00556,"79":0.01668,"80":0.0556,"81":0.01112,"83":0.00556,"84":0.00556,"85":0.00556,"87":0.02224,"89":0.02224,"90":0.00556,"91":0.00556,"93":0.01112,"94":0.00556,"95":0.01668,"96":0.00556,"98":0.0834,"100":0.03892,"101":0.01112,"102":0.00556,"103":0.06116,"104":0.0278,"106":0.0278,"107":0.00556,"108":0.01112,"109":0.34472,"110":0.00556,"111":0.07784,"112":0.01668,"114":0.01112,"115":0.01112,"116":0.17792,"117":0.01112,"119":0.01112,"120":0.01668,"121":0.01112,"122":0.11676,"123":0.0556,"124":0.02224,"125":0.18904,"126":0.15012,"127":0.01112,"128":0.17792,"129":0.03336,"130":0.04448,"131":0.17792,"132":0.05004,"133":0.06116,"134":0.1946,"135":0.11676,"136":0.13344,"137":0.1668,"138":0.57824,"139":0.4448,"140":0.7228,"141":8.52904,"142":19.74356,"143":0.09452,"144":0.01112,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 57 60 62 63 64 67 68 75 76 86 88 92 97 99 105 113 118 145 146"},F:{"49":0.00556,"76":0.00556,"79":0.00556,"85":0.00556,"89":0.00556,"91":0.00556,"92":0.07228,"95":0.01112,"114":0.00556,"119":0.00556,"120":0.00556,"122":0.3058,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 82 83 84 86 87 88 90 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01668,"13":0.01668,"14":0.01112,"15":0.00556,"16":0.00556,"17":0.01668,"18":0.1112,"89":0.00556,"90":0.0278,"92":0.14456,"98":0.00556,"100":0.01112,"109":0.00556,"111":0.01112,"114":0.2502,"122":0.03892,"126":0.00556,"129":0.00556,"130":0.01112,"131":0.0278,"132":0.02224,"133":0.03336,"134":0.07228,"135":0.00556,"136":0.01668,"137":0.0278,"138":0.04448,"139":0.05004,"140":0.13344,"141":0.64496,"142":4.93728,"143":0.01112,_:"79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 99 101 102 103 104 105 106 107 108 110 112 113 115 116 117 118 119 120 121 123 124 125 127 128"},E:{"13":0.00556,_:"0 4 5 6 7 8 9 10 11 12 14 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.2-15.3 16.0 16.1 16.2 16.4","5.1":0.00556,"11.1":0.00556,"13.1":0.03336,"14.1":0.03892,"15.1":0.01112,"15.4":0.02224,"15.5":0.00556,"15.6":0.06672,"16.3":0.00556,"16.5":0.00556,"16.6":0.12232,"17.0":0.01668,"17.1":0.02224,"17.2":0.01112,"17.3":0.01112,"17.4":0.00556,"17.5":0.01112,"17.6":0.0556,"18.0":0.00556,"18.1":0.01112,"18.2":0.00556,"18.3":0.0278,"18.4":0.01112,"18.5-18.6":0.0556,"26.0":0.20016,"26.1":0.15012,"26.2":0.00556},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00055,"5.0-5.1":0,"6.0-6.1":0.00221,"7.0-7.1":0.00166,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00498,"10.0-10.2":0.00055,"10.3":0.00885,"11.0-11.2":0.1029,"11.3-11.4":0.00332,"12.0-12.1":0.00111,"12.2-12.5":0.026,"13.0-13.1":0,"13.2":0.00277,"13.3":0.00111,"13.4-13.7":0.00498,"14.0-14.4":0.0083,"14.5-14.8":0.01051,"15.0-15.1":0.00885,"15.2-15.3":0.00719,"15.4":0.00775,"15.5":0.0083,"15.6-15.8":0.12005,"16.0":0.01494,"16.1":0.02766,"16.2":0.01438,"16.3":0.02655,"16.4":0.00664,"16.5":0.01106,"16.6-16.7":0.16209,"17.0":0.01383,"17.1":0.0166,"17.2":0.01217,"17.3":0.01715,"17.4":0.02821,"17.5":0.05366,"17.6-17.7":0.13167,"18.0":0.02932,"18.1":0.06196,"18.2":0.03319,"18.3":0.10788,"18.4":0.05532,"18.5-18.7":3.86316,"26.0":0.26499,"26.1":0.24176},P:{"4":0.01086,"24":0.04345,"25":0.01086,"26":0.01086,"27":0.04345,"28":0.10862,"29":0.32586,_:"20 21 22 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.05431},I:{"0":0.00887,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":3.02948,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03336,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.01776,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.03108},H:{"0":1.93},L:{"0":43.59368},R:{_:"0"},M:{"0":0.14652}};
Index: node_modules/caniuse-lite/data/regions/SA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00492,"52":0.00246,"115":0.01477,"125":0.00246,"128":0.00738,"130":0.00492,"133":0.00246,"135":0.00246,"136":0.00246,"140":0.00738,"141":0.00246,"142":0.00492,"143":0.00984,"144":0.18458,"145":0.17227,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 131 132 134 137 138 139 146 147 148 3.5 3.6"},D:{"38":0.00246,"56":0.00246,"68":0.00246,"69":0.00738,"72":0.00246,"75":0.00246,"76":0.00246,"79":0.01723,"83":0.00492,"87":0.03938,"88":0.00246,"90":0.00246,"91":0.00246,"92":0.00246,"93":0.00738,"94":0.00246,"95":0.00246,"98":0.00492,"99":0.00246,"101":0.00246,"103":0.00984,"104":0.00246,"108":0.01231,"109":0.22887,"110":0.00738,"111":0.00738,"112":0.21411,"113":0.00246,"114":0.02707,"116":0.01477,"117":0.00246,"118":0.00246,"119":0.01231,"120":0.01477,"121":0.00492,"122":0.02707,"123":0.00492,"124":0.01231,"125":1.07792,"126":0.74814,"127":0.01477,"128":0.02215,"129":0.00738,"130":0.01231,"131":0.04676,"132":0.02707,"133":0.02215,"134":0.32977,"135":0.04922,"136":0.02707,"137":0.03938,"138":0.12305,"139":0.16489,"140":0.20672,"141":2.77847,"142":8.29603,"143":0.00984,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 70 71 73 74 77 78 80 81 84 85 86 89 96 97 100 102 105 106 107 115 144 145 146"},F:{"91":0.00492,"92":0.07137,"93":0.00984,"122":0.08367,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00492,"92":0.00984,"109":0.00492,"114":0.22887,"120":0.00738,"122":0.00492,"124":0.00246,"126":0.00492,"128":0.00246,"129":0.00492,"130":0.00246,"131":0.00492,"132":0.00492,"133":0.00492,"134":0.00246,"135":0.00246,"136":0.00738,"137":0.00492,"138":0.01231,"139":0.01969,"140":0.14028,"141":0.27071,"142":1.59719,"143":0.00246,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 123 125 127"},E:{"14":0.00246,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 16.0","5.1":0.00246,"13.1":0.00246,"14.1":0.00492,"15.2-15.3":0.00246,"15.4":0.00246,"15.5":0.00492,"15.6":0.01723,"16.1":0.00738,"16.2":0.00492,"16.3":0.00738,"16.4":0.00738,"16.5":0.00492,"16.6":0.07629,"17.0":0.00492,"17.1":0.01477,"17.2":0.01477,"17.3":0.00738,"17.4":0.01723,"17.5":0.03199,"17.6":0.07383,"18.0":0.00738,"18.1":0.01969,"18.2":0.01723,"18.3":0.03692,"18.4":0.02707,"18.5-18.6":0.15012,"26.0":0.19934,"26.1":0.14274,"26.2":0.00492},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00161,"5.0-5.1":0,"6.0-6.1":0.00645,"7.0-7.1":0.00484,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01452,"10.0-10.2":0.00161,"10.3":0.02581,"11.0-11.2":0.30008,"11.3-11.4":0.00968,"12.0-12.1":0.00323,"12.2-12.5":0.07583,"13.0-13.1":0,"13.2":0.00807,"13.3":0.00323,"13.4-13.7":0.01452,"14.0-14.4":0.0242,"14.5-14.8":0.03065,"15.0-15.1":0.02581,"15.2-15.3":0.02097,"15.4":0.02259,"15.5":0.0242,"15.6-15.8":0.3501,"16.0":0.04356,"16.1":0.08067,"16.2":0.04195,"16.3":0.07744,"16.4":0.01936,"16.5":0.03227,"16.6-16.7":0.47271,"17.0":0.04033,"17.1":0.0484,"17.2":0.03549,"17.3":0.05001,"17.4":0.08228,"17.5":0.15649,"17.6-17.7":0.38398,"18.0":0.08551,"18.1":0.18069,"18.2":0.0968,"18.3":0.3146,"18.4":0.16133,"18.5-18.7":11.266,"26.0":0.77279,"26.1":0.70503},P:{"22":0.01016,"23":0.01016,"24":0.01016,"25":0.04065,"26":0.03048,"27":0.04065,"28":0.16258,"29":0.84338,_:"4 20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02032},I:{"0":0.03764,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.47496,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01723,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.66343},H:{"0":0},L:{"0":61.58973},R:{_:"0"},M:{"0":0.06031}};
Index: node_modules/caniuse-lite/data/regions/SB.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SB.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SB.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"85":0.0037,"115":0.11097,"119":0.0037,"128":0.02219,"139":0.0148,"140":0.0074,"141":0.0074,"143":0.0074,"144":1.18368,"145":1.03202,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 137 138 142 146 147 148 3.5 3.6"},D:{"56":0.0037,"69":0.0074,"78":0.0037,"79":0.0037,"81":0.0148,"100":0.0037,"107":0.0074,"108":0.12207,"109":0.09248,"111":0.0074,"114":0.0037,"115":0.0037,"116":0.0074,"118":0.0037,"119":0.0037,"120":0.0185,"121":0.05549,"122":0.02959,"125":0.19235,"126":0.0074,"127":0.0148,"128":0.0037,"129":0.0037,"130":0.04439,"131":0.0074,"132":0.0148,"133":0.0074,"134":0.02219,"135":0.02219,"136":0.0037,"137":0.0185,"138":0.05179,"139":0.17755,"140":0.21084,"141":2.35256,"142":10.56434,"143":0.0111,"144":0.0074,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 80 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 110 112 113 117 123 124 145 146"},F:{"92":0.10727,"93":0.03699,"114":0.0037,"122":0.63993,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.02959,"18":0.0037,"84":0.0037,"85":0.0074,"90":0.0185,"92":0.02589,"99":0.0037,"107":0.0074,"109":0.22564,"114":0.0148,"117":0.0037,"118":0.0148,"120":0.0037,"128":0.0037,"130":0.0148,"131":0.0037,"132":0.0185,"133":0.0148,"134":0.03329,"135":0.0185,"136":0.0111,"137":0.0185,"138":0.45868,"139":0.21084,"140":0.10357,"141":0.76569,"142":6.24761,"143":0.0037,_:"12 13 14 15 16 79 80 81 83 86 87 88 89 91 93 94 95 96 97 98 100 101 102 103 104 105 106 108 110 111 112 113 115 116 119 121 122 123 124 125 126 127 129"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.4 16.5 17.0 17.2 17.3 18.3","12.1":0.0037,"15.6":0.0111,"16.1":0.0037,"16.6":0.07028,"17.1":0.0111,"17.4":0.0037,"17.5":0.02589,"17.6":0.04809,"18.0":0.0111,"18.1":0.0037,"18.2":0.0037,"18.4":0.0111,"18.5-18.6":0.07398,"26.0":0.0074,"26.1":0.12207,"26.2":0.04439},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00029,"5.0-5.1":0,"6.0-6.1":0.00115,"7.0-7.1":0.00086,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00259,"10.0-10.2":0.00029,"10.3":0.00461,"11.0-11.2":0.05357,"11.3-11.4":0.00173,"12.0-12.1":0.00058,"12.2-12.5":0.01354,"13.0-13.1":0,"13.2":0.00144,"13.3":0.00058,"13.4-13.7":0.00259,"14.0-14.4":0.00432,"14.5-14.8":0.00547,"15.0-15.1":0.00461,"15.2-15.3":0.00374,"15.4":0.00403,"15.5":0.00432,"15.6-15.8":0.0625,"16.0":0.00778,"16.1":0.0144,"16.2":0.00749,"16.3":0.01382,"16.4":0.00346,"16.5":0.00576,"16.6-16.7":0.08438,"17.0":0.0072,"17.1":0.00864,"17.2":0.00634,"17.3":0.00893,"17.4":0.01469,"17.5":0.02794,"17.6-17.7":0.06854,"18.0":0.01526,"18.1":0.03226,"18.2":0.01728,"18.3":0.05616,"18.4":0.0288,"18.5-18.7":2.01111,"26.0":0.13795,"26.1":0.12586},P:{"23":0.234,"24":0.01017,"25":0.09156,"26":0.08139,"27":0.06104,"28":0.83425,"29":0.1933,_:"4 20 21 22 5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0 19.0","6.2-6.4":0.01017,"7.2-7.4":0.03052,"13.0":0.01017},I:{"0":0.03776,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":1.03983,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.08138,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.10083},O:{"0":0.77515},H:{"0":0},L:{"0":65.7774},R:{_:"0"},M:{"0":0.20166}};
Index: node_modules/caniuse-lite/data/regions/SC.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"37":0.00402,"59":0.01206,"60":0.02813,"78":0.00804,"114":0.00402,"115":0.04019,"117":0.01206,"118":0.00804,"120":0.01206,"121":0.06029,"123":0.00402,"124":0.00402,"125":0.01608,"126":0.00402,"127":0.00804,"128":0.10851,"129":0.01206,"130":0.04421,"131":0.00402,"132":0.18086,"133":0.02813,"134":0.03215,"135":0.00804,"136":0.00804,"137":0.00402,"138":0.00804,"139":0.01608,"140":0.34965,"142":0.01206,"143":0.01206,"144":0.19693,"145":0.27329,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 116 119 122 141 146 147 148 3.5 3.6"},D:{"41":0.01206,"45":0.44611,"51":0.01206,"58":0.0201,"59":0.01206,"61":0.01206,"63":0.01206,"64":0.01608,"65":0.02813,"66":0.04823,"67":0.03215,"68":0.02813,"69":0.01608,"70":0.01608,"71":0.01206,"73":0.01608,"75":0.00804,"79":0.00804,"80":0.04421,"81":0.00804,"83":0.00402,"85":0.01608,"86":0.01608,"87":0.01608,"88":0.00804,"90":0.00804,"91":0.03215,"93":0.00402,"94":0.00402,"97":0.10048,"98":0.01206,"100":0.00402,"101":0.08842,"102":0.00402,"103":0.01206,"104":0.12459,"106":0.01206,"107":0.03617,"108":0.0201,"109":0.49836,"110":0.00402,"111":0.00804,"112":0.01206,"113":0.02813,"114":0.23712,"115":0.00804,"116":1.25795,"117":0.07234,"118":0.1688,"119":0.08038,"120":0.74753,"121":0.04421,"122":0.03215,"123":0.34162,"124":0.13263,"125":0.41798,"126":0.0844,"127":0.04421,"128":0.20095,"129":0.26525,"130":0.37377,"131":0.32956,"132":0.28133,"133":0.23712,"134":0.26927,"135":0.24918,"136":0.1688,"137":0.40994,"138":0.60285,"139":1.51114,"140":0.75959,"141":2.41542,"142":9.46073,"143":0.01206,"144":0.03215,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 46 47 48 49 50 52 53 54 55 56 57 60 62 72 74 76 77 78 84 89 92 95 96 99 105 145 146"},F:{"91":0.00804,"92":0.04823,"100":0.00804,"101":0.00804,"102":0.00804,"103":0.00402,"104":0.00804,"105":0.01608,"106":0.00804,"107":0.00402,"108":0.00402,"109":0.00804,"110":0.00804,"111":0.00804,"112":0.00804,"113":0.00804,"114":0.14468,"115":0.00804,"116":0.00804,"117":0.01206,"118":0.00804,"119":0.01206,"120":0.00804,"121":0.00804,"122":0.06029,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 93 94 95 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"84":0.00402,"92":0.01206,"100":0.00402,"106":0.00402,"109":0.00402,"113":0.00402,"114":0.02813,"116":0.01608,"118":0.00402,"119":0.02411,"120":0.15674,"121":0.00402,"122":0.00804,"123":0.01206,"124":0.00804,"125":0.04019,"127":0.00402,"128":0.06029,"129":0.08038,"130":0.08038,"131":0.1487,"132":0.08842,"133":0.10048,"134":0.10449,"135":0.12057,"136":0.06832,"137":0.13263,"138":0.24918,"139":0.12057,"140":0.15674,"141":0.5506,"142":1.98137,"143":0.00402,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 107 108 110 111 112 115 117 126"},E:{"14":0.01608,"15":0.00402,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 11.1 12.1 15.1 15.2-15.3 26.2","9.1":0.07636,"10.1":0.00402,"13.1":0.00402,"14.1":0.00804,"15.4":0.0201,"15.5":0.00402,"15.6":0.02813,"16.0":0.00402,"16.1":0.00402,"16.2":0.00804,"16.3":0.06832,"16.4":0.00804,"16.5":0.01608,"16.6":0.04823,"17.0":0.00804,"17.1":0.11253,"17.2":0.04823,"17.3":0.00804,"17.4":0.03215,"17.5":0.05225,"17.6":0.03215,"18.0":0.07234,"18.1":0.01608,"18.2":0.01206,"18.3":0.04823,"18.4":0.0201,"18.5-18.6":0.0844,"26.0":0.07234,"26.1":0.17282},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00081,"5.0-5.1":0,"6.0-6.1":0.00323,"7.0-7.1":0.00242,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00727,"10.0-10.2":0.00081,"10.3":0.01293,"11.0-11.2":0.15029,"11.3-11.4":0.00485,"12.0-12.1":0.00162,"12.2-12.5":0.03798,"13.0-13.1":0,"13.2":0.00404,"13.3":0.00162,"13.4-13.7":0.00727,"14.0-14.4":0.01212,"14.5-14.8":0.01535,"15.0-15.1":0.01293,"15.2-15.3":0.0105,"15.4":0.01131,"15.5":0.01212,"15.6-15.8":0.17534,"16.0":0.02182,"16.1":0.0404,"16.2":0.02101,"16.3":0.03879,"16.4":0.0097,"16.5":0.01616,"16.6-16.7":0.23675,"17.0":0.0202,"17.1":0.02424,"17.2":0.01778,"17.3":0.02505,"17.4":0.04121,"17.5":0.07838,"17.6-17.7":0.19231,"18.0":0.04283,"18.1":0.0905,"18.2":0.04848,"18.3":0.15757,"18.4":0.0808,"18.5-18.7":5.6425,"26.0":0.38705,"26.1":0.35311},P:{"4":0.01027,"20":0.02053,"21":0.12319,"22":0.20532,"23":0.26692,"24":0.07186,"25":0.07186,"26":0.0616,"27":0.16426,"28":0.74943,"29":1.52966,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 18.0 19.0","7.2-7.4":0.02053,"13.0":0.01027,"14.0":0.02053,"16.0":0.01027,"17.0":0.0308},I:{"0":0.12543,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.93902,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.04466,"11":0.35724,_:"6 7 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.15551},O:{"0":0.51437},H:{"0":0},L:{"0":51.81854},R:{_:"0"},M:{"0":1.11247}};
Index: node_modules/caniuse-lite/data/regions/SD.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"44":0.00279,"47":0.00279,"72":0.00279,"80":0.00279,"85":0.00279,"111":0.00558,"115":0.09204,"127":0.00558,"128":0.00558,"133":0.00279,"140":0.00837,"141":0.00279,"142":0.01395,"143":0.00558,"144":0.11156,"145":0.34026,"146":0.00279,"147":0.00279,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 134 135 136 137 138 139 148 3.5 3.6"},D:{"37":0.08088,"40":0.00279,"43":0.00837,"50":0.00279,"55":0.00279,"58":0.00279,"60":0.00279,"63":0.00279,"64":0.00279,"67":0.04741,"68":0.00558,"69":0.00279,"70":0.0502,"71":0.00837,"76":0.00279,"78":0.0251,"79":0.01395,"80":0.00279,"81":0.00279,"84":0.00279,"85":0.00279,"86":0.00279,"87":0.00837,"88":0.00558,"89":0.00279,"90":0.00558,"91":0.03905,"92":0.00558,"100":0.00279,"102":0.00279,"103":0.00279,"104":0.01116,"106":0.00279,"107":0.00279,"108":0.00279,"109":0.09204,"111":0.01116,"114":0.01673,"116":0.00558,"119":0.00558,"120":0.00279,"121":0.00279,"122":0.01116,"123":0.00837,"125":0.00279,"126":0.01116,"127":0.01116,"128":0.00279,"130":0.00837,"131":0.03347,"132":0.00558,"133":0.00558,"134":0.00837,"135":0.00558,"136":0.03068,"137":0.02231,"138":0.06694,"139":0.05299,"140":0.09483,"141":0.37652,"142":1.14628,"143":0.00279,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 42 44 45 46 47 48 49 51 52 53 54 56 57 59 61 62 65 66 72 73 74 75 77 83 93 94 95 96 97 98 99 101 105 110 112 113 115 117 118 124 129 144 145 146"},F:{"79":0.00837,"83":0.00558,"86":0.00558,"87":0.00279,"88":0.00558,"89":0.0251,"90":0.0251,"91":0.06136,"92":0.71956,"93":0.12829,"95":0.00837,"120":0.00279,"122":0.01673,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 85 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00279,"14":0.00279,"16":0.00279,"18":0.00837,"84":0.00558,"89":0.00279,"90":0.00279,"92":0.03068,"100":0.00279,"109":0.00558,"114":0.00279,"122":0.00558,"125":0.00279,"129":0.00279,"130":0.00279,"132":0.01116,"133":0.01116,"134":0.00279,"136":0.00279,"138":0.00279,"139":0.00279,"140":0.02789,"141":0.03347,"142":0.46576,_:"13 15 17 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 126 127 128 131 135 137 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.2 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 26.2","5.1":0.02789,"15.6":0.01395,"17.1":0.00279,"17.3":0.00558,"18.5-18.6":0.00558,"26.0":0.00279,"26.1":0.00558},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00012,"5.0-5.1":0,"6.0-6.1":0.00048,"7.0-7.1":0.00036,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00108,"10.0-10.2":0.00012,"10.3":0.00193,"11.0-11.2":0.0224,"11.3-11.4":0.00072,"12.0-12.1":0.00024,"12.2-12.5":0.00566,"13.0-13.1":0,"13.2":0.0006,"13.3":0.00024,"13.4-13.7":0.00108,"14.0-14.4":0.00181,"14.5-14.8":0.00229,"15.0-15.1":0.00193,"15.2-15.3":0.00157,"15.4":0.00169,"15.5":0.00181,"15.6-15.8":0.02613,"16.0":0.00325,"16.1":0.00602,"16.2":0.00313,"16.3":0.00578,"16.4":0.00144,"16.5":0.00241,"16.6-16.7":0.03528,"17.0":0.00301,"17.1":0.00361,"17.2":0.00265,"17.3":0.00373,"17.4":0.00614,"17.5":0.01168,"17.6-17.7":0.02866,"18.0":0.00638,"18.1":0.01349,"18.2":0.00722,"18.3":0.02348,"18.4":0.01204,"18.5-18.7":0.8408,"26.0":0.05767,"26.1":0.05262},P:{"4":0.12988,"20":0.00999,"21":0.04996,"22":0.03996,"23":0.03996,"24":0.1099,"25":0.18983,"26":0.26976,"27":0.3297,"28":0.6694,"29":0.63942,_:"5.0-5.4 8.2 9.2 10.1 12.0 15.0","6.2-6.4":0.00999,"7.2-7.4":0.14987,"11.1-11.2":0.01998,"13.0":0.00999,"14.0":0.02997,"16.0":0.04996,"17.0":0.00999,"18.0":0.00999,"19.0":0.02997},I:{"0":0.2664,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":5.50079,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01395,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.5047},H:{"0":0.26},L:{"0":83.94619},R:{_:"0"},M:{"0":0.18746}};
Index: node_modules/caniuse-lite/data/regions/SE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.01024,"59":0.00512,"60":0.01024,"77":0.00512,"78":0.02048,"91":0.00512,"102":0.00512,"104":0.00512,"115":0.13821,"128":0.0819,"129":0.00512,"134":0.00512,"136":0.00512,"137":0.00512,"139":0.00512,"140":0.7269,"141":0.00512,"142":0.01024,"143":0.03071,"144":0.79856,"145":0.95725,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 130 131 132 133 135 138 146 147 148 3.5 3.6"},D:{"39":0.01024,"40":0.01024,"41":0.01024,"42":0.01024,"43":0.01024,"44":0.01024,"45":0.01024,"46":0.01024,"47":0.01024,"48":0.01024,"49":0.01536,"50":0.01024,"51":0.01024,"52":0.01536,"53":0.01024,"54":0.01024,"55":0.01024,"56":0.01024,"57":0.01024,"58":0.01024,"59":0.08702,"60":0.01024,"66":0.02048,"79":0.02048,"80":0.01024,"87":0.02048,"88":0.01024,"92":0.00512,"93":0.00512,"102":0.00512,"103":0.14845,"104":0.00512,"108":0.02048,"109":0.36345,"111":0.00512,"112":0.38904,"113":0.02048,"114":0.01536,"115":0.01536,"116":0.14333,"117":0.26619,"118":0.24059,"119":0.01024,"120":0.0256,"121":0.01024,"122":0.06655,"123":0.07167,"124":0.05119,"125":0.04095,"126":0.19452,"127":0.02048,"128":0.0819,"129":0.02048,"130":0.3225,"131":0.08702,"132":0.03583,"133":0.11774,"134":0.06143,"135":0.06143,"136":0.14845,"137":0.16381,"138":0.5119,"139":0.44023,"140":0.87535,"141":6.72637,"142":19.87196,"143":0.03583,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 85 86 89 90 91 94 95 96 97 98 99 100 101 105 106 107 110 144 145 146"},F:{"92":0.0256,"93":0.00512,"95":0.00512,"119":0.00512,"120":0.00512,"122":0.46583,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00512,"92":0.00512,"109":0.05119,"112":0.01024,"119":0.00512,"122":0.01024,"130":0.00512,"131":0.01024,"132":0.00512,"134":0.00512,"135":0.00512,"136":0.01024,"137":0.0256,"138":0.02048,"139":0.0256,"140":0.13821,"141":0.84975,"142":6.25542,"143":0.01024,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 114 115 116 117 118 120 121 123 124 125 126 127 128 129 133"},E:{"14":0.01536,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3","11.1":0.00512,"12.1":0.00512,"13.1":0.02048,"14.1":0.03583,"15.1":0.00512,"15.4":0.01024,"15.5":0.01024,"15.6":0.16893,"16.0":0.00512,"16.1":0.02048,"16.2":0.01024,"16.3":0.04607,"16.4":0.01536,"16.5":0.02048,"16.6":0.27131,"17.0":0.01024,"17.1":0.1894,"17.2":0.0256,"17.3":0.02048,"17.4":0.06143,"17.5":0.0819,"17.6":0.27131,"18.0":0.01536,"18.1":0.04095,"18.2":0.0256,"18.3":0.07167,"18.4":0.04095,"18.5-18.6":0.15869,"26.0":0.35321,"26.1":0.43,"26.2":0.01024},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0023,"5.0-5.1":0,"6.0-6.1":0.00921,"7.0-7.1":0.00691,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02072,"10.0-10.2":0.0023,"10.3":0.03684,"11.0-11.2":0.42824,"11.3-11.4":0.01381,"12.0-12.1":0.0046,"12.2-12.5":0.10821,"13.0-13.1":0,"13.2":0.01151,"13.3":0.0046,"13.4-13.7":0.02072,"14.0-14.4":0.03454,"14.5-14.8":0.04374,"15.0-15.1":0.03684,"15.2-15.3":0.02993,"15.4":0.03223,"15.5":0.03454,"15.6-15.8":0.49961,"16.0":0.06216,"16.1":0.11512,"16.2":0.05986,"16.3":0.11051,"16.4":0.02763,"16.5":0.04605,"16.6-16.7":0.67459,"17.0":0.05756,"17.1":0.06907,"17.2":0.05065,"17.3":0.07137,"17.4":0.11742,"17.5":0.22333,"17.6-17.7":0.54796,"18.0":0.12203,"18.1":0.25787,"18.2":0.13814,"18.3":0.44896,"18.4":0.23024,"18.5-18.7":16.07743,"26.0":1.10283,"26.1":1.00613},P:{"4":0.05213,"20":0.01043,"21":0.01043,"22":0.02085,"23":0.01043,"24":0.01043,"25":0.01043,"26":0.0417,"27":0.0417,"28":0.28149,"29":3.78443,"5.0-5.4":0.01043,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01043},I:{"0":0.02437,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.14643,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01024,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.00488},H:{"0":0},L:{"0":22.39874},R:{_:"0"},M:{"0":0.66382}};
Index: node_modules/caniuse-lite/data/regions/SG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"78":0.01388,"115":0.02081,"125":0.00694,"128":0.00694,"131":0.00694,"135":0.00694,"140":0.00694,"142":0.00694,"143":0.00694,"144":0.20814,"145":0.23589,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 132 133 134 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"39":0.01388,"40":0.01388,"41":0.01388,"42":0.01388,"43":0.01388,"44":0.01388,"45":0.01388,"46":0.01388,"47":0.01388,"48":0.02081,"49":0.01388,"50":0.01388,"51":0.01388,"52":0.01388,"53":0.01388,"54":0.01388,"55":0.01388,"56":0.01388,"57":0.01388,"58":0.01388,"59":0.01388,"60":0.01388,"79":0.00694,"85":0.15264,"86":0.00694,"87":0.00694,"91":0.00694,"97":0.00694,"99":0.00694,"101":0.00694,"103":0.00694,"104":0.00694,"105":0.13182,"106":0.00694,"107":0.01388,"108":0.00694,"109":0.11101,"110":0.00694,"112":0.01388,"113":0.00694,"114":0.01388,"115":0.00694,"116":0.02081,"117":0.04163,"118":0.01388,"119":0.00694,"120":0.02081,"121":0.02081,"122":0.39547,"123":0.02081,"124":0.02081,"125":0.0555,"126":0.32609,"127":0.02081,"128":0.38159,"129":0.33302,"130":0.74237,"131":0.36771,"132":0.3469,"133":0.02775,"134":17.95554,"135":0.03469,"136":0.04163,"137":26.74599,"138":0.08326,"139":5.52265,"140":0.24283,"141":1.83163,"142":5.54346,"143":0.01388,"144":0.01388,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 88 89 90 92 93 94 95 96 98 100 102 111 145 146"},F:{"92":0.09713,"93":0.01388,"95":0.02081,"120":0.00694,"122":0.1457,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00694,"109":0.00694,"120":0.00694,"121":0.79093,"122":0.00694,"126":0.00694,"128":0.00694,"130":0.01388,"131":0.00694,"132":0.00694,"133":0.00694,"134":0.00694,"135":0.00694,"136":0.00694,"137":0.00694,"138":0.01388,"139":0.01388,"140":0.02775,"141":0.18039,"142":1.20027,"143":0.00694,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 123 124 125 127 129"},E:{"14":0.00694,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 16.5 17.0 17.3 26.2","14.1":0.00694,"15.6":0.02081,"16.3":0.00694,"16.6":0.04163,"17.1":0.02081,"17.2":0.00694,"17.4":0.00694,"17.5":0.01388,"17.6":0.03469,"18.0":0.01388,"18.1":0.02081,"18.2":0.00694,"18.3":0.01388,"18.4":0.01388,"18.5-18.6":0.04163,"26.0":0.09019,"26.1":0.09019},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00058,"5.0-5.1":0,"6.0-6.1":0.00232,"7.0-7.1":0.00174,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00523,"10.0-10.2":0.00058,"10.3":0.0093,"11.0-11.2":0.1081,"11.3-11.4":0.00349,"12.0-12.1":0.00116,"12.2-12.5":0.02731,"13.0-13.1":0,"13.2":0.00291,"13.3":0.00116,"13.4-13.7":0.00523,"14.0-14.4":0.00872,"14.5-14.8":0.01104,"15.0-15.1":0.0093,"15.2-15.3":0.00756,"15.4":0.00814,"15.5":0.00872,"15.6-15.8":0.12611,"16.0":0.01569,"16.1":0.02906,"16.2":0.01511,"16.3":0.0279,"16.4":0.00697,"16.5":0.01162,"16.6-16.7":0.17028,"17.0":0.01453,"17.1":0.01744,"17.2":0.01279,"17.3":0.01802,"17.4":0.02964,"17.5":0.05637,"17.6-17.7":0.13832,"18.0":0.0308,"18.1":0.06509,"18.2":0.03487,"18.3":0.11333,"18.4":0.05812,"18.5-18.7":4.05829,"26.0":0.27838,"26.1":0.25397},P:{"26":0.01051,"27":0.01051,"28":0.08407,"29":1.20851,_:"4 20 21 22 23 24 25 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":5.57727,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00112,"4.4":0,"4.4.3-4.4.4":0.00279},K:{"0":0.5879,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01735,"9":0.10407,"11":0.05204,_:"6 7 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.02143},O:{"0":0.11023},H:{"0":0},L:{"0":18.139},R:{_:"0"},M:{"0":0.30008}};
Index: node_modules/caniuse-lite/data/regions/SH.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 3.5 3.6"},D:{"109":1.88827,"112":6.91492,"122":0.62942,"125":8.17377,"126":1.25885,"135":3.14712,"139":0.62942,"140":8.17377,"141":10.69147,"142":30.81555,"143":1.25885,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 114 115 116 117 118 119 120 121 123 124 127 128 129 130 131 132 133 134 136 137 138 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"140":1.25885,"142":4.40597,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 141 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 18.5-18.6 26.0 26.1 26.2"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00013,"5.0-5.1":0,"6.0-6.1":0.0005,"7.0-7.1":0.00038,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00113,"10.0-10.2":0.00013,"10.3":0.00201,"11.0-11.2":0.0234,"11.3-11.4":0.00075,"12.0-12.1":0.00025,"12.2-12.5":0.00591,"13.0-13.1":0,"13.2":0.00063,"13.3":0.00025,"13.4-13.7":0.00113,"14.0-14.4":0.00189,"14.5-14.8":0.00239,"15.0-15.1":0.00201,"15.2-15.3":0.00164,"15.4":0.00176,"15.5":0.00189,"15.6-15.8":0.0273,"16.0":0.0034,"16.1":0.00629,"16.2":0.00327,"16.3":0.00604,"16.4":0.00151,"16.5":0.00252,"16.6-16.7":0.03686,"17.0":0.00315,"17.1":0.00377,"17.2":0.00277,"17.3":0.0039,"17.4":0.00642,"17.5":0.0122,"17.6-17.7":0.02994,"18.0":0.00667,"18.1":0.01409,"18.2":0.00755,"18.3":0.02453,"18.4":0.01258,"18.5-18.7":0.87846,"26.0":0.06026,"26.1":0.05497},P:{"29":0.629,_:"4 20 21 22 23 24 25 26 27 28 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.629,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.62942,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":17.60835},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/SI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.01167,"77":0.01167,"78":0.01167,"83":0.0175,"95":0.05251,"102":0.00583,"103":0.00583,"108":0.00583,"115":0.94511,"122":0.0175,"125":0.0175,"126":0.01167,"127":0.00583,"128":0.0175,"132":0.01167,"133":0.00583,"134":0.01167,"135":0.00583,"136":0.01167,"137":0.01167,"138":0.035,"139":0.04667,"140":0.07584,"141":0.02334,"142":0.02917,"143":0.11085,"144":2.46195,"145":2.74198,"146":0.00583,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 104 105 106 107 109 110 111 112 113 114 116 117 118 119 120 121 123 124 129 130 131 147 148 3.5 3.6"},D:{"49":0.00583,"51":0.00583,"79":0.02917,"81":0.02334,"87":0.0175,"88":0.00583,"91":0.05251,"96":0.02917,"98":0.04667,"99":0.00583,"100":0.00583,"103":0.0175,"104":0.16919,"108":0.00583,"109":0.92761,"111":0.01167,"112":1.17263,"114":0.0175,"115":0.00583,"116":0.07001,"117":0.00583,"119":0.0175,"120":0.0175,"121":0.00583,"122":0.05834,"123":0.0175,"124":0.05251,"125":0.35587,"126":0.16335,"127":0.00583,"128":0.02917,"129":0.01167,"130":0.10501,"131":0.21586,"132":0.035,"133":0.035,"134":0.07001,"135":0.04084,"136":0.04084,"137":0.04667,"138":0.18085,"139":0.66508,"140":0.52506,"141":8.53514,"142":21.22993,"143":0.02917,"144":0.01167,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 85 86 89 90 92 93 94 95 97 101 102 105 106 107 110 113 118 145 146"},F:{"46":0.05834,"92":0.02334,"93":0.00583,"95":0.02334,"120":0.00583,"122":0.68258,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00583,"109":0.035,"114":0.00583,"118":0.00583,"121":0.00583,"129":0.035,"130":0.00583,"131":0.04084,"133":0.00583,"134":0.00583,"135":0.02917,"136":0.01167,"137":0.01167,"138":0.0175,"139":0.01167,"140":0.05834,"141":0.54256,"142":5.2856,"143":0.01167,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 120 122 123 124 125 126 127 128 132"},E:{"14":0.00583,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.0","13.1":0.00583,"14.1":0.02917,"15.4":0.00583,"15.6":0.05834,"16.1":0.00583,"16.2":0.01167,"16.3":0.00583,"16.4":0.00583,"16.5":0.00583,"16.6":0.06417,"17.0":0.00583,"17.1":0.035,"17.2":0.01167,"17.3":0.0175,"17.4":0.0175,"17.5":0.04667,"17.6":0.15752,"18.0":0.00583,"18.1":0.0175,"18.2":0.00583,"18.3":0.02917,"18.4":0.0175,"18.5-18.6":0.09334,"26.0":0.24503,"26.1":0.2917,"26.2":0.01167},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00098,"5.0-5.1":0,"6.0-6.1":0.00392,"7.0-7.1":0.00294,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00882,"10.0-10.2":0.00098,"10.3":0.01568,"11.0-11.2":0.18233,"11.3-11.4":0.00588,"12.0-12.1":0.00196,"12.2-12.5":0.04607,"13.0-13.1":0,"13.2":0.0049,"13.3":0.00196,"13.4-13.7":0.00882,"14.0-14.4":0.0147,"14.5-14.8":0.01862,"15.0-15.1":0.01568,"15.2-15.3":0.01274,"15.4":0.01372,"15.5":0.0147,"15.6-15.8":0.21272,"16.0":0.02647,"16.1":0.04901,"16.2":0.02549,"16.3":0.04705,"16.4":0.01176,"16.5":0.01961,"16.6-16.7":0.28722,"17.0":0.02451,"17.1":0.02941,"17.2":0.02157,"17.3":0.03039,"17.4":0.04999,"17.5":0.09509,"17.6-17.7":0.2333,"18.0":0.05195,"18.1":0.10979,"18.2":0.05882,"18.3":0.19115,"18.4":0.09803,"18.5-18.7":6.84515,"26.0":0.46954,"26.1":0.42837},P:{"4":0.05172,"20":0.01034,"22":0.02069,"23":0.01034,"24":0.08276,"25":0.01034,"26":0.02069,"27":0.08276,"28":0.47587,"29":2.51382,_:"21 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01034,"6.2-6.4":0.01034,"7.2-7.4":0.06207,"8.2":0.01034,"14.0":0.01034},I:{"0":0.02912,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.48326,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0125},H:{"0":0},L:{"0":30.90035},R:{_:"0"},M:{"0":0.43326}};
Index: node_modules/caniuse-lite/data/regions/SK.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SK.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.02035,"77":0.02035,"78":0.00509,"88":0.00509,"99":0.02544,"115":0.55957,"125":0.02035,"127":0.00509,"128":0.03561,"129":0.01526,"133":0.00509,"134":0.00509,"135":0.00509,"136":0.01526,"137":0.00509,"138":0.00509,"139":0.00509,"140":0.08139,"141":0.01017,"142":0.03052,"143":0.05087,"144":2.43159,"145":2.87924,"146":0.00509,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 130 131 132 147 148 3.5 3.6"},D:{"34":0.00509,"41":0.01017,"49":0.02035,"53":0.00509,"79":0.03561,"81":0.02544,"87":0.02544,"90":0.00509,"91":0.00509,"94":0.01526,"96":0.00509,"97":0.00509,"99":0.00509,"102":0.02544,"103":0.03052,"104":0.01526,"106":0.01017,"108":0.02035,"109":1.37349,"110":0.00509,"111":0.00509,"112":1.3684,"114":0.00509,"116":0.04578,"117":0.00509,"118":0.00509,"119":0.03052,"120":0.02544,"121":0.00509,"122":0.14244,"123":0.01017,"124":0.08139,"125":0.117,"126":0.22383,"127":0.03052,"128":0.06613,"129":0.07122,"130":0.02035,"131":0.07631,"132":0.03561,"133":0.05596,"134":0.0407,"135":0.0407,"136":0.03052,"137":0.13226,"138":0.16278,"139":0.2747,"140":0.44766,"141":5.93144,"142":17.09232,"143":0.03052,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 85 86 88 89 92 93 95 98 100 101 105 107 113 115 144 145 146"},F:{"46":0.02035,"56":0.00509,"83":0.00509,"85":0.00509,"88":0.00509,"91":0.00509,"92":0.06104,"93":0.01017,"95":0.06613,"114":0.00509,"117":0.00509,"119":0.00509,"120":0.01526,"122":0.79866,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 86 87 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00509,"109":0.03052,"114":0.01017,"127":0.01017,"131":0.02544,"132":0.00509,"133":0.01017,"134":0.00509,"135":0.01017,"136":0.00509,"137":0.00509,"138":0.01017,"139":0.02544,"140":0.05596,"141":0.48835,"142":4.62408,"143":0.02035,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 128 129 130"},E:{"13":0.00509,"14":0.00509,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 17.0","13.1":0.00509,"14.1":0.01017,"15.2-15.3":0.00509,"15.4":0.00509,"15.5":0.00509,"15.6":0.07122,"16.0":0.00509,"16.1":0.00509,"16.2":0.00509,"16.3":0.01017,"16.4":0.00509,"16.5":0.01017,"16.6":0.08648,"17.1":0.0407,"17.2":0.03561,"17.3":0.01526,"17.4":0.02035,"17.5":0.05087,"17.6":0.117,"18.0":0.01526,"18.1":0.02544,"18.2":0.01526,"18.3":0.05596,"18.4":0.02544,"18.5-18.6":0.13226,"26.0":0.2747,"26.1":0.38661,"26.2":0.01526},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00104,"5.0-5.1":0,"6.0-6.1":0.00417,"7.0-7.1":0.00312,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00937,"10.0-10.2":0.00104,"10.3":0.01666,"11.0-11.2":0.19373,"11.3-11.4":0.00625,"12.0-12.1":0.00208,"12.2-12.5":0.04895,"13.0-13.1":0,"13.2":0.00521,"13.3":0.00208,"13.4-13.7":0.00937,"14.0-14.4":0.01562,"14.5-14.8":0.01979,"15.0-15.1":0.01666,"15.2-15.3":0.01354,"15.4":0.01458,"15.5":0.01562,"15.6-15.8":0.22602,"16.0":0.02812,"16.1":0.05208,"16.2":0.02708,"16.3":0.04999,"16.4":0.0125,"16.5":0.02083,"16.6-16.7":0.30518,"17.0":0.02604,"17.1":0.03125,"17.2":0.02291,"17.3":0.03229,"17.4":0.05312,"17.5":0.10103,"17.6-17.7":0.24789,"18.0":0.0552,"18.1":0.11665,"18.2":0.06249,"18.3":0.2031,"18.4":0.10416,"18.5-18.7":7.27319,"26.0":0.49891,"26.1":0.45516},P:{"4":0.05168,"20":0.02067,"22":0.01034,"23":0.01034,"24":0.01034,"25":0.01034,"26":0.03101,"27":0.03101,"28":0.17571,"29":2.10847,_:"21 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01034,"6.2-6.4":0.01034,"7.2-7.4":0.01034},I:{"0":0.03434,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.47165,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01526,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01474},H:{"0":0},L:{"0":39.57648},R:{_:"0"},M:{"0":0.34391}};
Index: node_modules/caniuse-lite/data/regions/SL.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01894,"45":0.00316,"51":0.00316,"56":0.00316,"61":0.00316,"62":0.00631,"69":0.00316,"81":0.00316,"104":0.00316,"112":0.00316,"115":0.04103,"123":0.00631,"125":0.00316,"126":0.00316,"127":0.02209,"139":0.01578,"140":0.01894,"141":0.00316,"142":0.02209,"143":0.02525,"144":0.3156,"145":0.27773,"146":0.01578,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 52 53 54 55 57 58 59 60 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 124 128 129 130 131 132 133 134 135 136 137 138 147 148 3.5 3.6"},D:{"38":0.00316,"48":0.01262,"55":0.01262,"58":0.01262,"60":0.00316,"62":0.00947,"67":0.01578,"68":0.02209,"69":0.0284,"70":0.0284,"71":0.01262,"73":0.00316,"74":0.04418,"75":0.05365,"76":0.01262,"77":0.01894,"79":0.14833,"80":0.03156,"81":0.02525,"83":0.03156,"87":0.04103,"88":0.01578,"90":0.00316,"91":0.03156,"93":0.42606,"94":0.00631,"95":0.00316,"96":0.01894,"98":0.00316,"99":0.00631,"100":0.00631,"101":0.00316,"103":0.31244,"105":0.01578,"108":0.00631,"109":0.06628,"111":0.06943,"113":0.00947,"114":0.01578,"116":0.02209,"118":0.01894,"119":0.08521,"120":0.01894,"121":0.00631,"122":0.02525,"123":0.00316,"124":0.00316,"125":0.27457,"126":0.08521,"127":0.00947,"128":0.03156,"129":0.02209,"130":0.03787,"131":0.05365,"132":0.03472,"133":0.01262,"134":0.02525,"135":0.0284,"136":0.02525,"137":0.09468,"138":0.344,"139":0.10099,"140":0.29035,"141":2.97926,"142":4.8413,"143":0.01578,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 56 57 59 61 63 64 65 66 72 78 84 85 86 89 92 97 102 104 106 107 110 112 115 117 144 145 146"},F:{"31":0.04734,"34":0.00631,"36":0.00316,"37":0.01894,"42":0.00631,"45":0.00631,"49":0.00316,"73":0.01262,"79":0.01894,"86":0.00631,"87":0.00631,"90":0.02525,"91":0.00316,"92":0.0505,"93":0.00947,"95":0.0284,"98":0.00947,"113":0.01262,"117":0.01578,"118":0.00316,"120":0.01262,"122":0.1862,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 38 39 40 41 43 44 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 82 83 84 85 88 89 94 96 97 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00631,"14":0.00316,"15":0.00316,"16":0.00316,"17":0.00316,"18":0.07259,"84":0.05681,"89":0.00316,"90":0.00947,"92":0.05681,"98":0.01262,"100":0.01894,"109":0.00316,"112":0.00316,"114":0.1073,"119":0.00316,"122":0.00631,"124":0.00316,"125":0.01894,"126":0.00316,"127":0.00947,"129":0.00947,"132":0.00316,"133":0.01894,"135":0.00316,"136":0.01262,"137":0.00631,"138":0.02525,"139":0.03472,"140":0.03472,"141":0.37872,"142":2.78359,"143":0.00947,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 96 97 99 101 102 103 104 105 106 107 108 110 111 113 115 116 117 118 120 121 123 128 130 131 134"},E:{"14":0.00316,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 16.0 16.3 16.4 16.5 17.0 18.0 26.2","11.1":0.00631,"13.1":0.13255,"14.1":0.00631,"15.2-15.3":0.00316,"15.4":0.00316,"15.5":0.00947,"15.6":0.04103,"16.1":0.00316,"16.2":0.00316,"16.6":0.02209,"17.1":0.16727,"17.2":0.00316,"17.3":0.00631,"17.4":0.01578,"17.5":0.00316,"17.6":0.06628,"18.1":0.00316,"18.2":0.00316,"18.3":0.00316,"18.4":0.00947,"18.5-18.6":0.03156,"26.0":0.07574,"26.1":0.08521},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00053,"5.0-5.1":0,"6.0-6.1":0.00211,"7.0-7.1":0.00158,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00474,"10.0-10.2":0.00053,"10.3":0.00842,"11.0-11.2":0.09789,"11.3-11.4":0.00316,"12.0-12.1":0.00105,"12.2-12.5":0.02474,"13.0-13.1":0,"13.2":0.00263,"13.3":0.00105,"13.4-13.7":0.00474,"14.0-14.4":0.00789,"14.5-14.8":0.01,"15.0-15.1":0.00842,"15.2-15.3":0.00684,"15.4":0.00737,"15.5":0.00789,"15.6-15.8":0.11421,"16.0":0.01421,"16.1":0.02632,"16.2":0.01368,"16.3":0.02526,"16.4":0.00632,"16.5":0.01053,"16.6-16.7":0.15421,"17.0":0.01316,"17.1":0.01579,"17.2":0.01158,"17.3":0.01632,"17.4":0.02684,"17.5":0.05105,"17.6-17.7":0.12526,"18.0":0.02789,"18.1":0.05895,"18.2":0.03158,"18.3":0.10263,"18.4":0.05263,"18.5-18.7":3.67518,"26.0":0.2521,"26.1":0.22999},P:{"4":0.06189,"21":0.01031,"22":0.02063,"23":0.01031,"24":0.09283,"25":0.12377,"26":0.05157,"27":0.18566,"28":0.35068,"29":0.44351,_:"20 8.2 10.1 12.0 13.0 14.0 15.0 18.0","5.0-5.4":0.01031,"6.2-6.4":0.02063,"7.2-7.4":0.02063,"9.2":0.02063,"11.1-11.2":0.01031,"16.0":0.01031,"17.0":0.01031,"19.0":0.01031},I:{"0":0.01367,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":9.54944,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.03472,"11":0.03472,_:"6 7 8 9 5.5"},N:{_:"10 11"},S:{"2.5":0.00684,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00684},O:{"0":0.31482},H:{"0":1.75},L:{"0":63.26235},R:{_:"0"},M:{"0":0.15057}};
Index: node_modules/caniuse-lite/data/regions/SM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.00672,"78":0.05709,"103":0.01679,"115":0.05373,"125":0.00672,"128":0.02015,"134":0.00336,"140":0.04365,"141":0.05373,"142":0.01343,"143":0.03358,"144":0.544,"145":0.8395,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 133 135 136 137 138 139 146 147 148 3.5 3.6"},D:{"49":0.00672,"61":0.00336,"79":0.01007,"87":0.01679,"103":0.04365,"106":0.00336,"109":1.7428,"111":0.00336,"112":0.01007,"115":0.00336,"116":0.22163,"117":0.00336,"119":0.00672,"120":0.00336,"121":0.02351,"122":0.08059,"124":0.33244,"125":0.15111,"126":0.01343,"128":0.01007,"129":0.01343,"130":0.1679,"131":0.00336,"132":0.00336,"134":0.00336,"135":0.03358,"137":0.00336,"138":0.09067,"139":0.03694,"140":0.13432,"141":4.27473,"142":15.21846,"144":0.00336,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 107 108 110 113 114 118 123 127 133 136 143 145 146"},F:{"75":0.00336,"89":0.07052,"122":0.00336,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.00336,"125":0.09738,"128":0.00336,"129":0.00672,"135":0.00336,"140":0.00336,"141":0.2317,"142":3.44867,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 126 127 130 131 132 133 134 136 137 138 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.4 17.0 17.3 18.1 26.2","12.1":0.01343,"13.1":0.01007,"14.1":0.01007,"15.6":0.04365,"16.1":0.01007,"16.5":0.00336,"16.6":0.28543,"17.1":0.31565,"17.2":0.00336,"17.4":0.04701,"17.5":0.61787,"17.6":0.10746,"18.0":0.00672,"18.2":0.03358,"18.3":0.01007,"18.4":0.00336,"18.5-18.6":0.04365,"26.0":0.10074,"26.1":0.32908},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00054,"5.0-5.1":0,"6.0-6.1":0.00215,"7.0-7.1":0.00161,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00483,"10.0-10.2":0.00054,"10.3":0.00859,"11.0-11.2":0.09982,"11.3-11.4":0.00322,"12.0-12.1":0.00107,"12.2-12.5":0.02522,"13.0-13.1":0,"13.2":0.00268,"13.3":0.00107,"13.4-13.7":0.00483,"14.0-14.4":0.00805,"14.5-14.8":0.0102,"15.0-15.1":0.00859,"15.2-15.3":0.00698,"15.4":0.00751,"15.5":0.00805,"15.6-15.8":0.11646,"16.0":0.01449,"16.1":0.02683,"16.2":0.01395,"16.3":0.02576,"16.4":0.00644,"16.5":0.01073,"16.6-16.7":0.15725,"17.0":0.01342,"17.1":0.0161,"17.2":0.01181,"17.3":0.01664,"17.4":0.02737,"17.5":0.05206,"17.6-17.7":0.12773,"18.0":0.02844,"18.1":0.06011,"18.2":0.0322,"18.3":0.10465,"18.4":0.05367,"18.5-18.7":3.74759,"26.0":0.25707,"26.1":0.23453},P:{"4":0.01009,"28":0.95896,"29":50.59279,_:"20 21 22 23 24 25 26 27 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.00663,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.01993,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":11.79147},R:{_:"0"},M:{"0":0.18598}};
Index: node_modules/caniuse-lite/data/regions/SN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0124,"52":0.00413,"78":0.00413,"91":0.00413,"95":0.03307,"102":0.00413,"115":0.17776,"127":0.00413,"128":0.02067,"130":0.00413,"135":0.01654,"137":0.00413,"138":0.00827,"139":0.00413,"140":0.07028,"141":0.00413,"142":0.00827,"143":0.0248,"144":0.69451,"145":0.84334,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 131 132 133 134 136 146 147 148 3.5 3.6"},D:{"29":0.00413,"55":0.00413,"65":0.00413,"68":0.00413,"69":0.0248,"70":0.00413,"72":0.00413,"73":0.00413,"75":0.00413,"77":0.02067,"79":0.02067,"81":0.00827,"83":0.00827,"85":0.00413,"86":0.0124,"87":0.02067,"89":0.00413,"90":0.00413,"92":0.00827,"93":0.00827,"94":0.00413,"95":0.00413,"96":0.00413,"98":0.02067,"103":0.08268,"104":0.00413,"108":0.02067,"109":0.38033,"110":0.00827,"111":0.01654,"112":9.17335,"113":0.00413,"114":0.03721,"116":0.12815,"117":0.00827,"119":0.03307,"120":0.01654,"121":0.01654,"122":0.04961,"123":0.00413,"124":0.00827,"125":0.48368,"126":2.99302,"127":0.00827,"128":0.04961,"129":0.0124,"130":0.00413,"131":0.02894,"132":0.03721,"133":0.0124,"134":0.0248,"135":0.03721,"136":0.0248,"137":0.03721,"138":0.20257,"139":0.16949,"140":0.26458,"141":3.41882,"142":7.38746,"143":0.01654,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 67 71 74 76 78 80 84 88 91 97 99 100 101 102 105 106 107 115 118 144 145 146"},F:{"37":0.00413,"86":0.00413,"92":0.0124,"95":0.00827,"104":0.00413,"120":0.00413,"122":0.09922,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00413,"18":0.0124,"85":0.00413,"90":0.00413,"92":0.0248,"100":0.00413,"109":0.03721,"114":0.28111,"118":0.00413,"122":0.00413,"123":0.00413,"126":0.00413,"128":0.01654,"130":0.00827,"131":0.00413,"132":0.00827,"133":0.00827,"134":0.0124,"135":0.00413,"136":0.00413,"137":0.02067,"138":0.0248,"139":0.0248,"140":0.04134,"141":0.39273,"142":3.98518,"143":0.00413,_:"13 14 15 16 17 79 80 81 83 84 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 120 121 124 125 127 129"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.2-15.3 15.4 15.5 16.0 16.2 16.5 17.0 17.2","11.1":0.00413,"13.1":0.02894,"14.1":0.0124,"15.1":0.00413,"15.6":0.05374,"16.1":0.00827,"16.3":0.00413,"16.4":0.00413,"16.6":0.06201,"17.1":0.02894,"17.3":0.00413,"17.4":0.00827,"17.5":0.01654,"17.6":0.10335,"18.0":0.00827,"18.1":0.00827,"18.2":0.00413,"18.3":0.01654,"18.4":0.02067,"18.5-18.6":0.07441,"26.0":0.13229,"26.1":0.14469,"26.2":0.0124},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00119,"5.0-5.1":0,"6.0-6.1":0.00474,"7.0-7.1":0.00356,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01067,"10.0-10.2":0.00119,"10.3":0.01897,"11.0-11.2":0.22054,"11.3-11.4":0.00711,"12.0-12.1":0.00237,"12.2-12.5":0.05573,"13.0-13.1":0,"13.2":0.00593,"13.3":0.00237,"13.4-13.7":0.01067,"14.0-14.4":0.01779,"14.5-14.8":0.02253,"15.0-15.1":0.01897,"15.2-15.3":0.01541,"15.4":0.0166,"15.5":0.01779,"15.6-15.8":0.2573,"16.0":0.03201,"16.1":0.05929,"16.2":0.03083,"16.3":0.05691,"16.4":0.01423,"16.5":0.02371,"16.6-16.7":0.34742,"17.0":0.02964,"17.1":0.03557,"17.2":0.02609,"17.3":0.03676,"17.4":0.06047,"17.5":0.11501,"17.6-17.7":0.2822,"18.0":0.06284,"18.1":0.1328,"18.2":0.07114,"18.3":0.23122,"18.4":0.11857,"18.5-18.7":8.27989,"26.0":0.56796,"26.1":0.51816},P:{"4":0.0102,"21":0.0102,"22":0.04081,"23":0.04081,"24":0.08162,"25":0.08162,"26":0.07142,"27":0.10202,"28":0.33668,"29":1.62219,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.11223,"17.0":0.0204,"19.0":0.0102},I:{"0":0.06445,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.29335,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02934},H:{"0":0},L:{"0":50.38455},R:{_:"0"},M:{"0":0.14668}};
Index: node_modules/caniuse-lite/data/regions/SO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01514,"72":0.00303,"112":0.01211,"115":0.01817,"127":0.01514,"128":0.00908,"140":0.00606,"142":0.00908,"143":0.00606,"144":0.19682,"145":0.23316,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 134 135 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"41":0.00303,"49":0.00303,"53":0.00303,"58":0.00606,"63":0.01211,"64":0.00606,"65":0.00606,"68":0.00303,"69":0.01817,"70":0.00303,"72":0.03634,"74":0.00303,"75":0.00606,"76":0.00606,"77":0.00303,"78":0.00606,"79":0.01817,"80":0.00908,"81":0.00606,"83":0.00303,"84":0.00303,"85":0.00303,"86":0.00908,"87":0.01817,"88":0.00303,"89":0.00303,"90":0.00303,"91":0.00303,"93":0.00908,"94":0.01514,"95":0.01211,"98":0.01211,"102":0.00303,"103":0.03028,"104":0.09084,"105":0.02422,"106":0.00303,"108":0.01211,"109":0.15746,"111":0.02422,"114":0.00908,"115":0.00303,"116":0.01817,"118":0.00303,"119":0.03028,"120":0.00303,"121":0.00303,"122":0.0212,"123":0.00303,"124":0.00303,"125":0.25132,"126":0.24527,"127":0.00606,"128":0.01817,"129":0.00303,"130":0.00303,"131":0.10598,"132":0.03028,"133":0.03028,"134":0.01514,"135":0.03028,"136":0.0757,"137":0.03331,"138":0.18471,"139":0.17562,"140":0.41181,"141":3.30355,"142":8.29672,"143":0.01514,"144":0.00303,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 62 66 67 71 73 92 96 97 99 100 101 107 110 112 113 117 145 146"},F:{"76":0.00303,"77":0.00303,"92":0.04542,"93":0.01514,"95":0.00606,"113":0.00303,"117":0.00606,"120":0.00303,"122":0.1726,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00303,"15":0.00303,"16":0.00303,"17":0.00303,"18":0.03634,"84":0.00303,"89":0.00303,"90":0.05148,"92":0.03028,"100":0.00908,"104":0.00303,"107":0.00303,"109":0.00606,"111":0.0212,"112":0.00908,"114":0.39667,"120":0.00303,"122":0.00606,"126":0.00303,"127":0.00303,"130":0.00303,"131":0.00303,"132":0.00303,"133":0.00908,"135":0.00606,"136":0.01211,"137":0.00303,"138":0.01817,"139":0.00908,"140":0.11204,"141":0.25132,"142":2.30431,_:"12 13 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 105 106 108 110 113 115 116 117 118 119 121 123 124 125 128 129 134 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.3 16.4 16.5 17.0 17.2 17.3 17.4 18.0 26.2","5.1":0.00303,"9.1":0.00908,"13.1":0.0212,"14.1":0.00303,"15.6":0.01514,"16.1":0.00606,"16.6":0.01514,"17.1":0.00908,"17.5":0.00606,"17.6":0.02725,"18.1":0.00303,"18.2":0.00303,"18.3":0.03028,"18.4":0.01817,"18.5-18.6":0.04239,"26.0":0.0545,"26.1":0.04239},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00069,"5.0-5.1":0,"6.0-6.1":0.00277,"7.0-7.1":0.00208,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00624,"10.0-10.2":0.00069,"10.3":0.0111,"11.0-11.2":0.12901,"11.3-11.4":0.00416,"12.0-12.1":0.00139,"12.2-12.5":0.0326,"13.0-13.1":0,"13.2":0.00347,"13.3":0.00139,"13.4-13.7":0.00624,"14.0-14.4":0.0104,"14.5-14.8":0.01318,"15.0-15.1":0.0111,"15.2-15.3":0.00902,"15.4":0.00971,"15.5":0.0104,"15.6-15.8":0.15051,"16.0":0.01873,"16.1":0.03468,"16.2":0.01803,"16.3":0.03329,"16.4":0.00832,"16.5":0.01387,"16.6-16.7":0.20323,"17.0":0.01734,"17.1":0.02081,"17.2":0.01526,"17.3":0.0215,"17.4":0.03537,"17.5":0.06728,"17.6-17.7":0.16508,"18.0":0.03676,"18.1":0.07768,"18.2":0.04162,"18.3":0.13525,"18.4":0.06936,"18.5-18.7":4.84351,"26.0":0.33224,"26.1":0.30311},P:{"4":0.01024,"22":0.04095,"23":0.03071,"24":0.12286,"25":0.215,"26":0.2969,"27":0.48119,"28":0.77809,"29":1.22856,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.18428,"11.1-11.2":0.02048,"17.0":0.01024,"19.0":0.01024},I:{"0":0.16011,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":2.30985,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.00697,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.35552},H:{"0":0.13},L:{"0":66.74661},R:{_:"0"},M:{"0":0.1673}};
Index: node_modules/caniuse-lite/data/regions/SR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03547,"86":0.00443,"94":0.00443,"102":0.00887,"103":0.0133,"115":1.40558,"136":0.00887,"139":0.00443,"140":0.00443,"142":0.00443,"143":0.01774,"144":1.19275,"145":1.52973,"146":0.01774,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 91 92 93 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 141 147 148 3.5 3.6"},D:{"49":0.00887,"69":0.04434,"75":0.00887,"81":0.00443,"83":0.00443,"84":0.00443,"86":0.00443,"93":0.0133,"96":0.00887,"102":0.00443,"103":0.03547,"104":0.58529,"108":0.01774,"109":0.39463,"111":0.05321,"114":0.00443,"116":0.03547,"119":0.00443,"120":0.04877,"122":0.04877,"123":0.00443,"124":0.02217,"125":0.70944,"126":0.82029,"128":0.00443,"129":0.00443,"130":0.02217,"131":0.01774,"132":0.04434,"133":0.00443,"134":0.00887,"135":0.01774,"136":0.01774,"137":0.00887,"138":0.07981,"139":0.14189,"140":0.20396,"141":3.73343,"142":13.60795,"143":0.03991,"144":0.00887,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 76 77 78 79 80 85 87 88 89 90 91 92 94 95 97 98 99 100 101 105 106 107 110 112 113 115 117 118 121 127 145 146"},F:{"92":0.08868,"93":0.00443,"120":0.00443,"121":0.00443,"122":0.30151,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00443,"92":0.00443,"109":0.0133,"114":1.07746,"128":0.04877,"131":0.00443,"133":0.0266,"136":0.00443,"137":0.0133,"138":0.0133,"139":0.00443,"140":0.04877,"141":0.72718,"142":7.50233,"143":0.00443,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 129 130 132 134 135"},E:{"15":0.00443,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.1 16.2 16.3 16.4 17.0 17.2 17.3 18.0 18.1 18.2 18.4","13.1":0.26604,"14.1":0.0133,"15.6":0.11528,"16.0":0.00443,"16.5":0.00443,"16.6":0.18179,"17.1":0.00443,"17.4":0.00443,"17.5":0.00443,"17.6":0.05764,"18.3":0.08868,"18.5-18.6":0.12859,"26.0":0.10642,"26.1":0.16406,"26.2":0.00887},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00114,"5.0-5.1":0,"6.0-6.1":0.00455,"7.0-7.1":0.00341,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01023,"10.0-10.2":0.00114,"10.3":0.01819,"11.0-11.2":0.21151,"11.3-11.4":0.00682,"12.0-12.1":0.00227,"12.2-12.5":0.05345,"13.0-13.1":0,"13.2":0.00569,"13.3":0.00227,"13.4-13.7":0.01023,"14.0-14.4":0.01706,"14.5-14.8":0.02161,"15.0-15.1":0.01819,"15.2-15.3":0.01478,"15.4":0.01592,"15.5":0.01706,"15.6-15.8":0.24676,"16.0":0.0307,"16.1":0.05686,"16.2":0.02957,"16.3":0.05458,"16.4":0.01365,"16.5":0.02274,"16.6-16.7":0.33318,"17.0":0.02843,"17.1":0.03411,"17.2":0.02502,"17.3":0.03525,"17.4":0.05799,"17.5":0.1103,"17.6-17.7":0.27064,"18.0":0.06027,"18.1":0.12736,"18.2":0.06823,"18.3":0.22174,"18.4":0.11371,"18.5-18.7":7.94061,"26.0":0.54469,"26.1":0.49693},P:{"4":0.01035,"21":0.0207,"22":0.0414,"23":0.0207,"24":0.22772,"25":0.12421,"26":0.05176,"27":0.5072,"28":0.36229,"29":3.13636,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.12421,"17.0":0.01035,"19.0":0.01035},I:{"0":0.00556,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.54547,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.09462},O:{"0":0.33953},H:{"0":0},L:{"0":44.20282},R:{_:"0"},M:{"0":0.13915}};
Index: node_modules/caniuse-lite/data/regions/ST.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ST.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ST.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.0496,"49":0.02893,"113":0.02067,"115":0.02893,"116":0.02067,"140":0.02067,"144":0.14466,"145":0.15292,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 141 142 143 146 147 148 3.5 3.6"},D:{"43":0.00827,"69":0.02067,"72":0.00827,"73":0.0496,"79":0.04133,"81":0.02893,"83":0.12399,"94":0.10333,"95":0.00827,"98":0.0496,"109":0.41743,"111":0.00827,"112":0.0496,"113":0.08266,"114":0.65301,"115":0.27691,"116":0.04133,"117":0.02893,"120":0.04133,"121":0.08266,"122":0.04133,"125":0.66541,"126":0.15292,"127":0.04133,"131":0.10333,"132":0.02067,"137":0.09093,"138":0.20252,"139":0.15292,"140":0.25625,"141":2.65339,"142":5.76967,"143":0.02893,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 74 75 76 77 78 80 84 85 86 87 88 89 90 91 92 93 96 97 99 100 101 102 103 104 105 106 107 108 110 118 119 123 124 128 129 130 133 134 135 136 144 145 146"},F:{"92":0.04133,"95":0.02067,"121":0.04133,"122":0.8762,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.0496,"18":0.062,"92":0.11159,"114":0.74394,"137":0.02067,"138":0.02067,"140":0.00827,"141":0.25625,"142":2.79804,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.5 18.0 18.1 18.2 18.3 18.4 26.2","11.1":0.02067,"17.4":0.02067,"17.6":0.10333,"18.5-18.6":0.00827,"26.0":0.29758,"26.1":0.00827},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00029,"5.0-5.1":0,"6.0-6.1":0.00116,"7.0-7.1":0.00087,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00261,"10.0-10.2":0.00029,"10.3":0.00465,"11.0-11.2":0.05402,"11.3-11.4":0.00174,"12.0-12.1":0.00058,"12.2-12.5":0.01365,"13.0-13.1":0,"13.2":0.00145,"13.3":0.00058,"13.4-13.7":0.00261,"14.0-14.4":0.00436,"14.5-14.8":0.00552,"15.0-15.1":0.00465,"15.2-15.3":0.00378,"15.4":0.00407,"15.5":0.00436,"15.6-15.8":0.06302,"16.0":0.00784,"16.1":0.01452,"16.2":0.00755,"16.3":0.01394,"16.4":0.00348,"16.5":0.00581,"16.6-16.7":0.08509,"17.0":0.00726,"17.1":0.00871,"17.2":0.00639,"17.3":0.009,"17.4":0.01481,"17.5":0.02817,"17.6-17.7":0.06912,"18.0":0.01539,"18.1":0.03253,"18.2":0.01742,"18.3":0.05663,"18.4":0.02904,"18.5-18.7":2.02798,"26.0":0.13911,"26.1":0.12691},P:{"4":0.01029,"24":0.03088,"25":0.04117,"27":0.31906,"28":0.21614,"29":1.03953,_:"20 21 22 23 26 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01029,"6.2-6.4":0.07205,"7.2-7.4":0.06175},I:{"0":0.10546,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":1.103,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.65124},H:{"0":0},L:{"0":68.39473},R:{_:"0"},M:{"0":0.18774}};
Index: node_modules/caniuse-lite/data/regions/SV.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00777,"52":0.00389,"115":0.10492,"120":0.04275,"122":0.00777,"123":0.00777,"128":0.01943,"132":0.00389,"136":0.00777,"139":0.00777,"140":0.04275,"141":0.01554,"142":0.00777,"143":0.00777,"144":0.55181,"145":0.66062,"146":0.00389,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 124 125 126 127 129 130 131 133 134 135 137 138 147 148 3.5 3.6"},D:{"64":0.01166,"65":0.00389,"69":0.00777,"79":0.00777,"83":0.00389,"85":0.00389,"87":0.03497,"93":0.00389,"97":0.01166,"101":0.00389,"102":0.00389,"103":0.00777,"106":0.00777,"107":0.00389,"108":0.01166,"109":0.85881,"110":0.00389,"111":0.01554,"112":5.10232,"114":0.00389,"115":0.00389,"116":0.01943,"119":0.06218,"120":0.01943,"121":0.00389,"122":0.03886,"123":0.00777,"124":0.01554,"125":0.19041,"126":0.69171,"127":0.01554,"128":0.0272,"129":0.02332,"130":0.00389,"131":0.07383,"132":0.03497,"133":0.02332,"134":0.03109,"135":0.06995,"136":0.02332,"137":0.0544,"138":0.29145,"139":0.79274,"140":0.18653,"141":3.11269,"142":13.72147,"143":0.01166,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 66 67 68 70 71 72 73 74 75 76 77 78 80 81 84 86 88 89 90 91 92 94 95 96 98 99 100 104 105 113 117 118 144 145 146"},F:{"67":0.00389,"92":0.0272,"93":0.00389,"95":0.00777,"120":0.00389,"122":0.31088,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.0272,"92":0.00777,"109":0.00777,"112":0.00389,"114":0.09715,"115":0.11269,"122":0.00389,"124":0.01166,"127":0.00389,"128":0.00389,"131":0.00389,"132":0.00777,"133":0.00777,"134":0.00777,"135":0.00777,"136":0.00777,"137":0.00389,"138":0.01943,"139":0.0272,"140":0.10104,"141":0.27591,"142":3.17875,"143":0.00777,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 116 117 118 119 120 121 123 125 126 129 130"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.5 17.0 17.2 17.3 18.2","5.1":0.00389,"12.1":0.00389,"14.1":0.00389,"15.6":0.01943,"16.3":0.00389,"16.4":0.00389,"16.6":0.03109,"17.1":0.01166,"17.4":0.00777,"17.5":0.01554,"17.6":0.04275,"18.0":0.00777,"18.1":0.00389,"18.3":0.00389,"18.4":0.00777,"18.5-18.6":0.04663,"26.0":0.3614,"26.1":0.25259,"26.2":0.00777},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00159,"5.0-5.1":0,"6.0-6.1":0.00638,"7.0-7.1":0.00478,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01435,"10.0-10.2":0.00159,"10.3":0.0255,"11.0-11.2":0.29647,"11.3-11.4":0.00956,"12.0-12.1":0.00319,"12.2-12.5":0.07491,"13.0-13.1":0,"13.2":0.00797,"13.3":0.00319,"13.4-13.7":0.01435,"14.0-14.4":0.02391,"14.5-14.8":0.03028,"15.0-15.1":0.0255,"15.2-15.3":0.02072,"15.4":0.02231,"15.5":0.02391,"15.6-15.8":0.34588,"16.0":0.04304,"16.1":0.0797,"16.2":0.04144,"16.3":0.07651,"16.4":0.01913,"16.5":0.03188,"16.6-16.7":0.46702,"17.0":0.03985,"17.1":0.04782,"17.2":0.03507,"17.3":0.04941,"17.4":0.08129,"17.5":0.15461,"17.6-17.7":0.37935,"18.0":0.08448,"18.1":0.17852,"18.2":0.09564,"18.3":0.31081,"18.4":0.15939,"18.5-18.7":11.13034,"26.0":0.76349,"26.1":0.69654},P:{"4":0.01018,"20":0.01018,"21":0.01018,"22":0.01018,"24":0.01018,"25":0.01018,"26":0.01018,"27":0.03053,"28":0.17301,"29":2.82916,_:"23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 16.0 17.0 18.0 19.0","7.2-7.4":0.03053,"13.0":0.01018,"15.0":0.01018},I:{"0":0.05495,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.17731,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01834},H:{"0":0},L:{"0":45.48804},R:{_:"0"},M:{"0":0.31793}};
Index: node_modules/caniuse-lite/data/regions/SY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01307,"12":0.00327,"43":0.00327,"47":0.00327,"48":0.00327,"52":0.00653,"58":0.00327,"63":0.00327,"72":0.00327,"78":0.00653,"115":0.18949,"120":0.00327,"127":0.00653,"134":0.00327,"136":0.00327,"138":0.0098,"139":0.00327,"140":0.0098,"142":0.0098,"143":0.04574,"144":0.21562,"145":0.18949,_:"2 3 4 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 56 57 59 60 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 122 123 124 125 126 128 129 130 131 132 133 135 137 141 146 147 148 3.5 3.6"},D:{"38":0.00327,"47":0.00327,"53":0.00327,"55":0.00327,"56":0.00327,"58":0.00653,"60":0.00327,"62":0.00327,"63":0.00327,"64":0.00327,"65":0.00327,"66":0.00653,"68":0.01634,"69":0.0196,"70":0.01634,"71":0.01307,"72":0.00327,"73":0.01307,"74":0.00653,"75":0.0098,"76":0.00653,"78":0.00653,"79":0.04247,"80":0.00653,"81":0.0098,"83":0.0294,"84":0.00327,"85":0.00327,"86":0.01307,"87":0.05554,"88":0.00653,"89":0.00653,"90":0.00327,"91":0.00653,"92":0.00327,"93":0.00327,"94":0.0098,"95":0.00327,"96":0.00327,"97":0.00653,"98":0.07187,"99":0.00327,"100":0.00327,"101":0.00653,"102":0.0196,"103":0.02287,"104":0.00653,"105":0.00653,"106":0.0098,"107":0.01307,"108":0.05227,"109":0.70894,"110":0.00653,"111":0.0196,"112":7.58271,"113":0.0098,"114":0.01634,"115":0.00327,"116":0.0196,"117":0.0098,"118":0.0098,"119":0.02287,"120":0.06534,"121":0.01634,"122":0.04901,"123":0.02614,"124":0.01634,"125":0.13395,"126":1.60083,"127":0.0196,"128":0.0098,"129":0.01307,"130":0.0294,"131":0.10128,"132":0.03594,"133":0.0294,"134":0.03594,"135":0.03267,"136":0.05881,"137":0.11435,"138":0.12088,"139":0.10781,"140":0.21236,"141":1.18919,"142":2.70181,"143":0.01307,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 49 50 51 52 54 57 59 61 67 77 144 145 146"},F:{"73":0.00653,"75":0.00327,"79":0.00653,"85":0.00327,"90":0.00653,"91":0.01307,"92":0.11435,"93":0.01307,"95":0.0294,"114":0.00327,"120":0.00327,"122":0.04901,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 76 77 78 80 81 82 83 84 86 87 88 89 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00327,"18":0.00327,"90":0.00327,"92":0.02614,"100":0.00327,"109":0.02287,"114":0.39204,"122":0.00653,"131":0.00327,"134":0.00327,"135":0.00327,"137":0.00327,"138":0.00653,"139":0.00653,"140":0.0196,"141":0.07187,"142":0.57173,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 132 133 136 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.5 17.0 17.2 17.3 18.0 18.1 18.2 26.2","5.1":0.11108,"14.1":0.00327,"15.6":0.00653,"16.3":0.00327,"16.4":0.00327,"16.6":0.00653,"17.1":0.00327,"17.4":0.00327,"17.5":0.01307,"17.6":0.0098,"18.3":0.00653,"18.4":0.00327,"18.5-18.6":0.0098,"26.0":0.00653,"26.1":0.0098},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00022,"5.0-5.1":0,"6.0-6.1":0.00089,"7.0-7.1":0.00067,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00201,"10.0-10.2":0.00022,"10.3":0.00358,"11.0-11.2":0.04158,"11.3-11.4":0.00134,"12.0-12.1":0.00045,"12.2-12.5":0.01051,"13.0-13.1":0,"13.2":0.00112,"13.3":0.00045,"13.4-13.7":0.00201,"14.0-14.4":0.00335,"14.5-14.8":0.00425,"15.0-15.1":0.00358,"15.2-15.3":0.00291,"15.4":0.00313,"15.5":0.00335,"15.6-15.8":0.04851,"16.0":0.00604,"16.1":0.01118,"16.2":0.00581,"16.3":0.01073,"16.4":0.00268,"16.5":0.00447,"16.6-16.7":0.06551,"17.0":0.00559,"17.1":0.00671,"17.2":0.00492,"17.3":0.00693,"17.4":0.0114,"17.5":0.02169,"17.6-17.7":0.05321,"18.0":0.01185,"18.1":0.02504,"18.2":0.01341,"18.3":0.0436,"18.4":0.02236,"18.5-18.7":1.56118,"26.0":0.10709,"26.1":0.0977},P:{"4":0.53404,"20":0.04031,"21":0.05038,"22":0.09069,"23":0.07053,"24":0.07053,"25":0.29221,"26":0.1713,"27":0.33252,"28":0.7658,"29":0.68519,"5.0-5.4":0.02015,"6.2-6.4":0.20153,"7.2-7.4":0.30229,"8.2":0.02015,"9.2":0.06046,"10.1":0.02015,"11.1-11.2":0.04031,"12.0":0.01008,"13.0":0.09069,"14.0":0.06046,"15.0":0.03023,"16.0":0.04031,"17.0":0.08061,"18.0":0.02015,"19.0":0.02015},I:{"0":0.06725,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.99377,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03594,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.54545},H:{"0":0.05},L:{"0":73.24863},R:{_:"0"},M:{"0":0.06061}};
Index: node_modules/caniuse-lite/data/regions/SZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/SZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/SZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00252,"78":0.00755,"111":0.02266,"112":0.00252,"113":0.01259,"115":0.08309,"126":0.00252,"127":0.00252,"133":0.00252,"139":0.00252,"140":0.00755,"141":0.00252,"143":0.00504,"144":0.21907,"145":0.25432,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 114 116 117 118 119 120 121 122 123 124 125 128 129 130 131 132 134 135 136 137 138 142 146 147 148 3.5 3.6"},D:{"56":0.00755,"61":0.00252,"68":0.01511,"69":0.00755,"70":0.01763,"71":0.00755,"73":0.00252,"74":0.00252,"75":0.00252,"78":0.00504,"80":0.00504,"83":0.00755,"86":0.01763,"87":0.00504,"88":0.00252,"90":0.00252,"93":0.00252,"95":0.00252,"99":0.00252,"100":0.01511,"101":0.01007,"102":0.00504,"103":0.02014,"104":0.00755,"106":0.00252,"107":0.00252,"109":0.18381,"111":0.03273,"112":0.02518,"113":0.00504,"114":0.01259,"115":0.00755,"116":0.01007,"117":0.00252,"118":0.00252,"119":0.01763,"120":0.00755,"121":0.00252,"122":0.01511,"123":0.00755,"124":0.00504,"125":0.08058,"126":0.04281,"127":0.00504,"128":0.04281,"129":0.00504,"130":0.00252,"131":0.0277,"132":0.01007,"133":0.00252,"134":0.00755,"135":0.01259,"136":0.06547,"137":0.06799,"138":0.59677,"139":0.13849,"140":0.24676,"141":1.96656,"142":4.30578,"143":0.00252,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 62 63 64 65 66 67 72 76 77 79 81 84 85 89 91 92 94 96 97 98 105 108 110 144 145 146"},F:{"40":0.00504,"42":0.00252,"45":0.00755,"73":0.00755,"79":0.00252,"85":0.00252,"87":0.00252,"88":0.00504,"89":0.00755,"90":0.03273,"91":0.00504,"92":0.08309,"95":0.01763,"117":0.00755,"118":0.00504,"119":0.00252,"120":0.00504,"122":0.48094,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 82 83 84 86 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00755,"15":0.00252,"16":0.00755,"17":0.00504,"18":0.01763,"83":0.00252,"84":0.00252,"90":0.00252,"92":0.04029,"108":0.00252,"109":0.02518,"111":0.00252,"114":0.03273,"118":0.00252,"119":0.00504,"120":0.00252,"122":0.00755,"124":0.00755,"126":0.00252,"127":0.00252,"129":0.00252,"130":0.00252,"131":0.00252,"132":0.00252,"133":0.00504,"134":0.01259,"135":0.00252,"136":0.00504,"137":0.00504,"138":0.10072,"139":0.04029,"140":0.04784,"141":0.27446,"142":2.34678,"143":0.00504,_:"13 14 79 80 81 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 112 113 115 116 117 121 123 125 128"},E:{"14":0.00252,"15":0.00252,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.3 17.4 18.1 26.2","11.1":0.00755,"13.1":0.00504,"14.1":0.00252,"15.2-15.3":0.00252,"15.4":0.00252,"15.6":0.04029,"16.6":0.0554,"17.5":0.00504,"17.6":0.03022,"18.0":0.04281,"18.2":0.00504,"18.3":0.00252,"18.4":0.04784,"18.5-18.6":0.0277,"26.0":0.08813,"26.1":0.0705},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00045,"5.0-5.1":0,"6.0-6.1":0.00182,"7.0-7.1":0.00136,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00409,"10.0-10.2":0.00045,"10.3":0.00728,"11.0-11.2":0.08461,"11.3-11.4":0.00273,"12.0-12.1":0.00091,"12.2-12.5":0.02138,"13.0-13.1":0,"13.2":0.00227,"13.3":0.00091,"13.4-13.7":0.00409,"14.0-14.4":0.00682,"14.5-14.8":0.00864,"15.0-15.1":0.00728,"15.2-15.3":0.00591,"15.4":0.00637,"15.5":0.00682,"15.6-15.8":0.09871,"16.0":0.01228,"16.1":0.02275,"16.2":0.01183,"16.3":0.02184,"16.4":0.00546,"16.5":0.0091,"16.6-16.7":0.13329,"17.0":0.01137,"17.1":0.01365,"17.2":0.01001,"17.3":0.0141,"17.4":0.0232,"17.5":0.04413,"17.6-17.7":0.10827,"18.0":0.02411,"18.1":0.05095,"18.2":0.02729,"18.3":0.08871,"18.4":0.04549,"18.5-18.7":3.17661,"26.0":0.2179,"26.1":0.19879},P:{"4":0.10185,"20":0.01018,"21":0.02037,"22":0.02037,"23":0.02037,"24":0.25462,"25":0.09166,"26":0.11203,"27":0.20369,"28":1.63974,"29":0.89626,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 18.0","7.2-7.4":1.17125,"14.0":0.01018,"17.0":0.04074,"19.0":0.03055},I:{"0":0.02241,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":9.04286,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.02993,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.09727},O:{"0":0.20201},H:{"0":0.16},L:{"0":66.47701},R:{_:"0"},M:{"0":0.42647}};
Index: node_modules/caniuse-lite/data/regions/TC.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01828,"115":0.09597,"138":0.00457,"144":1.30245,"145":0.35646,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"69":0.02742,"79":0.21936,"93":0.00457,"95":0.01371,"103":0.2285,"109":0.62609,"111":0.03199,"119":0.01828,"122":0.03199,"125":0.51641,"126":0.13253,"128":0.01371,"129":0.00457,"131":0.00457,"132":0.01371,"133":0.00457,"134":0.53012,"135":0.00914,"137":0.07769,"138":0.38388,"139":0.15538,"140":0.25592,"141":5.59825,"142":13.10219,"143":0.21022,"144":0.0457,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 104 105 106 107 108 110 112 113 114 115 116 117 118 120 121 123 124 127 130 136 145 146"},F:{"15":0.00457,"92":0.00457,"122":0.05484,_:"9 11 12 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"83":0.0457,"92":0.00457,"109":0.01371,"114":0.00914,"120":0.00457,"123":0.02742,"132":0.01828,"135":0.00914,"137":0.00457,"138":0.00914,"139":0.00914,"140":0.15081,"141":1.39842,"142":10.52928,_:"12 13 14 15 16 17 18 79 80 81 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 122 124 125 126 127 128 129 130 131 133 134 136 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 16.4 17.2 26.2","14.1":0.00457,"15.4":0.00457,"15.5":0.00914,"15.6":0.26049,"16.0":0.01828,"16.1":0.00457,"16.2":0.02285,"16.3":0.01828,"16.5":0.10511,"16.6":0.34732,"17.0":0.01828,"17.1":0.06855,"17.3":0.01371,"17.4":0.02285,"17.5":0.03656,"17.6":0.16909,"18.0":0.00457,"18.1":0.00457,"18.2":0.00457,"18.3":0.1828,"18.4":0.03656,"18.5-18.6":0.32447,"26.0":0.40673,"26.1":0.457},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00285,"5.0-5.1":0,"6.0-6.1":0.01139,"7.0-7.1":0.00854,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02563,"10.0-10.2":0.00285,"10.3":0.04557,"11.0-11.2":0.52973,"11.3-11.4":0.01709,"12.0-12.1":0.0057,"12.2-12.5":0.13386,"13.0-13.1":0,"13.2":0.01424,"13.3":0.0057,"13.4-13.7":0.02563,"14.0-14.4":0.04272,"14.5-14.8":0.05411,"15.0-15.1":0.04557,"15.2-15.3":0.03702,"15.4":0.03987,"15.5":0.04272,"15.6-15.8":0.61802,"16.0":0.0769,"16.1":0.1424,"16.2":0.07405,"16.3":0.13671,"16.4":0.03418,"16.5":0.05696,"16.6-16.7":0.83447,"17.0":0.0712,"17.1":0.08544,"17.2":0.06266,"17.3":0.08829,"17.4":0.14525,"17.5":0.27626,"17.6-17.7":0.67783,"18.0":0.15095,"18.1":0.31898,"18.2":0.17088,"18.3":0.55537,"18.4":0.2848,"18.5-18.7":19.88783,"26.0":1.36421,"26.1":1.24459},P:{"4":0.01093,"21":0.01093,"23":0.02186,"24":0.03279,"25":0.02186,"26":0.02186,"28":0.15304,"29":1.24619,_:"20 22 27 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.14211},I:{"0":0.09218,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":0.59187,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":26.43178},R:{_:"0"},M:{"0":0.20091}};
Index: node_modules/caniuse-lite/data/regions/TD.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TD.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"60":0.00425,"72":0.00213,"75":0.00213,"78":0.00638,"84":0.00213,"98":0.00213,"99":0.00213,"103":0.00213,"112":0.00213,"115":0.01275,"119":0.00213,"125":0.00213,"127":0.0085,"128":0.00425,"133":0.00213,"136":0.00213,"138":0.00425,"139":0.00213,"140":0.017,"141":0.00213,"142":0.0085,"143":0.01275,"144":0.18063,"145":0.204,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 76 77 79 80 81 82 83 85 86 87 88 89 90 91 92 93 94 95 96 97 100 101 102 104 105 106 107 108 109 110 111 113 114 116 117 118 120 121 122 123 124 126 129 130 131 132 134 135 137 146 147 148 3.5 3.6"},D:{"46":0.00213,"51":0.00213,"56":0.00213,"57":0.00213,"58":0.00425,"67":0.02125,"70":0.0085,"71":0.00425,"72":0.00638,"79":0.00425,"80":0.02975,"86":0.00638,"87":0.00213,"91":0.20825,"94":0.00425,"99":0.00213,"100":0.00213,"103":0.00425,"108":0.02125,"109":0.08925,"110":0.085,"114":0.00425,"115":0.00425,"116":0.04038,"118":0.00213,"119":0.00425,"120":0.00425,"122":0.01063,"125":0.02975,"126":0.0255,"127":0.00425,"128":0.00425,"129":0.00213,"130":0.017,"131":0.068,"132":0.00213,"134":0.02975,"135":0.02338,"136":0.01063,"137":0.01275,"138":0.05738,"139":0.08713,"140":0.07863,"141":0.93713,"142":1.83813,"143":0.00425,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 52 53 54 55 59 60 61 62 63 64 65 66 68 69 73 74 75 76 77 78 81 83 84 85 88 89 90 92 93 95 96 97 98 101 102 104 105 106 107 111 112 113 117 121 123 124 133 144 145 146"},F:{"42":0.00213,"47":0.00213,"48":0.00213,"52":0.01063,"79":0.00425,"88":0.00213,"91":0.00213,"92":0.21675,"93":0.00638,"95":0.00213,"117":0.00213,"120":0.00638,"122":0.06163,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00213,"13":0.00213,"17":0.01063,"18":0.02338,"84":0.00213,"85":0.00213,"89":0.01275,"90":0.00213,"92":0.068,"95":0.00213,"100":0.0085,"102":0.00213,"106":0.00213,"108":0.00213,"114":0.02338,"120":0.00425,"122":0.00638,"125":0.00213,"128":0.00213,"130":0.00425,"131":0.00425,"132":0.00213,"133":0.0085,"134":0.00638,"135":0.00213,"136":0.01063,"137":0.00425,"138":0.00425,"139":0.01063,"140":0.02125,"141":0.12538,"142":0.89888,_:"14 15 16 79 80 81 83 86 87 88 91 93 94 96 97 98 99 101 103 104 105 107 109 110 111 112 113 115 116 117 118 119 121 123 124 126 127 129 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.3 17.4 17.5 18.0 18.1 18.4","5.1":0.01488,"13.1":0.00213,"14.1":0.00213,"15.6":0.00213,"16.6":0.01063,"17.6":0.01063,"18.2":0.00425,"18.3":0.00213,"18.5-18.6":0.0085,"26.0":0.102,"26.1":0.01913,"26.2":0.00638},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00022,"5.0-5.1":0,"6.0-6.1":0.00089,"7.0-7.1":0.00067,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00201,"10.0-10.2":0.00022,"10.3":0.00358,"11.0-11.2":0.0416,"11.3-11.4":0.00134,"12.0-12.1":0.00045,"12.2-12.5":0.01051,"13.0-13.1":0,"13.2":0.00112,"13.3":0.00045,"13.4-13.7":0.00201,"14.0-14.4":0.00335,"14.5-14.8":0.00425,"15.0-15.1":0.00358,"15.2-15.3":0.00291,"15.4":0.00313,"15.5":0.00335,"15.6-15.8":0.04853,"16.0":0.00604,"16.1":0.01118,"16.2":0.00581,"16.3":0.01074,"16.4":0.00268,"16.5":0.00447,"16.6-16.7":0.06553,"17.0":0.00559,"17.1":0.00671,"17.2":0.00492,"17.3":0.00693,"17.4":0.01141,"17.5":0.02169,"17.6-17.7":0.05323,"18.0":0.01185,"18.1":0.02505,"18.2":0.01342,"18.3":0.04361,"18.4":0.02237,"18.5-18.7":1.56175,"26.0":0.10713,"26.1":0.09774},P:{"20":0.01006,"22":0.03017,"23":0.06034,"24":0.41235,"25":0.30172,"26":0.08046,"27":0.5632,"28":1.20687,"29":1.4583,_:"4 21 5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0 18.0","7.2-7.4":0.01006,"9.2":0.01006,"14.0":0.01006,"19.0":0.02011},I:{"0":0.37747,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00019},K:{"0":2.082,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01275,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.02363},O:{"0":0.14175},H:{"0":0.06},L:{"0":82.87863},R:{_:"0"},M:{"0":0.23625}};
Index: node_modules/caniuse-lite/data/regions/TG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.02552,"45":0.00425,"52":0.00425,"53":0.00425,"64":0.00425,"68":0.00425,"72":0.01276,"78":0.01276,"79":0.00425,"84":0.01276,"90":0.00425,"92":0.00425,"106":0.00425,"112":0.01701,"114":0.00425,"115":0.40829,"121":0.00851,"124":0.00425,"125":0.01276,"127":0.05104,"128":0.00425,"132":0.00425,"134":0.00425,"136":0.00851,"138":0.00425,"139":0.00425,"140":0.0723,"141":0.02127,"142":0.02127,"143":0.03828,"144":1.08877,"145":1.21211,"146":0.00851,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 54 55 56 57 58 59 60 61 62 63 65 66 67 69 70 71 73 74 75 76 77 80 81 82 83 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 109 110 111 113 116 117 118 119 120 122 123 126 129 130 131 133 135 137 147 148 3.5 3.6"},D:{"32":0.00425,"43":0.00425,"47":0.00425,"49":0.00425,"50":0.00425,"51":0.00851,"52":0.00425,"54":0.00425,"58":0.00425,"64":0.00425,"65":0.00425,"66":0.00425,"69":0.02977,"70":0.00851,"71":0.00425,"72":0.00425,"73":0.02977,"74":0.00425,"75":0.01276,"76":0.02977,"77":0.00851,"79":0.00851,"80":0.00425,"81":0.00425,"83":0.01276,"84":0.00425,"85":0.00425,"86":0.01276,"87":0.02552,"88":0.00425,"89":0.02552,"90":0.00425,"91":0.00425,"92":0.00425,"93":0.02127,"95":0.00425,"98":0.08506,"99":0.00425,"100":0.00425,"102":0.00851,"103":0.04253,"104":0.22966,"106":0.01701,"108":0.00851,"109":1.25464,"110":0.00425,"111":0.03402,"112":11.32574,"113":0.00425,"114":0.05104,"115":0.01276,"116":0.03828,"117":0.00425,"118":0.00425,"119":0.05529,"120":0.02127,"121":0.00425,"122":0.05529,"123":0.00851,"124":0.05104,"125":0.2807,"126":1.81603,"127":0.00851,"128":0.02127,"129":0.00425,"130":0.03402,"131":0.10207,"132":0.05529,"133":0.00851,"134":0.02552,"135":0.04678,"136":0.03828,"137":0.06805,"138":0.2892,"139":0.10633,"140":0.26369,"141":2.44973,"142":7.33643,"143":0.02977,"144":0.00425,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 41 42 44 45 46 48 53 55 56 57 59 60 61 62 63 67 68 78 94 96 97 101 105 107 145 146"},F:{"37":0.00425,"40":0.00425,"79":0.00425,"92":0.02977,"95":0.02977,"119":0.00425,"120":0.01276,"122":0.35725,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00425,"13":0.00425,"14":0.00425,"17":0.00851,"18":0.02127,"84":0.00425,"85":0.00425,"89":0.00425,"90":0.01276,"92":0.10207,"100":0.00425,"109":0.01701,"113":0.00425,"114":0.29771,"122":0.00851,"126":0.00425,"130":0.00851,"131":0.00425,"133":0.00851,"134":0.00425,"136":0.01276,"137":0.00425,"138":0.03828,"139":0.02552,"140":0.03402,"141":0.29771,"142":2.68364,"143":0.01276,_:"15 16 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 119 120 121 123 124 125 127 128 129 132 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 18.0 18.1 18.2 26.2","5.1":0.01276,"12.1":0.00851,"13.1":0.00851,"14.1":0.00425,"15.5":0.00425,"15.6":0.04253,"16.6":0.03828,"17.1":0.03402,"17.4":0.00851,"17.5":0.00425,"17.6":0.10633,"18.3":0.00425,"18.4":0.00851,"18.5-18.6":0.02127,"26.0":0.05104,"26.1":0.06805},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00058,"5.0-5.1":0,"6.0-6.1":0.00232,"7.0-7.1":0.00174,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00522,"10.0-10.2":0.00058,"10.3":0.00929,"11.0-11.2":0.10796,"11.3-11.4":0.00348,"12.0-12.1":0.00116,"12.2-12.5":0.02728,"13.0-13.1":0,"13.2":0.0029,"13.3":0.00116,"13.4-13.7":0.00522,"14.0-14.4":0.00871,"14.5-14.8":0.01103,"15.0-15.1":0.00929,"15.2-15.3":0.00755,"15.4":0.00813,"15.5":0.00871,"15.6-15.8":0.12596,"16.0":0.01567,"16.1":0.02902,"16.2":0.01509,"16.3":0.02786,"16.4":0.00697,"16.5":0.01161,"16.6-16.7":0.17007,"17.0":0.01451,"17.1":0.01741,"17.2":0.01277,"17.3":0.01799,"17.4":0.0296,"17.5":0.0563,"17.6-17.7":0.13815,"18.0":0.03076,"18.1":0.06501,"18.2":0.03483,"18.3":0.11319,"18.4":0.05804,"18.5-18.7":4.05326,"26.0":0.27803,"26.1":0.25366},P:{"4":0.01117,"25":0.03351,"26":0.01117,"27":0.02234,"28":0.1787,"29":0.29039,_:"20 21 22 23 24 5.0-5.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","6.2-6.4":0.01117,"7.2-7.4":0.02234,"9.2":0.01117},I:{"0":0.132,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":1.94511,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0723,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00575},O:{"0":0.12643},H:{"0":0.71},L:{"0":54.16111},R:{_:"0"},M:{"0":0.06896}};
Index: node_modules/caniuse-lite/data/regions/TH.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TH.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.0028,"78":0.0056,"115":0.05876,"135":0.0028,"140":0.00839,"143":0.0056,"144":0.20705,"145":0.30218,"146":0.0028,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 136 137 138 139 141 142 147 148 3.5 3.6"},D:{"49":0.0028,"53":0.0028,"58":0.0056,"65":0.0028,"67":0.0056,"70":0.0028,"73":0.0028,"74":0.0028,"79":0.03917,"81":0.0028,"83":0.0028,"85":0.0028,"87":0.03917,"88":0.0028,"89":0.0028,"90":0.0028,"91":0.0056,"93":0.06715,"94":0.0028,"95":0.0028,"98":0.0028,"99":0.0028,"101":0.00839,"102":0.01399,"103":0.00839,"104":0.03917,"105":0.05316,"106":0.0028,"107":0.0028,"108":0.02238,"109":0.53442,"110":0.0028,"111":0.0056,"112":0.0028,"113":0.00839,"114":0.01959,"115":0.0028,"116":0.01399,"117":0.0028,"118":0.0028,"119":0.01679,"120":0.01959,"121":0.00839,"122":0.01959,"123":0.01399,"124":0.01959,"125":0.01959,"126":0.01119,"127":0.01399,"128":0.02518,"129":0.01119,"130":0.01119,"131":0.04197,"132":0.01959,"133":0.01959,"134":0.01679,"135":0.02518,"136":0.02518,"137":0.02798,"138":0.12311,"139":0.04477,"140":0.12031,"141":1.86906,"142":7.90435,"143":0.02238,"144":0.00839,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 62 63 64 66 68 69 71 72 75 76 77 78 80 84 86 92 96 97 100 145 146"},F:{"46":0.0028,"90":0.0028,"92":0.05596,"93":0.00839,"95":0.0056,"122":0.04197,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0028,"89":0.0028,"92":0.0028,"108":0.0028,"109":0.0056,"114":0.00839,"122":0.0028,"126":0.0028,"129":0.0028,"130":0.0028,"131":0.0056,"132":0.0028,"133":0.0028,"134":0.0028,"135":0.0028,"136":0.0028,"137":0.0056,"138":0.0056,"139":0.0056,"140":0.01119,"141":0.12031,"142":1.34304,"143":0.0028,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 115 116 117 118 119 120 121 123 124 125 127 128"},E:{"13":0.01119,"14":0.0028,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1","13.1":0.0056,"14.1":0.00839,"15.2-15.3":0.0028,"15.4":0.0028,"15.5":0.0056,"15.6":0.04197,"16.0":0.0028,"16.1":0.01119,"16.2":0.0056,"16.3":0.01959,"16.4":0.0028,"16.5":0.0056,"16.6":0.06156,"17.0":0.0028,"17.1":0.05876,"17.2":0.0056,"17.3":0.0056,"17.4":0.01119,"17.5":0.01959,"17.6":0.03917,"18.0":0.00839,"18.1":0.01399,"18.2":0.0056,"18.3":0.03078,"18.4":0.01119,"18.5-18.6":0.08674,"26.0":0.1371,"26.1":0.1399,"26.2":0.0056},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00165,"5.0-5.1":0,"6.0-6.1":0.00658,"7.0-7.1":0.00494,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01481,"10.0-10.2":0.00165,"10.3":0.02632,"11.0-11.2":0.306,"11.3-11.4":0.00987,"12.0-12.1":0.00329,"12.2-12.5":0.07732,"13.0-13.1":0,"13.2":0.00823,"13.3":0.00329,"13.4-13.7":0.01481,"14.0-14.4":0.02468,"14.5-14.8":0.03126,"15.0-15.1":0.02632,"15.2-15.3":0.02139,"15.4":0.02303,"15.5":0.02468,"15.6-15.8":0.357,"16.0":0.04442,"16.1":0.08226,"16.2":0.04277,"16.3":0.07897,"16.4":0.01974,"16.5":0.0329,"16.6-16.7":0.48203,"17.0":0.04113,"17.1":0.04935,"17.2":0.03619,"17.3":0.051,"17.4":0.0839,"17.5":0.15958,"17.6-17.7":0.39155,"18.0":0.08719,"18.1":0.18426,"18.2":0.09871,"18.3":0.32081,"18.4":0.16452,"18.5-18.7":11.48819,"26.0":0.78803,"26.1":0.71894},P:{"4":0.12627,"21":0.02105,"22":0.02105,"23":0.03157,"24":0.04209,"25":0.06314,"26":0.06314,"27":0.13679,"28":0.49456,"29":2.52543,_:"20 6.2-6.4 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","5.0-5.4":0.01052,"7.2-7.4":0.05261,"8.2":0.01052,"9.2":0.01052,"17.0":0.01052,"19.0":0.01052},I:{"0":0.01439,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.33854,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02798,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.16567},H:{"0":0},L:{"0":62.79837},R:{_:"0"},M:{"0":0.2449}};
Index: node_modules/caniuse-lite/data/regions/TJ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TJ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TJ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01093,"52":0.00364,"69":0.00364,"111":0.00729,"115":0.07288,"123":0.00364,"125":0.00364,"126":0.00364,"127":0.00364,"128":0.01822,"134":0.00364,"136":0.00729,"140":0.01822,"142":0.01093,"143":0.09474,"144":0.35347,"145":0.30245,"146":0.00729,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 116 117 118 119 120 121 122 124 129 130 131 132 133 135 137 138 139 141 147 148 3.5 3.6"},D:{"32":0.00364,"46":0.00729,"49":0.0328,"58":0.00729,"64":0.00729,"68":0.01822,"69":0.02915,"70":0.01093,"71":0.00729,"72":0.02551,"73":0.00364,"74":0.00364,"76":0.00364,"78":0.00729,"79":0.04008,"80":0.00729,"81":0.00729,"83":0.01093,"84":0.00364,"86":0.02186,"87":0.11661,"88":0.00729,"89":0.00729,"91":0.00364,"94":0.01458,"95":0.00729,"96":0.01093,"97":0.01458,"98":0.00729,"99":0.00364,"102":0.01093,"103":0.00729,"106":0.0328,"107":0.00364,"108":0.01093,"109":3.80069,"111":0.02186,"112":0.0328,"114":0.01822,"115":0.04373,"116":0.02186,"119":0.02551,"120":0.01093,"121":0.00364,"122":0.04008,"123":0.01458,"124":0.02186,"125":0.58304,"126":0.33525,"127":0.00729,"128":0.01093,"129":0.00364,"130":0.01822,"131":0.10203,"132":0.02551,"133":0.01822,"134":0.02186,"135":0.02186,"136":0.05466,"137":0.01822,"138":0.08381,"139":0.34618,"140":0.3316,"141":1.9714,"142":7.56859,"143":0.01822,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 65 66 67 75 77 85 90 92 93 100 101 104 105 110 113 117 118 144 145 146"},F:{"34":0.00364,"45":0.00364,"67":0.00729,"73":0.01458,"79":0.02186,"81":0.00364,"85":0.00364,"86":0.00364,"92":0.02551,"93":0.00729,"95":0.10203,"109":0.00364,"110":0.02186,"112":0.00729,"118":0.00364,"119":0.01093,"122":0.20771,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 74 75 76 77 78 80 82 83 84 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 111 113 114 115 116 117 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00364,"14":0.00364,"16":0.00364,"18":0.02186,"89":0.00729,"90":0.00364,"92":0.05102,"100":0.00364,"109":0.01822,"113":0.00364,"114":0.68507,"120":0.04008,"122":0.01093,"123":0.00729,"124":0.00364,"126":0.00729,"128":0.00364,"130":0.00364,"131":0.00729,"133":0.00364,"134":0.00364,"135":0.00729,"136":0.00729,"137":0.01093,"138":0.02551,"139":0.02186,"140":0.04737,"141":0.26966,"142":1.71268,_:"13 15 17 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 119 121 125 127 129 132 143"},E:{"11":0.01093,"15":0.00364,_:"0 4 5 6 7 8 9 10 12 13 14 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.4 16.1 16.2 16.3 16.5 17.0 18.1 26.2","5.1":0.00729,"14.1":0.01093,"15.2-15.3":0.00364,"15.5":0.00364,"15.6":0.10568,"16.0":0.00364,"16.4":0.00364,"16.6":0.02915,"17.1":0.01458,"17.2":0.00364,"17.3":0.00729,"17.4":0.215,"17.5":0.02915,"17.6":0.0583,"18.0":0.00729,"18.2":0.01093,"18.3":0.01458,"18.4":0.00364,"18.5-18.6":0.05102,"26.0":0.12025,"26.1":0.05102},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0,"6.0-6.1":0.00284,"7.0-7.1":0.00213,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00638,"10.0-10.2":0.00071,"10.3":0.01135,"11.0-11.2":0.13191,"11.3-11.4":0.00426,"12.0-12.1":0.00142,"12.2-12.5":0.03333,"13.0-13.1":0,"13.2":0.00355,"13.3":0.00142,"13.4-13.7":0.00638,"14.0-14.4":0.01064,"14.5-14.8":0.01348,"15.0-15.1":0.01135,"15.2-15.3":0.00922,"15.4":0.00993,"15.5":0.01064,"15.6-15.8":0.1539,"16.0":0.01915,"16.1":0.03546,"16.2":0.01844,"16.3":0.03404,"16.4":0.00851,"16.5":0.01418,"16.6-16.7":0.2078,"17.0":0.01773,"17.1":0.02128,"17.2":0.0156,"17.3":0.02199,"17.4":0.03617,"17.5":0.06879,"17.6-17.7":0.16879,"18.0":0.03759,"18.1":0.07943,"18.2":0.04255,"18.3":0.1383,"18.4":0.07092,"18.5-18.7":4.95247,"26.0":0.33972,"26.1":0.30993},P:{"4":0.09021,"20":0.02005,"21":0.02005,"22":0.03007,"23":0.03007,"24":0.06014,"25":0.08019,"26":0.06014,"27":0.2105,"28":0.64153,"29":0.47112,_:"5.0-5.4 8.2 10.1 12.0 16.0 18.0","6.2-6.4":0.06014,"7.2-7.4":0.09021,"9.2":0.01002,"11.1-11.2":0.01002,"13.0":0.01002,"14.0":0.01002,"15.0":0.02005,"17.0":0.01002,"19.0":0.01002},I:{"0":0.01904,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.96503,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.11661,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.06355},O:{"0":0.53382},H:{"0":0.02},L:{"0":58.40486},R:{_:"0"},M:{"0":0.05084}};
Index: node_modules/caniuse-lite/data/regions/TL.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TL.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"44":0.0422,"46":0.00469,"47":0.00469,"48":0.00469,"56":0.09378,"57":0.01876,"59":0.02345,"61":0.00938,"63":0.01876,"66":0.00469,"67":0.02345,"72":0.0422,"78":0.09378,"80":0.00469,"88":0.00938,"91":0.00469,"106":0.00938,"110":0.01876,"112":0.00469,"114":0.01876,"115":0.51579,"118":0.00469,"123":0.00938,"126":0.01876,"127":0.03282,"128":0.00469,"129":0.00938,"130":0.01407,"131":0.00469,"133":0.00469,"134":0.35636,"135":0.00469,"136":0.01407,"138":0.01407,"139":0.01407,"140":0.20632,"141":0.00938,"142":0.22976,"143":0.11254,"144":2.39608,"145":2.729,"146":0.05158,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 49 50 51 52 53 54 55 58 60 62 64 65 68 69 70 71 73 74 75 76 77 79 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 109 111 113 116 117 119 120 121 122 124 125 132 137 147 148 3.5 3.6"},D:{"58":0.01876,"60":0.00469,"62":0.00469,"63":0.01876,"64":0.01407,"65":0.00938,"67":0.00469,"68":0.00469,"70":0.01407,"71":0.00469,"73":0.01407,"74":0.00938,"76":0.00469,"78":0.00469,"79":0.02813,"80":0.03282,"84":0.17818,"86":0.00469,"87":0.01407,"92":0.00469,"96":0.00469,"99":0.00469,"100":0.00469,"102":0.01407,"103":0.08909,"106":0.00938,"107":0.00469,"109":0.60019,"112":0.00469,"113":0.00469,"114":0.00938,"115":0.00469,"116":0.15474,"118":0.00469,"119":0.05158,"120":0.04689,"122":0.0422,"123":0.01407,"124":0.01407,"125":0.10785,"126":0.07502,"127":0.12191,"128":0.09378,"129":0.00938,"130":0.03751,"131":0.07502,"132":0.03282,"133":0.01876,"134":0.03751,"135":0.08909,"136":0.09847,"137":0.22038,"138":0.65646,"139":0.37512,"140":0.96125,"141":5.73465,"142":13.77628,"143":0.02813,"144":0.00469,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 61 66 69 72 75 77 81 83 85 88 89 90 91 93 94 95 97 98 101 104 105 108 110 111 117 121 145 146"},F:{"15":0.00469,"92":0.01407,"95":0.03751,"102":0.00938,"109":0.00469,"118":0.17818,"120":0.00938,"122":0.16412,_:"9 11 12 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 114 115 116 117 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00469,"15":0.00469,"16":0.00469,"17":0.00469,"18":0.03282,"84":0.00469,"89":0.00469,"91":0.00469,"92":0.02345,"100":0.01876,"109":0.01407,"113":0.00938,"114":0.04689,"117":0.03282,"118":0.01407,"120":0.00469,"122":0.03751,"125":0.00469,"126":0.01876,"128":0.00469,"129":0.00938,"130":0.00938,"131":0.01407,"132":0.00938,"133":0.14536,"134":0.02345,"135":0.00938,"136":0.11254,"137":0.0422,"138":0.09847,"139":0.07502,"140":0.15474,"141":1.0644,"142":6.63025,"143":0.01876,_:"13 14 79 80 81 83 85 86 87 88 90 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116 119 121 123 124 127"},E:{"11":0.00938,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.4 15.5 16.0 16.2 16.3 16.4 17.0 26.2","5.1":0.00469,"13.1":0.01407,"14.1":0.04689,"15.1":0.01407,"15.2-15.3":0.00938,"15.6":0.07971,"16.1":0.00938,"16.5":0.01407,"16.6":0.06096,"17.1":0.01407,"17.2":0.03751,"17.3":0.00469,"17.4":0.03282,"17.5":0.03751,"17.6":0.05627,"18.0":0.05158,"18.1":0.01407,"18.2":0.00469,"18.3":0.01876,"18.4":0.03282,"18.5-18.6":0.07502,"26.0":0.18287,"26.1":0.06565},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00063,"5.0-5.1":0,"6.0-6.1":0.00253,"7.0-7.1":0.0019,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00569,"10.0-10.2":0.00063,"10.3":0.01011,"11.0-11.2":0.11753,"11.3-11.4":0.00379,"12.0-12.1":0.00126,"12.2-12.5":0.0297,"13.0-13.1":0,"13.2":0.00316,"13.3":0.00126,"13.4-13.7":0.00569,"14.0-14.4":0.00948,"14.5-14.8":0.01201,"15.0-15.1":0.01011,"15.2-15.3":0.00821,"15.4":0.00885,"15.5":0.00948,"15.6-15.8":0.13712,"16.0":0.01706,"16.1":0.03159,"16.2":0.01643,"16.3":0.03033,"16.4":0.00758,"16.5":0.01264,"16.6-16.7":0.18514,"17.0":0.0158,"17.1":0.01896,"17.2":0.0139,"17.3":0.01959,"17.4":0.03223,"17.5":0.06129,"17.6-17.7":0.15039,"18.0":0.03349,"18.1":0.07077,"18.2":0.03791,"18.3":0.12322,"18.4":0.06319,"18.5-18.7":4.41249,"26.0":0.30268,"26.1":0.27614},P:{"21":0.03056,"22":0.01019,"23":0.03056,"24":0.13242,"25":0.10187,"26":0.11205,"27":0.12224,"28":0.33616,"29":0.50933,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 17.0","7.2-7.4":0.02037,"11.1-11.2":0.05093,"16.0":0.02037,"18.0":0.01019,"19.0":0.01019},I:{"0":0.02121,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.29736,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01062},O:{"0":0.28143},H:{"0":0},L:{"0":49.13302},R:{_:"0"},M:{"0":0.04779}};
Index: node_modules/caniuse-lite/data/regions/TM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"64":0.04961,"68":0.01654,"85":0.2067,"115":0.03307,"125":1.6784,"128":0.01654,"137":0.01654,"143":0.01654,"144":0.04961,"145":0.19016,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 133 134 135 136 138 139 140 141 142 146 147 148 3.5 3.6"},D:{"46":0.01654,"69":0.01654,"70":0.09922,"79":0.2067,"84":0.03307,"101":0.68624,"109":3.46429,"114":0.08268,"117":0.09922,"120":0.01654,"121":0.04961,"122":0.04961,"124":0.06614,"125":2.8938,"126":0.09922,"131":1.04177,"134":0.01654,"138":0.06614,"139":0.15709,"140":0.42994,"141":9.29323,"142":28.73957,"143":0.08268,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78 80 81 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 110 111 112 113 115 116 118 119 123 127 128 129 130 132 133 135 136 137 144 145 146"},F:{"60":0.03307,"89":0.01654,"92":0.03307,"93":0.4134,"109":0.01654,"122":0.23977,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"114":0.03307,"116":0.01654,"117":0.03307,"136":0.01654,"138":0.01654,"140":0.04961,"141":0.27284,"142":1.81896,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.4 16.5 16.6 17.0 17.1 17.2 17.4 18.0 18.1 18.2 26.2","10.1":0.04961,"16.3":0.03307,"17.3":0.03307,"17.5":0.01654,"17.6":0.09922,"18.3":0.03307,"18.4":0.01654,"18.5-18.6":0.22324,"26.0":0.04961,"26.1":0.08268},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00045,"5.0-5.1":0,"6.0-6.1":0.00179,"7.0-7.1":0.00135,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00404,"10.0-10.2":0.00045,"10.3":0.00718,"11.0-11.2":0.08342,"11.3-11.4":0.00269,"12.0-12.1":0.0009,"12.2-12.5":0.02108,"13.0-13.1":0,"13.2":0.00224,"13.3":0.0009,"13.4-13.7":0.00404,"14.0-14.4":0.00673,"14.5-14.8":0.00852,"15.0-15.1":0.00718,"15.2-15.3":0.00583,"15.4":0.00628,"15.5":0.00673,"15.6-15.8":0.09732,"16.0":0.01211,"16.1":0.02243,"16.2":0.01166,"16.3":0.02153,"16.4":0.00538,"16.5":0.00897,"16.6-16.7":0.13141,"17.0":0.01121,"17.1":0.01346,"17.2":0.00987,"17.3":0.0139,"17.4":0.02287,"17.5":0.0435,"17.6-17.7":0.10674,"18.0":0.02377,"18.1":0.05023,"18.2":0.02691,"18.3":0.08746,"18.4":0.04485,"18.5-18.7":3.13188,"26.0":0.21483,"26.1":0.19599},P:{"27":0.0201,"28":0.26126,"29":0.86416,_:"4 20 21 22 23 24 25 26 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.81373,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.03293},H:{"0":0.59},L:{"0":12.82426},R:{_:"0"},M:{"0":0.17677}};
Index: node_modules/caniuse-lite/data/regions/TN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01811,"51":0.00604,"52":0.01207,"78":0.00604,"101":0.00604,"113":0.00604,"115":0.12678,"122":0.00604,"123":0.01811,"128":0.01207,"134":0.00604,"136":0.01207,"140":0.01207,"142":0.00604,"143":0.01207,"144":0.41655,"145":0.53729,"146":0.00604,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 124 125 126 127 129 130 131 132 133 135 137 138 139 141 147 148 3.5 3.6"},D:{"48":0.01811,"49":0.01207,"56":0.01207,"65":0.01207,"69":0.01811,"70":0.00604,"72":0.00604,"73":0.01207,"74":0.00604,"75":0.00604,"79":0.00604,"81":0.00604,"83":0.00604,"85":0.00604,"86":0.00604,"87":0.01811,"89":0.00604,"91":0.00604,"95":0.00604,"98":0.00604,"99":0.00604,"100":0.00604,"101":0.00604,"102":0.01811,"103":0.01207,"104":0.02415,"106":0.00604,"107":0.00604,"108":0.00604,"109":2.01636,"110":0.00604,"111":0.01811,"112":18.26796,"114":0.01207,"116":0.02415,"119":0.03019,"120":0.01811,"121":0.02415,"122":0.07244,"123":0.02415,"124":0.05433,"125":0.41052,"126":3.39279,"127":0.02415,"128":0.03622,"129":0.01207,"130":0.01207,"131":0.10263,"132":0.0483,"133":0.03622,"134":3.80935,"135":0.05433,"136":0.06037,"137":0.06037,"138":0.15093,"139":1.39455,"140":0.25355,"141":3.99649,"142":12.60526,"143":0.03019,"144":0.00604,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 57 58 59 60 61 62 63 64 66 67 68 71 76 77 78 80 84 88 90 92 93 94 96 97 105 113 115 117 118 145 146"},F:{"46":0.00604,"79":0.00604,"82":0.00604,"92":0.00604,"95":0.03019,"122":0.67011,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00604,"92":0.01811,"102":0.00604,"109":0.02415,"114":0.15696,"115":0.00604,"116":0.00604,"121":0.00604,"122":0.01207,"129":0.00604,"131":0.00604,"132":0.01207,"133":0.00604,"134":0.00604,"135":0.01207,"136":0.00604,"137":0.00604,"138":0.01207,"139":0.01207,"140":0.02415,"141":0.326,"142":2.42084,"143":0.00604,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 117 118 119 120 123 124 125 126 127 128 130"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.0 16.1 16.2 16.4 17.0 26.2","13.1":0.00604,"14.1":0.01207,"15.4":0.01207,"15.6":0.03019,"16.3":0.00604,"16.5":0.00604,"16.6":0.03019,"17.1":0.01207,"17.2":0.00604,"17.3":0.01207,"17.4":0.00604,"17.5":0.00604,"17.6":0.04226,"18.0":0.00604,"18.1":0.01207,"18.2":0.00604,"18.3":0.01811,"18.4":0.00604,"18.5-18.6":0.02415,"26.0":0.0483,"26.1":0.04226},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00036,"5.0-5.1":0,"6.0-6.1":0.00146,"7.0-7.1":0.00109,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00327,"10.0-10.2":0.00036,"10.3":0.00582,"11.0-11.2":0.06767,"11.3-11.4":0.00218,"12.0-12.1":0.00073,"12.2-12.5":0.0171,"13.0-13.1":0,"13.2":0.00182,"13.3":0.00073,"13.4-13.7":0.00327,"14.0-14.4":0.00546,"14.5-14.8":0.00691,"15.0-15.1":0.00582,"15.2-15.3":0.00473,"15.4":0.00509,"15.5":0.00546,"15.6-15.8":0.07895,"16.0":0.00982,"16.1":0.01819,"16.2":0.00946,"16.3":0.01746,"16.4":0.00437,"16.5":0.00728,"16.6-16.7":0.10659,"17.0":0.0091,"17.1":0.01091,"17.2":0.008,"17.3":0.01128,"17.4":0.01855,"17.5":0.03529,"17.6-17.7":0.08659,"18.0":0.01928,"18.1":0.04075,"18.2":0.02183,"18.3":0.07094,"18.4":0.03638,"18.5-18.7":2.54044,"26.0":0.17426,"26.1":0.15898},P:{"4":0.07263,"20":0.01038,"21":0.01038,"22":0.01038,"23":0.01038,"24":0.01038,"25":0.0415,"26":0.03113,"27":0.03113,"28":0.14526,"29":0.6018,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.14526,"11.1-11.2":0.01038,"17.0":0.01038},I:{"0":0.03166,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.13871,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.04901,"9":0.00817,"10":0.01634,"11":0.20419,_:"6 7 5.5"},N:{_:"10 11"},S:{"2.5":0.00396,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.05152},H:{"0":0},L:{"0":39.11066},R:{_:"0"},M:{"0":0.05945}};
Index: node_modules/caniuse-lite/data/regions/TO.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TO.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.04272,"119":0.05049,"138":0.01942,"144":2.17504,"145":3.35578,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"69":0.01165,"87":0.03107,"93":0.03107,"99":0.01942,"103":0.03107,"109":0.10487,"120":0.05049,"121":0.01165,"123":0.01165,"124":0.03107,"125":0.6059,"126":0.09322,"128":0.01165,"131":0.10487,"132":0.01942,"133":0.01165,"134":0.01165,"136":0.01165,"137":0.01942,"138":0.15536,"139":0.01942,"140":0.20974,"141":1.54583,"142":15.21751,"143":0.01942,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 91 92 94 95 96 97 98 100 101 102 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 122 127 129 130 135 144 145 146"},F:{"122":0.08545,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.03107,"84":0.01165,"92":0.01165,"114":0.0738,"124":0.09322,"131":0.01942,"134":0.03107,"137":0.03107,"138":0.03107,"139":0.0738,"140":0.66028,"141":0.78457,"142":5.58131,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 125 126 127 128 129 130 132 133 135 136 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.3 16.4 17.3 17.4 17.5 18.0 18.1 18.3 18.4 26.2","13.1":0.14759,"14.1":0.01165,"15.5":0.01165,"15.6":0.03107,"16.5":0.01942,"16.6":0.22916,"17.0":0.01165,"17.1":0.28353,"17.2":0.01942,"17.6":0.01165,"18.2":0.01942,"18.5-18.6":0.01942,"26.0":0.43889,"26.1":0.13594},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00137,"5.0-5.1":0,"6.0-6.1":0.00548,"7.0-7.1":0.00411,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01233,"10.0-10.2":0.00137,"10.3":0.02192,"11.0-11.2":0.25482,"11.3-11.4":0.00822,"12.0-12.1":0.00274,"12.2-12.5":0.06439,"13.0-13.1":0,"13.2":0.00685,"13.3":0.00274,"13.4-13.7":0.01233,"14.0-14.4":0.02055,"14.5-14.8":0.02603,"15.0-15.1":0.02192,"15.2-15.3":0.01781,"15.4":0.01918,"15.5":0.02055,"15.6-15.8":0.29729,"16.0":0.03699,"16.1":0.0685,"16.2":0.03562,"16.3":0.06576,"16.4":0.01644,"16.5":0.0274,"16.6-16.7":0.40141,"17.0":0.03425,"17.1":0.0411,"17.2":0.03014,"17.3":0.04247,"17.4":0.06987,"17.5":0.13289,"17.6-17.7":0.32606,"18.0":0.07261,"18.1":0.15344,"18.2":0.0822,"18.3":0.26715,"18.4":0.137,"18.5-18.7":9.5666,"26.0":0.65622,"26.1":0.59868},P:{"24":0.05116,"26":0.07162,"27":0.05116,"28":0.85941,"29":0.6241,_:"4 20 21 22 23 25 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.01221,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.53209,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.20183},H:{"0":0},L:{"0":48.00546},R:{_:"0"},M:{"0":0.08562}};
Index: node_modules/caniuse-lite/data/regions/TR.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TR.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00265,"52":0.00265,"72":0.00265,"115":0.06633,"125":0.00265,"128":0.00265,"133":0.00265,"134":0.00265,"136":0.00265,"139":0.00265,"140":0.00531,"141":0.00265,"142":0.00265,"143":0.00531,"144":0.15653,"145":0.20163,"146":0.00265,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 135 137 138 147 148 3.5 3.6"},D:{"26":0.00265,"29":0.00265,"34":0.00796,"38":0.02388,"39":0.00265,"40":0.00265,"41":0.00265,"42":0.00265,"43":0.00265,"44":0.00265,"45":0.00265,"46":0.00265,"47":0.05571,"48":0.00531,"49":0.01327,"50":0.00531,"51":0.00265,"52":0.00265,"53":0.01327,"54":0.00265,"55":0.00265,"56":0.00265,"57":0.00265,"58":0.00265,"59":0.00265,"60":0.00265,"63":0.00265,"65":0.00265,"66":0.00265,"67":0.00265,"68":0.00265,"69":0.00531,"70":0.00265,"71":0.00265,"72":0.00265,"73":0.01327,"74":0.00265,"75":0.00265,"76":0.00531,"78":0.00265,"79":0.29183,"80":0.00531,"81":0.00265,"83":0.04245,"85":0.01592,"86":0.00265,"87":0.28387,"88":0.00265,"90":0.00265,"91":0.00796,"93":0.00265,"94":0.02388,"95":0.00531,"96":0.00265,"98":0.00531,"99":0.00265,"100":0.00265,"101":0.00531,"102":0.00265,"103":0.01061,"104":0.01061,"105":0.00265,"106":0.00796,"107":0.00265,"108":0.10081,"109":1.35568,"110":0.00265,"111":0.01592,"112":0.0451,"113":0.00531,"114":0.04775,"115":0.00265,"116":0.01857,"117":0.00531,"118":0.01327,"119":0.01592,"120":0.06367,"121":0.00531,"122":0.02918,"123":0.01327,"124":0.01857,"125":0.36877,"126":0.26265,"127":0.01061,"128":0.02388,"129":0.01592,"130":0.01592,"131":0.0451,"132":0.02653,"133":0.02918,"134":0.02388,"135":0.04775,"136":0.03714,"137":0.04775,"138":0.14326,"139":0.09286,"140":0.18571,"141":2.98197,"142":8.61164,"143":0.01857,"144":0.00265,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 31 32 33 35 36 37 61 62 64 77 84 89 92 97 145 146"},F:{"32":0.00796,"36":0.00531,"40":0.0398,"46":0.05837,"85":0.00265,"86":0.00265,"91":0.00265,"92":0.13796,"93":0.01592,"95":0.02918,"114":0.00265,"119":0.00265,"120":0.0451,"121":0.00265,"122":0.55713,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00265,"15":0.00265,"16":0.00265,"17":0.00265,"18":0.01327,"92":0.00796,"109":0.06633,"114":0.05837,"122":0.00265,"128":0.00265,"130":0.00265,"131":0.01061,"132":0.00265,"133":0.00531,"134":0.00531,"135":0.00265,"136":0.00531,"137":0.00796,"138":0.00796,"139":0.01061,"140":0.01592,"141":0.19367,"142":1.82526,"143":0.00265,_:"12 13 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 129"},E:{"4":0.00265,"13":0.00265,"14":0.00265,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0","5.1":0.00265,"13.1":0.00265,"14.1":0.00796,"15.4":0.00265,"15.5":0.00265,"15.6":0.03184,"16.1":0.00265,"16.2":0.00265,"16.3":0.00531,"16.4":0.00265,"16.5":0.00265,"16.6":0.03184,"17.0":0.00531,"17.1":0.01061,"17.2":0.00265,"17.3":0.00531,"17.4":0.00796,"17.5":0.01061,"17.6":0.02388,"18.0":0.00531,"18.1":0.00796,"18.2":0.00531,"18.3":0.01857,"18.4":0.00796,"18.5-18.6":0.0398,"26.0":0.08224,"26.1":0.0849,"26.2":0.00265},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00114,"5.0-5.1":0,"6.0-6.1":0.00456,"7.0-7.1":0.00342,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01026,"10.0-10.2":0.00114,"10.3":0.01823,"11.0-11.2":0.21195,"11.3-11.4":0.00684,"12.0-12.1":0.00228,"12.2-12.5":0.05356,"13.0-13.1":0,"13.2":0.0057,"13.3":0.00228,"13.4-13.7":0.01026,"14.0-14.4":0.01709,"14.5-14.8":0.02165,"15.0-15.1":0.01823,"15.2-15.3":0.01481,"15.4":0.01595,"15.5":0.01709,"15.6-15.8":0.24728,"16.0":0.03077,"16.1":0.05698,"16.2":0.02963,"16.3":0.0547,"16.4":0.01367,"16.5":0.02279,"16.6-16.7":0.33388,"17.0":0.02849,"17.1":0.03419,"17.2":0.02507,"17.3":0.03533,"17.4":0.05812,"17.5":0.11053,"17.6-17.7":0.27121,"18.0":0.06039,"18.1":0.12763,"18.2":0.06837,"18.3":0.22221,"18.4":0.11395,"18.5-18.7":7.95727,"26.0":0.54583,"26.1":0.49797},P:{"4":0.36018,"20":0.01029,"21":0.04116,"22":0.02058,"23":0.01029,"24":0.01029,"25":0.04116,"26":0.12349,"27":0.08233,"28":0.30873,"29":1.698,"5.0-5.4":0.04116,"6.2-6.4":0.01029,"7.2-7.4":0.12349,"8.2":0.01029,_:"9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0 19.0","13.0":0.02058,"17.0":0.04116},I:{"0":0.02201,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":1.24164,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00334,"8":0.01336,"9":0.00334,"10":0.00668,"11":0.06348,_:"7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.06612},H:{"0":0},L:{"0":60.15139},R:{_:"0"},M:{"0":0.11021}};
Index: node_modules/caniuse-lite/data/regions/TT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.05999,"52":0.005,"115":0.03999,"128":0.01,"132":0.005,"136":0.005,"140":0.04499,"142":0.005,"143":0.005,"144":0.4899,"145":0.75485,"146":0.005,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 133 134 135 137 138 139 141 147 148 3.5 3.6"},D:{"49":0.005,"69":0.05999,"76":0.015,"79":0.015,"81":0.005,"87":0.03999,"91":0.005,"93":0.015,"99":0.005,"103":0.14997,"104":0.13997,"106":0.005,"109":1.10478,"111":0.05999,"112":8.23835,"113":0.025,"114":0.005,"116":0.19496,"119":0.01,"120":0.025,"121":0.02,"122":0.03999,"123":0.005,"124":0.05499,"125":1.63967,"126":1.16977,"127":0.005,"128":0.25495,"129":0.025,"130":0.015,"131":0.05999,"132":0.07499,"133":0.03499,"134":0.015,"135":0.015,"136":0.02,"137":0.08498,"138":0.28994,"139":0.31494,"140":0.47491,"141":4.09418,"142":15.60188,"143":0.025,"144":0.01,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 77 78 80 83 84 85 86 88 89 90 92 94 95 96 97 98 100 101 102 105 107 108 110 115 117 118 145 146"},F:{"79":0.005,"92":0.02,"93":0.01,"95":0.015,"114":0.005,"115":0.005,"121":0.12997,"122":0.46491,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 116 117 118 119 120 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.005,"92":0.005,"109":0.025,"114":0.04999,"117":0.005,"126":0.005,"131":0.01,"133":0.005,"135":0.005,"136":0.005,"137":0.005,"138":0.02999,"139":0.02,"140":0.07998,"141":0.60488,"142":4.60408,"143":0.005,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 118 119 120 121 122 123 124 125 127 128 129 130 132 134"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 16.0 16.4","12.1":0.005,"13.1":0.02999,"14.1":0.02999,"15.4":0.01,"15.5":0.01,"15.6":0.09498,"16.1":0.02999,"16.2":0.025,"16.3":0.01,"16.5":0.005,"16.6":0.19496,"17.0":0.005,"17.1":0.05999,"17.2":0.005,"17.3":0.01,"17.4":0.01,"17.5":0.02999,"17.6":0.13997,"18.0":0.06999,"18.1":0.015,"18.2":0.005,"18.3":0.03999,"18.4":0.02,"18.5-18.6":0.08498,"26.0":0.40492,"26.1":0.37493,"26.2":0.005},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00139,"5.0-5.1":0,"6.0-6.1":0.00558,"7.0-7.1":0.00418,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01255,"10.0-10.2":0.00139,"10.3":0.02232,"11.0-11.2":0.25943,"11.3-11.4":0.00837,"12.0-12.1":0.00279,"12.2-12.5":0.06555,"13.0-13.1":0,"13.2":0.00697,"13.3":0.00279,"13.4-13.7":0.01255,"14.0-14.4":0.02092,"14.5-14.8":0.0265,"15.0-15.1":0.02232,"15.2-15.3":0.01813,"15.4":0.01953,"15.5":0.02092,"15.6-15.8":0.30267,"16.0":0.03766,"16.1":0.06974,"16.2":0.03626,"16.3":0.06695,"16.4":0.01674,"16.5":0.0279,"16.6-16.7":0.40867,"17.0":0.03487,"17.1":0.04184,"17.2":0.03069,"17.3":0.04324,"17.4":0.07113,"17.5":0.13529,"17.6-17.7":0.33196,"18.0":0.07392,"18.1":0.15622,"18.2":0.08369,"18.3":0.27198,"18.4":0.13948,"18.5-18.7":9.73974,"26.0":0.6681,"26.1":0.60952},P:{"4":0.05303,"21":0.01061,"22":0.02121,"23":0.03182,"24":0.04242,"25":0.03182,"26":0.08484,"27":0.05303,"28":0.22271,"29":3.31947,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.07424,"17.0":0.01061},I:{"0":0.03995,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.10502,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.005},H:{"0":0},L:{"0":34.75555},R:{_:"0"},M:{"0":0.22004}};
Index: node_modules/caniuse-lite/data/regions/TV.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TV.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"144":2.69263,"145":2.64572,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"116":0.0516,"125":1.79665,"131":0.39874,"139":0.20171,"140":0.49725,"141":3.74342,"142":20.56065,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 117 118 119 120 121 122 123 124 126 127 128 129 130 132 133 134 135 136 137 138 143 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"89":0.0516,"114":0.45034,"140":0.30022,"141":0.69896,"142":7.88557,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5 17.6 18.0 18.1 18.2 18.3 18.4 26.2","18.5-18.6":0.0516,"26.0":0.09851,"26.1":0.0516},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00086,"5.0-5.1":0,"6.0-6.1":0.00346,"7.0-7.1":0.00259,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00778,"10.0-10.2":0.00086,"10.3":0.01382,"11.0-11.2":0.16069,"11.3-11.4":0.00518,"12.0-12.1":0.00173,"12.2-12.5":0.04061,"13.0-13.1":0,"13.2":0.00432,"13.3":0.00173,"13.4-13.7":0.00778,"14.0-14.4":0.01296,"14.5-14.8":0.01641,"15.0-15.1":0.01382,"15.2-15.3":0.01123,"15.4":0.0121,"15.5":0.01296,"15.6-15.8":0.18747,"16.0":0.02333,"16.1":0.0432,"16.2":0.02246,"16.3":0.04147,"16.4":0.01037,"16.5":0.01728,"16.6-16.7":0.25313,"17.0":0.0216,"17.1":0.02592,"17.2":0.01901,"17.3":0.02678,"17.4":0.04406,"17.5":0.0838,"17.6-17.7":0.20562,"18.0":0.04579,"18.1":0.09676,"18.2":0.05184,"18.3":0.16847,"18.4":0.08639,"18.5-18.7":6.03287,"26.0":0.41383,"26.1":0.37754},P:{"25":0.10502,"27":0.26255,"29":0.57761,_:"4 20 21 22 23 24 26 28 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":46.95864},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/TW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"14":0.00426,"52":0.01703,"78":0.00426,"112":0.00426,"113":0.00426,"115":0.10217,"136":0.00851,"139":0.00426,"140":0.01277,"141":0.00426,"142":0.00851,"143":0.01703,"144":0.5151,"145":0.56192,"146":0.01703,_:"2 3 4 5 6 7 8 9 10 11 12 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 147 148 3.5 3.6"},D:{"48":0.00426,"49":0.00426,"51":0.00426,"61":0.00426,"65":0.00426,"73":0.00426,"75":0.00426,"77":1.19622,"79":0.02554,"80":0.00426,"81":0.05534,"83":0.00426,"85":0.01703,"86":0.00426,"87":0.02129,"89":0.00426,"91":0.00426,"92":0.00426,"94":0.00426,"95":0.00851,"97":0.00426,"98":0.01277,"101":0.00426,"102":0.00426,"103":0.01703,"104":0.06386,"106":0.00426,"107":0.00851,"108":0.04257,"109":1.14088,"110":0.00851,"111":0.00426,"112":0.00426,"113":0.00426,"114":0.01277,"115":0.01277,"116":0.03831,"117":0.01277,"118":0.01277,"119":0.03831,"120":0.05534,"121":0.02554,"122":0.03406,"123":0.02129,"124":0.03406,"125":0.69815,"126":0.02554,"127":0.02554,"128":0.05534,"129":0.02554,"130":0.06811,"131":0.08514,"132":0.04683,"133":0.05534,"134":0.21711,"135":0.04683,"136":0.05534,"137":0.07237,"138":0.17879,"139":0.27671,"140":0.59598,"141":5.05732,"142":17.56864,"143":0.0596,"144":0.0298,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 52 53 54 55 56 57 58 59 60 62 63 64 66 67 68 69 70 71 72 74 76 78 84 88 90 93 96 99 100 105 145 146"},F:{"46":0.00851,"92":0.04683,"93":0.01277,"95":0.02129,"122":0.04257,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00426,"109":0.04683,"110":0.00426,"113":0.00426,"114":0.01703,"117":0.00426,"118":0.00426,"120":0.00851,"122":0.00851,"124":0.00426,"125":0.00851,"126":0.00426,"127":0.00426,"128":0.00426,"129":0.00426,"130":0.00426,"131":0.01277,"132":0.00426,"133":0.00851,"134":0.00851,"135":0.00851,"136":0.01703,"137":0.01277,"138":0.02129,"139":0.0298,"140":0.05534,"141":0.52787,"142":3.63122,"143":0.00851,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 115 116 119 121 123"},E:{"14":0.00426,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3","12.1":0.01277,"13.1":0.01277,"14.1":0.02554,"15.1":0.00426,"15.4":0.00851,"15.5":0.01703,"15.6":0.12771,"16.0":0.00426,"16.1":0.02129,"16.2":0.01277,"16.3":0.03831,"16.4":0.01703,"16.5":0.02129,"16.6":0.21285,"17.0":0.00426,"17.1":0.16602,"17.2":0.00851,"17.3":0.01277,"17.4":0.03406,"17.5":0.05534,"17.6":0.14048,"18.0":0.01703,"18.1":0.02554,"18.2":0.01703,"18.3":0.06811,"18.4":0.03831,"18.5-18.6":0.19582,"26.0":0.16602,"26.1":0.22562,"26.2":0.00851},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00246,"5.0-5.1":0,"6.0-6.1":0.00983,"7.0-7.1":0.00737,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02211,"10.0-10.2":0.00246,"10.3":0.0393,"11.0-11.2":0.45687,"11.3-11.4":0.01474,"12.0-12.1":0.00491,"12.2-12.5":0.11545,"13.0-13.1":0,"13.2":0.01228,"13.3":0.00491,"13.4-13.7":0.02211,"14.0-14.4":0.03684,"14.5-14.8":0.04667,"15.0-15.1":0.0393,"15.2-15.3":0.03193,"15.4":0.03439,"15.5":0.03684,"15.6-15.8":0.53301,"16.0":0.06632,"16.1":0.12281,"16.2":0.06386,"16.3":0.1179,"16.4":0.02948,"16.5":0.04913,"16.6-16.7":0.71969,"17.0":0.06141,"17.1":0.07369,"17.2":0.05404,"17.3":0.07614,"17.4":0.12527,"17.5":0.23826,"17.6-17.7":0.58459,"18.0":0.13018,"18.1":0.2751,"18.2":0.14738,"18.3":0.47897,"18.4":0.24563,"18.5-18.7":17.15221,"26.0":1.17656,"26.1":1.07339},P:{"4":0.01072,"20":0.01072,"21":0.02144,"22":0.03216,"23":0.02144,"24":0.02144,"25":0.02144,"26":0.06431,"27":0.10719,"28":0.63243,"29":2.42251,_:"5.0-5.4 6.2-6.4 8.2 9.2 11.1-11.2 12.0 14.0 15.0 18.0","7.2-7.4":0.01072,"10.1":0.01072,"13.0":0.02144,"16.0":0.01072,"17.0":0.01072,"19.0":0.02144},I:{"0":0.00573,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.18952,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01179,"11":0.14146,_:"6 7 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.0402},O:{"0":0.09189},H:{"0":0},L:{"0":32.28923},R:{_:"0"},M:{"0":0.29864}};
Index: node_modules/caniuse-lite/data/regions/TZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/TZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/TZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00245,"47":0.00491,"56":0.00245,"57":0.00245,"61":0.00245,"63":0.00245,"65":0.00491,"68":0.00245,"72":0.00736,"90":0.00245,"103":0.00245,"109":0.00245,"112":0.00736,"115":0.05153,"116":0.00245,"123":0.00245,"127":0.01227,"128":0.00491,"131":0.00245,"133":0.00245,"134":0.00245,"135":0.00245,"136":0.00245,"139":0.02699,"140":0.02209,"141":0.00245,"142":0.00736,"143":0.04663,"144":0.45399,"145":0.53497,"146":0.01718,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 58 59 60 62 64 66 67 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 113 114 117 118 119 120 121 122 124 125 126 129 130 132 137 138 147 148 3.5 3.6"},D:{"46":0.00245,"49":0.00245,"55":0.00245,"58":0.00491,"59":0.00245,"62":0.00245,"63":0.00245,"64":0.00245,"65":0.00491,"68":0.00736,"69":0.00491,"70":0.00982,"71":0.01718,"72":0.00491,"73":0.00736,"74":0.00982,"75":0.00245,"76":0.00245,"77":0.00736,"78":0.00245,"79":0.01227,"80":0.01718,"81":0.00491,"83":0.00736,"85":0.00245,"86":0.01227,"87":0.01718,"88":0.00982,"90":0.01227,"91":0.00491,"92":0.00245,"93":0.00245,"94":0.01227,"95":0.00491,"96":0.00491,"97":0.00491,"98":0.00245,"99":0.00982,"100":0.0319,"102":0.00245,"103":0.0319,"104":0.01718,"105":0.00245,"106":0.00245,"108":0.00736,"109":0.20614,"110":0.00245,"111":0.01718,"112":0.02945,"113":0.00491,"114":0.02699,"115":0.00245,"116":0.13497,"117":0.00491,"118":0.00491,"119":0.01718,"120":0.01227,"121":0.00491,"122":0.02454,"123":0.00736,"124":0.00736,"125":0.04417,"126":0.04417,"127":0.02209,"128":0.02699,"129":0.00491,"130":0.00982,"131":0.0319,"132":0.01963,"133":0.0319,"134":0.0319,"135":0.0319,"136":0.02454,"137":0.05644,"138":0.18405,"139":0.11779,"140":0.2135,"141":1.79387,"142":5.83561,"143":0.01718,"144":0.00245,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 50 51 52 53 54 56 57 60 61 66 67 84 89 101 107 145 146"},F:{"37":0.00491,"40":0.00245,"42":0.00245,"46":0.00245,"79":0.00736,"83":0.00491,"89":0.00245,"90":0.00736,"91":0.01227,"92":0.0319,"93":0.00491,"95":0.01472,"120":0.00491,"121":0.00245,"122":0.08098,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 85 86 87 88 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00736,"13":0.00736,"14":0.00245,"15":0.00491,"16":0.00982,"17":0.00245,"18":0.04908,"84":0.00245,"89":0.00491,"90":0.01963,"92":0.02454,"100":0.00491,"103":0.00245,"109":0.00491,"111":0.00245,"114":0.03926,"122":0.00982,"125":0.00245,"131":0.41963,"133":0.00245,"134":0.00491,"135":0.00245,"136":0.00736,"137":0.00736,"138":0.02209,"139":0.10798,"140":0.05644,"141":0.15951,"142":1.48958,"143":0.00245,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 106 107 108 110 112 113 115 116 117 118 119 120 121 123 124 126 127 128 129 130 132"},E:{"11":0.00245,"12":0.00245,"13":0.00245,_:"0 4 5 6 7 8 9 10 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.4 15.5 16.2 16.3 16.4 17.0 17.1 17.2 17.3 18.2","11.1":0.00491,"13.1":0.01227,"14.1":0.01227,"15.6":0.08098,"16.0":0.00245,"16.1":0.00245,"16.5":0.00491,"16.6":0.0319,"17.4":0.00245,"17.5":0.00982,"17.6":0.02945,"18.0":0.00736,"18.1":0.00491,"18.3":0.00736,"18.4":0.00245,"18.5-18.6":0.01227,"26.0":0.07853,"26.1":0.05399,"26.2":0.00245},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00033,"5.0-5.1":0,"6.0-6.1":0.00133,"7.0-7.1":0.001,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00299,"10.0-10.2":0.00033,"10.3":0.00531,"11.0-11.2":0.06176,"11.3-11.4":0.00199,"12.0-12.1":0.00066,"12.2-12.5":0.01561,"13.0-13.1":0,"13.2":0.00166,"13.3":0.00066,"13.4-13.7":0.00299,"14.0-14.4":0.00498,"14.5-14.8":0.00631,"15.0-15.1":0.00531,"15.2-15.3":0.00432,"15.4":0.00465,"15.5":0.00498,"15.6-15.8":0.07205,"16.0":0.00896,"16.1":0.0166,"16.2":0.00863,"16.3":0.01594,"16.4":0.00398,"16.5":0.00664,"16.6-16.7":0.09728,"17.0":0.0083,"17.1":0.00996,"17.2":0.0073,"17.3":0.01029,"17.4":0.01693,"17.5":0.03221,"17.6-17.7":0.07902,"18.0":0.0176,"18.1":0.03719,"18.2":0.01992,"18.3":0.06474,"18.4":0.0332,"18.5-18.7":2.31852,"26.0":0.15904,"26.1":0.14509},P:{"4":0.04127,"21":0.01032,"22":0.02063,"23":0.01032,"24":0.21666,"25":0.07222,"26":0.03095,"27":0.27856,"28":0.44364,"29":0.56744,_:"20 5.0-5.4 6.2-6.4 8.2 10.1 12.0 14.0 15.0 18.0","7.2-7.4":0.04127,"9.2":0.01032,"11.1-11.2":0.03095,"13.0":0.01032,"16.0":0.02063,"17.0":0.01032,"19.0":0.01032},I:{"0":0.2562,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":7.50692,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{"2.5":0.23393,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00755},O:{"0":0.14337},H:{"0":2.65},L:{"0":69.30002},R:{_:"0"},M:{"0":0.10564}};
Index: node_modules/caniuse-lite/data/regions/UA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/UA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/UA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.01326,"52":0.05965,"60":0.00663,"68":0.00663,"69":0.00663,"74":0.00663,"88":0.00663,"92":0.02651,"102":0.01326,"103":0.03314,"110":0.00663,"115":0.45733,"120":0.00663,"122":0.00663,"123":0.00663,"125":0.01326,"127":0.00663,"128":0.01326,"130":0.00663,"131":0.00663,"133":0.01988,"134":0.01326,"135":0.01988,"136":0.01988,"137":0.00663,"138":0.01326,"139":0.00663,"140":0.07954,"141":0.00663,"142":0.01326,"143":0.02651,"144":0.7821,"145":0.9942,"146":0.00663,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 70 71 72 73 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 111 112 113 114 116 117 118 119 121 124 126 129 132 147 148 3.5 3.6"},D:{"26":0.00663,"27":0.00663,"32":0.00663,"39":0.01988,"40":0.01988,"41":0.01988,"42":0.01988,"43":0.01988,"44":0.01988,"45":0.01988,"46":0.01988,"47":0.01988,"48":0.01988,"49":0.05965,"50":0.01988,"51":0.01988,"52":0.01988,"53":0.01988,"54":0.01988,"55":0.01988,"56":0.02651,"57":0.01988,"58":0.02651,"59":0.01988,"60":0.01988,"61":0.00663,"69":0.01326,"75":0.00663,"79":0.01988,"83":0.00663,"84":0.00663,"86":0.00663,"87":0.01326,"90":0.00663,"91":0.00663,"96":0.01988,"97":0.00663,"101":0.01326,"102":0.01988,"103":0.01988,"104":0.15907,"106":0.02651,"107":0.00663,"108":0.01326,"109":2.70422,"111":0.01326,"112":11.18144,"114":0.01988,"115":0.00663,"116":0.01988,"117":0.00663,"118":0.03314,"119":0.01988,"120":0.03314,"121":0.01988,"122":0.09942,"123":0.01326,"124":0.05302,"125":0.31814,"126":2.10108,"127":0.05965,"128":0.05965,"129":0.01988,"130":0.02651,"131":0.2121,"132":0.08616,"133":0.08616,"134":0.09942,"135":0.39105,"136":0.11268,"137":0.09942,"138":0.31152,"139":0.62303,"140":0.43745,"141":5.06379,"142":22.30322,"143":0.0464,"144":0.01326,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 28 29 30 31 33 34 35 36 37 38 62 63 64 65 66 67 68 70 71 72 73 74 76 77 78 80 81 85 88 89 92 93 94 95 98 99 100 105 110 113 145 146"},F:{"36":0.00663,"46":0.01988,"63":0.00663,"67":0.00663,"79":0.01326,"80":0.00663,"83":0.00663,"84":0.01326,"85":0.0464,"86":0.01988,"90":0.00663,"91":0.00663,"92":0.13256,"93":0.03977,"95":0.56338,"98":0.00663,"102":0.00663,"109":0.00663,"114":0.01988,"115":0.00663,"116":0.00663,"117":0.00663,"118":0.02651,"119":0.00663,"120":0.14582,"121":0.01326,"122":1.00746,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 68 69 70 71 72 73 74 75 76 77 78 81 82 87 88 89 94 96 97 99 100 101 103 104 105 106 107 108 110 111 112 113 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00663},B:{"18":0.00663,"92":0.01326,"109":0.01988,"113":0.00663,"114":0.10605,"116":0.01326,"122":0.00663,"124":0.00663,"130":0.00663,"131":0.0464,"132":0.01326,"133":0.02651,"134":0.01326,"135":0.01988,"136":0.01988,"137":0.01988,"138":0.00663,"139":0.00663,"140":0.01326,"141":0.50373,"142":2.04142,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 115 117 118 119 120 121 123 125 126 127 128 129 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.2 17.0","13.1":0.00663,"14.1":0.01988,"15.5":0.00663,"15.6":0.03314,"16.1":0.00663,"16.3":0.00663,"16.4":0.00663,"16.5":0.00663,"16.6":0.08616,"17.1":0.03314,"17.2":0.00663,"17.3":0.00663,"17.4":0.03977,"17.5":0.01988,"17.6":0.06628,"18.0":0.01326,"18.1":0.00663,"18.2":0.00663,"18.3":0.0464,"18.4":0.01326,"18.5-18.6":0.05965,"26.0":0.13919,"26.1":0.19221,"26.2":0.00663},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0008,"5.0-5.1":0,"6.0-6.1":0.00322,"7.0-7.1":0.00241,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00724,"10.0-10.2":0.0008,"10.3":0.01287,"11.0-11.2":0.14965,"11.3-11.4":0.00483,"12.0-12.1":0.00161,"12.2-12.5":0.03781,"13.0-13.1":0,"13.2":0.00402,"13.3":0.00161,"13.4-13.7":0.00724,"14.0-14.4":0.01207,"14.5-14.8":0.01529,"15.0-15.1":0.01287,"15.2-15.3":0.01046,"15.4":0.01126,"15.5":0.01207,"15.6-15.8":0.17459,"16.0":0.02172,"16.1":0.04023,"16.2":0.02092,"16.3":0.03862,"16.4":0.00965,"16.5":0.01609,"16.6-16.7":0.23574,"17.0":0.02011,"17.1":0.02414,"17.2":0.0177,"17.3":0.02494,"17.4":0.04103,"17.5":0.07804,"17.6-17.7":0.19149,"18.0":0.04264,"18.1":0.09011,"18.2":0.04827,"18.3":0.15689,"18.4":0.08046,"18.5-18.7":5.61824,"26.0":0.38538,"26.1":0.35159},P:{"4":0.02087,"22":0.01043,"23":0.01043,"24":0.02087,"25":0.02087,"26":0.0313,"27":0.0313,"28":0.11478,"29":0.81386,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.02087,"17.0":0.01043},I:{"0":0.0202,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.83626,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.04242,"9":0.0106,"10":0.0106,"11":0.04242,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00337},O:{"0":0.04046},H:{"0":0},L:{"0":25.32464},R:{_:"0"},M:{"0":0.1686}};
Index: node_modules/caniuse-lite/data/regions/UG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/UG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/UG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00965,"43":0.00322,"50":0.00643,"55":0.00322,"56":0.00322,"57":0.00322,"58":0.00643,"60":0.00322,"68":0.00322,"72":0.00643,"91":0.00643,"93":0.00965,"94":0.00322,"112":0.00322,"115":0.18326,"127":0.01608,"128":0.01286,"134":0.00322,"135":0.00322,"136":0.00643,"137":0.00322,"138":0.00322,"139":0.00322,"140":0.03537,"141":0.00643,"142":0.01286,"143":0.03537,"144":0.58835,"145":0.71695,"146":0.01286,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 52 53 54 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 147 148 3.5 3.6"},D:{"19":0.02251,"50":0.00322,"53":0.00322,"56":0.00322,"59":0.00322,"62":0.00322,"63":0.00322,"64":0.02572,"65":0.00643,"67":0.00643,"68":0.00643,"69":0.01608,"70":0.01286,"71":0.01286,"72":0.03537,"73":0.00965,"74":0.00643,"75":0.00965,"76":0.00965,"77":0.00643,"78":0.00643,"79":0.00965,"80":0.01929,"81":0.00643,"83":0.01286,"85":0.00322,"86":0.00322,"87":0.03537,"88":0.00643,"89":0.00322,"90":0.00322,"91":0.00965,"92":0.00643,"93":0.02572,"94":0.0418,"95":0.00965,"98":0.00322,"99":0.00322,"100":0.00322,"101":0.00965,"103":0.07073,"104":0.00322,"105":0.00322,"106":0.01286,"107":0.00322,"108":0.00643,"109":0.68158,"110":0.00322,"111":0.04501,"112":0.01286,"113":0.00643,"114":0.04823,"115":0.00643,"116":0.08359,"117":0.00322,"119":0.04823,"120":0.01286,"121":0.00643,"122":0.03537,"123":0.00643,"124":0.00643,"125":0.11896,"126":0.0418,"127":0.00965,"128":0.11253,"129":0.01286,"130":0.00965,"131":0.05466,"132":0.02894,"133":0.0418,"134":0.02894,"135":0.0418,"136":0.05787,"137":0.04823,"138":0.26685,"139":0.16397,"140":0.39545,"141":3.07354,"142":7.13409,"143":0.02251,"144":0.00322,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 54 55 57 58 60 61 66 84 96 97 102 118 145 146"},F:{"37":0.00322,"46":0.00322,"79":0.00643,"90":0.00322,"91":0.00643,"92":0.09967,"93":0.02894,"95":0.01608,"113":0.00643,"114":0.00322,"120":0.00322,"122":0.14789,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02251,"13":0.00965,"14":0.01286,"15":0.00322,"16":0.00643,"17":0.00643,"18":0.09645,"84":0.00322,"89":0.00322,"90":0.01608,"92":0.04823,"100":0.00965,"109":0.00965,"114":0.08359,"120":0.00322,"122":0.00965,"127":0.00322,"129":0.00322,"130":0.00322,"131":0.00643,"132":0.00322,"133":0.00965,"134":0.00322,"135":0.01286,"136":0.00643,"137":0.07395,"138":0.01929,"139":0.02572,"140":0.05144,"141":0.31186,"142":1.93222,"143":0.00322,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 123 124 125 126 128"},E:{"12":0.00322,_:"0 4 5 6 7 8 9 10 11 13 14 15 3.1 3.2 6.1 7.1 10.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 17.0 17.2 18.0 18.1 26.2","5.1":0.01929,"9.1":0.00322,"11.1":0.00322,"12.1":0.00322,"13.1":0.01929,"14.1":0.01608,"15.6":0.05466,"16.3":0.00643,"16.5":0.00322,"16.6":0.01608,"17.1":0.00965,"17.3":0.00322,"17.4":0.00322,"17.5":0.00322,"17.6":0.03858,"18.2":0.00643,"18.3":0.00965,"18.4":0.00322,"18.5-18.6":0.01608,"26.0":0.03215,"26.1":0.05144},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00035,"5.0-5.1":0,"6.0-6.1":0.00138,"7.0-7.1":0.00104,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00311,"10.0-10.2":0.00035,"10.3":0.00554,"11.0-11.2":0.06436,"11.3-11.4":0.00208,"12.0-12.1":0.00069,"12.2-12.5":0.01626,"13.0-13.1":0,"13.2":0.00173,"13.3":0.00069,"13.4-13.7":0.00311,"14.0-14.4":0.00519,"14.5-14.8":0.00657,"15.0-15.1":0.00554,"15.2-15.3":0.0045,"15.4":0.00484,"15.5":0.00519,"15.6-15.8":0.07509,"16.0":0.00934,"16.1":0.0173,"16.2":0.009,"16.3":0.01661,"16.4":0.00415,"16.5":0.00692,"16.6-16.7":0.10139,"17.0":0.00865,"17.1":0.01038,"17.2":0.00761,"17.3":0.01073,"17.4":0.01765,"17.5":0.03357,"17.6-17.7":0.08236,"18.0":0.01834,"18.1":0.03876,"18.2":0.02076,"18.3":0.06748,"18.4":0.0346,"18.5-18.7":2.41636,"26.0":0.16575,"26.1":0.15122},P:{"4":0.03107,"21":0.01036,"22":0.01036,"23":0.02072,"24":0.1968,"25":0.09322,"26":0.0725,"27":0.50753,"28":0.4661,"29":0.54896,_:"20 6.2-6.4 8.2 10.1 12.0 13.0 14.0 15.0 18.0","5.0-5.4":0.01036,"7.2-7.4":0.06215,"9.2":0.04143,"11.1-11.2":0.03107,"16.0":0.01036,"17.0":0.01036,"19.0":0.02072},I:{"0":0.03388,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":3.80496,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03858,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.02714,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.14927},H:{"0":3.36},L:{"0":67.18178},R:{_:"0"},M:{"0":0.08821}};
Index: node_modules/caniuse-lite/data/regions/US.js
===================================================================
--- node_modules/caniuse-lite/data/regions/US.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/US.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"11":0.30402,"44":0.01086,"52":0.01086,"59":0.00543,"78":0.01629,"94":0.00543,"115":0.15201,"117":0.00543,"118":0.68405,"125":0.01086,"127":0.00543,"128":0.01629,"132":0.00543,"133":0.00543,"134":0.00543,"135":0.01086,"136":0.01629,"137":0.01629,"138":0.01629,"139":0.01086,"140":0.14658,"141":0.01629,"142":0.02172,"143":0.05972,"144":0.88493,"145":0.97722,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 119 120 121 122 123 124 126 129 130 131 146 147 148 3.5 3.6"},D:{"39":0.01086,"40":0.01086,"41":0.01086,"42":0.01086,"43":0.01086,"44":0.01086,"45":0.01086,"46":0.01086,"47":0.01086,"48":0.038,"49":0.02172,"50":0.01086,"51":0.01086,"52":0.01629,"53":0.01086,"54":0.01086,"55":0.01086,"56":0.02172,"57":0.01086,"58":0.01086,"59":0.01086,"60":0.01086,"62":0.00543,"64":0.00543,"65":0.00543,"66":0.03257,"67":0.00543,"69":0.00543,"70":0.00543,"74":0.00543,"75":0.00543,"76":0.00543,"77":0.00543,"78":0.00543,"79":0.26602,"80":0.01086,"81":0.05429,"83":0.22802,"84":0.00543,"85":0.00543,"86":0.00543,"87":0.05972,"88":0.00543,"90":0.00543,"91":0.02172,"92":0.00543,"93":0.02172,"96":0.00543,"98":0.00543,"99":0.02715,"100":0.00543,"101":0.02172,"102":0.01086,"103":0.13573,"104":0.01629,"105":0.00543,"106":0.00543,"107":0.00543,"108":0.01086,"109":0.33117,"110":0.01086,"111":0.01086,"112":0.01086,"113":0.01086,"114":0.10315,"115":0.02715,"116":0.1303,"117":0.49404,"118":0.02172,"119":0.02715,"120":0.08144,"121":0.09229,"122":0.1303,"123":0.02172,"124":0.05972,"125":0.84692,"126":0.14115,"127":0.02715,"128":0.11944,"129":0.03257,"130":4.08804,"131":0.13573,"132":0.15744,"133":0.05972,"134":0.07601,"135":0.08686,"136":0.11401,"137":0.14115,"138":0.89579,"139":2.75793,"140":1.95444,"141":5.42357,"142":12.89388,"143":0.06515,"144":0.01086,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 63 68 71 72 73 89 94 95 97 145 146"},F:{"92":0.04343,"93":0.00543,"95":0.03257,"102":0.00543,"114":0.00543,"117":0.00543,"118":0.00543,"120":0.00543,"122":0.23345,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 115 116 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00543,"109":0.04886,"120":0.00543,"121":0.08144,"122":0.00543,"126":0.00543,"128":0.00543,"129":0.00543,"130":0.00543,"131":0.02172,"132":0.01086,"133":0.01086,"134":0.01629,"135":0.01629,"136":0.01629,"137":0.01086,"138":0.03257,"139":0.02715,"140":0.08686,"141":0.81978,"142":5.44529,"143":0.01086,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 123 124 125 127"},E:{"9":0.00543,"14":0.02172,"15":0.00543,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00543,"12.1":0.01086,"13.1":0.05429,"14.1":0.04886,"15.1":0.01086,"15.2-15.3":0.00543,"15.4":0.01086,"15.5":0.02172,"15.6":0.16287,"16.0":0.01086,"16.1":0.02172,"16.2":0.01629,"16.3":0.038,"16.4":0.01629,"16.5":0.02715,"16.6":0.28774,"17.0":0.01086,"17.1":0.2063,"17.2":0.01629,"17.3":0.02715,"17.4":0.05429,"17.5":0.07601,"17.6":0.3746,"18.0":0.02172,"18.1":0.05429,"18.2":0.02715,"18.3":0.10858,"18.4":0.05972,"18.5-18.6":0.23888,"26.0":0.39089,"26.1":0.45061,"26.2":0.01629},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00231,"5.0-5.1":0,"6.0-6.1":0.00926,"7.0-7.1":0.00694,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02083,"10.0-10.2":0.00231,"10.3":0.03704,"11.0-11.2":0.43054,"11.3-11.4":0.01389,"12.0-12.1":0.00463,"12.2-12.5":0.10879,"13.0-13.1":0,"13.2":0.01157,"13.3":0.00463,"13.4-13.7":0.02083,"14.0-14.4":0.03472,"14.5-14.8":0.04398,"15.0-15.1":0.03704,"15.2-15.3":0.03009,"15.4":0.03241,"15.5":0.03472,"15.6-15.8":0.5023,"16.0":0.0625,"16.1":0.11574,"16.2":0.06018,"16.3":0.11111,"16.4":0.02778,"16.5":0.0463,"16.6-16.7":0.67822,"17.0":0.05787,"17.1":0.06944,"17.2":0.05092,"17.3":0.07176,"17.4":0.11805,"17.5":0.22453,"17.6-17.7":0.55091,"18.0":0.12268,"18.1":0.25925,"18.2":0.13889,"18.3":0.45138,"18.4":0.23148,"18.5-18.7":16.16393,"26.0":1.10877,"26.1":1.01155},P:{"4":0.02144,"21":0.01072,"22":0.01072,"23":0.02144,"24":0.01072,"25":0.01072,"26":0.02144,"27":0.02144,"28":0.13937,"29":1.21141,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01072},I:{"0":0.45646,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00023},K:{"0":0.27426,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01508,"9":0.04524,"11":0.0754,_:"6 7 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00457,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00914},O:{"0":0.02743},H:{"0":0},L:{"0":21.34959},R:{_:"0"},M:{"0":0.57138}};
Index: node_modules/caniuse-lite/data/regions/UY.js
===================================================================
--- node_modules/caniuse-lite/data/regions/UY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/UY.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03559,"52":0.01424,"60":0.00712,"83":0.01424,"113":0.00712,"115":0.07118,"120":0.00712,"121":0.01424,"128":0.02135,"134":0.00712,"136":0.01424,"137":0.00712,"138":0.00712,"139":0.01424,"140":0.02135,"142":0.00712,"143":0.01424,"144":0.53385,"145":0.45555,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 122 123 124 125 126 127 129 130 131 132 133 135 141 146 147 148 3.5 3.6"},D:{"49":0.00712,"69":0.03559,"70":0.00712,"75":0.00712,"79":0.01424,"80":0.00712,"86":0.02847,"87":0.02135,"88":0.00712,"90":0.00712,"93":0.00712,"97":0.00712,"103":0.01424,"104":0.00712,"105":0.00712,"108":0.00712,"109":0.49114,"110":0.00712,"111":0.04271,"112":30.69282,"114":0.00712,"116":0.02847,"119":0.01424,"120":0.00712,"122":0.07118,"123":0.02135,"124":0.01424,"125":0.80433,"126":6.42044,"127":0.02847,"128":0.05694,"129":0.00712,"130":0.02135,"131":0.1566,"132":0.05694,"133":0.0783,"134":0.04271,"135":0.04983,"136":0.02135,"137":0.04983,"138":0.10677,"139":0.09253,"140":0.26337,"141":4.17115,"142":15.92297,"143":0.03559,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 74 76 77 78 81 83 84 85 89 91 92 94 95 96 98 99 100 101 102 106 107 113 115 117 118 121 144 145 146"},F:{"37":0.00712,"95":0.01424,"120":0.00712,"122":0.74027,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"80":0.00712,"92":0.01424,"114":0.62638,"122":0.00712,"134":0.00712,"136":0.00712,"137":0.00712,"138":0.01424,"139":0.02135,"140":0.01424,"141":0.27048,"142":2.60519,"143":0.00712,_:"12 13 14 15 16 17 18 79 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 130 131 132 133 135"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.2-15.3 15.4 16.0 16.2 16.5 17.0 17.2 18.0 18.2 26.2","14.1":0.00712,"15.1":0.01424,"15.5":0.00712,"15.6":0.00712,"16.1":0.00712,"16.3":0.00712,"16.4":0.00712,"16.6":0.02847,"17.1":0.02135,"17.3":0.00712,"17.4":0.00712,"17.5":0.02135,"17.6":0.04983,"18.1":0.02847,"18.3":0.01424,"18.4":0.00712,"18.5-18.6":0.04271,"26.0":0.07118,"26.1":0.13524},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00074,"5.0-5.1":0,"6.0-6.1":0.00296,"7.0-7.1":0.00222,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00666,"10.0-10.2":0.00074,"10.3":0.01183,"11.0-11.2":0.13755,"11.3-11.4":0.00444,"12.0-12.1":0.00148,"12.2-12.5":0.03476,"13.0-13.1":0,"13.2":0.0037,"13.3":0.00148,"13.4-13.7":0.00666,"14.0-14.4":0.01109,"14.5-14.8":0.01405,"15.0-15.1":0.01183,"15.2-15.3":0.00961,"15.4":0.01035,"15.5":0.01109,"15.6-15.8":0.16048,"16.0":0.01997,"16.1":0.03698,"16.2":0.01923,"16.3":0.0355,"16.4":0.00887,"16.5":0.01479,"16.6-16.7":0.21668,"17.0":0.01849,"17.1":0.02219,"17.2":0.01627,"17.3":0.02293,"17.4":0.03772,"17.5":0.07173,"17.6-17.7":0.17601,"18.0":0.03919,"18.1":0.08283,"18.2":0.04437,"18.3":0.14421,"18.4":0.07395,"18.5-18.7":5.16408,"26.0":0.35423,"26.1":0.32317},P:{"24":0.01059,"25":0.01059,"26":0.01059,"27":0.03177,"28":0.14826,"29":0.66715,_:"4 20 21 22 23 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01059,"7.2-7.4":0.02118},I:{"0":0.00863,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.05764,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.0317},H:{"0":0},L:{"0":22.76134},R:{_:"0"},M:{"0":0.14122}};
Index: node_modules/caniuse-lite/data/regions/UZ.js
===================================================================
--- node_modules/caniuse-lite/data/regions/UZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/UZ.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.09584,"52":0.03195,"68":0.01278,"69":0.00639,"115":0.07028,"125":0.00639,"128":0.01278,"134":0.00639,"136":0.00639,"140":0.03195,"141":0.01278,"142":0.00639,"143":0.01278,"144":0.24278,"145":0.30028,"146":0.00639,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 132 133 135 137 138 139 147 148 3.5 3.6"},D:{"27":0.00639,"32":0.00639,"49":0.02556,"58":0.00639,"62":0.00639,"66":0.01278,"69":0.10222,"71":0.00639,"72":0.00639,"73":0.01278,"75":0.00639,"79":0.01917,"80":0.00639,"81":0.00639,"83":0.01917,"86":0.01278,"87":0.0575,"89":0.01917,"91":0.01278,"94":0.00639,"97":0.00639,"98":0.01278,"99":0.00639,"101":0.00639,"102":0.00639,"103":0.00639,"104":0.03833,"106":0.02556,"107":0.02556,"108":0.01278,"109":1.32252,"110":0.00639,"111":0.10222,"112":11.9091,"113":0.00639,"114":0.01278,"116":0.04472,"118":0.00639,"119":0.01278,"120":0.01917,"121":0.01278,"122":0.33223,"123":0.03195,"124":0.01278,"125":1.66114,"126":12.16466,"127":0.00639,"128":0.02556,"129":0.01917,"130":0.01917,"131":0.08945,"132":0.23,"133":0.04472,"134":0.07028,"135":0.05111,"136":0.04472,"137":0.07667,"138":0.1725,"139":0.10861,"140":0.37695,"141":3.32867,"142":13.91524,"143":0.02556,"144":0.03833,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 63 64 65 67 68 70 74 76 77 78 84 85 88 90 92 93 95 96 100 105 115 117 145 146"},F:{"63":0.00639,"67":0.00639,"79":0.00639,"92":0.0575,"93":0.00639,"95":0.03195,"122":0.12778,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01917,"92":0.02556,"100":0.00639,"109":0.00639,"113":0.00639,"114":2.59393,"119":0.00639,"120":0.00639,"122":0.00639,"123":0.00639,"124":0.00639,"129":0.00639,"130":0.00639,"131":0.01917,"132":0.00639,"133":0.01278,"134":0.00639,"135":0.01917,"136":0.01917,"137":0.01278,"138":0.00639,"139":0.01278,"140":0.04472,"141":0.19167,"142":2.25532,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118 121 125 126 127 128 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 17.0","5.1":0.03195,"9.1":0.00639,"15.6":0.01278,"16.3":0.00639,"16.5":0.01917,"16.6":0.01278,"17.1":0.00639,"17.2":0.00639,"17.3":0.00639,"17.4":0.00639,"17.5":0.00639,"17.6":0.04472,"18.0":0.00639,"18.1":0.01278,"18.2":0.00639,"18.3":0.01917,"18.4":0.01917,"18.5-18.6":0.05111,"26.0":0.12778,"26.1":0.10861,"26.2":0.00639},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00044,"5.0-5.1":0,"6.0-6.1":0.00176,"7.0-7.1":0.00132,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00396,"10.0-10.2":0.00044,"10.3":0.00704,"11.0-11.2":0.08187,"11.3-11.4":0.00264,"12.0-12.1":0.00088,"12.2-12.5":0.02069,"13.0-13.1":0,"13.2":0.0022,"13.3":0.00088,"13.4-13.7":0.00396,"14.0-14.4":0.0066,"14.5-14.8":0.00836,"15.0-15.1":0.00704,"15.2-15.3":0.00572,"15.4":0.00616,"15.5":0.0066,"15.6-15.8":0.09552,"16.0":0.01188,"16.1":0.02201,"16.2":0.01144,"16.3":0.02113,"16.4":0.00528,"16.5":0.0088,"16.6-16.7":0.12897,"17.0":0.011,"17.1":0.01321,"17.2":0.00968,"17.3":0.01365,"17.4":0.02245,"17.5":0.0427,"17.6-17.7":0.10476,"18.0":0.02333,"18.1":0.0493,"18.2":0.02641,"18.3":0.08584,"18.4":0.04402,"18.5-18.7":3.07378,"26.0":0.21085,"26.1":0.19236},P:{"4":0.07189,"21":0.01027,"22":0.02054,"23":0.02054,"24":0.02054,"25":0.04108,"26":0.06162,"27":0.11296,"28":0.26701,"29":1.02694,_:"20 5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0 19.0","6.2-6.4":0.02054,"7.2-7.4":0.08216,"13.0":0.01027,"17.0":0.01027},I:{"0":0.00361,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.38277,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.18741,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00361},O:{"0":0.81609},H:{"0":0},L:{"0":31.73512},R:{_:"0"},M:{"0":0.07583}};
Index: node_modules/caniuse-lite/data/regions/VA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/VA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/VA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.22761,"128":0.04065,"130":0.04065,"140":0.07316,"144":3.39792,"145":4.43031,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 131 132 133 134 135 136 137 138 139 141 142 143 146 147 148 3.5 3.6"},D:{"109":0.22761,"116":0.15445,"121":0.15445,"122":3.01586,"126":0.15445,"128":0.04065,"130":0.07316,"133":0.11381,"135":0.42271,"136":0.11381,"138":0.42271,"139":0.04065,"140":0.11381,"141":14.16885,"142":25.1999,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 117 118 119 120 123 124 125 127 129 131 132 134 137 143 144 145 146"},F:{"122":0.04065,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.04065,"140":0.22761,"141":3.51173,"142":19.28199,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 143"},E:{"13":0.07316,_:"0 4 5 6 7 8 9 10 11 12 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 17.4 18.0 18.1 18.2 18.5-18.6 26.2","14.1":0.04065,"16.6":0.11381,"17.1":0.26826,"17.5":0.04065,"17.6":0.34142,"18.3":0.04065,"18.4":0.56903,"26.0":0.11381,"26.1":0.72348},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00035,"5.0-5.1":0,"6.0-6.1":0.00141,"7.0-7.1":0.00106,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00317,"10.0-10.2":0.00035,"10.3":0.00563,"11.0-11.2":0.06546,"11.3-11.4":0.00211,"12.0-12.1":0.0007,"12.2-12.5":0.01654,"13.0-13.1":0,"13.2":0.00176,"13.3":0.0007,"13.4-13.7":0.00317,"14.0-14.4":0.00528,"14.5-14.8":0.00669,"15.0-15.1":0.00563,"15.2-15.3":0.00458,"15.4":0.00493,"15.5":0.00528,"15.6-15.8":0.07637,"16.0":0.0095,"16.1":0.0176,"16.2":0.00915,"16.3":0.01689,"16.4":0.00422,"16.5":0.00704,"16.6-16.7":0.10312,"17.0":0.0088,"17.1":0.01056,"17.2":0.00774,"17.3":0.01091,"17.4":0.01795,"17.5":0.03414,"17.6-17.7":0.08376,"18.0":0.01865,"18.1":0.03942,"18.2":0.02112,"18.3":0.06863,"18.4":0.03519,"18.5-18.7":2.45756,"26.0":0.16858,"26.1":0.1538},P:{"29":0.81576,_:"4 20 21 22 23 24 25 26 27 28 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":14.12624},R:{_:"0"},M:{"0":0.17213}};
Index: node_modules/caniuse-lite/data/regions/VC.js
===================================================================
--- node_modules/caniuse-lite/data/regions/VC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/VC.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.03121,"115":0.14045,"139":0.0052,"141":0.0052,"142":0.06242,"143":0.0052,"144":1.58141,"145":0.91035,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 140 146 147 148 3.5 3.6"},D:{"32":0.0052,"57":0.01561,"69":0.04162,"78":0.0052,"79":0.0052,"85":0.06763,"86":0.01561,"93":0.0104,"94":0.0104,"102":0.0104,"103":0.06242,"105":0.0104,"108":0.01561,"109":0.16126,"111":0.07283,"112":0.0052,"116":0.02081,"119":0.0052,"121":0.0052,"122":0.02081,"125":1.24848,"126":0.05722,"128":0.02601,"129":0.0104,"130":0.0104,"131":0.0052,"132":0.04682,"133":0.0052,"134":0.0104,"135":0.0052,"136":0.0052,"137":0.01561,"138":0.12485,"139":0.14045,"140":0.40576,"141":4.95751,"142":14.48237,"143":0.22369,"144":0.06763,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 80 81 83 84 87 88 89 90 91 92 95 96 97 98 99 100 101 104 106 107 110 113 114 115 117 118 120 123 124 127 145 146"},F:{"63":0.02081,"92":0.11965,"93":0.01561,"117":0.0052,"120":0.0104,"122":1.13404,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.0104,"109":0.0052,"114":0.08843,"124":0.0052,"130":0.0104,"139":0.0052,"140":0.04682,"141":0.86873,"142":5.77942,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 125 126 127 128 129 131 132 133 134 135 136 137 138 143"},E:{"15":0.0052,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.5 16.0 16.3 16.4 17.0 17.4 18.2","15.4":0.0052,"15.6":4.51534,"16.1":0.0052,"16.2":0.0052,"16.5":0.0104,"16.6":0.17167,"17.1":0.04682,"17.2":0.0052,"17.3":0.02081,"17.5":0.01561,"17.6":0.11965,"18.0":0.0052,"18.1":0.02081,"18.3":0.15606,"18.4":0.01561,"18.5-18.6":0.11444,"26.0":0.84272,"26.1":0.7803,"26.2":0.06242},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00113,"5.0-5.1":0,"6.0-6.1":0.0045,"7.0-7.1":0.00338,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01013,"10.0-10.2":0.00113,"10.3":0.018,"11.0-11.2":0.20927,"11.3-11.4":0.00675,"12.0-12.1":0.00225,"12.2-12.5":0.05288,"13.0-13.1":0,"13.2":0.00563,"13.3":0.00225,"13.4-13.7":0.01013,"14.0-14.4":0.01688,"14.5-14.8":0.02138,"15.0-15.1":0.018,"15.2-15.3":0.01463,"15.4":0.01575,"15.5":0.01688,"15.6-15.8":0.24415,"16.0":0.03038,"16.1":0.05626,"16.2":0.02925,"16.3":0.05401,"16.4":0.0135,"16.5":0.0225,"16.6-16.7":0.32966,"17.0":0.02813,"17.1":0.03375,"17.2":0.02475,"17.3":0.03488,"17.4":0.05738,"17.5":0.10914,"17.6-17.7":0.26778,"18.0":0.05963,"18.1":0.12601,"18.2":0.06751,"18.3":0.2194,"18.4":0.11251,"18.5-18.7":7.85679,"26.0":0.53894,"26.1":0.49168},P:{"4":0.04269,"21":0.05336,"22":0.01067,"23":0.01067,"24":0.01067,"25":0.04269,"26":0.09604,"27":0.01067,"28":0.13873,"29":1.44064,_:"20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.03354,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.12475,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.0048},O:{"0":0.0048},H:{"0":0},L:{"0":42.35658},R:{_:"0"},M:{"0":0.07677}};
Index: node_modules/caniuse-lite/data/regions/VE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/VE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/VE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.91927,"5":0.04714,"52":0.02357,"55":0.00786,"75":0.00786,"91":0.00786,"115":0.275,"120":0.00786,"123":0.00786,"128":0.01571,"134":0.00786,"136":0.00786,"138":0.00786,"139":0.00786,"140":0.03143,"141":0.00786,"142":0.00786,"143":0.01571,"144":0.36928,"145":0.52642,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 122 124 125 126 127 129 130 131 132 133 135 137 146 147 148 3.5 3.6"},D:{"49":0.01571,"65":0.00786,"69":0.04714,"71":0.00786,"73":0.01571,"75":0.00786,"76":0.00786,"79":0.00786,"81":0.00786,"83":0.00786,"85":0.02357,"87":0.01571,"91":0.00786,"93":0.01571,"97":0.02357,"98":0.00786,"99":0.00786,"100":0.00786,"101":0.00786,"102":0.00786,"103":0.02357,"104":0.02357,"108":0.00786,"109":1.81497,"110":0.00786,"111":0.04714,"112":39.42643,"113":0.00786,"114":0.04714,"116":0.04714,"118":0.00786,"119":0.01571,"120":0.01571,"121":0.01571,"122":0.14928,"123":0.00786,"124":0.00786,"125":0.8407,"126":9.38912,"127":0.00786,"128":0.055,"129":0.00786,"130":0.03929,"131":0.03929,"132":0.07857,"133":0.03143,"134":0.03143,"135":0.03143,"136":0.04714,"137":0.07857,"138":0.13357,"139":0.06286,"140":0.22,"141":2.27853,"142":9.40483,"143":0.03143,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 70 72 74 77 78 80 84 86 88 89 90 92 94 95 96 105 106 107 115 117 144 145 146"},F:{"92":0.04714,"93":0.00786,"95":0.06286,"122":0.46356,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00786,"85":0.00786,"92":0.02357,"109":0.03143,"114":1.13141,"121":0.00786,"122":0.00786,"131":0.00786,"133":0.00786,"134":0.01571,"135":0.00786,"136":0.00786,"137":0.01571,"138":0.00786,"139":0.00786,"140":0.03143,"141":0.25142,"142":2.1921,"143":0.00786,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 123 124 125 126 127 128 129 130 132"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.4 17.5 18.0 18.1 18.2","5.1":0.02357,"15.4":0.00786,"15.6":0.01571,"16.6":0.01571,"17.1":0.00786,"17.3":0.00786,"17.6":0.01571,"18.3":0.00786,"18.4":0.00786,"18.5-18.6":0.02357,"26.0":0.03143,"26.1":0.07071,"26.2":0.00786},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0002,"5.0-5.1":0,"6.0-6.1":0.00081,"7.0-7.1":0.00061,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00182,"10.0-10.2":0.0002,"10.3":0.00324,"11.0-11.2":0.03767,"11.3-11.4":0.00122,"12.0-12.1":0.00041,"12.2-12.5":0.00952,"13.0-13.1":0,"13.2":0.00101,"13.3":0.00041,"13.4-13.7":0.00182,"14.0-14.4":0.00304,"14.5-14.8":0.00385,"15.0-15.1":0.00324,"15.2-15.3":0.00263,"15.4":0.00284,"15.5":0.00304,"15.6-15.8":0.04395,"16.0":0.00547,"16.1":0.01013,"16.2":0.00527,"16.3":0.00972,"16.4":0.00243,"16.5":0.00405,"16.6-16.7":0.05934,"17.0":0.00506,"17.1":0.00608,"17.2":0.00446,"17.3":0.00628,"17.4":0.01033,"17.5":0.01964,"17.6-17.7":0.0482,"18.0":0.01073,"18.1":0.02268,"18.2":0.01215,"18.3":0.03949,"18.4":0.02025,"18.5-18.7":1.41415,"26.0":0.097,"26.1":0.0885},P:{"23":0.01159,"26":0.01159,"27":0.01159,"28":0.02317,"29":0.30123,_:"4 20 21 22 24 25 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01159},I:{"0":0.00642,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.19073,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.12571,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00214,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.015},H:{"0":0},L:{"0":23.1997},R:{_:"0"},M:{"0":0.14358}};
Index: node_modules/caniuse-lite/data/regions/VG.js
===================================================================
--- node_modules/caniuse-lite/data/regions/VG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/VG.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"101":0.00913,"115":0.00913,"123":0.00913,"128":0.01827,"144":0.03654,"145":0.04567,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 124 125 126 127 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 146 147 148 3.5 3.6"},D:{"69":0.00913,"101":0.00913,"102":0.00913,"109":0.00913,"111":0.00913,"112":0.00913,"121":0.01827,"122":0.0274,"125":0.11874,"126":0.00913,"127":0.00913,"128":0.00913,"132":0.00913,"134":68.64201,"135":0.00913,"138":0.00913,"139":15.25378,"140":0.03654,"141":0.886,"142":2.66713,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 103 104 105 106 107 108 110 113 114 115 116 117 118 119 120 123 124 129 130 131 133 136 137 143 144 145 146"},F:{"95":0.00913,"122":0.12788,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"114":0.01827,"129":0.09134,"131":0.00913,"132":0.01827,"136":0.14614,"141":0.16441,"142":1.36097,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 130 133 134 135 137 138 139 140 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.3 17.4 17.5 18.0","16.6":0.10047,"17.6":0.00913,"18.1":0.0274,"18.2":0.08221,"18.3":0.00913,"18.4":0.00913,"18.5-18.6":0.03654,"26.0":0.08221,"26.1":0.03654,"26.2":0.00913},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00043,"5.0-5.1":0,"6.0-6.1":0.00173,"7.0-7.1":0.0013,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0039,"10.0-10.2":0.00043,"10.3":0.00693,"11.0-11.2":0.08055,"11.3-11.4":0.0026,"12.0-12.1":0.00087,"12.2-12.5":0.02036,"13.0-13.1":0,"13.2":0.00217,"13.3":0.00087,"13.4-13.7":0.0039,"14.0-14.4":0.0065,"14.5-14.8":0.00823,"15.0-15.1":0.00693,"15.2-15.3":0.00563,"15.4":0.00606,"15.5":0.0065,"15.6-15.8":0.09398,"16.0":0.01169,"16.1":0.02165,"16.2":0.01126,"16.3":0.02079,"16.4":0.0052,"16.5":0.00866,"16.6-16.7":0.12689,"17.0":0.01083,"17.1":0.01299,"17.2":0.00953,"17.3":0.01343,"17.4":0.02209,"17.5":0.04201,"17.6-17.7":0.10307,"18.0":0.02295,"18.1":0.04851,"18.2":0.02599,"18.3":0.08445,"18.4":0.04331,"18.5-18.7":3.02424,"26.0":0.20745,"26.1":0.18926},P:{"23":0.01072,"24":0.01072,"25":0.01072,"27":0.01072,"28":0.03216,"29":0.3538,_:"4 20 21 22 26 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.10721},I:{"0":0.00086,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.01645,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":4.08763},R:{_:"0"},M:{"0":0.01732}};
Index: node_modules/caniuse-lite/data/regions/VI.js
===================================================================
--- node_modules/caniuse-lite/data/regions/VI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/VI.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.02198,"115":0.43071,"118":0.01758,"138":0.03077,"140":0.00879,"141":0.01319,"142":0.05714,"143":0.04835,"144":2.83478,"145":1.79316,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 139 146 147 148 3.5 3.6"},D:{"58":0.00879,"69":0.02198,"87":0.0044,"99":0.0044,"103":0.02198,"104":0.0044,"107":0.0044,"108":0.0044,"109":0.23733,"111":0.02637,"116":0.05714,"120":0.01319,"121":0.02198,"122":0.01319,"125":0.47906,"126":0.05274,"127":0.01319,"128":0.00879,"130":0.06593,"132":0.05714,"133":0.03956,"134":0.00879,"135":0.01758,"136":0.00879,"137":0.03956,"138":0.48345,"139":0.08351,"140":0.28568,"141":3.95111,"142":10.56119,"143":0.03516,"144":0.01319,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 100 101 102 105 106 110 112 113 114 115 117 118 119 123 124 129 131 145 146"},F:{"95":0.0044,"109":0.0044,"122":0.07911,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"85":0.0044,"100":0.03516,"109":0.02198,"114":0.0044,"133":0.02198,"136":0.0044,"138":0.01319,"139":0.05274,"140":0.03956,"141":1.21742,"142":7.88024,"143":0.01319,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 134 135 137"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 18.0 26.2","15.6":0.0879,"16.3":0.01758,"16.5":0.01319,"16.6":0.14943,"17.0":0.00879,"17.1":0.50982,"17.2":0.0044,"17.3":0.03077,"17.4":0.0879,"17.5":0.05714,"17.6":0.14064,"18.1":0.01319,"18.2":0.04395,"18.3":0.08351,"18.4":0.14943,"18.5-18.6":0.71639,"26.0":0.48345,"26.1":0.7032},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0031,"5.0-5.1":0,"6.0-6.1":0.01241,"7.0-7.1":0.00931,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02792,"10.0-10.2":0.0031,"10.3":0.04964,"11.0-11.2":0.57704,"11.3-11.4":0.01861,"12.0-12.1":0.0062,"12.2-12.5":0.14581,"13.0-13.1":0,"13.2":0.01551,"13.3":0.0062,"13.4-13.7":0.02792,"14.0-14.4":0.04654,"14.5-14.8":0.05894,"15.0-15.1":0.04964,"15.2-15.3":0.04033,"15.4":0.04343,"15.5":0.04654,"15.6-15.8":0.67321,"16.0":0.08376,"16.1":0.15512,"16.2":0.08066,"16.3":0.14891,"16.4":0.03723,"16.5":0.06205,"16.6-16.7":0.90899,"17.0":0.07756,"17.1":0.09307,"17.2":0.06825,"17.3":0.09617,"17.4":0.15822,"17.5":0.30093,"17.6-17.7":0.73836,"18.0":0.16443,"18.1":0.34746,"18.2":0.18614,"18.3":0.60496,"18.4":0.31024,"18.5-18.7":21.66378,"26.0":1.48603,"26.1":1.35573},P:{"4":0.01071,"22":0.02142,"24":0.01071,"25":0.01071,"26":0.01071,"27":0.01071,"28":0.12849,"29":1.82032,_:"20 21 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.0056,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.00561,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.06593,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01682},H:{"0":0},L:{"0":24.30616},R:{_:"0"},M:{"0":0.70075}};
Index: node_modules/caniuse-lite/data/regions/VN.js
===================================================================
--- node_modules/caniuse-lite/data/regions/VN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/VN.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.00595,"54":0.00298,"59":0.00298,"75":0.00298,"113":0.00298,"115":0.04763,"117":0.00298,"118":0.00298,"125":0.02084,"127":0.00298,"128":0.00595,"134":0.00298,"135":0.00298,"136":0.01489,"138":0.00298,"140":0.00595,"141":0.00298,"142":0.00298,"143":0.00595,"144":0.21732,"145":0.23221,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 119 120 121 122 123 124 126 129 130 131 132 133 137 139 146 147 148 3.5 3.6"},D:{"26":0.00298,"34":0.01786,"38":0.02084,"39":0.00595,"40":0.00595,"41":0.00595,"42":0.00595,"43":0.00595,"44":0.00595,"45":0.00595,"46":0.00595,"47":0.00893,"48":0.01191,"49":0.00893,"50":0.00595,"51":0.00595,"52":0.00595,"53":0.00595,"54":0.00595,"55":0.00595,"56":0.00595,"57":0.01191,"58":0.00595,"59":0.00595,"60":0.00595,"66":0.00893,"69":0.00298,"71":0.00298,"75":0.00298,"79":0.04168,"80":0.00298,"81":0.00595,"83":0.00298,"85":0.00893,"86":0.00298,"87":0.05359,"89":0.00595,"90":0.00298,"91":0.00595,"99":0.00893,"100":0.04466,"101":0.00595,"102":0.00893,"103":0.05061,"104":0.02679,"105":0.01489,"106":0.00893,"107":0.02679,"108":0.01786,"109":0.52395,"110":0.00298,"111":0.00893,"112":0.01786,"113":0.00298,"114":0.01191,"115":0.02382,"116":0.02679,"117":0.00298,"118":0.00595,"119":0.01786,"120":0.0387,"121":0.03275,"122":0.35724,"123":0.01489,"124":0.12801,"125":0.86928,"126":0.19946,"127":0.04168,"128":0.11908,"129":0.01786,"130":0.03572,"131":0.06252,"132":0.02977,"133":0.03572,"134":0.03572,"135":0.23518,"136":0.04466,"137":0.05954,"138":0.13694,"139":0.1429,"140":0.20839,"141":2.60785,"142":9.16618,"143":0.02084,"144":0.00298,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 61 62 63 64 65 67 68 70 72 73 74 76 77 78 84 88 92 93 94 95 96 97 98 145 146"},F:{"36":0.00893,"46":0.00595,"62":0.00298,"85":0.00595,"86":0.00298,"92":0.04168,"93":0.00595,"95":0.00595,"114":0.00298,"115":0.00298,"116":0.00298,"119":0.00298,"122":0.08038,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 117 118 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00298,"18":0.00298,"92":0.00298,"100":0.00298,"101":0.00298,"103":0.00298,"105":0.00298,"106":0.00298,"107":0.00298,"108":0.00298,"109":0.01191,"110":0.00298,"111":0.00595,"112":0.00595,"113":0.00298,"114":0.02679,"115":0.00595,"116":0.00298,"117":0.00893,"118":0.00298,"119":0.00298,"120":0.00298,"121":0.00298,"122":0.00595,"123":0.00298,"124":0.00298,"125":0.00298,"126":0.00298,"127":0.00893,"128":0.01191,"129":0.00595,"130":0.00893,"131":0.0774,"132":0.00893,"133":0.00893,"134":0.00595,"135":0.00595,"136":0.00298,"137":0.00298,"138":0.01191,"139":0.00893,"140":0.02084,"141":0.20244,"142":1.83086,"143":0.00595,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 102 104"},E:{"14":0.00595,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 12.1 15.2-15.3","9.1":0.00298,"11.1":0.00298,"13.1":0.01191,"14.1":0.02382,"15.1":0.00298,"15.4":0.00595,"15.5":0.00893,"15.6":0.09229,"16.0":0.00298,"16.1":0.00595,"16.2":0.00595,"16.3":0.01489,"16.4":0.01191,"16.5":0.00893,"16.6":0.0774,"17.0":0.00298,"17.1":0.04763,"17.2":0.01191,"17.3":0.00595,"17.4":0.02084,"17.5":0.02679,"17.6":0.04168,"18.0":0.00595,"18.1":0.01191,"18.2":0.00595,"18.3":0.02679,"18.4":0.01489,"18.5-18.6":0.05954,"26.0":0.07443,"26.1":0.09824,"26.2":0.00595},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0021,"5.0-5.1":0,"6.0-6.1":0.0084,"7.0-7.1":0.0063,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01891,"10.0-10.2":0.0021,"10.3":0.03361,"11.0-11.2":0.39076,"11.3-11.4":0.01261,"12.0-12.1":0.0042,"12.2-12.5":0.09874,"13.0-13.1":0,"13.2":0.0105,"13.3":0.0042,"13.4-13.7":0.01891,"14.0-14.4":0.03151,"14.5-14.8":0.03992,"15.0-15.1":0.03361,"15.2-15.3":0.02731,"15.4":0.02941,"15.5":0.03151,"15.6-15.8":0.45589,"16.0":0.05672,"16.1":0.10504,"16.2":0.05462,"16.3":0.10084,"16.4":0.02521,"16.5":0.04202,"16.6-16.7":0.61556,"17.0":0.05252,"17.1":0.06303,"17.2":0.04622,"17.3":0.06513,"17.4":0.10714,"17.5":0.20379,"17.6-17.7":0.50001,"18.0":0.11135,"18.1":0.2353,"18.2":0.12605,"18.3":0.40967,"18.4":0.21009,"18.5-18.7":14.67043,"26.0":1.00632,"26.1":0.91808},P:{"4":0.18753,"20":0.01042,"21":0.03126,"22":0.04167,"23":0.04167,"24":0.03126,"25":0.07293,"26":0.12502,"27":0.1146,"28":0.32297,"29":1.69822,"5.0-5.4":0.01042,_:"6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.08335,"11.1-11.2":0.01042,"17.0":0.01042,"19.0":0.01042},I:{"0":0.01403,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.31608,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01786,"9":0.00357,"10":0.00714,"11":0.09645,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00702},O:{"0":0.83586},H:{"0":0},L:{"0":48.60136},R:{_:"0"},M:{"0":0.16858}};
Index: node_modules/caniuse-lite/data/regions/VU.js
===================================================================
--- node_modules/caniuse-lite/data/regions/VU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/VU.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.02374,"136":0.00593,"141":0.01484,"142":0.05044,"144":0.37978,"145":0.31154,"146":0.00593,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 140 143 147 148 3.5 3.6"},D:{"58":0.00593,"59":0.02374,"78":0.00593,"81":0.0356,"88":0.00593,"94":0.00593,"103":0.0178,"109":0.05934,"111":0.0178,"114":0.00593,"116":0.00593,"117":0.00593,"119":0.00593,"120":0.00593,"122":0.0356,"125":0.29373,"126":0.13945,"127":0.02374,"128":0.0089,"131":0.03264,"132":0.00593,"134":0.03264,"135":0.04451,"136":0.0089,"137":0.09791,"138":0.13352,"139":0.06231,"140":0.51626,"141":2.47745,"142":8.96924,"143":0.00593,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 83 84 85 86 87 89 90 91 92 93 95 96 97 98 99 100 101 102 104 105 106 107 108 110 112 113 115 118 121 123 124 129 130 133 144 145 146"},F:{"88":0.01484,"94":0.00593,"122":0.11275,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.0089,"92":0.10385,"100":0.0089,"109":0.00593,"114":0.00593,"119":0.00593,"122":0.0267,"131":0.0267,"133":0.0089,"134":0.00593,"135":0.00593,"136":0.0178,"137":0.02374,"138":0.0089,"139":0.32044,"140":0.04154,"141":0.97318,"142":4.08556,_:"12 13 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 120 121 123 124 125 126 127 128 129 130 132 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.3 16.4 17.1 17.3 18.0","15.6":0.00593,"16.2":0.00593,"16.5":0.00593,"16.6":0.01484,"17.0":0.0089,"17.2":0.0089,"17.4":1.55768,"17.5":0.00593,"17.6":0.05341,"18.1":0.00593,"18.2":0.00593,"18.3":0.00593,"18.4":0.03264,"18.5-18.6":0.20472,"26.0":0.05044,"26.1":0.18395,"26.2":0.0267},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00072,"5.0-5.1":0,"6.0-6.1":0.00288,"7.0-7.1":0.00216,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00649,"10.0-10.2":0.00072,"10.3":0.01153,"11.0-11.2":0.13408,"11.3-11.4":0.00433,"12.0-12.1":0.00144,"12.2-12.5":0.03388,"13.0-13.1":0,"13.2":0.0036,"13.3":0.00144,"13.4-13.7":0.00649,"14.0-14.4":0.01081,"14.5-14.8":0.0137,"15.0-15.1":0.01153,"15.2-15.3":0.00937,"15.4":0.01009,"15.5":0.01081,"15.6-15.8":0.15643,"16.0":0.01946,"16.1":0.03604,"16.2":0.01874,"16.3":0.0346,"16.4":0.00865,"16.5":0.01442,"16.6-16.7":0.21122,"17.0":0.01802,"17.1":0.02163,"17.2":0.01586,"17.3":0.02235,"17.4":0.03677,"17.5":0.06993,"17.6-17.7":0.17157,"18.0":0.03821,"18.1":0.08074,"18.2":0.04325,"18.3":0.14057,"18.4":0.07209,"18.5-18.7":5.03392,"26.0":0.3453,"26.1":0.31503},P:{"21":0.01053,"22":0.11586,"23":0.02107,"24":0.01053,"25":0.16853,"27":0.0632,"28":0.47399,"29":8.14206,_:"4 20 26 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","16.0":0.01053},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.0955,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00703},O:{"0":0.00703},H:{"0":0.01},L:{"0":59.00501},R:{_:"0"},M:{"0":0.47121}};
Index: node_modules/caniuse-lite/data/regions/WF.js
===================================================================
--- node_modules/caniuse-lite/data/regions/WF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/WF.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"115":0.10472,"128":0.05236,"140":1.05281,"144":0.21131,"145":0.15895,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 136 137 138 139 141 142 143 146 147 148 3.5 3.6"},D:{"125":1.68487,"139":0.15895,"140":0.05236,"141":0.15895,"142":0.84337,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 126 127 128 129 130 131 132 133 134 135 136 137 138 143 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"114":0.10472,"142":0.5797,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 17.3 18.0 18.1 18.2 18.4 26.2","15.1":0.05236,"15.6":0.31603,"16.6":0.73678,"17.1":0.31603,"17.4":0.10472,"17.5":0.94809,"17.6":0.31603,"18.3":0.15895,"18.5-18.6":0.10472,"26.0":3.05558,"26.1":2.73955},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00302,"5.0-5.1":0,"6.0-6.1":0.01207,"7.0-7.1":0.00905,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02716,"10.0-10.2":0.00302,"10.3":0.04829,"11.0-11.2":0.56132,"11.3-11.4":0.01811,"12.0-12.1":0.00604,"12.2-12.5":0.14184,"13.0-13.1":0,"13.2":0.01509,"13.3":0.00604,"13.4-13.7":0.02716,"14.0-14.4":0.04527,"14.5-14.8":0.05734,"15.0-15.1":0.04829,"15.2-15.3":0.03923,"15.4":0.04225,"15.5":0.04527,"15.6-15.8":0.65487,"16.0":0.08148,"16.1":0.15089,"16.2":0.07846,"16.3":0.14486,"16.4":0.03621,"16.5":0.06036,"16.6-16.7":0.88423,"17.0":0.07545,"17.1":0.09054,"17.2":0.06639,"17.3":0.09355,"17.4":0.15391,"17.5":0.29273,"17.6-17.7":0.71825,"18.0":0.15995,"18.1":0.338,"18.2":0.18107,"18.3":0.58848,"18.4":0.30179,"18.5-18.7":21.07369,"26.0":1.44555,"26.1":1.3188},P:{"29":0.69105,_:"4 20 21 22 23 24 25 26 27 28 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":52.10713},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/WS.js
===================================================================
--- node_modules/caniuse-lite/data/regions/WS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/WS.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"141":0.0668,"144":0.10687,"145":0.16031,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 142 143 146 147 148 3.5 3.6"},D:{"76":0.00891,"84":0.00891,"93":0.13804,"101":0.00891,"102":0.01781,"103":0.01781,"105":0.02227,"107":0.00891,"109":0.25827,"116":0.01781,"120":0.01781,"123":0.03117,"124":0.02227,"125":0.51655,"126":0.04008,"128":0.0668,"129":0.04008,"130":0.01781,"131":0.04898,"132":0.00891,"133":0.04898,"134":0.02227,"135":0.0668,"136":0.03117,"137":0.05789,"138":0.0668,"139":0.14695,"140":0.23601,"141":3.59802,"142":10.03706,"143":0.00891,"144":0.40522,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 83 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 104 106 108 110 111 112 113 114 115 117 118 119 121 122 127 145 146"},F:{"92":0.05789,"122":0.11133,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"83":0.01781,"92":0.01781,"110":0.00891,"114":0.07125,"120":0.01781,"124":0.00891,"130":0.02227,"131":0.00891,"133":0.03117,"134":0.02227,"135":0.00891,"136":0.08906,"137":0.01781,"138":0.20039,"139":0.10687,"140":0.04898,"141":0.88169,"142":8.88374,_:"12 13 14 15 16 17 18 79 80 81 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 113 115 116 117 118 119 121 122 123 125 126 127 128 129 132 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.0 16.2 16.4 16.5 17.0 17.2 17.4 18.0 18.2 26.2","14.1":0.00891,"15.5":0.00891,"15.6":0.02227,"16.1":0.13804,"16.3":0.02227,"16.6":0.0668,"17.1":0.07125,"17.3":0.17812,"17.5":1.89253,"17.6":0.04898,"18.1":0.69467,"18.3":0.05789,"18.4":0.11133,"18.5-18.6":0.0668,"26.0":0.03117,"26.1":0.00891},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0,"6.0-6.1":0.00284,"7.0-7.1":0.00213,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00639,"10.0-10.2":0.00071,"10.3":0.01136,"11.0-11.2":0.13206,"11.3-11.4":0.00426,"12.0-12.1":0.00142,"12.2-12.5":0.03337,"13.0-13.1":0,"13.2":0.00355,"13.3":0.00142,"13.4-13.7":0.00639,"14.0-14.4":0.01065,"14.5-14.8":0.01349,"15.0-15.1":0.01136,"15.2-15.3":0.00923,"15.4":0.00994,"15.5":0.01065,"15.6-15.8":0.15407,"16.0":0.01917,"16.1":0.0355,"16.2":0.01846,"16.3":0.03408,"16.4":0.00852,"16.5":0.0142,"16.6-16.7":0.20803,"17.0":0.01775,"17.1":0.0213,"17.2":0.01562,"17.3":0.02201,"17.4":0.03621,"17.5":0.06887,"17.6-17.7":0.16898,"18.0":0.03763,"18.1":0.07952,"18.2":0.0426,"18.3":0.13845,"18.4":0.071,"18.5-18.7":4.95804,"26.0":0.3401,"26.1":0.31028},P:{"4":0.01024,"20":0.01024,"21":0.11262,"22":0.20476,"23":0.04095,"24":0.19453,"25":2.05787,"26":0.12286,"27":0.61429,"28":2.01692,"29":1.49477,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 17.0 18.0","7.2-7.4":0.07167,"13.0":0.05119,"16.0":0.1331,"19.0":0.03071},I:{"0":0.01662,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":1.04838,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.02219},H:{"0":0},L:{"0":52.73886},R:{_:"0"},M:{"0":0.69338}};
Index: node_modules/caniuse-lite/data/regions/YE.js
===================================================================
--- node_modules/caniuse-lite/data/regions/YE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/YE.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"44":0.0028,"47":0.0028,"52":0.00559,"89":0.02238,"115":0.04475,"118":0.0028,"121":0.0028,"125":0.0028,"127":0.0028,"128":0.0028,"133":0.0028,"140":0.00839,"142":0.0028,"143":0.00839,"144":0.15663,"145":0.15384,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 122 123 124 126 129 130 131 132 134 135 136 137 138 139 141 146 147 148 3.5 3.6"},D:{"40":0.00559,"41":0.00559,"43":0.00559,"44":0.0028,"55":0.0028,"56":0.0028,"57":0.0028,"58":0.0028,"63":0.0028,"65":0.0028,"66":0.0028,"67":0.00559,"68":0.00559,"69":0.0028,"70":0.05594,"72":0.0028,"73":0.0028,"75":0.00559,"78":0.0028,"79":0.00839,"80":0.00559,"83":0.01678,"86":0.00559,"87":0.24054,"88":0.00559,"89":0.0028,"90":0.0028,"91":0.00559,"93":0.0028,"95":0.0028,"98":0.00559,"101":0.0028,"103":0.0028,"105":0.00559,"106":0.03916,"107":0.0028,"108":0.0028,"109":0.27131,"111":0.00559,"112":0.0028,"113":0.01119,"114":0.01958,"115":0.01399,"116":0.00559,"119":0.04755,"120":0.0028,"122":0.00559,"123":0.01958,"125":0.01399,"126":0.01119,"127":0.00839,"128":0.00839,"129":0.0028,"130":0.00559,"131":0.06433,"132":0.0028,"133":0.01399,"134":0.00839,"135":0.01119,"136":0.04196,"137":0.03356,"138":0.17062,"139":0.11468,"140":0.0923,"141":1.38172,"142":3.59135,"143":0.0028,"144":0.00559,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 42 45 46 47 48 49 50 51 52 53 54 59 60 61 62 64 71 74 76 77 81 84 85 92 94 96 97 99 100 102 104 110 117 118 121 124 145 146"},F:{"72":0.00839,"84":0.0028,"86":0.00839,"88":0.0028,"89":0.00559,"90":0.22935,"91":0.00559,"92":0.16223,"93":0.03636,"95":0.00559,"122":0.01119,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 85 87 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.0028,"15":0.00559,"16":0.0028,"18":0.0028,"89":0.0028,"92":0.02238,"114":0.01399,"122":0.00559,"130":0.0028,"134":0.0028,"135":0.0028,"136":0.00839,"137":0.0028,"138":0.00839,"139":0.00559,"140":0.03356,"141":0.13146,"142":1.04888,"143":0.00559,_:"12 14 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 123 124 125 126 127 128 129 131 132 133"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.4 17.5 17.6 18.2 26.2","5.1":0.05594,"15.2-15.3":0.01958,"15.4":0.03916,"15.6":0.00559,"16.6":0.01119,"17.3":0.0028,"18.0":0.0028,"18.1":0.0028,"18.3":0.0028,"18.4":0.00839,"18.5-18.6":0.03077,"26.0":0.01399,"26.1":0.00559},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00022,"5.0-5.1":0,"6.0-6.1":0.00087,"7.0-7.1":0.00065,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00196,"10.0-10.2":0.00022,"10.3":0.00348,"11.0-11.2":0.04047,"11.3-11.4":0.00131,"12.0-12.1":0.00044,"12.2-12.5":0.01023,"13.0-13.1":0,"13.2":0.00109,"13.3":0.00044,"13.4-13.7":0.00196,"14.0-14.4":0.00326,"14.5-14.8":0.00413,"15.0-15.1":0.00348,"15.2-15.3":0.00283,"15.4":0.00305,"15.5":0.00326,"15.6-15.8":0.04721,"16.0":0.00587,"16.1":0.01088,"16.2":0.00566,"16.3":0.01044,"16.4":0.00261,"16.5":0.00435,"16.6-16.7":0.06375,"17.0":0.00544,"17.1":0.00653,"17.2":0.00479,"17.3":0.00674,"17.4":0.0111,"17.5":0.0211,"17.6-17.7":0.05178,"18.0":0.01153,"18.1":0.02437,"18.2":0.01305,"18.3":0.04242,"18.4":0.02176,"18.5-18.7":1.51923,"26.0":0.10421,"26.1":0.09507},P:{"4":0.06025,"21":0.02008,"22":0.03012,"23":0.0502,"24":0.01004,"25":0.0502,"26":0.03012,"27":0.04016,"28":0.53217,"29":0.8334,_:"20 8.2 10.1 12.0 18.0","5.0-5.4":0.06025,"6.2-6.4":0.01004,"7.2-7.4":0.14057,"9.2":0.0502,"11.1-11.2":0.03012,"13.0":0.0502,"14.0":0.09037,"15.0":0.01004,"16.0":0.15061,"17.0":0.01004,"19.0":0.01004},I:{"0":0.15107,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":1.71422,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0028,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":2.43495},H:{"0":0.13},L:{"0":81.11026},R:{_:"0"},M:{"0":0.09365}};
Index: node_modules/caniuse-lite/data/regions/YT.js
===================================================================
--- node_modules/caniuse-lite/data/regions/YT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/YT.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.02339,"34":0.01337,"60":0.04345,"78":0.00334,"91":0.03342,"102":0.10026,"115":0.00334,"128":0.35091,"134":0.00334,"135":0.01337,"136":0.02005,"139":0.03342,"140":0.24062,"141":0.01337,"142":0.02339,"143":0.04345,"144":0.69848,"145":0.61827,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 137 138 146 147 148 3.5 3.6"},D:{"47":0.02005,"69":0.03008,"78":0.01003,"79":0.00334,"87":0.11363,"94":0.04679,"98":0.00334,"100":0.00334,"102":0.03342,"103":0.03008,"105":0.02339,"108":0.01337,"109":0.04679,"111":0.02339,"113":0.0635,"114":0.00334,"116":0.03008,"117":0.01003,"119":0.01337,"120":0.07018,"121":0.03008,"122":0.02005,"123":0.08021,"125":0.57148,"126":0.5414,"128":0.02005,"129":0.00334,"130":0.01337,"131":0.2306,"132":0.05681,"133":0.04345,"134":0.03342,"135":0.02005,"136":0.02005,"137":0.03342,"138":0.15373,"139":0.12031,"140":0.59488,"141":3.4055,"142":7.09172,"143":0.04345,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 80 81 83 84 85 86 88 89 90 91 92 93 95 96 97 99 101 104 106 107 110 112 115 118 124 127 144 145 146"},F:{"91":0.02005,"92":0.03342,"95":0.00334,"120":0.03342,"122":0.11363,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.01337,"90":0.00334,"95":0.00334,"100":0.03008,"109":0.03676,"114":1.79465,"122":0.02339,"123":0.00334,"131":0.00334,"132":0.00334,"133":0.01003,"135":0.03008,"136":0.02005,"137":0.00334,"138":0.00334,"139":0.02339,"140":0.07018,"141":0.67174,"142":4.1374,_:"12 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 124 125 126 127 128 129 130 134 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 17.0 17.2 18.2 18.3 18.4 26.2","13.1":0.05347,"14.1":0.00334,"15.1":0.00334,"15.6":0.0635,"16.5":0.0635,"16.6":0.80542,"17.1":0.04345,"17.3":0.00334,"17.4":0.04345,"17.5":0.02339,"17.6":0.21389,"18.0":0.01003,"18.1":0.10026,"18.5-18.6":0.07687,"26.0":0.13034,"26.1":0.11363},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00079,"5.0-5.1":0,"6.0-6.1":0.00316,"7.0-7.1":0.00237,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0071,"10.0-10.2":0.00079,"10.3":0.01263,"11.0-11.2":0.14677,"11.3-11.4":0.00473,"12.0-12.1":0.00158,"12.2-12.5":0.03709,"13.0-13.1":0,"13.2":0.00395,"13.3":0.00158,"13.4-13.7":0.0071,"14.0-14.4":0.01184,"14.5-14.8":0.01499,"15.0-15.1":0.01263,"15.2-15.3":0.01026,"15.4":0.01105,"15.5":0.01184,"15.6-15.8":0.17123,"16.0":0.02131,"16.1":0.03945,"16.2":0.02052,"16.3":0.03788,"16.4":0.00947,"16.5":0.01578,"16.6-16.7":0.2312,"17.0":0.01973,"17.1":0.02367,"17.2":0.01736,"17.3":0.02446,"17.4":0.04024,"17.5":0.07654,"17.6-17.7":0.1878,"18.0":0.04182,"18.1":0.08838,"18.2":0.04735,"18.3":0.15387,"18.4":0.07891,"18.5-18.7":5.51023,"26.0":0.37797,"26.1":0.34483},P:{"4":0.02027,"22":0.0608,"24":0.13172,"25":2.26971,"26":0.04053,"27":0.4357,"28":0.48637,"29":0.993,_:"20 21 23 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.22292,"14.0":0.02027},I:{"0":0.00665,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.9256,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00666},O:{"0":0.01332},H:{"0":0},L:{"0":59.64819},R:{_:"0"},M:{"0":0.31963}};
Index: node_modules/caniuse-lite/data/regions/ZA.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ZA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ZA.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00302,"34":0.00604,"52":0.00604,"59":0.00302,"78":0.00604,"108":0.00302,"115":0.03623,"127":0.00302,"128":0.00302,"132":0.00302,"136":0.00604,"140":0.0151,"141":0.00604,"142":0.00604,"143":0.00906,"144":0.19925,"145":0.22643,"146":0.00302,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 133 134 135 137 138 139 147 148 3.5 3.6"},D:{"39":0.00604,"40":0.00604,"41":0.00604,"42":0.00604,"43":0.00604,"44":0.00604,"45":0.00604,"46":0.00604,"47":0.00604,"48":0.00604,"49":0.00604,"50":0.00604,"51":0.00604,"52":0.08453,"53":0.00604,"54":0.00604,"55":0.00604,"56":0.00604,"57":0.00604,"58":0.00604,"59":0.00604,"60":0.00604,"65":0.00302,"66":0.00604,"69":0.00604,"70":0.00604,"75":0.00604,"78":0.00302,"79":0.01208,"81":0.00302,"83":0.00302,"86":0.00302,"87":0.01208,"88":0.01208,"90":0.00302,"91":0.00302,"94":0.00302,"98":0.27775,"99":0.00302,"100":0.00604,"101":0.00302,"102":0.00302,"103":0.00604,"104":0.00302,"107":0.00302,"108":0.00302,"109":0.32001,"110":0.00302,"111":0.02113,"112":3.08844,"114":0.04227,"116":0.02415,"117":0.00906,"118":0.00302,"119":0.01811,"120":0.00906,"121":0.00604,"122":0.02415,"123":0.00302,"124":0.00906,"125":0.10265,"126":0.73966,"127":0.00604,"128":0.02113,"129":0.00302,"130":0.09963,"131":0.03321,"132":0.0151,"133":0.03623,"134":0.0151,"135":0.01811,"136":0.03623,"137":0.02415,"138":0.1117,"139":0.13887,"140":0.18114,"141":2.31859,"142":5.7361,"143":0.00906,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 67 68 71 72 73 74 76 77 80 84 85 89 92 93 95 96 97 105 106 113 115 144 145 146"},F:{"84":0.00302,"86":0.00302,"90":0.00604,"91":0.00604,"92":0.13887,"93":0.0151,"95":0.0151,"102":0.00302,"109":0.00302,"122":0.09963,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 87 88 89 94 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00302,"92":0.00604,"100":0.00302,"109":0.0151,"114":0.06038,"118":0.0151,"122":0.00302,"126":0.00302,"127":0.00302,"131":0.00302,"133":0.00302,"134":0.00302,"135":0.00604,"136":0.00302,"137":0.00906,"138":0.00906,"139":0.00906,"140":0.02415,"141":0.27473,"142":2.10424,"143":0.00302,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 120 121 123 124 125 128 129 130 132"},E:{"15":0.00302,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.4 16.0 17.0","11.1":0.00302,"13.1":0.00604,"14.1":0.00604,"15.5":0.00302,"15.6":0.04529,"16.1":0.00302,"16.2":0.00302,"16.3":0.00604,"16.4":0.00302,"16.5":0.00302,"16.6":0.05736,"17.1":0.04227,"17.2":0.00302,"17.3":0.00302,"17.4":0.00604,"17.5":0.00906,"17.6":0.04529,"18.0":0.00302,"18.1":0.00906,"18.2":0.00302,"18.3":0.01208,"18.4":0.00906,"18.5-18.6":0.04529,"26.0":0.07246,"26.1":0.09057,"26.2":0.00302},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00091,"5.0-5.1":0,"6.0-6.1":0.00364,"7.0-7.1":0.00273,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00819,"10.0-10.2":0.00091,"10.3":0.01455,"11.0-11.2":0.16919,"11.3-11.4":0.00546,"12.0-12.1":0.00182,"12.2-12.5":0.04275,"13.0-13.1":0,"13.2":0.00455,"13.3":0.00182,"13.4-13.7":0.00819,"14.0-14.4":0.01364,"14.5-14.8":0.01728,"15.0-15.1":0.01455,"15.2-15.3":0.01183,"15.4":0.01273,"15.5":0.01364,"15.6-15.8":0.19739,"16.0":0.02456,"16.1":0.04548,"16.2":0.02365,"16.3":0.04366,"16.4":0.01092,"16.5":0.01819,"16.6-16.7":0.26652,"17.0":0.02274,"17.1":0.02729,"17.2":0.02001,"17.3":0.0282,"17.4":0.04639,"17.5":0.08823,"17.6-17.7":0.21649,"18.0":0.04821,"18.1":0.10188,"18.2":0.05458,"18.3":0.17738,"18.4":0.09096,"18.5-18.7":6.35191,"26.0":0.43571,"26.1":0.39751},P:{"4":0.03049,"20":0.01016,"21":0.01016,"22":0.03049,"23":0.03049,"24":0.1118,"25":0.06098,"26":0.06098,"27":0.1118,"28":0.68096,"29":5.55944,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 15.0 16.0","7.2-7.4":0.13213,"11.1-11.2":0.02033,"14.0":0.02033,"17.0":0.01016,"18.0":0.01016,"19.0":0.02033},I:{"0":0.02788,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":2.83221,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0151,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00698},O:{"0":0.10472},H:{"0":0.03},L:{"0":61.58824},R:{_:"0"},M:{"0":0.48867}};
Index: node_modules/caniuse-lite/data/regions/ZM.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ZM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ZM.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00533,"41":0.00267,"72":0.00267,"112":0.00267,"115":0.02932,"127":0.00533,"128":0.00267,"137":0.00267,"140":0.01066,"141":0.01066,"142":0.01066,"143":0.01866,"144":0.19721,"145":0.2212,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 134 135 136 138 139 146 147 148 3.5 3.6"},D:{"11":0.00267,"46":0.00267,"55":0.00267,"61":0.00267,"64":0.00267,"68":0.01066,"69":0.01066,"70":0.02132,"71":0.00533,"72":0.00267,"73":0.00533,"74":0.00267,"75":0.00267,"77":0.00533,"79":0.008,"80":0.00267,"81":0.00267,"83":0.02665,"86":0.008,"87":0.008,"88":0.00267,"89":0.008,"90":0.00267,"91":0.01333,"92":0.00267,"93":0.01333,"94":0.00267,"95":0.00533,"97":0.00267,"98":0.008,"101":0.00267,"103":0.03198,"105":0.008,"106":0.01866,"108":0.008,"109":0.26117,"110":0.00267,"111":0.01333,"114":0.01866,"115":0.00267,"116":0.01866,"117":0.00267,"118":0.00533,"119":0.01333,"120":0.008,"121":0.00267,"122":0.01599,"123":0.00533,"124":0.01066,"125":0.06663,"126":0.03465,"127":0.00533,"128":0.00267,"129":0.00533,"130":0.12792,"131":0.02932,"132":0.02665,"133":0.03731,"134":0.01866,"135":0.02399,"136":0.02665,"137":0.03465,"138":0.15457,"139":0.08795,"140":0.14658,"141":1.35116,"142":3.13671,"143":0.01333,"144":0.00267,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 56 57 58 59 60 62 63 65 66 67 76 78 84 85 96 99 100 102 104 107 112 113 145 146"},F:{"34":0.00267,"36":0.00267,"42":0.00267,"46":0.00267,"60":0.00267,"79":0.008,"86":0.00267,"89":0.00267,"90":0.008,"91":0.008,"92":0.06663,"93":0.01866,"95":0.02399,"102":0.00267,"113":0.00533,"114":0.00267,"119":0.00267,"120":0.00533,"122":0.11993,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 87 88 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 115 116 117 118 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02132,"13":0.03198,"14":0.02132,"15":0.00267,"16":0.00267,"17":0.00533,"18":0.02399,"84":0.00267,"89":0.00267,"90":0.01333,"92":0.06396,"100":0.01066,"109":0.008,"111":0.00267,"114":0.03998,"116":0.00267,"122":0.01333,"123":0.00267,"124":0.00267,"125":0.00267,"126":0.00267,"127":0.00267,"131":0.00267,"133":0.00267,"134":0.00267,"135":0.00533,"136":0.00267,"137":0.00533,"138":0.01599,"139":0.02132,"140":0.04264,"141":0.28516,"142":1.4924,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113 115 117 118 119 120 121 128 129 130 132 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.2 18.0 18.2 26.2","13.1":0.00533,"15.6":0.01866,"16.6":0.01866,"17.1":0.02132,"17.3":0.00267,"17.4":0.00267,"17.5":0.008,"17.6":0.01866,"18.1":0.00267,"18.3":0.00267,"18.4":0.00267,"18.5-18.6":0.01866,"26.0":0.02932,"26.1":0.02932},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00055,"5.0-5.1":0,"6.0-6.1":0.0022,"7.0-7.1":0.00165,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00495,"10.0-10.2":0.00055,"10.3":0.0088,"11.0-11.2":0.10234,"11.3-11.4":0.0033,"12.0-12.1":0.0011,"12.2-12.5":0.02586,"13.0-13.1":0,"13.2":0.00275,"13.3":0.0011,"13.4-13.7":0.00495,"14.0-14.4":0.00825,"14.5-14.8":0.01045,"15.0-15.1":0.0088,"15.2-15.3":0.00715,"15.4":0.0077,"15.5":0.00825,"15.6-15.8":0.11939,"16.0":0.01486,"16.1":0.02751,"16.2":0.01431,"16.3":0.02641,"16.4":0.0066,"16.5":0.011,"16.6-16.7":0.16121,"17.0":0.01376,"17.1":0.01651,"17.2":0.0121,"17.3":0.01706,"17.4":0.02806,"17.5":0.05337,"17.6-17.7":0.13095,"18.0":0.02916,"18.1":0.06162,"18.2":0.03301,"18.3":0.10729,"18.4":0.05502,"18.5-18.7":3.84205,"26.0":0.26355,"26.1":0.24044},P:{"4":0.04149,"21":0.01037,"22":0.01037,"23":0.01037,"24":0.06223,"25":0.09334,"26":0.04149,"27":0.12446,"28":0.40449,"29":0.59118,_:"20 6.2-6.4 8.2 10.1 12.0 13.0 14.0 15.0 17.0 18.0 19.0","5.0-5.4":0.02074,"7.2-7.4":0.05186,"9.2":0.02074,"11.1-11.2":0.01037,"16.0":0.01037},I:{"0":0.04395,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":11.16854,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.01199,"11":0.01199,_:"6 7 8 9 5.5"},N:{_:"10 11"},S:{"2.5":0.00734,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.01467},O:{"0":0.57221},H:{"0":1.31},L:{"0":69.44072},R:{_:"0"},M:{"0":0.07336}};
Index: node_modules/caniuse-lite/data/regions/ZW.js
===================================================================
--- node_modules/caniuse-lite/data/regions/ZW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/ZW.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00726,"88":0.00363,"112":0.00363,"115":0.10893,"127":0.01089,"128":0.00363,"133":0.00363,"136":0.00726,"138":0.00363,"139":0.00363,"140":0.01452,"141":0.00363,"142":0.01089,"143":0.0472,"144":0.4684,"145":0.50834,"146":0.02542,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 134 135 137 147 148 3.5 3.6"},D:{"11":0.00363,"49":0.00363,"50":0.00363,"59":0.00363,"63":0.00726,"64":0.02179,"65":0.00363,"67":0.00363,"68":0.00726,"69":0.01816,"70":0.02179,"71":0.00726,"72":0.00363,"73":0.00363,"74":0.00726,"75":0.00726,"76":0.01452,"77":0.00363,"78":0.02179,"79":0.02179,"80":0.01089,"81":0.00363,"83":0.00726,"84":0.00363,"85":0.00363,"86":0.01452,"87":0.02542,"88":0.00726,"89":0.00363,"90":0.01089,"91":0.02905,"92":0.01452,"93":0.01816,"95":0.00726,"98":0.01089,"99":0.00363,"102":0.01089,"103":0.02542,"104":0.01816,"105":0.00363,"106":0.00363,"107":0.00363,"108":0.00363,"109":0.34131,"110":0.01089,"111":0.03268,"112":0.07262,"114":0.01816,"115":0.00363,"116":0.02542,"117":0.00363,"118":0.00363,"119":0.0581,"120":0.01816,"121":0.00726,"122":0.0581,"123":0.00726,"124":0.01452,"125":0.17429,"126":0.1053,"127":0.01089,"128":0.05447,"129":0.01089,"130":0.02542,"131":0.06536,"132":0.04357,"133":0.03994,"134":0.04357,"135":0.06899,"136":0.06536,"137":0.13435,"138":0.27959,"139":0.47566,"140":0.47203,"141":3.69273,"142":7.66504,"143":0.02179,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 60 61 62 66 94 96 97 100 101 113 144 145 146"},F:{"34":0.00363,"36":0.01089,"76":0.00363,"79":0.00363,"91":0.00726,"92":0.06899,"93":0.00726,"95":0.01816,"110":0.00363,"113":0.00726,"114":0.00363,"120":0.00726,"121":0.00363,"122":0.34131,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 82 83 84 85 86 87 88 89 90 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 115 116 117 118 119 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00363,"13":0.00363,"15":0.01816,"16":0.01452,"17":0.01452,"18":0.07625,"84":0.00726,"89":0.00726,"90":0.0472,"91":0.00363,"92":0.07988,"100":0.01816,"104":0.00363,"108":0.00726,"109":0.02542,"111":0.01089,"112":0.00726,"114":0.13435,"120":0.00363,"121":0.00363,"122":0.02905,"126":0.00363,"127":0.00363,"128":0.00363,"129":0.00363,"130":0.00363,"131":0.01452,"132":0.00363,"133":0.0472,"134":0.00726,"135":0.00726,"136":0.02179,"137":0.02542,"138":0.0472,"139":0.07262,"140":0.13798,"141":0.83513,"142":3.89969,"143":0.00726,_:"14 79 80 81 83 85 86 87 88 93 94 95 96 97 98 99 101 102 103 105 106 107 110 113 115 116 117 118 119 123 124 125"},E:{"14":0.00726,"15":0.00363,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.5 17.0 17.2 17.3 18.0","9.1":0.01089,"12.1":0.00363,"13.1":0.02179,"14.1":0.05447,"15.5":0.00363,"15.6":0.02179,"16.3":0.00363,"16.4":0.00363,"16.6":0.04357,"17.1":0.02179,"17.4":0.02542,"17.5":0.01089,"17.6":0.07988,"18.1":0.00726,"18.2":0.01089,"18.3":0.01452,"18.4":0.01816,"18.5-18.6":0.0581,"26.0":0.18518,"26.1":0.19971,"26.2":0.00726},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00049,"5.0-5.1":0,"6.0-6.1":0.00198,"7.0-7.1":0.00148,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00445,"10.0-10.2":0.00049,"10.3":0.00792,"11.0-11.2":0.09206,"11.3-11.4":0.00297,"12.0-12.1":0.00099,"12.2-12.5":0.02326,"13.0-13.1":0,"13.2":0.00247,"13.3":0.00099,"13.4-13.7":0.00445,"14.0-14.4":0.00742,"14.5-14.8":0.0094,"15.0-15.1":0.00792,"15.2-15.3":0.00643,"15.4":0.00693,"15.5":0.00742,"15.6-15.8":0.1074,"16.0":0.01336,"16.1":0.02475,"16.2":0.01287,"16.3":0.02376,"16.4":0.00594,"16.5":0.0099,"16.6-16.7":0.14502,"17.0":0.01237,"17.1":0.01485,"17.2":0.01089,"17.3":0.01534,"17.4":0.02524,"17.5":0.04801,"17.6-17.7":0.1178,"18.0":0.02623,"18.1":0.05543,"18.2":0.0297,"18.3":0.09652,"18.4":0.04949,"18.5-18.7":3.45623,"26.0":0.23708,"26.1":0.21629},P:{"20":0.01034,"21":0.02069,"22":0.03103,"23":0.01034,"24":0.13446,"25":0.13446,"26":0.0724,"27":0.26893,"28":0.61026,"29":1.66528,_:"4 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","7.2-7.4":0.12412,"8.2":0.01034,"13.0":0.01034,"16.0":0.01034,"17.0":0.01034,"19.0":0.01034},I:{"0":0.03817,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":5.38724,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.01089,"11":0.01089,_:"6 7 8 9 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.08918},O:{"0":0.32487},H:{"0":0.04},L:{"0":60.11566},R:{_:"0"},M:{"0":0.23569}};
Index: node_modules/caniuse-lite/data/regions/alt-af.js
===================================================================
--- node_modules/caniuse-lite/data/regions/alt-af.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/alt-af.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00695,"52":0.0452,"78":0.00348,"115":0.2121,"127":0.00695,"128":0.00695,"136":0.00695,"138":0.00348,"140":0.03129,"141":0.00695,"142":0.00695,"143":0.02086,"144":0.35465,"145":0.41376,"146":0.00348,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 129 130 131 132 133 134 135 137 139 147 148 3.5 3.6"},D:{"43":0.00695,"45":0.00348,"47":0.00695,"48":0.00348,"49":0.00348,"52":0.02782,"56":0.00348,"58":0.00348,"62":0.00348,"65":0.00348,"66":0.00348,"68":0.00348,"69":0.01391,"70":0.01391,"71":0.00348,"72":0.00348,"73":0.00695,"74":0.00348,"75":0.00695,"76":0.00348,"78":0.00348,"79":0.02782,"80":0.00695,"81":0.00695,"83":0.01391,"85":0.00348,"86":0.01043,"87":0.02782,"88":0.00695,"91":0.00695,"93":0.00695,"94":0.00348,"95":0.00695,"98":0.09388,"100":0.00348,"101":0.00348,"102":0.00695,"103":0.02434,"104":0.01391,"105":0.01391,"106":0.00695,"108":0.01043,"109":0.85187,"110":0.00348,"111":0.02086,"112":4.73567,"113":0.00348,"114":0.03129,"116":0.03825,"117":0.00695,"118":0.00348,"119":0.02434,"120":0.01739,"121":0.01043,"122":0.0452,"123":0.01043,"124":0.01739,"125":0.1669,"126":1.06049,"127":0.01043,"128":0.03129,"129":0.01391,"130":0.04868,"131":0.05563,"132":0.03129,"133":0.03477,"134":0.19819,"135":0.03825,"136":0.04868,"137":0.05563,"138":0.18428,"139":0.22601,"140":0.25034,"141":2.5556,"142":7.13828,"143":0.02782,"144":0.00348,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 50 51 53 54 55 57 59 60 61 63 64 67 77 84 89 90 92 96 97 99 107 115 145 146"},F:{"79":0.00348,"89":0.00348,"90":0.01391,"91":0.01739,"92":0.14951,"93":0.02086,"95":0.02434,"120":0.00348,"122":0.15299,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01391,"90":0.00348,"92":0.02434,"100":0.00348,"109":0.01739,"114":0.12865,"118":0.00348,"122":0.01043,"131":0.01739,"133":0.00695,"134":0.00348,"135":0.00695,"136":0.00695,"137":0.01043,"138":0.01739,"139":0.02086,"140":0.03477,"141":0.28164,"142":2.03752,"143":0.00348,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 119 120 121 123 124 125 126 127 128 129 130 132"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 17.0 17.2 26.2","5.1":0.01391,"13.1":0.01043,"14.1":0.00695,"15.6":0.03825,"16.3":0.00348,"16.5":0.00348,"16.6":0.04172,"17.1":0.02086,"17.3":0.00348,"17.4":0.00695,"17.5":0.00695,"17.6":0.04172,"18.0":0.00348,"18.1":0.00695,"18.2":0.00348,"18.3":0.01391,"18.4":0.00695,"18.5-18.6":0.03477,"26.0":0.07302,"26.1":0.07649},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00072,"6.0-6.1":0,"7.0-7.1":0.01074,"8.1-8.4":0,"9.0-9.2":0.00143,"9.3":0.01074,"10.0-10.2":0.0043,"10.3":0.00931,"11.0-11.2":0.04655,"11.3-11.4":0.00215,"12.0-12.1":0.00072,"12.2-12.5":0.05658,"13.0-13.1":0,"13.2":0.00215,"13.3":0.00072,"13.4-13.7":0.00215,"14.0-14.4":0.00501,"14.5-14.8":0.00645,"15.0-15.1":0.0616,"15.2-15.3":0.01218,"15.4":0.01289,"15.5":0.01719,"15.6-15.8":0.40109,"16.0":0.03008,"16.1":0.0487,"16.2":0.02722,"16.3":0.04369,"16.4":0.01504,"16.5":0.02364,"16.6-16.7":0.40968,"17.0":0.01647,"17.1":0.02149,"17.2":0.01719,"17.3":0.0222,"17.4":0.03868,"17.5":0.08666,"17.6-17.7":0.15399,"18.0":0.06876,"18.1":0.12749,"18.2":0.08308,"18.3":0.21702,"18.4":0.11674,"18.5-18.7":4.10111,"26.0":0.44907,"26.1":0.36384},P:{"4":0.01061,"21":0.01061,"22":0.02122,"23":0.02122,"24":0.08488,"25":0.07427,"26":0.06366,"27":0.11671,"28":0.47745,"29":2.42968,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.1061,"11.1-11.2":0.01061,"19.0":0.01061},I:{"0":0.0586,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":5.18113,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0197,"10":0.00493,"11":0.09359,_:"6 7 9 5.5"},N:{_:"10 11"},S:{"2.5":0.01305,_:"3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.18264},H:{"0":0.67},L:{"0":58.13505},R:{_:"0"},M:{"0":0.28701}};
Index: node_modules/caniuse-lite/data/regions/alt-an.js
===================================================================
--- node_modules/caniuse-lite/data/regions/alt-an.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/alt-an.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"64":0.43486,"140":0.05756,"144":2.59637,"145":1.04239,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 141 142 143 146 147 148 3.5 3.6"},D:{"102":0.01919,"120":0.94646,"122":0.07674,"124":0.49242,"130":0.01919,"133":0.03837,"138":0.05756,"139":0.03837,"140":0.05756,"141":2.59637,"142":9.92504,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 123 125 126 127 128 129 131 132 134 135 136 137 143 144 145 146"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"137":0.01919,"141":0.09593,"142":12.7964,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 138 139 140 143"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4","15.5":0.01919,"15.6":0.37091,"16.0":0.05756,"16.1":0.96565,"16.2":0.01919,"16.3":0.41568,"16.4":0.01919,"16.5":0.19825,"16.6":2.47487,"17.0":0.07674,"17.1":2.63474,"17.2":0.62671,"17.3":0.47323,"17.4":1.17668,"17.5":0.45405,"17.6":9.50937,"18.0":0.31336,"18.1":0.05756,"18.2":0.01919,"18.3":0.05756,"18.4":0.15988,"18.5-18.6":0.35173,"26.0":1.11913,"26.1":1.6691,"26.2":0.01919},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.8":0.09874,"16.0":0.17633,"16.1":3.00459,"16.2":0.09874,"16.3":0.64535,"16.4":0,"16.5":0.11637,"16.6-16.7":7.17646,"17.0":0.11637,"17.1":0.05995,"17.2":0.15517,"17.3":0.50782,"17.4":0.76173,"17.5":0.80052,"17.6-17.7":4.67968,"18.0":0.25391,"18.1":0.2927,"18.2":0.02116,"18.3":0.07758,"18.4":0.13753,"18.5-18.7":16.09148,"26.0":0,"26.1":0},P:{"29":0.02162,_:"4 20 21 22 23 24 25 26 27 28 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":1.36193},R:{_:"0"},M:{_:"0"}};
Index: node_modules/caniuse-lite/data/regions/alt-as.js
===================================================================
--- node_modules/caniuse-lite/data/regions/alt-as.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/alt-as.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00833,"43":0.07495,"115":0.09577,"128":0.02498,"132":0.00833,"136":0.00416,"140":0.01249,"141":0.00833,"142":0.00416,"143":0.01666,"144":0.28315,"145":0.35394,"146":0.00416,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 129 130 131 133 134 135 137 138 139 147 148 3.5 3.6"},D:{"45":0.00416,"47":0.00833,"48":0.00833,"49":0.00833,"51":0.00416,"52":0.00416,"53":0.00416,"55":0.00416,"57":0.00416,"58":0.00416,"69":0.02498,"73":0.00416,"77":0.02915,"78":0.00416,"79":0.03331,"80":0.00416,"81":0.00416,"83":0.01249,"85":0.00833,"86":0.01249,"87":0.04164,"91":0.01666,"92":0.00833,"93":0.01249,"97":0.01249,"98":0.0458,"99":0.02082,"101":0.01666,"102":0.00416,"103":0.07079,"104":0.01249,"105":0.33312,"106":0.21653,"107":0.13325,"108":0.06246,"109":0.85362,"110":0.32896,"111":0.15407,"112":0.88693,"113":0.10826,"114":0.30397,"115":0.06246,"116":0.0458,"117":0.09577,"118":0.13325,"119":0.06246,"120":0.32479,"121":0.17905,"122":0.1041,"123":0.12492,"124":0.09577,"125":0.33728,"126":0.35394,"127":0.29564,"128":0.2082,"129":0.23318,"130":0.1624,"131":0.15407,"132":0.07495,"133":0.08328,"134":1.85714,"135":0.06246,"136":0.04997,"137":0.84946,"138":0.17072,"139":5.59225,"140":0.32063,"141":2.58168,"142":8.61948,"143":0.02498,"144":0.01249,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 50 54 56 59 60 61 62 63 64 65 66 67 68 70 71 72 74 75 76 84 88 89 90 94 95 96 100 145 146"},F:{"92":0.08744,"93":0.01249,"95":0.01249,"122":0.08328,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00416,"92":0.01666,"109":0.02498,"113":0.00833,"114":0.0458,"115":0.00416,"120":0.04997,"121":0.02915,"122":0.00833,"123":0.00416,"125":0.00416,"126":0.00833,"127":0.01249,"128":0.00833,"129":0.00833,"130":0.00833,"131":0.02082,"132":0.00833,"133":0.01249,"134":0.01249,"135":0.01249,"136":0.01666,"137":0.01666,"138":0.02915,"139":0.03331,"140":0.0583,"141":0.33728,"142":2.49424,"143":0.00833,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 116 117 118 119 124"},E:{"14":0.00416,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.4 17.0 26.2","13.1":0.00833,"14.1":0.01249,"15.6":0.03331,"16.1":0.00833,"16.3":0.00833,"16.5":0.00416,"16.6":0.0458,"17.1":0.02498,"17.2":0.00416,"17.3":0.00833,"17.4":0.00833,"17.5":0.01666,"17.6":0.04164,"18.0":0.00833,"18.1":0.01249,"18.2":0.00833,"18.3":0.02498,"18.4":0.01249,"18.5-18.6":0.05413,"26.0":0.08744,"26.1":0.08328},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00286,"5.0-5.1":0.00143,"6.0-6.1":0.00072,"7.0-7.1":0.00501,"8.1-8.4":0,"9.0-9.2":0.00215,"9.3":0.00501,"10.0-10.2":0,"10.3":0.01502,"11.0-11.2":0.13592,"11.3-11.4":0.00286,"12.0-12.1":0.00143,"12.2-12.5":0.04578,"13.0-13.1":0.00072,"13.2":0.00715,"13.3":0.00215,"13.4-13.7":0.01073,"14.0-14.4":0.01932,"14.5-14.8":0.02432,"15.0-15.1":0.01574,"15.2-15.3":0.01574,"15.4":0.02003,"15.5":0.02003,"15.6-15.8":0.24537,"16.0":0.03434,"16.1":0.05222,"16.2":0.03076,"16.3":0.05294,"16.4":0.01431,"16.5":0.02361,"16.6-16.7":0.27542,"17.0":0.02933,"17.1":0.02861,"17.2":0.02647,"17.3":0.03648,"17.4":0.0651,"17.5":0.10015,"17.6-17.7":0.2139,"18.0":0.0651,"18.1":0.1116,"18.2":0.07368,"18.3":0.18671,"18.4":0.11017,"18.5-18.7":4.13484,"26.0":0.48216,"26.1":0.39846},P:{"4":0.01115,"23":0.01115,"24":0.01115,"25":0.02229,"26":0.04459,"27":0.05574,"28":0.22295,"29":1.1036,_:"20 21 22 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01115},I:{"0":0.7347,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00029},K:{"0":0.95028,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.02698,"11":0.64759,_:"6 7 8 10 5.5"},N:{_:"10 11"},S:{"2.5":0.03501,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.28592},O:{"0":1.07364},H:{"0":0.03},L:{"0":53.1932},R:{_:"0"},M:{"0":0.16338}};
Index: node_modules/caniuse-lite/data/regions/alt-eu.js
===================================================================
--- node_modules/caniuse-lite/data/regions/alt-eu.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/alt-eu.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.03074,"59":0.01537,"68":0.00512,"78":0.01537,"105":0.01025,"115":0.28177,"125":0.00512,"128":0.03074,"132":0.00512,"133":0.00512,"134":0.01025,"135":0.01537,"136":0.02049,"137":0.01537,"138":0.00512,"139":0.01025,"140":0.21004,"141":0.01537,"142":0.02562,"143":0.05635,"144":1.31149,"145":1.57276,"146":0.00512,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 147 148 3.5 3.6"},D:{"39":0.01025,"40":0.01025,"41":0.01025,"42":0.01025,"43":0.01025,"44":0.01025,"45":0.01537,"46":0.01025,"47":0.01025,"48":0.01537,"49":0.02049,"50":0.01025,"51":0.01025,"52":0.02562,"53":0.01025,"54":0.01025,"55":0.01025,"56":0.01025,"57":0.01025,"58":0.01537,"59":0.01025,"60":0.01025,"66":0.06148,"68":0.00512,"70":0.00512,"74":0.00512,"75":0.00512,"78":0.00512,"79":0.04098,"80":0.00512,"85":0.01025,"87":0.03074,"88":0.01025,"91":0.03074,"92":0.05635,"93":0.01025,"97":0.02049,"98":0.07685,"100":0.01025,"102":0.01025,"103":0.08709,"104":0.02562,"106":0.01025,"107":0.00512,"108":0.03074,"109":0.80943,"111":0.02562,"112":0.72747,"113":0.00512,"114":0.03074,"115":0.01025,"116":0.09734,"117":0.04098,"118":0.16394,"119":0.03586,"120":0.0666,"121":0.04611,"122":0.07172,"123":0.07172,"124":0.06148,"125":0.45082,"126":0.21004,"127":0.02049,"128":0.07172,"129":0.03074,"130":0.49693,"131":0.92214,"132":0.15369,"133":0.0666,"134":0.60451,"135":0.07685,"136":0.08197,"137":0.10246,"138":0.29201,"139":0.51742,"140":0.76333,"141":5.5021,"142":15.23068,"143":0.06148,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 67 69 71 72 73 76 77 81 83 84 86 89 90 94 95 96 99 101 105 110 144 145 146"},F:{"31":0.01025,"40":0.01025,"46":0.01025,"92":0.07172,"93":0.01025,"95":0.08197,"113":0.01025,"114":0.00512,"120":0.02049,"122":0.78382,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00512,"109":0.05123,"114":0.01025,"121":0.02049,"126":0.00512,"131":0.01537,"132":0.00512,"133":0.00512,"134":0.01025,"135":0.01025,"136":0.01025,"137":0.01025,"138":0.02562,"139":0.02562,"140":0.08709,"141":0.69673,"142":5.60969,"143":0.01025,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 122 123 124 125 127 128 129 130"},E:{"14":0.01025,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.2-15.3","11.1":0.01537,"13.1":0.02562,"14.1":0.03586,"15.1":0.01537,"15.4":0.01025,"15.5":0.01025,"15.6":0.15881,"16.0":0.01025,"16.1":0.01537,"16.2":0.01537,"16.3":0.02562,"16.4":0.01025,"16.5":0.01537,"16.6":0.21517,"17.0":0.01025,"17.1":0.16906,"17.2":0.01537,"17.3":0.02049,"17.4":0.03586,"17.5":0.05635,"17.6":0.20492,"18.0":0.02049,"18.1":0.03586,"18.2":0.01537,"18.3":0.07685,"18.4":0.04098,"18.5-18.6":0.17418,"26.0":0.34324,"26.1":0.39959,"26.2":0.01537},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02258,"10.0-10.2":0.00301,"10.3":0.0301,"11.0-11.2":0.3176,"11.3-11.4":0.01505,"12.0-12.1":0,"12.2-12.5":0.07526,"13.0-13.1":0,"13.2":0.00151,"13.3":0.00151,"13.4-13.7":0.00301,"14.0-14.4":0.00602,"14.5-14.8":0.00903,"15.0-15.1":0.01054,"15.2-15.3":0.00903,"15.4":0.00753,"15.5":0.01204,"15.6-15.8":0.26943,"16.0":0.0301,"16.1":0.06472,"16.2":0.0286,"16.3":0.06171,"16.4":0.00753,"16.5":0.01957,"16.6-16.7":0.4034,"17.0":0.02107,"17.1":0.03161,"17.2":0.01957,"17.3":0.0286,"17.4":0.04516,"17.5":0.1159,"17.6-17.7":0.34018,"18.0":0.06021,"18.1":0.14601,"18.2":0.0587,"18.3":0.26191,"18.4":0.11891,"18.5-18.7":11.0709,"26.0":0.65929,"26.1":0.64122},P:{"4":0.02145,"21":0.02145,"22":0.02145,"23":0.02145,"24":0.02145,"25":0.02145,"26":0.05362,"27":0.05362,"28":0.28955,"29":2.79898,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.01072},I:{"0":0.03408,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.45347,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01804,"9":0.03007,"11":0.09021,_:"6 7 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.04876},H:{"0":0},L:{"0":32.06793},R:{_:"0"},M:{"0":0.51686}};
Index: node_modules/caniuse-lite/data/regions/alt-na.js
===================================================================
--- node_modules/caniuse-lite/data/regions/alt-na.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/alt-na.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"11":0.25013,"44":0.01064,"52":0.01064,"59":0.00532,"78":0.01597,"115":0.15434,"118":0.56945,"125":0.01064,"128":0.01597,"133":0.00532,"134":0.00532,"135":0.01064,"136":0.01064,"137":0.01597,"138":0.01064,"139":0.01064,"140":0.13305,"141":0.01597,"142":0.02129,"143":0.05322,"144":0.86216,"145":0.9686,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 122 123 124 126 127 129 130 131 132 146 147 148 3.5 3.6"},D:{"39":0.01064,"40":0.01064,"41":0.01064,"42":0.01064,"43":0.01064,"44":0.01064,"45":0.01064,"46":0.01064,"47":0.01064,"48":0.03193,"49":0.02129,"50":0.01064,"51":0.01064,"52":0.01597,"53":0.01064,"54":0.01064,"55":0.01064,"56":0.01597,"57":0.01064,"58":0.01064,"59":0.01064,"60":0.01064,"66":0.02661,"76":0.00532,"79":0.22352,"80":0.01064,"81":0.0479,"83":0.20224,"85":0.00532,"87":0.05322,"91":0.01597,"93":0.01597,"99":0.02661,"100":0.00532,"101":0.02129,"102":0.01064,"103":0.12773,"104":0.01597,"108":0.01064,"109":0.3619,"110":0.01064,"111":0.01064,"112":0.60671,"113":0.01064,"114":0.0958,"115":0.02129,"116":0.12773,"117":0.41512,"118":0.02129,"119":0.02661,"120":0.07451,"121":0.07983,"122":0.12241,"123":0.02129,"124":0.05854,"125":0.77701,"126":0.22352,"127":0.02129,"128":0.12241,"129":0.03725,"130":3.51252,"131":0.13305,"132":0.14902,"133":0.05322,"134":0.07983,"135":0.07983,"136":0.10644,"137":0.13837,"138":0.79298,"139":2.347,"140":1.70836,"141":5.17298,"142":13.1347,"143":0.05854,"144":0.01064,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 67 68 69 70 71 72 73 74 75 77 78 84 86 88 89 90 92 94 95 96 97 98 105 106 107 145 146"},F:{"92":0.04258,"93":0.00532,"95":0.02661,"114":0.00532,"120":0.01064,"122":0.25013,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.0479,"114":0.01597,"121":0.06919,"131":0.02129,"132":0.01064,"133":0.00532,"134":0.01064,"135":0.01597,"136":0.01597,"137":0.01064,"138":0.02661,"139":0.02661,"140":0.07983,"141":0.80362,"142":5.40183,"143":0.01064,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 122 123 124 125 126 127 128 129 130"},E:{"14":0.02129,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3","11.1":0.00532,"12.1":0.01064,"13.1":0.05322,"14.1":0.04258,"15.1":0.01064,"15.4":0.01064,"15.5":0.02129,"15.6":0.17563,"16.0":0.01064,"16.1":0.02129,"16.2":0.01597,"16.3":0.04258,"16.4":0.02129,"16.5":0.03193,"16.6":0.30335,"17.0":0.01064,"17.1":0.22885,"17.2":0.02129,"17.3":0.02661,"17.4":0.05322,"17.5":0.07451,"17.6":0.3619,"18.0":0.02129,"18.1":0.05322,"18.2":0.02661,"18.3":0.11176,"18.4":0.05854,"18.5-18.6":0.23949,"26.0":0.40447,"26.1":0.47366,"26.2":0.01597},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.02547,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01158,"10.0-10.2":0,"10.3":0.02316,"11.0-11.2":0.37744,"11.3-11.4":0.00926,"12.0-12.1":0.00926,"12.2-12.5":0.06947,"13.0-13.1":0,"13.2":0.00232,"13.3":0.00232,"13.4-13.7":0.01158,"14.0-14.4":0.01621,"14.5-14.8":0.0301,"15.0-15.1":0.02779,"15.2-15.3":0.01852,"15.4":0.01389,"15.5":0.01852,"15.6-15.8":0.24082,"16.0":0.02547,"16.1":0.07642,"16.2":0.03473,"16.3":0.06484,"16.4":0.01389,"16.5":0.02547,"16.6-16.7":0.46775,"17.0":0.044,"17.1":0.06252,"17.2":0.03937,"17.3":0.05094,"17.4":0.06715,"17.5":0.16209,"17.6-17.7":0.45154,"18.0":0.05557,"18.1":0.18062,"18.2":0.07642,"18.3":0.32419,"18.4":0.14357,"18.5-18.7":18.38131,"26.0":0.71784,"26.1":0.74331},P:{"21":0.02254,"23":0.02254,"26":0.02254,"27":0.02254,"28":0.14649,"29":1.30711,_:"4 20 22 24 25 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.38703,"3":0.00012,"4":0.00004,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00082,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":0.25261,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01457,"9":0.03641,"11":0.08739,_:"6 7 10 5.5"},N:{_:"10 11"},S:{"2.5":0.00468,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00936},O:{"0":0.02807},H:{"0":0},L:{"0":22.68782},R:{_:"0"},M:{"0":0.52861}};
Index: node_modules/caniuse-lite/data/regions/alt-oc.js
===================================================================
--- node_modules/caniuse-lite/data/regions/alt-oc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/alt-oc.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"52":0.01052,"78":0.01578,"115":0.12096,"125":0.01052,"128":0.01052,"132":0.00526,"133":0.00526,"134":0.01052,"136":0.01052,"138":0.00526,"139":0.00526,"140":0.05785,"141":0.00526,"142":0.02104,"143":0.04733,"144":0.90455,"145":1.02551,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 126 127 129 130 131 135 137 146 147 148 3.5 3.6"},D:{"25":0.01052,"34":0.01578,"38":0.04733,"39":0.01052,"40":0.01052,"41":0.01052,"42":0.01052,"43":0.01052,"44":0.01052,"45":0.01052,"46":0.01052,"47":0.01052,"48":0.01052,"49":0.02104,"50":0.01052,"51":0.01052,"52":0.02104,"53":0.01052,"54":0.01052,"55":0.01578,"56":0.01052,"57":0.01052,"58":0.01052,"59":0.01578,"60":0.01052,"79":0.03681,"85":0.01578,"87":0.03681,"88":0.01052,"93":0.00526,"97":0.00526,"99":0.01052,"103":0.07363,"104":0.01052,"105":0.02104,"108":0.0263,"109":0.34709,"110":0.00526,"111":0.03155,"112":0.00526,"113":0.01578,"114":0.05259,"116":0.15251,"117":0.00526,"118":0.00526,"119":0.01578,"120":0.03681,"121":0.02104,"122":0.06837,"123":0.03155,"124":0.05785,"125":0.74152,"126":0.04733,"127":0.02104,"128":0.14199,"129":0.04733,"130":0.68367,"131":0.09466,"132":0.07363,"133":0.05785,"134":0.53116,"135":0.07363,"136":0.0894,"137":0.13673,"138":0.46805,"139":0.53642,"140":0.70997,"141":6.06889,"142":17.63869,"143":0.03155,"144":0.01578,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 35 36 37 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 89 90 91 92 94 95 96 98 100 101 102 106 107 115 145 146"},F:{"46":0.00526,"92":0.01578,"95":0.01052,"120":0.04733,"122":0.42598,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00526,"85":0.01052,"109":0.03155,"114":0.01052,"120":0.01052,"122":0.00526,"131":0.01052,"132":0.01052,"133":0.00526,"134":0.01578,"135":0.01578,"136":0.01052,"137":0.01052,"138":0.0263,"139":0.0263,"140":0.09466,"141":0.90455,"142":6.50538,"143":0.01052,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 121 123 124 125 126 127 128 129 130"},E:{"13":0.00526,"14":0.02104,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01578,"13.1":0.04733,"14.1":0.0894,"15.1":0.01052,"15.2-15.3":0.01052,"15.4":0.01578,"15.5":0.03155,"15.6":0.31028,"16.0":0.01578,"16.1":0.05259,"16.2":0.04207,"16.3":0.07889,"16.4":0.02104,"16.5":0.03155,"16.6":0.44702,"17.0":0.00526,"17.1":0.41546,"17.2":0.0263,"17.3":0.04733,"17.4":0.07363,"17.5":0.1157,"17.6":0.37339,"18.0":0.0263,"18.1":0.06837,"18.2":0.05259,"18.3":0.14199,"18.4":0.07363,"18.5-18.6":0.33132,"26.0":0.53116,"26.1":0.58375,"26.2":0.02104},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00428,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00214,"9.0-9.2":0,"9.3":0.02785,"10.0-10.2":0,"10.3":0.04713,"11.0-11.2":0.5699,"11.3-11.4":0.01714,"12.0-12.1":0.00428,"12.2-12.5":0.16497,"13.0-13.1":0.00428,"13.2":0.00214,"13.3":0.00428,"13.4-13.7":0.01714,"14.0-14.4":0.01714,"14.5-14.8":0.02142,"15.0-15.1":0.01714,"15.2-15.3":0.015,"15.4":0.015,"15.5":0.01928,"15.6-15.8":0.36208,"16.0":0.02571,"16.1":0.09427,"16.2":0.04285,"16.3":0.07499,"16.4":0.015,"16.5":0.03214,"16.6-16.7":0.61061,"17.0":0.02142,"17.1":0.03856,"17.2":0.02357,"17.3":0.03642,"17.4":0.06213,"17.5":0.13712,"17.6-17.7":0.49277,"18.0":0.05785,"18.1":0.17997,"18.2":0.07713,"18.3":0.32994,"18.4":0.14355,"18.5-18.7":16.02575,"26.0":0.75844,"26.1":0.797},P:{"4":0.06633,"21":0.03316,"22":0.03316,"23":0.01105,"24":0.02211,"25":0.03316,"26":0.04422,"27":0.06633,"28":0.29848,"29":2.63101,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02211},I:{"0":0.02369,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.13272,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01183,"9":0.11833,"11":0.01183,_:"6 7 10 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.00474},O:{"0":0.03792},H:{"0":0},L:{"0":23.97282},R:{_:"0"},M:{"0":0.4503}};
Index: node_modules/caniuse-lite/data/regions/alt-sa.js
===================================================================
--- node_modules/caniuse-lite/data/regions/alt-sa.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/alt-sa.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"4":0.03238,"5":0.01943,"112":0.01943,"113":0.01943,"114":0.01943,"115":0.10362,"116":0.01943,"128":0.01295,"136":0.00648,"140":0.03238,"141":0.00648,"142":0.00648,"143":0.0259,"144":0.40151,"145":0.47275,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 117 118 119 120 121 122 123 124 125 126 127 129 130 131 132 133 134 135 137 138 139 146 147 148 3.5 3.6"},D:{"48":0.00648,"55":0.00648,"66":0.01295,"69":0.01943,"75":0.00648,"79":0.01943,"87":0.0259,"99":0.00648,"103":0.01943,"104":0.01295,"108":0.01295,"109":0.69941,"111":0.03886,"112":26.75883,"113":0.01943,"114":0.05181,"115":0.01943,"116":0.03238,"119":0.05181,"120":0.07771,"121":0.01295,"122":0.07124,"123":0.01295,"124":0.03238,"125":1.20454,"126":4.21588,"127":0.0259,"128":0.07771,"129":0.01943,"130":0.0259,"131":0.09066,"132":0.05828,"133":0.03886,"134":0.03886,"135":0.04533,"136":0.05181,"137":0.05828,"138":0.15542,"139":0.49218,"140":0.27199,"141":3.68484,"142":15.12146,"143":0.03886,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 67 68 70 71 72 73 74 76 77 78 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 100 101 102 105 106 107 110 117 118 144 145 146"},F:{"92":0.01295,"95":0.01295,"120":0.00648,"122":0.72531,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00648,"109":0.01943,"114":0.11009,"131":0.00648,"138":0.01295,"139":0.01295,"140":0.0259,"141":0.31732,"142":2.83001,"143":0.00648,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 132 133 134 135 136 137"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 17.0 17.2 17.3 17.4 18.0 18.2 26.2","15.6":0.01295,"16.5":0.01295,"16.6":0.01943,"17.1":0.01295,"17.5":0.00648,"17.6":0.03238,"18.1":0.01295,"18.3":0.01295,"18.4":0.00648,"18.5-18.6":0.03238,"26.0":0.07771,"26.1":0.09714},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00086,"6.0-6.1":0,"7.0-7.1":0.00043,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00302,"10.0-10.2":0.00172,"10.3":0.00259,"11.0-11.2":0.13016,"11.3-11.4":0.01077,"12.0-12.1":0,"12.2-12.5":0.00646,"13.0-13.1":0,"13.2":0.00733,"13.3":0,"13.4-13.7":0.01422,"14.0-14.4":0.00129,"14.5-14.8":0.01465,"15.0-15.1":0.00129,"15.2-15.3":0.00129,"15.4":0.00129,"15.5":0.00215,"15.6-15.8":0.08404,"16.0":0.00776,"16.1":0.01595,"16.2":0.00603,"16.3":0.01336,"16.4":0.01638,"16.5":0.01724,"16.6-16.7":0.14007,"17.0":0.00991,"17.1":0.01207,"17.2":0.00345,"17.3":0.00991,"17.4":0.01077,"17.5":0.02801,"17.6-17.7":0.07284,"18.0":0.01896,"18.1":0.04525,"18.2":0.01595,"18.3":0.08275,"18.4":0.03103,"18.5-18.7":2.97337,"26.0":0.25687,"26.1":0.23058},P:{"25":0.01111,"26":0.03333,"27":0.02222,"28":0.1,"29":0.90002,_:"4 20 21 22 23 24 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.02222},I:{"0":0.03874,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.10572,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.03786,"9":0.01893,"10":0.00946,"11":0.17983,_:"6 7 5.5"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},Q:{_:"14.9"},O:{"0":0.01057},H:{"0":0},L:{"0":31.83056},R:{_:"0"},M:{"0":0.08458}};
Index: node_modules/caniuse-lite/data/regions/alt-ww.js
===================================================================
--- node_modules/caniuse-lite/data/regions/alt-ww.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/data/regions/alt-ww.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports={C:{"5":0.00469,"11":0.05157,"43":0.0375,"52":0.01406,"78":0.00469,"115":0.14533,"118":0.1172,"125":0.00469,"128":0.02344,"132":0.00938,"135":0.00938,"136":0.00938,"137":0.00469,"138":0.00469,"139":0.00469,"140":0.0797,"141":0.00938,"142":0.01406,"143":0.03282,"144":0.61413,"145":0.72664,_:"2 3 4 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 122 123 124 126 127 129 130 131 133 134 146 147 148 3.5 3.6"},D:{"39":0.00469,"40":0.00469,"41":0.00469,"42":0.00469,"43":0.00469,"44":0.00469,"45":0.00938,"46":0.00469,"47":0.00938,"48":0.01406,"49":0.01406,"50":0.00469,"51":0.00469,"52":0.01406,"53":0.00938,"54":0.00469,"55":0.00469,"56":0.00938,"57":0.00469,"58":0.00938,"59":0.00469,"60":0.00469,"66":0.01875,"69":0.01406,"70":0.00469,"77":0.01406,"78":0.00469,"79":0.07501,"80":0.00469,"81":0.01406,"83":0.04688,"85":0.00938,"86":0.00938,"87":0.0375,"88":0.00469,"91":0.01875,"92":0.01406,"93":0.01406,"97":0.01406,"98":0.04219,"99":0.01875,"100":0.00469,"101":0.01406,"102":0.00938,"103":0.0797,"104":0.01406,"105":0.17346,"106":0.11251,"107":0.07032,"108":0.04219,"109":0.73133,"110":0.16877,"111":0.08907,"112":2.29712,"113":0.06094,"114":0.18283,"115":0.0375,"116":0.07501,"117":0.14064,"118":0.10314,"119":0.04688,"120":0.1969,"121":0.1172,"122":0.09845,"123":0.0797,"124":0.07501,"125":0.49224,"126":0.52506,"127":0.15939,"128":0.15002,"129":0.13595,"130":0.89072,"131":0.29066,"132":0.10314,"133":0.07032,"134":1.08762,"135":0.06563,"136":0.06563,"137":0.48286,"138":0.31878,"139":3.44099,"140":0.68445,"141":3.75978,"142":11.18088,"143":0.0375,"144":0.00938,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 61 62 63 64 65 67 68 71 72 73 74 75 76 84 89 90 94 95 96 145 146"},F:{"92":0.07501,"93":0.00938,"95":0.02813,"120":0.00938,"122":0.29066,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00938,"109":0.03282,"114":0.0375,"120":0.02813,"121":0.03282,"122":0.00938,"126":0.00469,"127":0.00469,"128":0.00469,"129":0.00469,"130":0.00469,"131":0.01875,"132":0.00938,"133":0.00938,"134":0.00938,"135":0.01406,"136":0.01406,"137":0.01406,"138":0.02813,"139":0.02813,"140":0.06563,"141":0.50162,"142":3.72227,"143":0.00938,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117 118 119 123 124 125"},E:{"14":0.00938,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.2-15.3","11.1":0.00469,"13.1":0.01875,"14.1":0.02344,"15.1":0.00469,"15.4":0.00469,"15.5":0.00938,"15.6":0.08907,"16.0":0.00469,"16.1":0.00938,"16.2":0.00938,"16.3":0.01875,"16.4":0.00938,"16.5":0.01406,"16.6":0.13126,"17.0":0.00469,"17.1":0.09376,"17.2":0.00938,"17.3":0.01406,"17.4":0.02344,"17.5":0.0375,"17.6":0.14064,"18.0":0.01406,"18.1":0.02344,"18.2":0.01406,"18.3":0.05157,"18.4":0.02813,"18.5-18.6":0.1172,"26.0":0.20627,"26.1":0.22971,"26.2":0.00938},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00118,"5.0-5.1":0,"6.0-6.1":0.00472,"7.0-7.1":0.00354,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01062,"10.0-10.2":0.00118,"10.3":0.01889,"11.0-11.2":0.21954,"11.3-11.4":0.00708,"12.0-12.1":0.00236,"12.2-12.5":0.05548,"13.0-13.1":0,"13.2":0.0059,"13.3":0.00236,"13.4-13.7":0.01062,"14.0-14.4":0.0177,"14.5-14.8":0.02243,"15.0-15.1":0.01889,"15.2-15.3":0.01534,"15.4":0.01652,"15.5":0.0177,"15.6-15.8":0.25613,"16.0":0.03187,"16.1":0.05902,"16.2":0.03069,"16.3":0.05666,"16.4":0.01416,"16.5":0.02361,"16.6-16.7":0.34584,"17.0":0.02951,"17.1":0.03541,"17.2":0.02597,"17.3":0.03659,"17.4":0.0602,"17.5":0.11449,"17.6-17.7":0.28092,"18.0":0.06256,"18.1":0.1322,"18.2":0.07082,"18.3":0.23016,"18.4":0.11803,"18.5-18.7":8.24222,"26.0":0.56538,"26.1":0.5158},P:{"21":0.01083,"22":0.01083,"23":0.02167,"24":0.02167,"25":0.02167,"26":0.04334,"27":0.05417,"28":0.22752,"29":1.50594,_:"4 20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.4615,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00023},K:{"0":0.82586,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.03477,"9":0.05215,"11":0.33031,_:"6 7 10 5.5"},N:{_:"10 11"},S:{"2.5":0.02125,_:"3.0-3.1"},J:{_:"7 10"},Q:{"14.9":0.14874},O:{"0":0.5737},H:{"0":0.04},L:{"0":41.85032},R:{_:"0"},M:{"0":0.30278}};
Index: node_modules/caniuse-lite/dist/lib/statuses.js
===================================================================
--- node_modules/caniuse-lite/dist/lib/statuses.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/lib/statuses.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,9 @@
+module.exports = {
+  1: 'ls', // WHATWG Living Standard
+  2: 'rec', // W3C Recommendation
+  3: 'pr', // W3C Proposed Recommendation
+  4: 'cr', // W3C Candidate Recommendation
+  5: 'wd', // W3C Working Draft
+  6: 'other', // Non-W3C, but reputable
+  7: 'unoff' // Unofficial, Editor's Draft or W3C "Note"
+}
Index: node_modules/caniuse-lite/dist/lib/supported.js
===================================================================
--- node_modules/caniuse-lite/dist/lib/supported.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/lib/supported.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,9 @@
+module.exports = {
+  y: 1 << 0,
+  n: 1 << 1,
+  a: 1 << 2,
+  p: 1 << 3,
+  u: 1 << 4,
+  x: 1 << 5,
+  d: 1 << 6
+}
Index: node_modules/caniuse-lite/dist/unpacker/agents.js
===================================================================
--- node_modules/caniuse-lite/dist/unpacker/agents.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/unpacker/agents.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,47 @@
+'use strict'
+
+const browsers = require('./browsers').browsers
+const versions = require('./browserVersions').browserVersions
+const agentsData = require('../../data/agents')
+
+function unpackBrowserVersions(versionsData) {
+  return Object.keys(versionsData).reduce((usage, version) => {
+    usage[versions[version]] = versionsData[version]
+    return usage
+  }, {})
+}
+
+module.exports.agents = Object.keys(agentsData).reduce((map, key) => {
+  let versionsData = agentsData[key]
+  map[browsers[key]] = Object.keys(versionsData).reduce((data, entry) => {
+    if (entry === 'A') {
+      data.usage_global = unpackBrowserVersions(versionsData[entry])
+    } else if (entry === 'C') {
+      data.versions = versionsData[entry].reduce((list, version) => {
+        if (version === '') {
+          list.push(null)
+        } else {
+          list.push(versions[version])
+        }
+        return list
+      }, [])
+    } else if (entry === 'D') {
+      data.prefix_exceptions = unpackBrowserVersions(versionsData[entry])
+    } else if (entry === 'E') {
+      data.browser = versionsData[entry]
+    } else if (entry === 'F') {
+      data.release_date = Object.keys(versionsData[entry]).reduce(
+        (map2, key2) => {
+          map2[versions[key2]] = versionsData[entry][key2]
+          return map2
+        },
+        {}
+      )
+    } else {
+      // entry is B
+      data.prefix = versionsData[entry]
+    }
+    return data
+  }, {})
+  return map
+}, {})
Index: node_modules/caniuse-lite/dist/unpacker/browserVersions.js
===================================================================
--- node_modules/caniuse-lite/dist/unpacker/browserVersions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/unpacker/browserVersions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports.browserVersions = require('../../data/browserVersions')
Index: node_modules/caniuse-lite/dist/unpacker/browsers.js
===================================================================
--- node_modules/caniuse-lite/dist/unpacker/browsers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/unpacker/browsers.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+module.exports.browsers = require('../../data/browsers')
Index: node_modules/caniuse-lite/dist/unpacker/feature.js
===================================================================
--- node_modules/caniuse-lite/dist/unpacker/feature.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/unpacker/feature.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,52 @@
+'use strict'
+
+const statuses = require('../lib/statuses')
+const supported = require('../lib/supported')
+const browsers = require('./browsers').browsers
+const versions = require('./browserVersions').browserVersions
+
+const MATH2LOG = Math.log(2)
+
+function unpackSupport(cipher) {
+  // bit flags
+  let stats = Object.keys(supported).reduce((list, support) => {
+    if (cipher & supported[support]) list.push(support)
+    return list
+  }, [])
+
+  // notes
+  let notes = cipher >> 7
+  let notesArray = []
+  while (notes) {
+    let note = Math.floor(Math.log(notes) / MATH2LOG) + 1
+    notesArray.unshift(`#${note}`)
+    notes -= Math.pow(2, note - 1)
+  }
+
+  return stats.concat(notesArray).join(' ')
+}
+
+function unpackFeature(packed) {
+  let unpacked = {
+    status: statuses[packed.B],
+    title: packed.C,
+    shown: packed.D
+  }
+  unpacked.stats = Object.keys(packed.A).reduce((browserStats, key) => {
+    let browser = packed.A[key]
+    browserStats[browsers[key]] = Object.keys(browser).reduce(
+      (stats, support) => {
+        let packedVersions = browser[support].split(' ')
+        let unpacked2 = unpackSupport(support)
+        packedVersions.forEach(v => (stats[versions[v]] = unpacked2))
+        return stats
+      },
+      {}
+    )
+    return browserStats
+  }, {})
+  return unpacked
+}
+
+module.exports = unpackFeature
+module.exports.default = unpackFeature
Index: node_modules/caniuse-lite/dist/unpacker/features.js
===================================================================
--- node_modules/caniuse-lite/dist/unpacker/features.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/unpacker/features.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6 @@
+/*
+ * Load this dynamically so that it
+ * doesn't appear in the rollup bundle.
+ */
+
+module.exports.features = require('../../data/features')
Index: node_modules/caniuse-lite/dist/unpacker/index.js
===================================================================
--- node_modules/caniuse-lite/dist/unpacker/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/unpacker/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,4 @@
+module.exports.agents = require('./agents').agents
+module.exports.feature = require('./feature')
+module.exports.features = require('./features').features
+module.exports.region = require('./region')
Index: node_modules/caniuse-lite/dist/unpacker/region.js
===================================================================
--- node_modules/caniuse-lite/dist/unpacker/region.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/dist/unpacker/region.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,22 @@
+'use strict'
+
+const browsers = require('./browsers').browsers
+
+function unpackRegion(packed) {
+  return Object.keys(packed).reduce((list, browser) => {
+    let data = packed[browser]
+    list[browsers[browser]] = Object.keys(data).reduce((memo, key) => {
+      let stats = data[key]
+      if (key === '_') {
+        stats.split(' ').forEach(version => (memo[version] = null))
+      } else {
+        memo[key] = stats
+      }
+      return memo
+    }, {})
+    return list
+  }, {})
+}
+
+module.exports = unpackRegion
+module.exports.default = unpackRegion
Index: node_modules/caniuse-lite/package.json
===================================================================
--- node_modules/caniuse-lite/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/caniuse-lite/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,34 @@
+{
+  "name": "caniuse-lite",
+  "version": "1.0.30001761",
+  "description": "A smaller version of caniuse-db, with only the essentials!",
+  "main": "dist/unpacker/index.js",
+  "files": [
+    "data",
+    "dist"
+  ],
+  "keywords": [
+    "support"
+  ],
+  "author": {
+    "name": "Ben Briggs",
+    "email": "beneb.info@gmail.com",
+    "url": "http://beneb.info"
+  },
+  "repository": "browserslist/caniuse-lite",
+  "funding": [
+    {
+      "type": "opencollective",
+      "url": "https://opencollective.com/browserslist"
+    },
+    {
+      "type": "tidelift",
+      "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+    },
+    {
+      "type": "github",
+      "url": "https://github.com/sponsors/ai"
+    }
+  ],
+  "license": "CC-BY-4.0"
+}
Index: node_modules/electron-to-chromium/LICENSE
===================================================================
--- node_modules/electron-to-chromium/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,5 @@
+Copyright 2018 Kilian Valkhof
+
+Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Index: node_modules/electron-to-chromium/README.md
===================================================================
--- node_modules/electron-to-chromium/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,186 @@
+### Made by [@kilianvalkhof](https://twitter.com/kilianvalkhof)
+
+#### Other projects:
+
+- 💻 [Polypane](https://polypane.app) - Develop responsive websites and apps twice as fast on multiple screens at once
+- 🖌️ [Superposition](https://superposition.design) - Kickstart your design system by extracting design tokens from your website
+- 🗒️ [FromScratch](https://fromscratch.rocks) - A smart but simple autosaving scratchpad
+
+---
+
+# Electron-to-Chromium [![npm](https://img.shields.io/npm/v/electron-to-chromium.svg)](https://www.npmjs.com/package/electron-to-chromium) [![travis](https://img.shields.io/travis/Kilian/electron-to-chromium/master.svg)](https://travis-ci.org/Kilian/electron-to-chromium) [![npm-downloads](https://img.shields.io/npm/dm/electron-to-chromium.svg)](https://www.npmjs.com/package/electron-to-chromium) [![codecov](https://codecov.io/gh/Kilian/electron-to-chromium/branch/master/graph/badge.svg)](https://codecov.io/gh/Kilian/electron-to-chromium)[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_shield)
+
+This repository provides a mapping of Electron versions to the Chromium version that it uses.
+
+This package is used in [Browserslist](https://github.com/ai/browserslist), so you can use e.g. `electron >= 1.4` in [Autoprefixer](https://github.com/postcss/autoprefixer), [Stylelint](https://github.com/stylelint/stylelint), [babel-preset-env](https://github.com/babel/babel-preset-env) and [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat).
+
+**Supported by:**
+
+  <a href="https://m.do.co/c/bb22ea58e765">
+    <img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/SVG/DO_Logo_horizontal_blue.svg" width="201px">
+  </a>
+
+
+## Install
+Install using `npm install electron-to-chromium`.
+
+## Usage
+To include Electron-to-Chromium, require it:
+
+```js
+var e2c = require('electron-to-chromium');
+```
+
+### Properties
+The Electron-to-Chromium object has 4 properties to use:
+
+#### `versions`
+An object of key-value pairs with a _major_ Electron version as the key, and the corresponding major Chromium version as the value.
+
+```js
+var versions = e2c.versions;
+console.log(versions['1.4']);
+// returns "53"
+```
+
+#### `fullVersions`
+An object of key-value pairs with a Electron version as the key, and the corresponding full Chromium version as the value.
+
+```js
+var versions = e2c.fullVersions;
+console.log(versions['1.4.11']);
+// returns "53.0.2785.143"
+```
+
+#### `chromiumVersions`
+An object of key-value pairs with a _major_ Chromium version as the key, and the corresponding major Electron version as the value.
+
+```js
+var versions = e2c.chromiumVersions;
+console.log(versions['54']);
+// returns "1.4"
+```
+
+#### `fullChromiumVersions`
+An object of key-value pairs with a Chromium version as the key, and an array of the corresponding major Electron versions as the value.
+
+```js
+var versions = e2c.fullChromiumVersions;
+console.log(versions['54.0.2840.101']);
+// returns ["1.5.1", "1.5.0"]
+```
+### Functions
+
+#### `electronToChromium(query)`
+Arguments:
+* Query: string or number, required. A major or full Electron version.
+
+A function that returns the corresponding Chromium version for a given Electron function. Returns a string.
+
+If you provide it with a major Electron version, it will return a major Chromium version:
+
+```js
+var chromeVersion = e2c.electronToChromium('1.4');
+// chromeVersion is "53"
+```
+
+If you provide it with a full Electron version, it will return the full Chromium version.
+
+```js
+var chromeVersion = e2c.electronToChromium('1.4.11');
+// chromeVersion is "53.0.2785.143"
+```
+
+If a query does not match a Chromium version, it will return `undefined`.
+
+```js
+var chromeVersion = e2c.electronToChromium('9000');
+// chromeVersion is undefined
+```
+
+#### `chromiumToElectron(query)`
+Arguments:
+* Query: string or number, required. A major or full Chromium version.
+
+Returns a string with the corresponding Electron version for a given Chromium query.
+
+If you provide it with a major Chromium version, it will return a major Electron version:
+
+```js
+var electronVersion = e2c.chromiumToElectron('54');
+// electronVersion is "1.4"
+```
+
+If you provide it with a full Chrome version, it will return an array of full Electron versions.
+
+```js
+var electronVersions = e2c.chromiumToElectron('56.0.2924.87');
+// electronVersions is ["1.6.3", "1.6.2", "1.6.1", "1.6.0"]
+```
+
+If a query does not match an Electron version, it will return `undefined`.
+
+```js
+var electronVersion = e2c.chromiumToElectron('10');
+// electronVersion is undefined
+```
+
+#### `electronToBrowserList(query)` **DEPRECATED**
+Arguments:
+* Query: string or number, required. A major Electron version.
+
+_**Deprecated**: Browserlist already includes electron-to-chromium._
+
+A function that returns a [Browserslist](https://github.com/ai/browserslist) query that matches the given major Electron version. Returns a string.
+
+If you provide it with a major Electron version, it will return a Browserlist query string that matches the Chromium capabilities:
+
+```js
+var query = e2c.electronToBrowserList('1.4');
+// query is "Chrome >= 53"
+```
+
+If a query does not match a Chromium version, it will return `undefined`.
+
+```js
+var query = e2c.electronToBrowserList('9000');
+// query is undefined
+```
+
+### Importing just versions, fullVersions, chromiumVersions and fullChromiumVersions
+All lists can be imported on their own, if file size is a concern.
+
+#### `versions`
+
+```js
+var versions = require('electron-to-chromium/versions');
+```
+
+#### `fullVersions`
+
+```js
+var fullVersions = require('electron-to-chromium/full-versions');
+```
+
+#### `chromiumVersions`
+
+```js
+var chromiumVersions = require('electron-to-chromium/chromium-versions');
+```
+
+#### `fullChromiumVersions`
+
+```js
+var fullChromiumVersions = require('electron-to-chromium/full-chromium-versions');
+```
+
+## Updating
+This package will be updated with each new Electron release.
+
+To update the list, run `npm run build.js`. Requires internet access as it downloads from the canonical list of Electron versions.
+
+To verify correct behaviour, run `npm test`.
+
+
+## License
+[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_large)
Index: node_modules/electron-to-chromium/chromium-versions.js
===================================================================
--- node_modules/electron-to-chromium/chromium-versions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/chromium-versions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,84 @@
+module.exports = {
+	"39": "0.20",
+	"40": "0.21",
+	"41": "0.21",
+	"42": "0.25",
+	"43": "0.27",
+	"44": "0.30",
+	"45": "0.31",
+	"47": "0.36",
+	"49": "0.37",
+	"50": "1.1",
+	"51": "1.2",
+	"52": "1.3",
+	"53": "1.4",
+	"54": "1.4",
+	"56": "1.6",
+	"58": "1.7",
+	"59": "1.8",
+	"61": "2.0",
+	"66": "3.0",
+	"69": "4.0",
+	"72": "5.0",
+	"73": "5.0",
+	"76": "6.0",
+	"78": "7.0",
+	"79": "8.0",
+	"80": "8.0",
+	"82": "9.0",
+	"83": "9.0",
+	"84": "10.0",
+	"85": "10.0",
+	"86": "11.0",
+	"87": "11.0",
+	"89": "12.0",
+	"90": "13.0",
+	"91": "13.0",
+	"92": "14.0",
+	"93": "14.0",
+	"94": "15.0",
+	"95": "16.0",
+	"96": "16.0",
+	"98": "17.0",
+	"99": "18.0",
+	"100": "18.0",
+	"102": "19.0",
+	"103": "20.0",
+	"104": "20.0",
+	"105": "21.0",
+	"106": "21.0",
+	"107": "22.0",
+	"108": "22.0",
+	"110": "23.0",
+	"111": "24.0",
+	"112": "24.0",
+	"114": "25.0",
+	"116": "26.0",
+	"118": "27.0",
+	"119": "28.0",
+	"120": "28.0",
+	"121": "29.0",
+	"122": "29.0",
+	"123": "30.0",
+	"124": "30.0",
+	"125": "31.0",
+	"126": "31.0",
+	"127": "32.0",
+	"128": "32.0",
+	"129": "33.0",
+	"130": "33.0",
+	"131": "34.0",
+	"132": "34.0",
+	"133": "35.0",
+	"134": "35.0",
+	"135": "36.0",
+	"136": "36.0",
+	"137": "37.0",
+	"138": "37.0",
+	"139": "38.0",
+	"140": "38.0",
+	"141": "39.0",
+	"142": "39.0",
+	"143": "40.0",
+	"144": "40.0"
+};
Index: node_modules/electron-to-chromium/chromium-versions.json
===================================================================
--- node_modules/electron-to-chromium/chromium-versions.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/chromium-versions.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+{"39":"0.20","40":"0.21","41":"0.21","42":"0.25","43":"0.27","44":"0.30","45":"0.31","47":"0.36","49":"0.37","50":"1.1","51":"1.2","52":"1.3","53":"1.4","54":"1.4","56":"1.6","58":"1.7","59":"1.8","61":"2.0","66":"3.0","69":"4.0","72":"5.0","73":"5.0","76":"6.0","78":"7.0","79":"8.0","80":"8.0","82":"9.0","83":"9.0","84":"10.0","85":"10.0","86":"11.0","87":"11.0","89":"12.0","90":"13.0","91":"13.0","92":"14.0","93":"14.0","94":"15.0","95":"16.0","96":"16.0","98":"17.0","99":"18.0","100":"18.0","102":"19.0","103":"20.0","104":"20.0","105":"21.0","106":"21.0","107":"22.0","108":"22.0","110":"23.0","111":"24.0","112":"24.0","114":"25.0","116":"26.0","118":"27.0","119":"28.0","120":"28.0","121":"29.0","122":"29.0","123":"30.0","124":"30.0","125":"31.0","126":"31.0","127":"32.0","128":"32.0","129":"33.0","130":"33.0","131":"34.0","132":"34.0","133":"35.0","134":"35.0","135":"36.0","136":"36.0","137":"37.0","138":"37.0","139":"38.0","140":"38.0","141":"39.0","142":"39.0","143":"40.0","144":"40.0"}
Index: node_modules/electron-to-chromium/full-chromium-versions.js
===================================================================
--- node_modules/electron-to-chromium/full-chromium-versions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/full-chromium-versions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,2632 @@
+module.exports = {
+	"39.0.2171.65": [
+		"0.20.0",
+		"0.20.1",
+		"0.20.2",
+		"0.20.3",
+		"0.20.4",
+		"0.20.5",
+		"0.20.6",
+		"0.20.7",
+		"0.20.8"
+	],
+	"40.0.2214.91": [
+		"0.21.0",
+		"0.21.1",
+		"0.21.2"
+	],
+	"41.0.2272.76": [
+		"0.21.3",
+		"0.22.1",
+		"0.22.2",
+		"0.22.3",
+		"0.23.0",
+		"0.24.0"
+	],
+	"42.0.2311.107": [
+		"0.25.0",
+		"0.25.1",
+		"0.25.2",
+		"0.25.3",
+		"0.26.0",
+		"0.26.1",
+		"0.27.0",
+		"0.27.1"
+	],
+	"43.0.2357.65": [
+		"0.27.2",
+		"0.27.3",
+		"0.28.0",
+		"0.28.1",
+		"0.28.2",
+		"0.28.3",
+		"0.29.1",
+		"0.29.2"
+	],
+	"44.0.2403.125": [
+		"0.30.4",
+		"0.31.0"
+	],
+	"45.0.2454.85": [
+		"0.31.2",
+		"0.32.2",
+		"0.32.3",
+		"0.33.0",
+		"0.33.1",
+		"0.33.2",
+		"0.33.3",
+		"0.33.4",
+		"0.33.6",
+		"0.33.7",
+		"0.33.8",
+		"0.33.9",
+		"0.34.0",
+		"0.34.1",
+		"0.34.2",
+		"0.34.3",
+		"0.34.4",
+		"0.35.1",
+		"0.35.2",
+		"0.35.3",
+		"0.35.4",
+		"0.35.5"
+	],
+	"47.0.2526.73": [
+		"0.36.0",
+		"0.36.2",
+		"0.36.3",
+		"0.36.4"
+	],
+	"47.0.2526.110": [
+		"0.36.5",
+		"0.36.6",
+		"0.36.7",
+		"0.36.8",
+		"0.36.9",
+		"0.36.10",
+		"0.36.11",
+		"0.36.12"
+	],
+	"49.0.2623.75": [
+		"0.37.0",
+		"0.37.1",
+		"0.37.3",
+		"0.37.4",
+		"0.37.5",
+		"0.37.6",
+		"0.37.7",
+		"0.37.8",
+		"1.0.0",
+		"1.0.1",
+		"1.0.2"
+	],
+	"50.0.2661.102": [
+		"1.1.0",
+		"1.1.1",
+		"1.1.2",
+		"1.1.3"
+	],
+	"51.0.2704.63": [
+		"1.2.0",
+		"1.2.1"
+	],
+	"51.0.2704.84": [
+		"1.2.2",
+		"1.2.3"
+	],
+	"51.0.2704.103": [
+		"1.2.4",
+		"1.2.5"
+	],
+	"51.0.2704.106": [
+		"1.2.6",
+		"1.2.7",
+		"1.2.8"
+	],
+	"52.0.2743.82": [
+		"1.3.0",
+		"1.3.1",
+		"1.3.2",
+		"1.3.3",
+		"1.3.4",
+		"1.3.5",
+		"1.3.6",
+		"1.3.7",
+		"1.3.9",
+		"1.3.10",
+		"1.3.13",
+		"1.3.14",
+		"1.3.15"
+	],
+	"53.0.2785.113": [
+		"1.4.0",
+		"1.4.1",
+		"1.4.2",
+		"1.4.3",
+		"1.4.4",
+		"1.4.5"
+	],
+	"53.0.2785.143": [
+		"1.4.6",
+		"1.4.7",
+		"1.4.8",
+		"1.4.10",
+		"1.4.11",
+		"1.4.13",
+		"1.4.14",
+		"1.4.15",
+		"1.4.16"
+	],
+	"54.0.2840.51": [
+		"1.4.12"
+	],
+	"54.0.2840.101": [
+		"1.5.0",
+		"1.5.1"
+	],
+	"56.0.2924.87": [
+		"1.6.0",
+		"1.6.1",
+		"1.6.2",
+		"1.6.3",
+		"1.6.4",
+		"1.6.5",
+		"1.6.6",
+		"1.6.7",
+		"1.6.8",
+		"1.6.9",
+		"1.6.10",
+		"1.6.11",
+		"1.6.12",
+		"1.6.13",
+		"1.6.14",
+		"1.6.15",
+		"1.6.16",
+		"1.6.17",
+		"1.6.18"
+	],
+	"58.0.3029.110": [
+		"1.7.0",
+		"1.7.1",
+		"1.7.2",
+		"1.7.3",
+		"1.7.4",
+		"1.7.5",
+		"1.7.6",
+		"1.7.7",
+		"1.7.8",
+		"1.7.9",
+		"1.7.10",
+		"1.7.11",
+		"1.7.12",
+		"1.7.13",
+		"1.7.14",
+		"1.7.15",
+		"1.7.16"
+	],
+	"59.0.3071.115": [
+		"1.8.0",
+		"1.8.1",
+		"1.8.2-beta.1",
+		"1.8.2-beta.2",
+		"1.8.2-beta.3",
+		"1.8.2-beta.4",
+		"1.8.2-beta.5",
+		"1.8.2",
+		"1.8.3",
+		"1.8.4",
+		"1.8.5",
+		"1.8.6",
+		"1.8.7",
+		"1.8.8"
+	],
+	"61.0.3163.100": [
+		"2.0.0-beta.1",
+		"2.0.0-beta.2",
+		"2.0.0-beta.3",
+		"2.0.0-beta.4",
+		"2.0.0-beta.5",
+		"2.0.0-beta.6",
+		"2.0.0-beta.7",
+		"2.0.0-beta.8",
+		"2.0.0",
+		"2.0.1",
+		"2.0.2",
+		"2.0.3",
+		"2.0.4",
+		"2.0.5",
+		"2.0.6",
+		"2.0.7",
+		"2.0.8",
+		"2.0.9",
+		"2.0.10",
+		"2.0.11",
+		"2.0.12",
+		"2.0.13",
+		"2.0.14",
+		"2.0.15",
+		"2.0.16",
+		"2.0.17",
+		"2.0.18",
+		"2.1.0-unsupported.20180809"
+	],
+	"66.0.3359.181": [
+		"3.0.0-beta.1",
+		"3.0.0-beta.2",
+		"3.0.0-beta.3",
+		"3.0.0-beta.4",
+		"3.0.0-beta.5",
+		"3.0.0-beta.6",
+		"3.0.0-beta.7",
+		"3.0.0-beta.8",
+		"3.0.0-beta.9",
+		"3.0.0-beta.10",
+		"3.0.0-beta.11",
+		"3.0.0-beta.12",
+		"3.0.0-beta.13",
+		"3.0.0",
+		"3.0.1",
+		"3.0.2",
+		"3.0.3",
+		"3.0.4",
+		"3.0.5",
+		"3.0.6",
+		"3.0.7",
+		"3.0.8",
+		"3.0.9",
+		"3.0.10",
+		"3.0.11",
+		"3.0.12",
+		"3.0.13",
+		"3.0.14",
+		"3.0.15",
+		"3.0.16",
+		"3.1.0-beta.1",
+		"3.1.0-beta.2",
+		"3.1.0-beta.3",
+		"3.1.0-beta.4",
+		"3.1.0-beta.5",
+		"3.1.0",
+		"3.1.1",
+		"3.1.2",
+		"3.1.3",
+		"3.1.4",
+		"3.1.5",
+		"3.1.6",
+		"3.1.7",
+		"3.1.8",
+		"3.1.9",
+		"3.1.10",
+		"3.1.11",
+		"3.1.12",
+		"3.1.13"
+	],
+	"69.0.3497.106": [
+		"4.0.0-beta.1",
+		"4.0.0-beta.2",
+		"4.0.0-beta.3",
+		"4.0.0-beta.4",
+		"4.0.0-beta.5",
+		"4.0.0-beta.6",
+		"4.0.0-beta.7",
+		"4.0.0-beta.8",
+		"4.0.0-beta.9",
+		"4.0.0-beta.10",
+		"4.0.0-beta.11",
+		"4.0.0",
+		"4.0.1",
+		"4.0.2",
+		"4.0.3",
+		"4.0.4",
+		"4.0.5",
+		"4.0.6"
+	],
+	"69.0.3497.128": [
+		"4.0.7",
+		"4.0.8",
+		"4.1.0",
+		"4.1.1",
+		"4.1.2",
+		"4.1.3",
+		"4.1.4",
+		"4.1.5",
+		"4.2.0",
+		"4.2.1",
+		"4.2.2",
+		"4.2.3",
+		"4.2.4",
+		"4.2.5",
+		"4.2.6",
+		"4.2.7",
+		"4.2.8",
+		"4.2.9",
+		"4.2.10",
+		"4.2.11",
+		"4.2.12"
+	],
+	"72.0.3626.52": [
+		"5.0.0-beta.1",
+		"5.0.0-beta.2"
+	],
+	"73.0.3683.27": [
+		"5.0.0-beta.3"
+	],
+	"73.0.3683.54": [
+		"5.0.0-beta.4"
+	],
+	"73.0.3683.61": [
+		"5.0.0-beta.5"
+	],
+	"73.0.3683.84": [
+		"5.0.0-beta.6"
+	],
+	"73.0.3683.94": [
+		"5.0.0-beta.7"
+	],
+	"73.0.3683.104": [
+		"5.0.0-beta.8"
+	],
+	"73.0.3683.117": [
+		"5.0.0-beta.9"
+	],
+	"73.0.3683.119": [
+		"5.0.0"
+	],
+	"73.0.3683.121": [
+		"5.0.1",
+		"5.0.2",
+		"5.0.3",
+		"5.0.4",
+		"5.0.5",
+		"5.0.6",
+		"5.0.7",
+		"5.0.8",
+		"5.0.9",
+		"5.0.10",
+		"5.0.11",
+		"5.0.12",
+		"5.0.13"
+	],
+	"76.0.3774.1": [
+		"6.0.0-beta.1"
+	],
+	"76.0.3783.1": [
+		"6.0.0-beta.2",
+		"6.0.0-beta.3",
+		"6.0.0-beta.4"
+	],
+	"76.0.3805.4": [
+		"6.0.0-beta.5"
+	],
+	"76.0.3809.3": [
+		"6.0.0-beta.6"
+	],
+	"76.0.3809.22": [
+		"6.0.0-beta.7"
+	],
+	"76.0.3809.26": [
+		"6.0.0-beta.8",
+		"6.0.0-beta.9"
+	],
+	"76.0.3809.37": [
+		"6.0.0-beta.10"
+	],
+	"76.0.3809.42": [
+		"6.0.0-beta.11"
+	],
+	"76.0.3809.54": [
+		"6.0.0-beta.12"
+	],
+	"76.0.3809.60": [
+		"6.0.0-beta.13"
+	],
+	"76.0.3809.68": [
+		"6.0.0-beta.14"
+	],
+	"76.0.3809.74": [
+		"6.0.0-beta.15"
+	],
+	"76.0.3809.88": [
+		"6.0.0"
+	],
+	"76.0.3809.102": [
+		"6.0.1"
+	],
+	"76.0.3809.110": [
+		"6.0.2"
+	],
+	"76.0.3809.126": [
+		"6.0.3"
+	],
+	"76.0.3809.131": [
+		"6.0.4"
+	],
+	"76.0.3809.136": [
+		"6.0.5"
+	],
+	"76.0.3809.138": [
+		"6.0.6"
+	],
+	"76.0.3809.139": [
+		"6.0.7"
+	],
+	"76.0.3809.146": [
+		"6.0.8",
+		"6.0.9",
+		"6.0.10",
+		"6.0.11",
+		"6.0.12",
+		"6.1.0",
+		"6.1.1",
+		"6.1.2",
+		"6.1.3",
+		"6.1.4",
+		"6.1.5",
+		"6.1.6",
+		"6.1.7",
+		"6.1.8",
+		"6.1.9",
+		"6.1.10",
+		"6.1.11",
+		"6.1.12"
+	],
+	"78.0.3866.0": [
+		"7.0.0-beta.1",
+		"7.0.0-beta.2",
+		"7.0.0-beta.3"
+	],
+	"78.0.3896.6": [
+		"7.0.0-beta.4"
+	],
+	"78.0.3905.1": [
+		"7.0.0-beta.5",
+		"7.0.0-beta.6",
+		"7.0.0-beta.7",
+		"7.0.0"
+	],
+	"78.0.3904.92": [
+		"7.0.1"
+	],
+	"78.0.3904.94": [
+		"7.1.0"
+	],
+	"78.0.3904.99": [
+		"7.1.1"
+	],
+	"78.0.3904.113": [
+		"7.1.2"
+	],
+	"78.0.3904.126": [
+		"7.1.3"
+	],
+	"78.0.3904.130": [
+		"7.1.4",
+		"7.1.5",
+		"7.1.6",
+		"7.1.7",
+		"7.1.8",
+		"7.1.9",
+		"7.1.10",
+		"7.1.11",
+		"7.1.12",
+		"7.1.13",
+		"7.1.14",
+		"7.2.0",
+		"7.2.1",
+		"7.2.2",
+		"7.2.3",
+		"7.2.4",
+		"7.3.0",
+		"7.3.1",
+		"7.3.2",
+		"7.3.3"
+	],
+	"79.0.3931.0": [
+		"8.0.0-beta.1",
+		"8.0.0-beta.2"
+	],
+	"80.0.3955.0": [
+		"8.0.0-beta.3",
+		"8.0.0-beta.4"
+	],
+	"80.0.3987.14": [
+		"8.0.0-beta.5"
+	],
+	"80.0.3987.51": [
+		"8.0.0-beta.6"
+	],
+	"80.0.3987.59": [
+		"8.0.0-beta.7"
+	],
+	"80.0.3987.75": [
+		"8.0.0-beta.8",
+		"8.0.0-beta.9"
+	],
+	"80.0.3987.86": [
+		"8.0.0",
+		"8.0.1",
+		"8.0.2"
+	],
+	"80.0.3987.134": [
+		"8.0.3"
+	],
+	"80.0.3987.137": [
+		"8.1.0"
+	],
+	"80.0.3987.141": [
+		"8.1.1"
+	],
+	"80.0.3987.158": [
+		"8.2.0"
+	],
+	"80.0.3987.163": [
+		"8.2.1",
+		"8.2.2",
+		"8.2.3",
+		"8.5.3",
+		"8.5.4",
+		"8.5.5"
+	],
+	"80.0.3987.165": [
+		"8.2.4",
+		"8.2.5",
+		"8.3.0",
+		"8.3.1",
+		"8.3.2",
+		"8.3.3",
+		"8.3.4",
+		"8.4.0",
+		"8.4.1",
+		"8.5.0",
+		"8.5.1",
+		"8.5.2"
+	],
+	"82.0.4048.0": [
+		"9.0.0-beta.1",
+		"9.0.0-beta.2",
+		"9.0.0-beta.3",
+		"9.0.0-beta.4",
+		"9.0.0-beta.5"
+	],
+	"82.0.4058.2": [
+		"9.0.0-beta.6",
+		"9.0.0-beta.7",
+		"9.0.0-beta.9"
+	],
+	"82.0.4085.10": [
+		"9.0.0-beta.10"
+	],
+	"82.0.4085.14": [
+		"9.0.0-beta.11",
+		"9.0.0-beta.12",
+		"9.0.0-beta.13"
+	],
+	"82.0.4085.27": [
+		"9.0.0-beta.14"
+	],
+	"83.0.4102.3": [
+		"9.0.0-beta.15",
+		"9.0.0-beta.16"
+	],
+	"83.0.4103.14": [
+		"9.0.0-beta.17"
+	],
+	"83.0.4103.16": [
+		"9.0.0-beta.18"
+	],
+	"83.0.4103.24": [
+		"9.0.0-beta.19"
+	],
+	"83.0.4103.26": [
+		"9.0.0-beta.20",
+		"9.0.0-beta.21"
+	],
+	"83.0.4103.34": [
+		"9.0.0-beta.22"
+	],
+	"83.0.4103.44": [
+		"9.0.0-beta.23"
+	],
+	"83.0.4103.45": [
+		"9.0.0-beta.24"
+	],
+	"83.0.4103.64": [
+		"9.0.0"
+	],
+	"83.0.4103.94": [
+		"9.0.1",
+		"9.0.2"
+	],
+	"83.0.4103.100": [
+		"9.0.3"
+	],
+	"83.0.4103.104": [
+		"9.0.4"
+	],
+	"83.0.4103.119": [
+		"9.0.5"
+	],
+	"83.0.4103.122": [
+		"9.1.0",
+		"9.1.1",
+		"9.1.2",
+		"9.2.0",
+		"9.2.1",
+		"9.3.0",
+		"9.3.1",
+		"9.3.2",
+		"9.3.3",
+		"9.3.4",
+		"9.3.5",
+		"9.4.0",
+		"9.4.1",
+		"9.4.2",
+		"9.4.3",
+		"9.4.4"
+	],
+	"84.0.4129.0": [
+		"10.0.0-beta.1",
+		"10.0.0-beta.2"
+	],
+	"85.0.4161.2": [
+		"10.0.0-beta.3",
+		"10.0.0-beta.4"
+	],
+	"85.0.4181.1": [
+		"10.0.0-beta.8",
+		"10.0.0-beta.9"
+	],
+	"85.0.4183.19": [
+		"10.0.0-beta.10"
+	],
+	"85.0.4183.20": [
+		"10.0.0-beta.11"
+	],
+	"85.0.4183.26": [
+		"10.0.0-beta.12"
+	],
+	"85.0.4183.39": [
+		"10.0.0-beta.13",
+		"10.0.0-beta.14",
+		"10.0.0-beta.15",
+		"10.0.0-beta.17",
+		"10.0.0-beta.19",
+		"10.0.0-beta.20",
+		"10.0.0-beta.21"
+	],
+	"85.0.4183.70": [
+		"10.0.0-beta.23"
+	],
+	"85.0.4183.78": [
+		"10.0.0-beta.24"
+	],
+	"85.0.4183.80": [
+		"10.0.0-beta.25"
+	],
+	"85.0.4183.84": [
+		"10.0.0"
+	],
+	"85.0.4183.86": [
+		"10.0.1"
+	],
+	"85.0.4183.87": [
+		"10.1.0"
+	],
+	"85.0.4183.93": [
+		"10.1.1"
+	],
+	"85.0.4183.98": [
+		"10.1.2"
+	],
+	"85.0.4183.121": [
+		"10.1.3",
+		"10.1.4",
+		"10.1.5",
+		"10.1.6",
+		"10.1.7",
+		"10.2.0",
+		"10.3.0",
+		"10.3.1",
+		"10.3.2",
+		"10.4.0",
+		"10.4.1",
+		"10.4.2",
+		"10.4.3",
+		"10.4.4",
+		"10.4.5",
+		"10.4.6",
+		"10.4.7"
+	],
+	"86.0.4234.0": [
+		"11.0.0-beta.1",
+		"11.0.0-beta.3",
+		"11.0.0-beta.4",
+		"11.0.0-beta.5",
+		"11.0.0-beta.6",
+		"11.0.0-beta.7"
+	],
+	"87.0.4251.1": [
+		"11.0.0-beta.8",
+		"11.0.0-beta.9",
+		"11.0.0-beta.11"
+	],
+	"87.0.4280.11": [
+		"11.0.0-beta.12",
+		"11.0.0-beta.13"
+	],
+	"87.0.4280.27": [
+		"11.0.0-beta.16",
+		"11.0.0-beta.17",
+		"11.0.0-beta.18",
+		"11.0.0-beta.19"
+	],
+	"87.0.4280.40": [
+		"11.0.0-beta.20"
+	],
+	"87.0.4280.47": [
+		"11.0.0-beta.22",
+		"11.0.0-beta.23"
+	],
+	"87.0.4280.60": [
+		"11.0.0",
+		"11.0.1"
+	],
+	"87.0.4280.67": [
+		"11.0.2",
+		"11.0.3",
+		"11.0.4"
+	],
+	"87.0.4280.88": [
+		"11.0.5",
+		"11.1.0",
+		"11.1.1"
+	],
+	"87.0.4280.141": [
+		"11.2.0",
+		"11.2.1",
+		"11.2.2",
+		"11.2.3",
+		"11.3.0",
+		"11.4.0",
+		"11.4.1",
+		"11.4.2",
+		"11.4.3",
+		"11.4.4",
+		"11.4.5",
+		"11.4.6",
+		"11.4.7",
+		"11.4.8",
+		"11.4.9",
+		"11.4.10",
+		"11.4.11",
+		"11.4.12",
+		"11.5.0"
+	],
+	"89.0.4328.0": [
+		"12.0.0-beta.1",
+		"12.0.0-beta.3",
+		"12.0.0-beta.4",
+		"12.0.0-beta.5",
+		"12.0.0-beta.6",
+		"12.0.0-beta.7",
+		"12.0.0-beta.8",
+		"12.0.0-beta.9",
+		"12.0.0-beta.10",
+		"12.0.0-beta.11",
+		"12.0.0-beta.12",
+		"12.0.0-beta.14"
+	],
+	"89.0.4348.1": [
+		"12.0.0-beta.16",
+		"12.0.0-beta.18",
+		"12.0.0-beta.19",
+		"12.0.0-beta.20"
+	],
+	"89.0.4388.2": [
+		"12.0.0-beta.21",
+		"12.0.0-beta.22",
+		"12.0.0-beta.23",
+		"12.0.0-beta.24",
+		"12.0.0-beta.25",
+		"12.0.0-beta.26"
+	],
+	"89.0.4389.23": [
+		"12.0.0-beta.27",
+		"12.0.0-beta.28",
+		"12.0.0-beta.29"
+	],
+	"89.0.4389.58": [
+		"12.0.0-beta.30",
+		"12.0.0-beta.31"
+	],
+	"89.0.4389.69": [
+		"12.0.0"
+	],
+	"89.0.4389.82": [
+		"12.0.1"
+	],
+	"89.0.4389.90": [
+		"12.0.2"
+	],
+	"89.0.4389.114": [
+		"12.0.3",
+		"12.0.4"
+	],
+	"89.0.4389.128": [
+		"12.0.5",
+		"12.0.6",
+		"12.0.7",
+		"12.0.8",
+		"12.0.9",
+		"12.0.10",
+		"12.0.11",
+		"12.0.12",
+		"12.0.13",
+		"12.0.14",
+		"12.0.15",
+		"12.0.16",
+		"12.0.17",
+		"12.0.18",
+		"12.1.0",
+		"12.1.1",
+		"12.1.2",
+		"12.2.0",
+		"12.2.1",
+		"12.2.2",
+		"12.2.3"
+	],
+	"90.0.4402.0": [
+		"13.0.0-beta.2",
+		"13.0.0-beta.3"
+	],
+	"90.0.4415.0": [
+		"13.0.0-beta.4",
+		"13.0.0-beta.5",
+		"13.0.0-beta.6",
+		"13.0.0-beta.7",
+		"13.0.0-beta.8",
+		"13.0.0-beta.9",
+		"13.0.0-beta.10",
+		"13.0.0-beta.11",
+		"13.0.0-beta.12",
+		"13.0.0-beta.13"
+	],
+	"91.0.4448.0": [
+		"13.0.0-beta.14",
+		"13.0.0-beta.16",
+		"13.0.0-beta.17",
+		"13.0.0-beta.18",
+		"13.0.0-beta.20"
+	],
+	"91.0.4472.33": [
+		"13.0.0-beta.21",
+		"13.0.0-beta.22",
+		"13.0.0-beta.23"
+	],
+	"91.0.4472.38": [
+		"13.0.0-beta.24",
+		"13.0.0-beta.25",
+		"13.0.0-beta.26",
+		"13.0.0-beta.27",
+		"13.0.0-beta.28"
+	],
+	"91.0.4472.69": [
+		"13.0.0",
+		"13.0.1"
+	],
+	"91.0.4472.77": [
+		"13.1.0",
+		"13.1.1",
+		"13.1.2"
+	],
+	"91.0.4472.106": [
+		"13.1.3",
+		"13.1.4"
+	],
+	"91.0.4472.124": [
+		"13.1.5",
+		"13.1.6",
+		"13.1.7"
+	],
+	"91.0.4472.164": [
+		"13.1.8",
+		"13.1.9",
+		"13.2.0",
+		"13.2.1",
+		"13.2.2",
+		"13.2.3",
+		"13.3.0",
+		"13.4.0",
+		"13.5.0",
+		"13.5.1",
+		"13.5.2",
+		"13.6.0",
+		"13.6.1",
+		"13.6.2",
+		"13.6.3",
+		"13.6.6",
+		"13.6.7",
+		"13.6.8",
+		"13.6.9"
+	],
+	"92.0.4511.0": [
+		"14.0.0-beta.1",
+		"14.0.0-beta.2",
+		"14.0.0-beta.3"
+	],
+	"93.0.4536.0": [
+		"14.0.0-beta.5",
+		"14.0.0-beta.6",
+		"14.0.0-beta.7",
+		"14.0.0-beta.8"
+	],
+	"93.0.4539.0": [
+		"14.0.0-beta.9",
+		"14.0.0-beta.10"
+	],
+	"93.0.4557.4": [
+		"14.0.0-beta.11",
+		"14.0.0-beta.12"
+	],
+	"93.0.4566.0": [
+		"14.0.0-beta.13",
+		"14.0.0-beta.14",
+		"14.0.0-beta.15",
+		"14.0.0-beta.16",
+		"14.0.0-beta.17",
+		"15.0.0-alpha.1",
+		"15.0.0-alpha.2"
+	],
+	"93.0.4577.15": [
+		"14.0.0-beta.18",
+		"14.0.0-beta.19",
+		"14.0.0-beta.20",
+		"14.0.0-beta.21"
+	],
+	"93.0.4577.25": [
+		"14.0.0-beta.22",
+		"14.0.0-beta.23"
+	],
+	"93.0.4577.51": [
+		"14.0.0-beta.24",
+		"14.0.0-beta.25"
+	],
+	"93.0.4577.58": [
+		"14.0.0"
+	],
+	"93.0.4577.63": [
+		"14.0.1"
+	],
+	"93.0.4577.82": [
+		"14.0.2",
+		"14.1.0",
+		"14.1.1",
+		"14.2.0",
+		"14.2.1",
+		"14.2.2",
+		"14.2.3",
+		"14.2.4",
+		"14.2.5",
+		"14.2.6",
+		"14.2.7",
+		"14.2.8",
+		"14.2.9"
+	],
+	"94.0.4584.0": [
+		"15.0.0-alpha.3",
+		"15.0.0-alpha.4",
+		"15.0.0-alpha.5",
+		"15.0.0-alpha.6"
+	],
+	"94.0.4590.2": [
+		"15.0.0-alpha.7",
+		"15.0.0-alpha.8",
+		"15.0.0-alpha.9"
+	],
+	"94.0.4606.12": [
+		"15.0.0-alpha.10"
+	],
+	"94.0.4606.20": [
+		"15.0.0-beta.1",
+		"15.0.0-beta.2"
+	],
+	"94.0.4606.31": [
+		"15.0.0-beta.3",
+		"15.0.0-beta.4",
+		"15.0.0-beta.5",
+		"15.0.0-beta.6",
+		"15.0.0-beta.7"
+	],
+	"94.0.4606.51": [
+		"15.0.0"
+	],
+	"94.0.4606.61": [
+		"15.1.0",
+		"15.1.1"
+	],
+	"94.0.4606.71": [
+		"15.1.2"
+	],
+	"94.0.4606.81": [
+		"15.2.0",
+		"15.3.0",
+		"15.3.1",
+		"15.3.2",
+		"15.3.3",
+		"15.3.4",
+		"15.3.5",
+		"15.3.6",
+		"15.3.7",
+		"15.4.0",
+		"15.4.1",
+		"15.4.2",
+		"15.5.0",
+		"15.5.1",
+		"15.5.2",
+		"15.5.3",
+		"15.5.4",
+		"15.5.5",
+		"15.5.6",
+		"15.5.7"
+	],
+	"95.0.4629.0": [
+		"16.0.0-alpha.1",
+		"16.0.0-alpha.2",
+		"16.0.0-alpha.3",
+		"16.0.0-alpha.4",
+		"16.0.0-alpha.5",
+		"16.0.0-alpha.6",
+		"16.0.0-alpha.7"
+	],
+	"96.0.4647.0": [
+		"16.0.0-alpha.8",
+		"16.0.0-alpha.9",
+		"16.0.0-beta.1",
+		"16.0.0-beta.2",
+		"16.0.0-beta.3"
+	],
+	"96.0.4664.18": [
+		"16.0.0-beta.4",
+		"16.0.0-beta.5"
+	],
+	"96.0.4664.27": [
+		"16.0.0-beta.6",
+		"16.0.0-beta.7"
+	],
+	"96.0.4664.35": [
+		"16.0.0-beta.8",
+		"16.0.0-beta.9"
+	],
+	"96.0.4664.45": [
+		"16.0.0",
+		"16.0.1"
+	],
+	"96.0.4664.55": [
+		"16.0.2",
+		"16.0.3",
+		"16.0.4",
+		"16.0.5"
+	],
+	"96.0.4664.110": [
+		"16.0.6",
+		"16.0.7",
+		"16.0.8"
+	],
+	"96.0.4664.174": [
+		"16.0.9",
+		"16.0.10",
+		"16.1.0",
+		"16.1.1",
+		"16.2.0",
+		"16.2.1",
+		"16.2.2",
+		"16.2.3",
+		"16.2.4",
+		"16.2.5",
+		"16.2.6",
+		"16.2.7",
+		"16.2.8"
+	],
+	"96.0.4664.4": [
+		"17.0.0-alpha.1",
+		"17.0.0-alpha.2",
+		"17.0.0-alpha.3"
+	],
+	"98.0.4706.0": [
+		"17.0.0-alpha.4",
+		"17.0.0-alpha.5",
+		"17.0.0-alpha.6",
+		"17.0.0-beta.1",
+		"17.0.0-beta.2"
+	],
+	"98.0.4758.9": [
+		"17.0.0-beta.3"
+	],
+	"98.0.4758.11": [
+		"17.0.0-beta.4",
+		"17.0.0-beta.5",
+		"17.0.0-beta.6",
+		"17.0.0-beta.7",
+		"17.0.0-beta.8",
+		"17.0.0-beta.9"
+	],
+	"98.0.4758.74": [
+		"17.0.0"
+	],
+	"98.0.4758.82": [
+		"17.0.1"
+	],
+	"98.0.4758.102": [
+		"17.1.0"
+	],
+	"98.0.4758.109": [
+		"17.1.1",
+		"17.1.2",
+		"17.2.0"
+	],
+	"98.0.4758.141": [
+		"17.3.0",
+		"17.3.1",
+		"17.4.0",
+		"17.4.1",
+		"17.4.2",
+		"17.4.3",
+		"17.4.4",
+		"17.4.5",
+		"17.4.6",
+		"17.4.7",
+		"17.4.8",
+		"17.4.9",
+		"17.4.10",
+		"17.4.11"
+	],
+	"99.0.4767.0": [
+		"18.0.0-alpha.1",
+		"18.0.0-alpha.2",
+		"18.0.0-alpha.3",
+		"18.0.0-alpha.4",
+		"18.0.0-alpha.5"
+	],
+	"100.0.4894.0": [
+		"18.0.0-beta.1",
+		"18.0.0-beta.2",
+		"18.0.0-beta.3",
+		"18.0.0-beta.4",
+		"18.0.0-beta.5",
+		"18.0.0-beta.6"
+	],
+	"100.0.4896.56": [
+		"18.0.0"
+	],
+	"100.0.4896.60": [
+		"18.0.1",
+		"18.0.2"
+	],
+	"100.0.4896.75": [
+		"18.0.3",
+		"18.0.4"
+	],
+	"100.0.4896.127": [
+		"18.1.0"
+	],
+	"100.0.4896.143": [
+		"18.2.0",
+		"18.2.1",
+		"18.2.2",
+		"18.2.3"
+	],
+	"100.0.4896.160": [
+		"18.2.4",
+		"18.3.0",
+		"18.3.1",
+		"18.3.2",
+		"18.3.3",
+		"18.3.4",
+		"18.3.5",
+		"18.3.6",
+		"18.3.7",
+		"18.3.8",
+		"18.3.9",
+		"18.3.11",
+		"18.3.12",
+		"18.3.13",
+		"18.3.14",
+		"18.3.15"
+	],
+	"102.0.4962.3": [
+		"19.0.0-alpha.1"
+	],
+	"102.0.4971.0": [
+		"19.0.0-alpha.2",
+		"19.0.0-alpha.3"
+	],
+	"102.0.4989.0": [
+		"19.0.0-alpha.4",
+		"19.0.0-alpha.5"
+	],
+	"102.0.4999.0": [
+		"19.0.0-beta.1",
+		"19.0.0-beta.2",
+		"19.0.0-beta.3"
+	],
+	"102.0.5005.27": [
+		"19.0.0-beta.4"
+	],
+	"102.0.5005.40": [
+		"19.0.0-beta.5",
+		"19.0.0-beta.6",
+		"19.0.0-beta.7"
+	],
+	"102.0.5005.49": [
+		"19.0.0-beta.8"
+	],
+	"102.0.5005.61": [
+		"19.0.0",
+		"19.0.1"
+	],
+	"102.0.5005.63": [
+		"19.0.2",
+		"19.0.3",
+		"19.0.4"
+	],
+	"102.0.5005.115": [
+		"19.0.5",
+		"19.0.6"
+	],
+	"102.0.5005.134": [
+		"19.0.7"
+	],
+	"102.0.5005.148": [
+		"19.0.8"
+	],
+	"102.0.5005.167": [
+		"19.0.9",
+		"19.0.10",
+		"19.0.11",
+		"19.0.12",
+		"19.0.13",
+		"19.0.14",
+		"19.0.15",
+		"19.0.16",
+		"19.0.17",
+		"19.1.0",
+		"19.1.1",
+		"19.1.2",
+		"19.1.3",
+		"19.1.4",
+		"19.1.5",
+		"19.1.6",
+		"19.1.7",
+		"19.1.8",
+		"19.1.9"
+	],
+	"103.0.5044.0": [
+		"20.0.0-alpha.1"
+	],
+	"104.0.5073.0": [
+		"20.0.0-alpha.2",
+		"20.0.0-alpha.3",
+		"20.0.0-alpha.4",
+		"20.0.0-alpha.5",
+		"20.0.0-alpha.6",
+		"20.0.0-alpha.7",
+		"20.0.0-beta.1",
+		"20.0.0-beta.2",
+		"20.0.0-beta.3",
+		"20.0.0-beta.4",
+		"20.0.0-beta.5",
+		"20.0.0-beta.6",
+		"20.0.0-beta.7",
+		"20.0.0-beta.8"
+	],
+	"104.0.5112.39": [
+		"20.0.0-beta.9"
+	],
+	"104.0.5112.48": [
+		"20.0.0-beta.10",
+		"20.0.0-beta.11",
+		"20.0.0-beta.12"
+	],
+	"104.0.5112.57": [
+		"20.0.0-beta.13"
+	],
+	"104.0.5112.65": [
+		"20.0.0"
+	],
+	"104.0.5112.81": [
+		"20.0.1",
+		"20.0.2",
+		"20.0.3"
+	],
+	"104.0.5112.102": [
+		"20.1.0",
+		"20.1.1"
+	],
+	"104.0.5112.114": [
+		"20.1.2",
+		"20.1.3",
+		"20.1.4"
+	],
+	"104.0.5112.124": [
+		"20.2.0",
+		"20.3.0",
+		"20.3.1",
+		"20.3.2",
+		"20.3.3",
+		"20.3.4",
+		"20.3.5",
+		"20.3.6",
+		"20.3.7",
+		"20.3.8",
+		"20.3.9",
+		"20.3.10",
+		"20.3.11",
+		"20.3.12"
+	],
+	"105.0.5187.0": [
+		"21.0.0-alpha.1",
+		"21.0.0-alpha.2",
+		"21.0.0-alpha.3",
+		"21.0.0-alpha.4",
+		"21.0.0-alpha.5"
+	],
+	"106.0.5216.0": [
+		"21.0.0-alpha.6",
+		"21.0.0-beta.1",
+		"21.0.0-beta.2",
+		"21.0.0-beta.3",
+		"21.0.0-beta.4",
+		"21.0.0-beta.5"
+	],
+	"106.0.5249.40": [
+		"21.0.0-beta.6",
+		"21.0.0-beta.7",
+		"21.0.0-beta.8"
+	],
+	"106.0.5249.51": [
+		"21.0.0"
+	],
+	"106.0.5249.61": [
+		"21.0.1"
+	],
+	"106.0.5249.91": [
+		"21.1.0"
+	],
+	"106.0.5249.103": [
+		"21.1.1"
+	],
+	"106.0.5249.119": [
+		"21.2.0"
+	],
+	"106.0.5249.165": [
+		"21.2.1"
+	],
+	"106.0.5249.168": [
+		"21.2.2",
+		"21.2.3"
+	],
+	"106.0.5249.181": [
+		"21.3.0",
+		"21.3.1"
+	],
+	"106.0.5249.199": [
+		"21.3.3",
+		"21.3.4",
+		"21.3.5",
+		"21.4.0",
+		"21.4.1",
+		"21.4.2",
+		"21.4.3",
+		"21.4.4"
+	],
+	"107.0.5286.0": [
+		"22.0.0-alpha.1"
+	],
+	"108.0.5329.0": [
+		"22.0.0-alpha.3",
+		"22.0.0-alpha.4",
+		"22.0.0-alpha.5",
+		"22.0.0-alpha.6"
+	],
+	"108.0.5355.0": [
+		"22.0.0-alpha.7"
+	],
+	"108.0.5359.10": [
+		"22.0.0-alpha.8",
+		"22.0.0-beta.1",
+		"22.0.0-beta.2",
+		"22.0.0-beta.3"
+	],
+	"108.0.5359.29": [
+		"22.0.0-beta.4"
+	],
+	"108.0.5359.40": [
+		"22.0.0-beta.5",
+		"22.0.0-beta.6"
+	],
+	"108.0.5359.48": [
+		"22.0.0-beta.7",
+		"22.0.0-beta.8"
+	],
+	"108.0.5359.62": [
+		"22.0.0"
+	],
+	"108.0.5359.125": [
+		"22.0.1"
+	],
+	"108.0.5359.179": [
+		"22.0.2",
+		"22.0.3",
+		"22.1.0"
+	],
+	"108.0.5359.215": [
+		"22.2.0",
+		"22.2.1",
+		"22.3.0",
+		"22.3.1",
+		"22.3.2",
+		"22.3.3",
+		"22.3.4",
+		"22.3.5",
+		"22.3.6",
+		"22.3.7",
+		"22.3.8",
+		"22.3.9",
+		"22.3.10",
+		"22.3.11",
+		"22.3.12",
+		"22.3.13",
+		"22.3.14",
+		"22.3.15",
+		"22.3.16",
+		"22.3.17",
+		"22.3.18",
+		"22.3.20",
+		"22.3.21",
+		"22.3.22",
+		"22.3.23",
+		"22.3.24",
+		"22.3.25",
+		"22.3.26",
+		"22.3.27"
+	],
+	"110.0.5415.0": [
+		"23.0.0-alpha.1"
+	],
+	"110.0.5451.0": [
+		"23.0.0-alpha.2",
+		"23.0.0-alpha.3"
+	],
+	"110.0.5478.5": [
+		"23.0.0-beta.1",
+		"23.0.0-beta.2",
+		"23.0.0-beta.3"
+	],
+	"110.0.5481.30": [
+		"23.0.0-beta.4"
+	],
+	"110.0.5481.38": [
+		"23.0.0-beta.5"
+	],
+	"110.0.5481.52": [
+		"23.0.0-beta.6",
+		"23.0.0-beta.8"
+	],
+	"110.0.5481.77": [
+		"23.0.0"
+	],
+	"110.0.5481.100": [
+		"23.1.0"
+	],
+	"110.0.5481.104": [
+		"23.1.1"
+	],
+	"110.0.5481.177": [
+		"23.1.2"
+	],
+	"110.0.5481.179": [
+		"23.1.3"
+	],
+	"110.0.5481.192": [
+		"23.1.4",
+		"23.2.0"
+	],
+	"110.0.5481.208": [
+		"23.2.1",
+		"23.2.2",
+		"23.2.3",
+		"23.2.4",
+		"23.3.0",
+		"23.3.1",
+		"23.3.2",
+		"23.3.3",
+		"23.3.4",
+		"23.3.5",
+		"23.3.6",
+		"23.3.7",
+		"23.3.8",
+		"23.3.9",
+		"23.3.10",
+		"23.3.11",
+		"23.3.12",
+		"23.3.13"
+	],
+	"111.0.5560.0": [
+		"24.0.0-alpha.1",
+		"24.0.0-alpha.2",
+		"24.0.0-alpha.3",
+		"24.0.0-alpha.4",
+		"24.0.0-alpha.5",
+		"24.0.0-alpha.6",
+		"24.0.0-alpha.7"
+	],
+	"111.0.5563.50": [
+		"24.0.0-beta.1",
+		"24.0.0-beta.2"
+	],
+	"112.0.5615.20": [
+		"24.0.0-beta.3",
+		"24.0.0-beta.4"
+	],
+	"112.0.5615.29": [
+		"24.0.0-beta.5"
+	],
+	"112.0.5615.39": [
+		"24.0.0-beta.6",
+		"24.0.0-beta.7"
+	],
+	"112.0.5615.49": [
+		"24.0.0"
+	],
+	"112.0.5615.50": [
+		"24.1.0",
+		"24.1.1"
+	],
+	"112.0.5615.87": [
+		"24.1.2"
+	],
+	"112.0.5615.165": [
+		"24.1.3",
+		"24.2.0",
+		"24.3.0"
+	],
+	"112.0.5615.183": [
+		"24.3.1"
+	],
+	"112.0.5615.204": [
+		"24.4.0",
+		"24.4.1",
+		"24.5.0",
+		"24.5.1",
+		"24.6.0",
+		"24.6.1",
+		"24.6.2",
+		"24.6.3",
+		"24.6.4",
+		"24.6.5",
+		"24.7.0",
+		"24.7.1",
+		"24.8.0",
+		"24.8.1",
+		"24.8.2",
+		"24.8.3",
+		"24.8.4",
+		"24.8.5",
+		"24.8.6",
+		"24.8.7",
+		"24.8.8"
+	],
+	"114.0.5694.0": [
+		"25.0.0-alpha.1",
+		"25.0.0-alpha.2"
+	],
+	"114.0.5710.0": [
+		"25.0.0-alpha.3",
+		"25.0.0-alpha.4"
+	],
+	"114.0.5719.0": [
+		"25.0.0-alpha.5",
+		"25.0.0-alpha.6",
+		"25.0.0-beta.1",
+		"25.0.0-beta.2",
+		"25.0.0-beta.3"
+	],
+	"114.0.5735.16": [
+		"25.0.0-beta.4",
+		"25.0.0-beta.5",
+		"25.0.0-beta.6",
+		"25.0.0-beta.7"
+	],
+	"114.0.5735.35": [
+		"25.0.0-beta.8"
+	],
+	"114.0.5735.45": [
+		"25.0.0-beta.9",
+		"25.0.0",
+		"25.0.1"
+	],
+	"114.0.5735.106": [
+		"25.1.0",
+		"25.1.1"
+	],
+	"114.0.5735.134": [
+		"25.2.0"
+	],
+	"114.0.5735.199": [
+		"25.3.0"
+	],
+	"114.0.5735.243": [
+		"25.3.1"
+	],
+	"114.0.5735.248": [
+		"25.3.2",
+		"25.4.0"
+	],
+	"114.0.5735.289": [
+		"25.5.0",
+		"25.6.0",
+		"25.7.0",
+		"25.8.0",
+		"25.8.1",
+		"25.8.2",
+		"25.8.3",
+		"25.8.4",
+		"25.9.0",
+		"25.9.1",
+		"25.9.2",
+		"25.9.3",
+		"25.9.4",
+		"25.9.5",
+		"25.9.6",
+		"25.9.7",
+		"25.9.8"
+	],
+	"116.0.5791.0": [
+		"26.0.0-alpha.1",
+		"26.0.0-alpha.2",
+		"26.0.0-alpha.3",
+		"26.0.0-alpha.4",
+		"26.0.0-alpha.5"
+	],
+	"116.0.5815.0": [
+		"26.0.0-alpha.6"
+	],
+	"116.0.5831.0": [
+		"26.0.0-alpha.7"
+	],
+	"116.0.5845.0": [
+		"26.0.0-alpha.8",
+		"26.0.0-beta.1"
+	],
+	"116.0.5845.14": [
+		"26.0.0-beta.2",
+		"26.0.0-beta.3",
+		"26.0.0-beta.4",
+		"26.0.0-beta.5",
+		"26.0.0-beta.6",
+		"26.0.0-beta.7"
+	],
+	"116.0.5845.42": [
+		"26.0.0-beta.8",
+		"26.0.0-beta.9"
+	],
+	"116.0.5845.49": [
+		"26.0.0-beta.10",
+		"26.0.0-beta.11"
+	],
+	"116.0.5845.62": [
+		"26.0.0-beta.12"
+	],
+	"116.0.5845.82": [
+		"26.0.0"
+	],
+	"116.0.5845.97": [
+		"26.1.0"
+	],
+	"116.0.5845.179": [
+		"26.2.0"
+	],
+	"116.0.5845.188": [
+		"26.2.1"
+	],
+	"116.0.5845.190": [
+		"26.2.2",
+		"26.2.3",
+		"26.2.4"
+	],
+	"116.0.5845.228": [
+		"26.3.0",
+		"26.4.0",
+		"26.4.1",
+		"26.4.2",
+		"26.4.3",
+		"26.5.0",
+		"26.6.0",
+		"26.6.1",
+		"26.6.2",
+		"26.6.3",
+		"26.6.4",
+		"26.6.5",
+		"26.6.6",
+		"26.6.7",
+		"26.6.8",
+		"26.6.9",
+		"26.6.10"
+	],
+	"118.0.5949.0": [
+		"27.0.0-alpha.1",
+		"27.0.0-alpha.2",
+		"27.0.0-alpha.3",
+		"27.0.0-alpha.4",
+		"27.0.0-alpha.5",
+		"27.0.0-alpha.6"
+	],
+	"118.0.5993.5": [
+		"27.0.0-beta.1",
+		"27.0.0-beta.2",
+		"27.0.0-beta.3"
+	],
+	"118.0.5993.11": [
+		"27.0.0-beta.4"
+	],
+	"118.0.5993.18": [
+		"27.0.0-beta.5",
+		"27.0.0-beta.6",
+		"27.0.0-beta.7",
+		"27.0.0-beta.8",
+		"27.0.0-beta.9"
+	],
+	"118.0.5993.54": [
+		"27.0.0"
+	],
+	"118.0.5993.89": [
+		"27.0.1",
+		"27.0.2"
+	],
+	"118.0.5993.120": [
+		"27.0.3"
+	],
+	"118.0.5993.129": [
+		"27.0.4"
+	],
+	"118.0.5993.144": [
+		"27.1.0",
+		"27.1.2"
+	],
+	"118.0.5993.159": [
+		"27.1.3",
+		"27.2.0",
+		"27.2.1",
+		"27.2.2",
+		"27.2.3",
+		"27.2.4",
+		"27.3.0",
+		"27.3.1",
+		"27.3.2",
+		"27.3.3",
+		"27.3.4",
+		"27.3.5",
+		"27.3.6",
+		"27.3.7",
+		"27.3.8",
+		"27.3.9",
+		"27.3.10",
+		"27.3.11"
+	],
+	"119.0.6045.0": [
+		"28.0.0-alpha.1",
+		"28.0.0-alpha.2"
+	],
+	"119.0.6045.21": [
+		"28.0.0-alpha.3",
+		"28.0.0-alpha.4"
+	],
+	"119.0.6045.33": [
+		"28.0.0-alpha.5",
+		"28.0.0-alpha.6",
+		"28.0.0-alpha.7",
+		"28.0.0-beta.1"
+	],
+	"120.0.6099.0": [
+		"28.0.0-beta.2"
+	],
+	"120.0.6099.5": [
+		"28.0.0-beta.3",
+		"28.0.0-beta.4"
+	],
+	"120.0.6099.18": [
+		"28.0.0-beta.5",
+		"28.0.0-beta.6",
+		"28.0.0-beta.7",
+		"28.0.0-beta.8",
+		"28.0.0-beta.9",
+		"28.0.0-beta.10"
+	],
+	"120.0.6099.35": [
+		"28.0.0-beta.11"
+	],
+	"120.0.6099.56": [
+		"28.0.0"
+	],
+	"120.0.6099.109": [
+		"28.1.0",
+		"28.1.1"
+	],
+	"120.0.6099.199": [
+		"28.1.2",
+		"28.1.3"
+	],
+	"120.0.6099.216": [
+		"28.1.4"
+	],
+	"120.0.6099.227": [
+		"28.2.0"
+	],
+	"120.0.6099.268": [
+		"28.2.1"
+	],
+	"120.0.6099.276": [
+		"28.2.2"
+	],
+	"120.0.6099.283": [
+		"28.2.3"
+	],
+	"120.0.6099.291": [
+		"28.2.4",
+		"28.2.5",
+		"28.2.6",
+		"28.2.7",
+		"28.2.8",
+		"28.2.9",
+		"28.2.10",
+		"28.3.0",
+		"28.3.1",
+		"28.3.2",
+		"28.3.3"
+	],
+	"121.0.6147.0": [
+		"29.0.0-alpha.1",
+		"29.0.0-alpha.2",
+		"29.0.0-alpha.3"
+	],
+	"121.0.6159.0": [
+		"29.0.0-alpha.4",
+		"29.0.0-alpha.5",
+		"29.0.0-alpha.6",
+		"29.0.0-alpha.7"
+	],
+	"122.0.6194.0": [
+		"29.0.0-alpha.8"
+	],
+	"122.0.6236.2": [
+		"29.0.0-alpha.9",
+		"29.0.0-alpha.10",
+		"29.0.0-alpha.11",
+		"29.0.0-beta.1",
+		"29.0.0-beta.2"
+	],
+	"122.0.6261.6": [
+		"29.0.0-beta.3",
+		"29.0.0-beta.4"
+	],
+	"122.0.6261.18": [
+		"29.0.0-beta.5",
+		"29.0.0-beta.6",
+		"29.0.0-beta.7",
+		"29.0.0-beta.8",
+		"29.0.0-beta.9",
+		"29.0.0-beta.10",
+		"29.0.0-beta.11"
+	],
+	"122.0.6261.29": [
+		"29.0.0-beta.12"
+	],
+	"122.0.6261.39": [
+		"29.0.0"
+	],
+	"122.0.6261.57": [
+		"29.0.1"
+	],
+	"122.0.6261.70": [
+		"29.1.0"
+	],
+	"122.0.6261.111": [
+		"29.1.1"
+	],
+	"122.0.6261.112": [
+		"29.1.2",
+		"29.1.3"
+	],
+	"122.0.6261.129": [
+		"29.1.4"
+	],
+	"122.0.6261.130": [
+		"29.1.5"
+	],
+	"122.0.6261.139": [
+		"29.1.6"
+	],
+	"122.0.6261.156": [
+		"29.2.0",
+		"29.3.0",
+		"29.3.1",
+		"29.3.2",
+		"29.3.3",
+		"29.4.0",
+		"29.4.1",
+		"29.4.2",
+		"29.4.3",
+		"29.4.4",
+		"29.4.5",
+		"29.4.6"
+	],
+	"123.0.6296.0": [
+		"30.0.0-alpha.1"
+	],
+	"123.0.6312.5": [
+		"30.0.0-alpha.2"
+	],
+	"124.0.6323.0": [
+		"30.0.0-alpha.3",
+		"30.0.0-alpha.4"
+	],
+	"124.0.6331.0": [
+		"30.0.0-alpha.5",
+		"30.0.0-alpha.6"
+	],
+	"124.0.6353.0": [
+		"30.0.0-alpha.7"
+	],
+	"124.0.6359.0": [
+		"30.0.0-beta.1",
+		"30.0.0-beta.2"
+	],
+	"124.0.6367.9": [
+		"30.0.0-beta.3",
+		"30.0.0-beta.4",
+		"30.0.0-beta.5"
+	],
+	"124.0.6367.18": [
+		"30.0.0-beta.6"
+	],
+	"124.0.6367.29": [
+		"30.0.0-beta.7",
+		"30.0.0-beta.8"
+	],
+	"124.0.6367.49": [
+		"30.0.0"
+	],
+	"124.0.6367.60": [
+		"30.0.1"
+	],
+	"124.0.6367.91": [
+		"30.0.2"
+	],
+	"124.0.6367.119": [
+		"30.0.3"
+	],
+	"124.0.6367.201": [
+		"30.0.4"
+	],
+	"124.0.6367.207": [
+		"30.0.5",
+		"30.0.6"
+	],
+	"124.0.6367.221": [
+		"30.0.7"
+	],
+	"124.0.6367.230": [
+		"30.0.8"
+	],
+	"124.0.6367.233": [
+		"30.0.9"
+	],
+	"124.0.6367.243": [
+		"30.1.0",
+		"30.1.1",
+		"30.1.2",
+		"30.2.0",
+		"30.3.0",
+		"30.3.1",
+		"30.4.0",
+		"30.5.0",
+		"30.5.1"
+	],
+	"125.0.6412.0": [
+		"31.0.0-alpha.1",
+		"31.0.0-alpha.2",
+		"31.0.0-alpha.3",
+		"31.0.0-alpha.4",
+		"31.0.0-alpha.5"
+	],
+	"126.0.6445.0": [
+		"31.0.0-beta.1",
+		"31.0.0-beta.2",
+		"31.0.0-beta.3",
+		"31.0.0-beta.4",
+		"31.0.0-beta.5",
+		"31.0.0-beta.6",
+		"31.0.0-beta.7",
+		"31.0.0-beta.8",
+		"31.0.0-beta.9"
+	],
+	"126.0.6478.36": [
+		"31.0.0-beta.10",
+		"31.0.0",
+		"31.0.1"
+	],
+	"126.0.6478.61": [
+		"31.0.2"
+	],
+	"126.0.6478.114": [
+		"31.1.0"
+	],
+	"126.0.6478.127": [
+		"31.2.0",
+		"31.2.1"
+	],
+	"126.0.6478.183": [
+		"31.3.0"
+	],
+	"126.0.6478.185": [
+		"31.3.1"
+	],
+	"126.0.6478.234": [
+		"31.4.0",
+		"31.5.0",
+		"31.6.0",
+		"31.7.0",
+		"31.7.1",
+		"31.7.2",
+		"31.7.3",
+		"31.7.4",
+		"31.7.5",
+		"31.7.6",
+		"31.7.7"
+	],
+	"127.0.6521.0": [
+		"32.0.0-alpha.1",
+		"32.0.0-alpha.2",
+		"32.0.0-alpha.3",
+		"32.0.0-alpha.4",
+		"32.0.0-alpha.5"
+	],
+	"128.0.6571.0": [
+		"32.0.0-alpha.6",
+		"32.0.0-alpha.7"
+	],
+	"128.0.6573.0": [
+		"32.0.0-alpha.8",
+		"32.0.0-alpha.9",
+		"32.0.0-alpha.10",
+		"32.0.0-beta.1"
+	],
+	"128.0.6611.0": [
+		"32.0.0-beta.2"
+	],
+	"128.0.6613.7": [
+		"32.0.0-beta.3"
+	],
+	"128.0.6613.18": [
+		"32.0.0-beta.4"
+	],
+	"128.0.6613.27": [
+		"32.0.0-beta.5",
+		"32.0.0-beta.6",
+		"32.0.0-beta.7"
+	],
+	"128.0.6613.36": [
+		"32.0.0",
+		"32.0.1"
+	],
+	"128.0.6613.84": [
+		"32.0.2"
+	],
+	"128.0.6613.120": [
+		"32.1.0"
+	],
+	"128.0.6613.137": [
+		"32.1.1"
+	],
+	"128.0.6613.162": [
+		"32.1.2"
+	],
+	"128.0.6613.178": [
+		"32.2.0"
+	],
+	"128.0.6613.186": [
+		"32.2.1",
+		"32.2.2",
+		"32.2.3",
+		"32.2.4",
+		"32.2.5",
+		"32.2.6",
+		"32.2.7",
+		"32.2.8",
+		"32.3.0",
+		"32.3.1",
+		"32.3.2",
+		"32.3.3"
+	],
+	"129.0.6668.0": [
+		"33.0.0-alpha.1"
+	],
+	"130.0.6672.0": [
+		"33.0.0-alpha.2",
+		"33.0.0-alpha.3",
+		"33.0.0-alpha.4",
+		"33.0.0-alpha.5",
+		"33.0.0-alpha.6",
+		"33.0.0-beta.1",
+		"33.0.0-beta.2",
+		"33.0.0-beta.3",
+		"33.0.0-beta.4"
+	],
+	"130.0.6723.19": [
+		"33.0.0-beta.5",
+		"33.0.0-beta.6",
+		"33.0.0-beta.7"
+	],
+	"130.0.6723.31": [
+		"33.0.0-beta.8",
+		"33.0.0-beta.9",
+		"33.0.0-beta.10"
+	],
+	"130.0.6723.44": [
+		"33.0.0-beta.11",
+		"33.0.0"
+	],
+	"130.0.6723.59": [
+		"33.0.1",
+		"33.0.2"
+	],
+	"130.0.6723.91": [
+		"33.1.0"
+	],
+	"130.0.6723.118": [
+		"33.2.0"
+	],
+	"130.0.6723.137": [
+		"33.2.1"
+	],
+	"130.0.6723.152": [
+		"33.3.0"
+	],
+	"130.0.6723.170": [
+		"33.3.1"
+	],
+	"130.0.6723.191": [
+		"33.3.2",
+		"33.4.0",
+		"33.4.1",
+		"33.4.2",
+		"33.4.3",
+		"33.4.4",
+		"33.4.5",
+		"33.4.6",
+		"33.4.7",
+		"33.4.8",
+		"33.4.9",
+		"33.4.10",
+		"33.4.11"
+	],
+	"131.0.6776.0": [
+		"34.0.0-alpha.1"
+	],
+	"132.0.6779.0": [
+		"34.0.0-alpha.2"
+	],
+	"132.0.6789.1": [
+		"34.0.0-alpha.3",
+		"34.0.0-alpha.4",
+		"34.0.0-alpha.5",
+		"34.0.0-alpha.6",
+		"34.0.0-alpha.7"
+	],
+	"132.0.6820.0": [
+		"34.0.0-alpha.8"
+	],
+	"132.0.6824.0": [
+		"34.0.0-alpha.9",
+		"34.0.0-beta.1",
+		"34.0.0-beta.2",
+		"34.0.0-beta.3"
+	],
+	"132.0.6834.6": [
+		"34.0.0-beta.4",
+		"34.0.0-beta.5"
+	],
+	"132.0.6834.15": [
+		"34.0.0-beta.6",
+		"34.0.0-beta.7",
+		"34.0.0-beta.8"
+	],
+	"132.0.6834.32": [
+		"34.0.0-beta.9",
+		"34.0.0-beta.10",
+		"34.0.0-beta.11"
+	],
+	"132.0.6834.46": [
+		"34.0.0-beta.12",
+		"34.0.0-beta.13"
+	],
+	"132.0.6834.57": [
+		"34.0.0-beta.14",
+		"34.0.0-beta.15",
+		"34.0.0-beta.16"
+	],
+	"132.0.6834.83": [
+		"34.0.0",
+		"34.0.1"
+	],
+	"132.0.6834.159": [
+		"34.0.2"
+	],
+	"132.0.6834.194": [
+		"34.1.0",
+		"34.1.1"
+	],
+	"132.0.6834.196": [
+		"34.2.0"
+	],
+	"132.0.6834.210": [
+		"34.3.0",
+		"34.3.1",
+		"34.3.2",
+		"34.3.3",
+		"34.3.4",
+		"34.4.0",
+		"34.4.1",
+		"34.5.0",
+		"34.5.1",
+		"34.5.2",
+		"34.5.3",
+		"34.5.4",
+		"34.5.5",
+		"34.5.6",
+		"34.5.7",
+		"34.5.8"
+	],
+	"133.0.6920.0": [
+		"35.0.0-alpha.1",
+		"35.0.0-alpha.2",
+		"35.0.0-alpha.3",
+		"35.0.0-alpha.4",
+		"35.0.0-alpha.5",
+		"35.0.0-beta.1"
+	],
+	"134.0.6968.0": [
+		"35.0.0-beta.2",
+		"35.0.0-beta.3",
+		"35.0.0-beta.4"
+	],
+	"134.0.6989.0": [
+		"35.0.0-beta.5"
+	],
+	"134.0.6990.0": [
+		"35.0.0-beta.6",
+		"35.0.0-beta.7"
+	],
+	"134.0.6998.10": [
+		"35.0.0-beta.8",
+		"35.0.0-beta.9"
+	],
+	"134.0.6998.23": [
+		"35.0.0-beta.10",
+		"35.0.0-beta.11",
+		"35.0.0-beta.12"
+	],
+	"134.0.6998.44": [
+		"35.0.0-beta.13",
+		"35.0.0",
+		"35.0.1"
+	],
+	"134.0.6998.88": [
+		"35.0.2",
+		"35.0.3"
+	],
+	"134.0.6998.165": [
+		"35.1.0",
+		"35.1.1"
+	],
+	"134.0.6998.178": [
+		"35.1.2"
+	],
+	"134.0.6998.179": [
+		"35.1.3",
+		"35.1.4",
+		"35.1.5"
+	],
+	"134.0.6998.205": [
+		"35.2.0",
+		"35.2.1",
+		"35.2.2",
+		"35.3.0",
+		"35.4.0",
+		"35.5.0",
+		"35.5.1",
+		"35.6.0",
+		"35.7.0",
+		"35.7.1",
+		"35.7.2",
+		"35.7.4",
+		"35.7.5"
+	],
+	"135.0.7049.5": [
+		"36.0.0-alpha.1"
+	],
+	"136.0.7062.0": [
+		"36.0.0-alpha.2",
+		"36.0.0-alpha.3",
+		"36.0.0-alpha.4"
+	],
+	"136.0.7067.0": [
+		"36.0.0-alpha.5",
+		"36.0.0-alpha.6",
+		"36.0.0-beta.1",
+		"36.0.0-beta.2",
+		"36.0.0-beta.3",
+		"36.0.0-beta.4"
+	],
+	"136.0.7103.17": [
+		"36.0.0-beta.5"
+	],
+	"136.0.7103.25": [
+		"36.0.0-beta.6",
+		"36.0.0-beta.7"
+	],
+	"136.0.7103.33": [
+		"36.0.0-beta.8",
+		"36.0.0-beta.9"
+	],
+	"136.0.7103.48": [
+		"36.0.0",
+		"36.0.1"
+	],
+	"136.0.7103.49": [
+		"36.1.0",
+		"36.2.0"
+	],
+	"136.0.7103.93": [
+		"36.2.1"
+	],
+	"136.0.7103.113": [
+		"36.3.0",
+		"36.3.1"
+	],
+	"136.0.7103.115": [
+		"36.3.2"
+	],
+	"136.0.7103.149": [
+		"36.4.0"
+	],
+	"136.0.7103.168": [
+		"36.5.0"
+	],
+	"136.0.7103.177": [
+		"36.6.0",
+		"36.7.0",
+		"36.7.1",
+		"36.7.3",
+		"36.7.4",
+		"36.8.0",
+		"36.8.1",
+		"36.9.0",
+		"36.9.1",
+		"36.9.2",
+		"36.9.3",
+		"36.9.4",
+		"36.9.5"
+	],
+	"137.0.7151.0": [
+		"37.0.0-alpha.1",
+		"37.0.0-alpha.2"
+	],
+	"138.0.7156.0": [
+		"37.0.0-alpha.3"
+	],
+	"138.0.7165.0": [
+		"37.0.0-alpha.4"
+	],
+	"138.0.7177.0": [
+		"37.0.0-alpha.5"
+	],
+	"138.0.7178.0": [
+		"37.0.0-alpha.6",
+		"37.0.0-alpha.7",
+		"37.0.0-beta.1",
+		"37.0.0-beta.2"
+	],
+	"138.0.7190.0": [
+		"37.0.0-beta.3"
+	],
+	"138.0.7204.15": [
+		"37.0.0-beta.4",
+		"37.0.0-beta.5",
+		"37.0.0-beta.6",
+		"37.0.0-beta.7"
+	],
+	"138.0.7204.23": [
+		"37.0.0-beta.8"
+	],
+	"138.0.7204.35": [
+		"37.0.0-beta.9",
+		"37.0.0",
+		"37.1.0"
+	],
+	"138.0.7204.97": [
+		"37.2.0",
+		"37.2.1"
+	],
+	"138.0.7204.100": [
+		"37.2.2",
+		"37.2.3"
+	],
+	"138.0.7204.157": [
+		"37.2.4"
+	],
+	"138.0.7204.168": [
+		"37.2.5"
+	],
+	"138.0.7204.185": [
+		"37.2.6"
+	],
+	"138.0.7204.224": [
+		"37.3.0"
+	],
+	"138.0.7204.235": [
+		"37.3.1"
+	],
+	"138.0.7204.243": [
+		"37.4.0"
+	],
+	"138.0.7204.251": [
+		"37.5.0",
+		"37.5.1",
+		"37.6.0",
+		"37.6.1",
+		"37.7.0",
+		"37.7.1",
+		"37.8.0",
+		"37.9.0",
+		"37.10.0",
+		"37.10.1",
+		"37.10.2",
+		"37.10.3"
+	],
+	"139.0.7219.0": [
+		"38.0.0-alpha.1",
+		"38.0.0-alpha.2",
+		"38.0.0-alpha.3"
+	],
+	"140.0.7261.0": [
+		"38.0.0-alpha.4",
+		"38.0.0-alpha.5",
+		"38.0.0-alpha.6"
+	],
+	"140.0.7281.0": [
+		"38.0.0-alpha.7",
+		"38.0.0-alpha.8"
+	],
+	"140.0.7301.0": [
+		"38.0.0-alpha.9"
+	],
+	"140.0.7309.0": [
+		"38.0.0-alpha.10"
+	],
+	"140.0.7312.0": [
+		"38.0.0-alpha.11"
+	],
+	"140.0.7314.0": [
+		"38.0.0-alpha.12",
+		"38.0.0-alpha.13",
+		"38.0.0-beta.1"
+	],
+	"140.0.7327.0": [
+		"38.0.0-beta.2",
+		"38.0.0-beta.3"
+	],
+	"140.0.7339.2": [
+		"38.0.0-beta.4",
+		"38.0.0-beta.5",
+		"38.0.0-beta.6"
+	],
+	"140.0.7339.16": [
+		"38.0.0-beta.7"
+	],
+	"140.0.7339.24": [
+		"38.0.0-beta.8",
+		"38.0.0-beta.9"
+	],
+	"140.0.7339.41": [
+		"38.0.0-beta.11",
+		"38.0.0"
+	],
+	"140.0.7339.80": [
+		"38.1.0"
+	],
+	"140.0.7339.133": [
+		"38.1.1",
+		"38.1.2",
+		"38.2.0",
+		"38.2.1",
+		"38.2.2"
+	],
+	"140.0.7339.240": [
+		"38.3.0",
+		"38.4.0"
+	],
+	"140.0.7339.249": [
+		"38.5.0",
+		"38.6.0",
+		"38.7.0",
+		"38.7.1",
+		"38.7.2"
+	],
+	"141.0.7361.0": [
+		"39.0.0-alpha.1",
+		"39.0.0-alpha.2"
+	],
+	"141.0.7390.7": [
+		"39.0.0-alpha.3",
+		"39.0.0-alpha.4",
+		"39.0.0-alpha.5"
+	],
+	"142.0.7417.0": [
+		"39.0.0-alpha.6",
+		"39.0.0-alpha.7",
+		"39.0.0-alpha.8",
+		"39.0.0-alpha.9",
+		"39.0.0-beta.1",
+		"39.0.0-beta.2",
+		"39.0.0-beta.3"
+	],
+	"142.0.7444.34": [
+		"39.0.0-beta.4",
+		"39.0.0-beta.5"
+	],
+	"142.0.7444.52": [
+		"39.0.0"
+	],
+	"142.0.7444.59": [
+		"39.1.0",
+		"39.1.1"
+	],
+	"142.0.7444.134": [
+		"39.1.2"
+	],
+	"142.0.7444.162": [
+		"39.2.0",
+		"39.2.1",
+		"39.2.2"
+	],
+	"142.0.7444.175": [
+		"39.2.3"
+	],
+	"142.0.7444.177": [
+		"39.2.4",
+		"39.2.5"
+	],
+	"142.0.7444.226": [
+		"39.2.6"
+	],
+	"143.0.7499.0": [
+		"40.0.0-alpha.2"
+	],
+	"144.0.7506.0": [
+		"40.0.0-alpha.4"
+	],
+	"144.0.7526.0": [
+		"40.0.0-alpha.5",
+		"40.0.0-alpha.6",
+		"40.0.0-alpha.7",
+		"40.0.0-alpha.8"
+	],
+	"144.0.7527.0": [
+		"40.0.0-beta.1",
+		"40.0.0-beta.2"
+	],
+	"144.0.7547.0": [
+		"40.0.0-beta.3"
+	]
+};
Index: node_modules/electron-to-chromium/full-chromium-versions.json
===================================================================
--- node_modules/electron-to-chromium/full-chromium-versions.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/full-chromium-versions.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.11","9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.10","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.25","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7","18.3.8","18.3.9","18.3.11","18.3.12","18.3.13","18.3.14","18.3.15"],"102.0.4962.3":["19.0.0-alpha.1"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11","19.0.12","19.0.13","19.0.14","19.0.15","19.0.16","19.0.17","19.1.0","19.1.1","19.1.2","19.1.3","19.1.4","19.1.5","19.1.6","19.1.7","19.1.8","19.1.9"],"103.0.5044.0":["20.0.0-alpha.1"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1","20.0.2","20.0.3"],"104.0.5112.102":["20.1.0","20.1.1"],"104.0.5112.114":["20.1.2","20.1.3","20.1.4"],"104.0.5112.124":["20.2.0","20.3.0","20.3.1","20.3.2","20.3.3","20.3.4","20.3.5","20.3.6","20.3.7","20.3.8","20.3.9","20.3.10","20.3.11","20.3.12"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-alpha.2","21.0.0-alpha.3","21.0.0-alpha.4","21.0.0-alpha.5"],"106.0.5216.0":["21.0.0-alpha.6","21.0.0-beta.1","21.0.0-beta.2","21.0.0-beta.3","21.0.0-beta.4","21.0.0-beta.5"],"106.0.5249.40":["21.0.0-beta.6","21.0.0-beta.7","21.0.0-beta.8"],"106.0.5249.51":["21.0.0"],"106.0.5249.61":["21.0.1"],"106.0.5249.91":["21.1.0"],"106.0.5249.103":["21.1.1"],"106.0.5249.119":["21.2.0"],"106.0.5249.165":["21.2.1"],"106.0.5249.168":["21.2.2","21.2.3"],"106.0.5249.181":["21.3.0","21.3.1"],"106.0.5249.199":["21.3.3","21.3.4","21.3.5","21.4.0","21.4.1","21.4.2","21.4.3","21.4.4"],"107.0.5286.0":["22.0.0-alpha.1"],"108.0.5329.0":["22.0.0-alpha.3","22.0.0-alpha.4","22.0.0-alpha.5","22.0.0-alpha.6"],"108.0.5355.0":["22.0.0-alpha.7"],"108.0.5359.10":["22.0.0-alpha.8","22.0.0-beta.1","22.0.0-beta.2","22.0.0-beta.3"],"108.0.5359.29":["22.0.0-beta.4"],"108.0.5359.40":["22.0.0-beta.5","22.0.0-beta.6"],"108.0.5359.48":["22.0.0-beta.7","22.0.0-beta.8"],"108.0.5359.62":["22.0.0"],"108.0.5359.125":["22.0.1"],"108.0.5359.179":["22.0.2","22.0.3","22.1.0"],"108.0.5359.215":["22.2.0","22.2.1","22.3.0","22.3.1","22.3.2","22.3.3","22.3.4","22.3.5","22.3.6","22.3.7","22.3.8","22.3.9","22.3.10","22.3.11","22.3.12","22.3.13","22.3.14","22.3.15","22.3.16","22.3.17","22.3.18","22.3.20","22.3.21","22.3.22","22.3.23","22.3.24","22.3.25","22.3.26","22.3.27"],"110.0.5415.0":["23.0.0-alpha.1"],"110.0.5451.0":["23.0.0-alpha.2","23.0.0-alpha.3"],"110.0.5478.5":["23.0.0-beta.1","23.0.0-beta.2","23.0.0-beta.3"],"110.0.5481.30":["23.0.0-beta.4"],"110.0.5481.38":["23.0.0-beta.5"],"110.0.5481.52":["23.0.0-beta.6","23.0.0-beta.8"],"110.0.5481.77":["23.0.0"],"110.0.5481.100":["23.1.0"],"110.0.5481.104":["23.1.1"],"110.0.5481.177":["23.1.2"],"110.0.5481.179":["23.1.3"],"110.0.5481.192":["23.1.4","23.2.0"],"110.0.5481.208":["23.2.1","23.2.2","23.2.3","23.2.4","23.3.0","23.3.1","23.3.2","23.3.3","23.3.4","23.3.5","23.3.6","23.3.7","23.3.8","23.3.9","23.3.10","23.3.11","23.3.12","23.3.13"],"111.0.5560.0":["24.0.0-alpha.1","24.0.0-alpha.2","24.0.0-alpha.3","24.0.0-alpha.4","24.0.0-alpha.5","24.0.0-alpha.6","24.0.0-alpha.7"],"111.0.5563.50":["24.0.0-beta.1","24.0.0-beta.2"],"112.0.5615.20":["24.0.0-beta.3","24.0.0-beta.4"],"112.0.5615.29":["24.0.0-beta.5"],"112.0.5615.39":["24.0.0-beta.6","24.0.0-beta.7"],"112.0.5615.49":["24.0.0"],"112.0.5615.50":["24.1.0","24.1.1"],"112.0.5615.87":["24.1.2"],"112.0.5615.165":["24.1.3","24.2.0","24.3.0"],"112.0.5615.183":["24.3.1"],"112.0.5615.204":["24.4.0","24.4.1","24.5.0","24.5.1","24.6.0","24.6.1","24.6.2","24.6.3","24.6.4","24.6.5","24.7.0","24.7.1","24.8.0","24.8.1","24.8.2","24.8.3","24.8.4","24.8.5","24.8.6","24.8.7","24.8.8"],"114.0.5694.0":["25.0.0-alpha.1","25.0.0-alpha.2"],"114.0.5710.0":["25.0.0-alpha.3","25.0.0-alpha.4"],"114.0.5719.0":["25.0.0-alpha.5","25.0.0-alpha.6","25.0.0-beta.1","25.0.0-beta.2","25.0.0-beta.3"],"114.0.5735.16":["25.0.0-beta.4","25.0.0-beta.5","25.0.0-beta.6","25.0.0-beta.7"],"114.0.5735.35":["25.0.0-beta.8"],"114.0.5735.45":["25.0.0-beta.9","25.0.0","25.0.1"],"114.0.5735.106":["25.1.0","25.1.1"],"114.0.5735.134":["25.2.0"],"114.0.5735.199":["25.3.0"],"114.0.5735.243":["25.3.1"],"114.0.5735.248":["25.3.2","25.4.0"],"114.0.5735.289":["25.5.0","25.6.0","25.7.0","25.8.0","25.8.1","25.8.2","25.8.3","25.8.4","25.9.0","25.9.1","25.9.2","25.9.3","25.9.4","25.9.5","25.9.6","25.9.7","25.9.8"],"116.0.5791.0":["26.0.0-alpha.1","26.0.0-alpha.2","26.0.0-alpha.3","26.0.0-alpha.4","26.0.0-alpha.5"],"116.0.5815.0":["26.0.0-alpha.6"],"116.0.5831.0":["26.0.0-alpha.7"],"116.0.5845.0":["26.0.0-alpha.8","26.0.0-beta.1"],"116.0.5845.14":["26.0.0-beta.2","26.0.0-beta.3","26.0.0-beta.4","26.0.0-beta.5","26.0.0-beta.6","26.0.0-beta.7"],"116.0.5845.42":["26.0.0-beta.8","26.0.0-beta.9"],"116.0.5845.49":["26.0.0-beta.10","26.0.0-beta.11"],"116.0.5845.62":["26.0.0-beta.12"],"116.0.5845.82":["26.0.0"],"116.0.5845.97":["26.1.0"],"116.0.5845.179":["26.2.0"],"116.0.5845.188":["26.2.1"],"116.0.5845.190":["26.2.2","26.2.3","26.2.4"],"116.0.5845.228":["26.3.0","26.4.0","26.4.1","26.4.2","26.4.3","26.5.0","26.6.0","26.6.1","26.6.2","26.6.3","26.6.4","26.6.5","26.6.6","26.6.7","26.6.8","26.6.9","26.6.10"],"118.0.5949.0":["27.0.0-alpha.1","27.0.0-alpha.2","27.0.0-alpha.3","27.0.0-alpha.4","27.0.0-alpha.5","27.0.0-alpha.6"],"118.0.5993.5":["27.0.0-beta.1","27.0.0-beta.2","27.0.0-beta.3"],"118.0.5993.11":["27.0.0-beta.4"],"118.0.5993.18":["27.0.0-beta.5","27.0.0-beta.6","27.0.0-beta.7","27.0.0-beta.8","27.0.0-beta.9"],"118.0.5993.54":["27.0.0"],"118.0.5993.89":["27.0.1","27.0.2"],"118.0.5993.120":["27.0.3"],"118.0.5993.129":["27.0.4"],"118.0.5993.144":["27.1.0","27.1.2"],"118.0.5993.159":["27.1.3","27.2.0","27.2.1","27.2.2","27.2.3","27.2.4","27.3.0","27.3.1","27.3.2","27.3.3","27.3.4","27.3.5","27.3.6","27.3.7","27.3.8","27.3.9","27.3.10","27.3.11"],"119.0.6045.0":["28.0.0-alpha.1","28.0.0-alpha.2"],"119.0.6045.21":["28.0.0-alpha.3","28.0.0-alpha.4"],"119.0.6045.33":["28.0.0-alpha.5","28.0.0-alpha.6","28.0.0-alpha.7","28.0.0-beta.1"],"120.0.6099.0":["28.0.0-beta.2"],"120.0.6099.5":["28.0.0-beta.3","28.0.0-beta.4"],"120.0.6099.18":["28.0.0-beta.5","28.0.0-beta.6","28.0.0-beta.7","28.0.0-beta.8","28.0.0-beta.9","28.0.0-beta.10"],"120.0.6099.35":["28.0.0-beta.11"],"120.0.6099.56":["28.0.0"],"120.0.6099.109":["28.1.0","28.1.1"],"120.0.6099.199":["28.1.2","28.1.3"],"120.0.6099.216":["28.1.4"],"120.0.6099.227":["28.2.0"],"120.0.6099.268":["28.2.1"],"120.0.6099.276":["28.2.2"],"120.0.6099.283":["28.2.3"],"120.0.6099.291":["28.2.4","28.2.5","28.2.6","28.2.7","28.2.8","28.2.9","28.2.10","28.3.0","28.3.1","28.3.2","28.3.3"],"121.0.6147.0":["29.0.0-alpha.1","29.0.0-alpha.2","29.0.0-alpha.3"],"121.0.6159.0":["29.0.0-alpha.4","29.0.0-alpha.5","29.0.0-alpha.6","29.0.0-alpha.7"],"122.0.6194.0":["29.0.0-alpha.8"],"122.0.6236.2":["29.0.0-alpha.9","29.0.0-alpha.10","29.0.0-alpha.11","29.0.0-beta.1","29.0.0-beta.2"],"122.0.6261.6":["29.0.0-beta.3","29.0.0-beta.4"],"122.0.6261.18":["29.0.0-beta.5","29.0.0-beta.6","29.0.0-beta.7","29.0.0-beta.8","29.0.0-beta.9","29.0.0-beta.10","29.0.0-beta.11"],"122.0.6261.29":["29.0.0-beta.12"],"122.0.6261.39":["29.0.0"],"122.0.6261.57":["29.0.1"],"122.0.6261.70":["29.1.0"],"122.0.6261.111":["29.1.1"],"122.0.6261.112":["29.1.2","29.1.3"],"122.0.6261.129":["29.1.4"],"122.0.6261.130":["29.1.5"],"122.0.6261.139":["29.1.6"],"122.0.6261.156":["29.2.0","29.3.0","29.3.1","29.3.2","29.3.3","29.4.0","29.4.1","29.4.2","29.4.3","29.4.4","29.4.5","29.4.6"],"123.0.6296.0":["30.0.0-alpha.1"],"123.0.6312.5":["30.0.0-alpha.2"],"124.0.6323.0":["30.0.0-alpha.3","30.0.0-alpha.4"],"124.0.6331.0":["30.0.0-alpha.5","30.0.0-alpha.6"],"124.0.6353.0":["30.0.0-alpha.7"],"124.0.6359.0":["30.0.0-beta.1","30.0.0-beta.2"],"124.0.6367.9":["30.0.0-beta.3","30.0.0-beta.4","30.0.0-beta.5"],"124.0.6367.18":["30.0.0-beta.6"],"124.0.6367.29":["30.0.0-beta.7","30.0.0-beta.8"],"124.0.6367.49":["30.0.0"],"124.0.6367.60":["30.0.1"],"124.0.6367.91":["30.0.2"],"124.0.6367.119":["30.0.3"],"124.0.6367.201":["30.0.4"],"124.0.6367.207":["30.0.5","30.0.6"],"124.0.6367.221":["30.0.7"],"124.0.6367.230":["30.0.8"],"124.0.6367.233":["30.0.9"],"124.0.6367.243":["30.1.0","30.1.1","30.1.2","30.2.0","30.3.0","30.3.1","30.4.0","30.5.0","30.5.1"],"125.0.6412.0":["31.0.0-alpha.1","31.0.0-alpha.2","31.0.0-alpha.3","31.0.0-alpha.4","31.0.0-alpha.5"],"126.0.6445.0":["31.0.0-beta.1","31.0.0-beta.2","31.0.0-beta.3","31.0.0-beta.4","31.0.0-beta.5","31.0.0-beta.6","31.0.0-beta.7","31.0.0-beta.8","31.0.0-beta.9"],"126.0.6478.36":["31.0.0-beta.10","31.0.0","31.0.1"],"126.0.6478.61":["31.0.2"],"126.0.6478.114":["31.1.0"],"126.0.6478.127":["31.2.0","31.2.1"],"126.0.6478.183":["31.3.0"],"126.0.6478.185":["31.3.1"],"126.0.6478.234":["31.4.0","31.5.0","31.6.0","31.7.0","31.7.1","31.7.2","31.7.3","31.7.4","31.7.5","31.7.6","31.7.7"],"127.0.6521.0":["32.0.0-alpha.1","32.0.0-alpha.2","32.0.0-alpha.3","32.0.0-alpha.4","32.0.0-alpha.5"],"128.0.6571.0":["32.0.0-alpha.6","32.0.0-alpha.7"],"128.0.6573.0":["32.0.0-alpha.8","32.0.0-alpha.9","32.0.0-alpha.10","32.0.0-beta.1"],"128.0.6611.0":["32.0.0-beta.2"],"128.0.6613.7":["32.0.0-beta.3"],"128.0.6613.18":["32.0.0-beta.4"],"128.0.6613.27":["32.0.0-beta.5","32.0.0-beta.6","32.0.0-beta.7"],"128.0.6613.36":["32.0.0","32.0.1"],"128.0.6613.84":["32.0.2"],"128.0.6613.120":["32.1.0"],"128.0.6613.137":["32.1.1"],"128.0.6613.162":["32.1.2"],"128.0.6613.178":["32.2.0"],"128.0.6613.186":["32.2.1","32.2.2","32.2.3","32.2.4","32.2.5","32.2.6","32.2.7","32.2.8","32.3.0","32.3.1","32.3.2","32.3.3"],"129.0.6668.0":["33.0.0-alpha.1"],"130.0.6672.0":["33.0.0-alpha.2","33.0.0-alpha.3","33.0.0-alpha.4","33.0.0-alpha.5","33.0.0-alpha.6","33.0.0-beta.1","33.0.0-beta.2","33.0.0-beta.3","33.0.0-beta.4"],"130.0.6723.19":["33.0.0-beta.5","33.0.0-beta.6","33.0.0-beta.7"],"130.0.6723.31":["33.0.0-beta.8","33.0.0-beta.9","33.0.0-beta.10"],"130.0.6723.44":["33.0.0-beta.11","33.0.0"],"130.0.6723.59":["33.0.1","33.0.2"],"130.0.6723.91":["33.1.0"],"130.0.6723.118":["33.2.0"],"130.0.6723.137":["33.2.1"],"130.0.6723.152":["33.3.0"],"130.0.6723.170":["33.3.1"],"130.0.6723.191":["33.3.2","33.4.0","33.4.1","33.4.2","33.4.3","33.4.4","33.4.5","33.4.6","33.4.7","33.4.8","33.4.9","33.4.10","33.4.11"],"131.0.6776.0":["34.0.0-alpha.1"],"132.0.6779.0":["34.0.0-alpha.2"],"132.0.6789.1":["34.0.0-alpha.3","34.0.0-alpha.4","34.0.0-alpha.5","34.0.0-alpha.6","34.0.0-alpha.7"],"132.0.6820.0":["34.0.0-alpha.8"],"132.0.6824.0":["34.0.0-alpha.9","34.0.0-beta.1","34.0.0-beta.2","34.0.0-beta.3"],"132.0.6834.6":["34.0.0-beta.4","34.0.0-beta.5"],"132.0.6834.15":["34.0.0-beta.6","34.0.0-beta.7","34.0.0-beta.8"],"132.0.6834.32":["34.0.0-beta.9","34.0.0-beta.10","34.0.0-beta.11"],"132.0.6834.46":["34.0.0-beta.12","34.0.0-beta.13"],"132.0.6834.57":["34.0.0-beta.14","34.0.0-beta.15","34.0.0-beta.16"],"132.0.6834.83":["34.0.0","34.0.1"],"132.0.6834.159":["34.0.2"],"132.0.6834.194":["34.1.0","34.1.1"],"132.0.6834.196":["34.2.0"],"132.0.6834.210":["34.3.0","34.3.1","34.3.2","34.3.3","34.3.4","34.4.0","34.4.1","34.5.0","34.5.1","34.5.2","34.5.3","34.5.4","34.5.5","34.5.6","34.5.7","34.5.8"],"133.0.6920.0":["35.0.0-alpha.1","35.0.0-alpha.2","35.0.0-alpha.3","35.0.0-alpha.4","35.0.0-alpha.5","35.0.0-beta.1"],"134.0.6968.0":["35.0.0-beta.2","35.0.0-beta.3","35.0.0-beta.4"],"134.0.6989.0":["35.0.0-beta.5"],"134.0.6990.0":["35.0.0-beta.6","35.0.0-beta.7"],"134.0.6998.10":["35.0.0-beta.8","35.0.0-beta.9"],"134.0.6998.23":["35.0.0-beta.10","35.0.0-beta.11","35.0.0-beta.12"],"134.0.6998.44":["35.0.0-beta.13","35.0.0","35.0.1"],"134.0.6998.88":["35.0.2","35.0.3"],"134.0.6998.165":["35.1.0","35.1.1"],"134.0.6998.178":["35.1.2"],"134.0.6998.179":["35.1.3","35.1.4","35.1.5"],"134.0.6998.205":["35.2.0","35.2.1","35.2.2","35.3.0","35.4.0","35.5.0","35.5.1","35.6.0","35.7.0","35.7.1","35.7.2","35.7.4","35.7.5"],"135.0.7049.5":["36.0.0-alpha.1"],"136.0.7062.0":["36.0.0-alpha.2","36.0.0-alpha.3","36.0.0-alpha.4"],"136.0.7067.0":["36.0.0-alpha.5","36.0.0-alpha.6","36.0.0-beta.1","36.0.0-beta.2","36.0.0-beta.3","36.0.0-beta.4"],"136.0.7103.17":["36.0.0-beta.5"],"136.0.7103.25":["36.0.0-beta.6","36.0.0-beta.7"],"136.0.7103.33":["36.0.0-beta.8","36.0.0-beta.9"],"136.0.7103.48":["36.0.0","36.0.1"],"136.0.7103.49":["36.1.0","36.2.0"],"136.0.7103.93":["36.2.1"],"136.0.7103.113":["36.3.0","36.3.1"],"136.0.7103.115":["36.3.2"],"136.0.7103.149":["36.4.0"],"136.0.7103.168":["36.5.0"],"136.0.7103.177":["36.6.0","36.7.0","36.7.1","36.7.3","36.7.4","36.8.0","36.8.1","36.9.0","36.9.1","36.9.2","36.9.3","36.9.4","36.9.5"],"137.0.7151.0":["37.0.0-alpha.1","37.0.0-alpha.2"],"138.0.7156.0":["37.0.0-alpha.3"],"138.0.7165.0":["37.0.0-alpha.4"],"138.0.7177.0":["37.0.0-alpha.5"],"138.0.7178.0":["37.0.0-alpha.6","37.0.0-alpha.7","37.0.0-beta.1","37.0.0-beta.2"],"138.0.7190.0":["37.0.0-beta.3"],"138.0.7204.15":["37.0.0-beta.4","37.0.0-beta.5","37.0.0-beta.6","37.0.0-beta.7"],"138.0.7204.23":["37.0.0-beta.8"],"138.0.7204.35":["37.0.0-beta.9","37.0.0","37.1.0"],"138.0.7204.97":["37.2.0","37.2.1"],"138.0.7204.100":["37.2.2","37.2.3"],"138.0.7204.157":["37.2.4"],"138.0.7204.168":["37.2.5"],"138.0.7204.185":["37.2.6"],"138.0.7204.224":["37.3.0"],"138.0.7204.235":["37.3.1"],"138.0.7204.243":["37.4.0"],"138.0.7204.251":["37.5.0","37.5.1","37.6.0","37.6.1","37.7.0","37.7.1","37.8.0","37.9.0","37.10.0","37.10.1","37.10.2","37.10.3"],"139.0.7219.0":["38.0.0-alpha.1","38.0.0-alpha.2","38.0.0-alpha.3"],"140.0.7261.0":["38.0.0-alpha.4","38.0.0-alpha.5","38.0.0-alpha.6"],"140.0.7281.0":["38.0.0-alpha.7","38.0.0-alpha.8"],"140.0.7301.0":["38.0.0-alpha.9"],"140.0.7309.0":["38.0.0-alpha.10"],"140.0.7312.0":["38.0.0-alpha.11"],"140.0.7314.0":["38.0.0-alpha.12","38.0.0-alpha.13","38.0.0-beta.1"],"140.0.7327.0":["38.0.0-beta.2","38.0.0-beta.3"],"140.0.7339.2":["38.0.0-beta.4","38.0.0-beta.5","38.0.0-beta.6"],"140.0.7339.16":["38.0.0-beta.7"],"140.0.7339.24":["38.0.0-beta.8","38.0.0-beta.9"],"140.0.7339.41":["38.0.0-beta.11","38.0.0"],"140.0.7339.80":["38.1.0"],"140.0.7339.133":["38.1.1","38.1.2","38.2.0","38.2.1","38.2.2"],"140.0.7339.240":["38.3.0","38.4.0"],"140.0.7339.249":["38.5.0","38.6.0","38.7.0","38.7.1","38.7.2"],"141.0.7361.0":["39.0.0-alpha.1","39.0.0-alpha.2"],"141.0.7390.7":["39.0.0-alpha.3","39.0.0-alpha.4","39.0.0-alpha.5"],"142.0.7417.0":["39.0.0-alpha.6","39.0.0-alpha.7","39.0.0-alpha.8","39.0.0-alpha.9","39.0.0-beta.1","39.0.0-beta.2","39.0.0-beta.3"],"142.0.7444.34":["39.0.0-beta.4","39.0.0-beta.5"],"142.0.7444.52":["39.0.0"],"142.0.7444.59":["39.1.0","39.1.1"],"142.0.7444.134":["39.1.2"],"142.0.7444.162":["39.2.0","39.2.1","39.2.2"],"142.0.7444.175":["39.2.3"],"142.0.7444.177":["39.2.4","39.2.5"],"142.0.7444.226":["39.2.6"],"143.0.7499.0":["40.0.0-alpha.2"],"144.0.7506.0":["40.0.0-alpha.4"],"144.0.7526.0":["40.0.0-alpha.5","40.0.0-alpha.6","40.0.0-alpha.7","40.0.0-alpha.8"],"144.0.7527.0":["40.0.0-beta.1","40.0.0-beta.2"],"144.0.7547.0":["40.0.0-beta.3"]}
Index: node_modules/electron-to-chromium/full-versions.js
===================================================================
--- node_modules/electron-to-chromium/full-versions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/full-versions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1684 @@
+module.exports = {
+	"0.20.0": "39.0.2171.65",
+	"0.20.1": "39.0.2171.65",
+	"0.20.2": "39.0.2171.65",
+	"0.20.3": "39.0.2171.65",
+	"0.20.4": "39.0.2171.65",
+	"0.20.5": "39.0.2171.65",
+	"0.20.6": "39.0.2171.65",
+	"0.20.7": "39.0.2171.65",
+	"0.20.8": "39.0.2171.65",
+	"0.21.0": "40.0.2214.91",
+	"0.21.1": "40.0.2214.91",
+	"0.21.2": "40.0.2214.91",
+	"0.21.3": "41.0.2272.76",
+	"0.22.1": "41.0.2272.76",
+	"0.22.2": "41.0.2272.76",
+	"0.22.3": "41.0.2272.76",
+	"0.23.0": "41.0.2272.76",
+	"0.24.0": "41.0.2272.76",
+	"0.25.0": "42.0.2311.107",
+	"0.25.1": "42.0.2311.107",
+	"0.25.2": "42.0.2311.107",
+	"0.25.3": "42.0.2311.107",
+	"0.26.0": "42.0.2311.107",
+	"0.26.1": "42.0.2311.107",
+	"0.27.0": "42.0.2311.107",
+	"0.27.1": "42.0.2311.107",
+	"0.27.2": "43.0.2357.65",
+	"0.27.3": "43.0.2357.65",
+	"0.28.0": "43.0.2357.65",
+	"0.28.1": "43.0.2357.65",
+	"0.28.2": "43.0.2357.65",
+	"0.28.3": "43.0.2357.65",
+	"0.29.1": "43.0.2357.65",
+	"0.29.2": "43.0.2357.65",
+	"0.30.4": "44.0.2403.125",
+	"0.31.0": "44.0.2403.125",
+	"0.31.2": "45.0.2454.85",
+	"0.32.2": "45.0.2454.85",
+	"0.32.3": "45.0.2454.85",
+	"0.33.0": "45.0.2454.85",
+	"0.33.1": "45.0.2454.85",
+	"0.33.2": "45.0.2454.85",
+	"0.33.3": "45.0.2454.85",
+	"0.33.4": "45.0.2454.85",
+	"0.33.6": "45.0.2454.85",
+	"0.33.7": "45.0.2454.85",
+	"0.33.8": "45.0.2454.85",
+	"0.33.9": "45.0.2454.85",
+	"0.34.0": "45.0.2454.85",
+	"0.34.1": "45.0.2454.85",
+	"0.34.2": "45.0.2454.85",
+	"0.34.3": "45.0.2454.85",
+	"0.34.4": "45.0.2454.85",
+	"0.35.1": "45.0.2454.85",
+	"0.35.2": "45.0.2454.85",
+	"0.35.3": "45.0.2454.85",
+	"0.35.4": "45.0.2454.85",
+	"0.35.5": "45.0.2454.85",
+	"0.36.0": "47.0.2526.73",
+	"0.36.2": "47.0.2526.73",
+	"0.36.3": "47.0.2526.73",
+	"0.36.4": "47.0.2526.73",
+	"0.36.5": "47.0.2526.110",
+	"0.36.6": "47.0.2526.110",
+	"0.36.7": "47.0.2526.110",
+	"0.36.8": "47.0.2526.110",
+	"0.36.9": "47.0.2526.110",
+	"0.36.10": "47.0.2526.110",
+	"0.36.11": "47.0.2526.110",
+	"0.36.12": "47.0.2526.110",
+	"0.37.0": "49.0.2623.75",
+	"0.37.1": "49.0.2623.75",
+	"0.37.3": "49.0.2623.75",
+	"0.37.4": "49.0.2623.75",
+	"0.37.5": "49.0.2623.75",
+	"0.37.6": "49.0.2623.75",
+	"0.37.7": "49.0.2623.75",
+	"0.37.8": "49.0.2623.75",
+	"1.0.0": "49.0.2623.75",
+	"1.0.1": "49.0.2623.75",
+	"1.0.2": "49.0.2623.75",
+	"1.1.0": "50.0.2661.102",
+	"1.1.1": "50.0.2661.102",
+	"1.1.2": "50.0.2661.102",
+	"1.1.3": "50.0.2661.102",
+	"1.2.0": "51.0.2704.63",
+	"1.2.1": "51.0.2704.63",
+	"1.2.2": "51.0.2704.84",
+	"1.2.3": "51.0.2704.84",
+	"1.2.4": "51.0.2704.103",
+	"1.2.5": "51.0.2704.103",
+	"1.2.6": "51.0.2704.106",
+	"1.2.7": "51.0.2704.106",
+	"1.2.8": "51.0.2704.106",
+	"1.3.0": "52.0.2743.82",
+	"1.3.1": "52.0.2743.82",
+	"1.3.2": "52.0.2743.82",
+	"1.3.3": "52.0.2743.82",
+	"1.3.4": "52.0.2743.82",
+	"1.3.5": "52.0.2743.82",
+	"1.3.6": "52.0.2743.82",
+	"1.3.7": "52.0.2743.82",
+	"1.3.9": "52.0.2743.82",
+	"1.3.10": "52.0.2743.82",
+	"1.3.13": "52.0.2743.82",
+	"1.3.14": "52.0.2743.82",
+	"1.3.15": "52.0.2743.82",
+	"1.4.0": "53.0.2785.113",
+	"1.4.1": "53.0.2785.113",
+	"1.4.2": "53.0.2785.113",
+	"1.4.3": "53.0.2785.113",
+	"1.4.4": "53.0.2785.113",
+	"1.4.5": "53.0.2785.113",
+	"1.4.6": "53.0.2785.143",
+	"1.4.7": "53.0.2785.143",
+	"1.4.8": "53.0.2785.143",
+	"1.4.10": "53.0.2785.143",
+	"1.4.11": "53.0.2785.143",
+	"1.4.12": "54.0.2840.51",
+	"1.4.13": "53.0.2785.143",
+	"1.4.14": "53.0.2785.143",
+	"1.4.15": "53.0.2785.143",
+	"1.4.16": "53.0.2785.143",
+	"1.5.0": "54.0.2840.101",
+	"1.5.1": "54.0.2840.101",
+	"1.6.0": "56.0.2924.87",
+	"1.6.1": "56.0.2924.87",
+	"1.6.2": "56.0.2924.87",
+	"1.6.3": "56.0.2924.87",
+	"1.6.4": "56.0.2924.87",
+	"1.6.5": "56.0.2924.87",
+	"1.6.6": "56.0.2924.87",
+	"1.6.7": "56.0.2924.87",
+	"1.6.8": "56.0.2924.87",
+	"1.6.9": "56.0.2924.87",
+	"1.6.10": "56.0.2924.87",
+	"1.6.11": "56.0.2924.87",
+	"1.6.12": "56.0.2924.87",
+	"1.6.13": "56.0.2924.87",
+	"1.6.14": "56.0.2924.87",
+	"1.6.15": "56.0.2924.87",
+	"1.6.16": "56.0.2924.87",
+	"1.6.17": "56.0.2924.87",
+	"1.6.18": "56.0.2924.87",
+	"1.7.0": "58.0.3029.110",
+	"1.7.1": "58.0.3029.110",
+	"1.7.2": "58.0.3029.110",
+	"1.7.3": "58.0.3029.110",
+	"1.7.4": "58.0.3029.110",
+	"1.7.5": "58.0.3029.110",
+	"1.7.6": "58.0.3029.110",
+	"1.7.7": "58.0.3029.110",
+	"1.7.8": "58.0.3029.110",
+	"1.7.9": "58.0.3029.110",
+	"1.7.10": "58.0.3029.110",
+	"1.7.11": "58.0.3029.110",
+	"1.7.12": "58.0.3029.110",
+	"1.7.13": "58.0.3029.110",
+	"1.7.14": "58.0.3029.110",
+	"1.7.15": "58.0.3029.110",
+	"1.7.16": "58.0.3029.110",
+	"1.8.0": "59.0.3071.115",
+	"1.8.1": "59.0.3071.115",
+	"1.8.2-beta.1": "59.0.3071.115",
+	"1.8.2-beta.2": "59.0.3071.115",
+	"1.8.2-beta.3": "59.0.3071.115",
+	"1.8.2-beta.4": "59.0.3071.115",
+	"1.8.2-beta.5": "59.0.3071.115",
+	"1.8.2": "59.0.3071.115",
+	"1.8.3": "59.0.3071.115",
+	"1.8.4": "59.0.3071.115",
+	"1.8.5": "59.0.3071.115",
+	"1.8.6": "59.0.3071.115",
+	"1.8.7": "59.0.3071.115",
+	"1.8.8": "59.0.3071.115",
+	"2.0.0-beta.1": "61.0.3163.100",
+	"2.0.0-beta.2": "61.0.3163.100",
+	"2.0.0-beta.3": "61.0.3163.100",
+	"2.0.0-beta.4": "61.0.3163.100",
+	"2.0.0-beta.5": "61.0.3163.100",
+	"2.0.0-beta.6": "61.0.3163.100",
+	"2.0.0-beta.7": "61.0.3163.100",
+	"2.0.0-beta.8": "61.0.3163.100",
+	"2.0.0": "61.0.3163.100",
+	"2.0.1": "61.0.3163.100",
+	"2.0.2": "61.0.3163.100",
+	"2.0.3": "61.0.3163.100",
+	"2.0.4": "61.0.3163.100",
+	"2.0.5": "61.0.3163.100",
+	"2.0.6": "61.0.3163.100",
+	"2.0.7": "61.0.3163.100",
+	"2.0.8": "61.0.3163.100",
+	"2.0.9": "61.0.3163.100",
+	"2.0.10": "61.0.3163.100",
+	"2.0.11": "61.0.3163.100",
+	"2.0.12": "61.0.3163.100",
+	"2.0.13": "61.0.3163.100",
+	"2.0.14": "61.0.3163.100",
+	"2.0.15": "61.0.3163.100",
+	"2.0.16": "61.0.3163.100",
+	"2.0.17": "61.0.3163.100",
+	"2.0.18": "61.0.3163.100",
+	"2.1.0-unsupported.20180809": "61.0.3163.100",
+	"3.0.0-beta.1": "66.0.3359.181",
+	"3.0.0-beta.2": "66.0.3359.181",
+	"3.0.0-beta.3": "66.0.3359.181",
+	"3.0.0-beta.4": "66.0.3359.181",
+	"3.0.0-beta.5": "66.0.3359.181",
+	"3.0.0-beta.6": "66.0.3359.181",
+	"3.0.0-beta.7": "66.0.3359.181",
+	"3.0.0-beta.8": "66.0.3359.181",
+	"3.0.0-beta.9": "66.0.3359.181",
+	"3.0.0-beta.10": "66.0.3359.181",
+	"3.0.0-beta.11": "66.0.3359.181",
+	"3.0.0-beta.12": "66.0.3359.181",
+	"3.0.0-beta.13": "66.0.3359.181",
+	"3.0.0": "66.0.3359.181",
+	"3.0.1": "66.0.3359.181",
+	"3.0.2": "66.0.3359.181",
+	"3.0.3": "66.0.3359.181",
+	"3.0.4": "66.0.3359.181",
+	"3.0.5": "66.0.3359.181",
+	"3.0.6": "66.0.3359.181",
+	"3.0.7": "66.0.3359.181",
+	"3.0.8": "66.0.3359.181",
+	"3.0.9": "66.0.3359.181",
+	"3.0.10": "66.0.3359.181",
+	"3.0.11": "66.0.3359.181",
+	"3.0.12": "66.0.3359.181",
+	"3.0.13": "66.0.3359.181",
+	"3.0.14": "66.0.3359.181",
+	"3.0.15": "66.0.3359.181",
+	"3.0.16": "66.0.3359.181",
+	"3.1.0-beta.1": "66.0.3359.181",
+	"3.1.0-beta.2": "66.0.3359.181",
+	"3.1.0-beta.3": "66.0.3359.181",
+	"3.1.0-beta.4": "66.0.3359.181",
+	"3.1.0-beta.5": "66.0.3359.181",
+	"3.1.0": "66.0.3359.181",
+	"3.1.1": "66.0.3359.181",
+	"3.1.2": "66.0.3359.181",
+	"3.1.3": "66.0.3359.181",
+	"3.1.4": "66.0.3359.181",
+	"3.1.5": "66.0.3359.181",
+	"3.1.6": "66.0.3359.181",
+	"3.1.7": "66.0.3359.181",
+	"3.1.8": "66.0.3359.181",
+	"3.1.9": "66.0.3359.181",
+	"3.1.10": "66.0.3359.181",
+	"3.1.11": "66.0.3359.181",
+	"3.1.12": "66.0.3359.181",
+	"3.1.13": "66.0.3359.181",
+	"4.0.0-beta.1": "69.0.3497.106",
+	"4.0.0-beta.2": "69.0.3497.106",
+	"4.0.0-beta.3": "69.0.3497.106",
+	"4.0.0-beta.4": "69.0.3497.106",
+	"4.0.0-beta.5": "69.0.3497.106",
+	"4.0.0-beta.6": "69.0.3497.106",
+	"4.0.0-beta.7": "69.0.3497.106",
+	"4.0.0-beta.8": "69.0.3497.106",
+	"4.0.0-beta.9": "69.0.3497.106",
+	"4.0.0-beta.10": "69.0.3497.106",
+	"4.0.0-beta.11": "69.0.3497.106",
+	"4.0.0": "69.0.3497.106",
+	"4.0.1": "69.0.3497.106",
+	"4.0.2": "69.0.3497.106",
+	"4.0.3": "69.0.3497.106",
+	"4.0.4": "69.0.3497.106",
+	"4.0.5": "69.0.3497.106",
+	"4.0.6": "69.0.3497.106",
+	"4.0.7": "69.0.3497.128",
+	"4.0.8": "69.0.3497.128",
+	"4.1.0": "69.0.3497.128",
+	"4.1.1": "69.0.3497.128",
+	"4.1.2": "69.0.3497.128",
+	"4.1.3": "69.0.3497.128",
+	"4.1.4": "69.0.3497.128",
+	"4.1.5": "69.0.3497.128",
+	"4.2.0": "69.0.3497.128",
+	"4.2.1": "69.0.3497.128",
+	"4.2.2": "69.0.3497.128",
+	"4.2.3": "69.0.3497.128",
+	"4.2.4": "69.0.3497.128",
+	"4.2.5": "69.0.3497.128",
+	"4.2.6": "69.0.3497.128",
+	"4.2.7": "69.0.3497.128",
+	"4.2.8": "69.0.3497.128",
+	"4.2.9": "69.0.3497.128",
+	"4.2.10": "69.0.3497.128",
+	"4.2.11": "69.0.3497.128",
+	"4.2.12": "69.0.3497.128",
+	"5.0.0-beta.1": "72.0.3626.52",
+	"5.0.0-beta.2": "72.0.3626.52",
+	"5.0.0-beta.3": "73.0.3683.27",
+	"5.0.0-beta.4": "73.0.3683.54",
+	"5.0.0-beta.5": "73.0.3683.61",
+	"5.0.0-beta.6": "73.0.3683.84",
+	"5.0.0-beta.7": "73.0.3683.94",
+	"5.0.0-beta.8": "73.0.3683.104",
+	"5.0.0-beta.9": "73.0.3683.117",
+	"5.0.0": "73.0.3683.119",
+	"5.0.1": "73.0.3683.121",
+	"5.0.2": "73.0.3683.121",
+	"5.0.3": "73.0.3683.121",
+	"5.0.4": "73.0.3683.121",
+	"5.0.5": "73.0.3683.121",
+	"5.0.6": "73.0.3683.121",
+	"5.0.7": "73.0.3683.121",
+	"5.0.8": "73.0.3683.121",
+	"5.0.9": "73.0.3683.121",
+	"5.0.10": "73.0.3683.121",
+	"5.0.11": "73.0.3683.121",
+	"5.0.12": "73.0.3683.121",
+	"5.0.13": "73.0.3683.121",
+	"6.0.0-beta.1": "76.0.3774.1",
+	"6.0.0-beta.2": "76.0.3783.1",
+	"6.0.0-beta.3": "76.0.3783.1",
+	"6.0.0-beta.4": "76.0.3783.1",
+	"6.0.0-beta.5": "76.0.3805.4",
+	"6.0.0-beta.6": "76.0.3809.3",
+	"6.0.0-beta.7": "76.0.3809.22",
+	"6.0.0-beta.8": "76.0.3809.26",
+	"6.0.0-beta.9": "76.0.3809.26",
+	"6.0.0-beta.10": "76.0.3809.37",
+	"6.0.0-beta.11": "76.0.3809.42",
+	"6.0.0-beta.12": "76.0.3809.54",
+	"6.0.0-beta.13": "76.0.3809.60",
+	"6.0.0-beta.14": "76.0.3809.68",
+	"6.0.0-beta.15": "76.0.3809.74",
+	"6.0.0": "76.0.3809.88",
+	"6.0.1": "76.0.3809.102",
+	"6.0.2": "76.0.3809.110",
+	"6.0.3": "76.0.3809.126",
+	"6.0.4": "76.0.3809.131",
+	"6.0.5": "76.0.3809.136",
+	"6.0.6": "76.0.3809.138",
+	"6.0.7": "76.0.3809.139",
+	"6.0.8": "76.0.3809.146",
+	"6.0.9": "76.0.3809.146",
+	"6.0.10": "76.0.3809.146",
+	"6.0.11": "76.0.3809.146",
+	"6.0.12": "76.0.3809.146",
+	"6.1.0": "76.0.3809.146",
+	"6.1.1": "76.0.3809.146",
+	"6.1.2": "76.0.3809.146",
+	"6.1.3": "76.0.3809.146",
+	"6.1.4": "76.0.3809.146",
+	"6.1.5": "76.0.3809.146",
+	"6.1.6": "76.0.3809.146",
+	"6.1.7": "76.0.3809.146",
+	"6.1.8": "76.0.3809.146",
+	"6.1.9": "76.0.3809.146",
+	"6.1.10": "76.0.3809.146",
+	"6.1.11": "76.0.3809.146",
+	"6.1.12": "76.0.3809.146",
+	"7.0.0-beta.1": "78.0.3866.0",
+	"7.0.0-beta.2": "78.0.3866.0",
+	"7.0.0-beta.3": "78.0.3866.0",
+	"7.0.0-beta.4": "78.0.3896.6",
+	"7.0.0-beta.5": "78.0.3905.1",
+	"7.0.0-beta.6": "78.0.3905.1",
+	"7.0.0-beta.7": "78.0.3905.1",
+	"7.0.0": "78.0.3905.1",
+	"7.0.1": "78.0.3904.92",
+	"7.1.0": "78.0.3904.94",
+	"7.1.1": "78.0.3904.99",
+	"7.1.2": "78.0.3904.113",
+	"7.1.3": "78.0.3904.126",
+	"7.1.4": "78.0.3904.130",
+	"7.1.5": "78.0.3904.130",
+	"7.1.6": "78.0.3904.130",
+	"7.1.7": "78.0.3904.130",
+	"7.1.8": "78.0.3904.130",
+	"7.1.9": "78.0.3904.130",
+	"7.1.10": "78.0.3904.130",
+	"7.1.11": "78.0.3904.130",
+	"7.1.12": "78.0.3904.130",
+	"7.1.13": "78.0.3904.130",
+	"7.1.14": "78.0.3904.130",
+	"7.2.0": "78.0.3904.130",
+	"7.2.1": "78.0.3904.130",
+	"7.2.2": "78.0.3904.130",
+	"7.2.3": "78.0.3904.130",
+	"7.2.4": "78.0.3904.130",
+	"7.3.0": "78.0.3904.130",
+	"7.3.1": "78.0.3904.130",
+	"7.3.2": "78.0.3904.130",
+	"7.3.3": "78.0.3904.130",
+	"8.0.0-beta.1": "79.0.3931.0",
+	"8.0.0-beta.2": "79.0.3931.0",
+	"8.0.0-beta.3": "80.0.3955.0",
+	"8.0.0-beta.4": "80.0.3955.0",
+	"8.0.0-beta.5": "80.0.3987.14",
+	"8.0.0-beta.6": "80.0.3987.51",
+	"8.0.0-beta.7": "80.0.3987.59",
+	"8.0.0-beta.8": "80.0.3987.75",
+	"8.0.0-beta.9": "80.0.3987.75",
+	"8.0.0": "80.0.3987.86",
+	"8.0.1": "80.0.3987.86",
+	"8.0.2": "80.0.3987.86",
+	"8.0.3": "80.0.3987.134",
+	"8.1.0": "80.0.3987.137",
+	"8.1.1": "80.0.3987.141",
+	"8.2.0": "80.0.3987.158",
+	"8.2.1": "80.0.3987.163",
+	"8.2.2": "80.0.3987.163",
+	"8.2.3": "80.0.3987.163",
+	"8.2.4": "80.0.3987.165",
+	"8.2.5": "80.0.3987.165",
+	"8.3.0": "80.0.3987.165",
+	"8.3.1": "80.0.3987.165",
+	"8.3.2": "80.0.3987.165",
+	"8.3.3": "80.0.3987.165",
+	"8.3.4": "80.0.3987.165",
+	"8.4.0": "80.0.3987.165",
+	"8.4.1": "80.0.3987.165",
+	"8.5.0": "80.0.3987.165",
+	"8.5.1": "80.0.3987.165",
+	"8.5.2": "80.0.3987.165",
+	"8.5.3": "80.0.3987.163",
+	"8.5.4": "80.0.3987.163",
+	"8.5.5": "80.0.3987.163",
+	"9.0.0-beta.1": "82.0.4048.0",
+	"9.0.0-beta.2": "82.0.4048.0",
+	"9.0.0-beta.3": "82.0.4048.0",
+	"9.0.0-beta.4": "82.0.4048.0",
+	"9.0.0-beta.5": "82.0.4048.0",
+	"9.0.0-beta.6": "82.0.4058.2",
+	"9.0.0-beta.7": "82.0.4058.2",
+	"9.0.0-beta.9": "82.0.4058.2",
+	"9.0.0-beta.10": "82.0.4085.10",
+	"9.0.0-beta.11": "82.0.4085.14",
+	"9.0.0-beta.12": "82.0.4085.14",
+	"9.0.0-beta.13": "82.0.4085.14",
+	"9.0.0-beta.14": "82.0.4085.27",
+	"9.0.0-beta.15": "83.0.4102.3",
+	"9.0.0-beta.16": "83.0.4102.3",
+	"9.0.0-beta.17": "83.0.4103.14",
+	"9.0.0-beta.18": "83.0.4103.16",
+	"9.0.0-beta.19": "83.0.4103.24",
+	"9.0.0-beta.20": "83.0.4103.26",
+	"9.0.0-beta.21": "83.0.4103.26",
+	"9.0.0-beta.22": "83.0.4103.34",
+	"9.0.0-beta.23": "83.0.4103.44",
+	"9.0.0-beta.24": "83.0.4103.45",
+	"9.0.0": "83.0.4103.64",
+	"9.0.1": "83.0.4103.94",
+	"9.0.2": "83.0.4103.94",
+	"9.0.3": "83.0.4103.100",
+	"9.0.4": "83.0.4103.104",
+	"9.0.5": "83.0.4103.119",
+	"9.1.0": "83.0.4103.122",
+	"9.1.1": "83.0.4103.122",
+	"9.1.2": "83.0.4103.122",
+	"9.2.0": "83.0.4103.122",
+	"9.2.1": "83.0.4103.122",
+	"9.3.0": "83.0.4103.122",
+	"9.3.1": "83.0.4103.122",
+	"9.3.2": "83.0.4103.122",
+	"9.3.3": "83.0.4103.122",
+	"9.3.4": "83.0.4103.122",
+	"9.3.5": "83.0.4103.122",
+	"9.4.0": "83.0.4103.122",
+	"9.4.1": "83.0.4103.122",
+	"9.4.2": "83.0.4103.122",
+	"9.4.3": "83.0.4103.122",
+	"9.4.4": "83.0.4103.122",
+	"10.0.0-beta.1": "84.0.4129.0",
+	"10.0.0-beta.2": "84.0.4129.0",
+	"10.0.0-beta.3": "85.0.4161.2",
+	"10.0.0-beta.4": "85.0.4161.2",
+	"10.0.0-beta.8": "85.0.4181.1",
+	"10.0.0-beta.9": "85.0.4181.1",
+	"10.0.0-beta.10": "85.0.4183.19",
+	"10.0.0-beta.11": "85.0.4183.20",
+	"10.0.0-beta.12": "85.0.4183.26",
+	"10.0.0-beta.13": "85.0.4183.39",
+	"10.0.0-beta.14": "85.0.4183.39",
+	"10.0.0-beta.15": "85.0.4183.39",
+	"10.0.0-beta.17": "85.0.4183.39",
+	"10.0.0-beta.19": "85.0.4183.39",
+	"10.0.0-beta.20": "85.0.4183.39",
+	"10.0.0-beta.21": "85.0.4183.39",
+	"10.0.0-beta.23": "85.0.4183.70",
+	"10.0.0-beta.24": "85.0.4183.78",
+	"10.0.0-beta.25": "85.0.4183.80",
+	"10.0.0": "85.0.4183.84",
+	"10.0.1": "85.0.4183.86",
+	"10.1.0": "85.0.4183.87",
+	"10.1.1": "85.0.4183.93",
+	"10.1.2": "85.0.4183.98",
+	"10.1.3": "85.0.4183.121",
+	"10.1.4": "85.0.4183.121",
+	"10.1.5": "85.0.4183.121",
+	"10.1.6": "85.0.4183.121",
+	"10.1.7": "85.0.4183.121",
+	"10.2.0": "85.0.4183.121",
+	"10.3.0": "85.0.4183.121",
+	"10.3.1": "85.0.4183.121",
+	"10.3.2": "85.0.4183.121",
+	"10.4.0": "85.0.4183.121",
+	"10.4.1": "85.0.4183.121",
+	"10.4.2": "85.0.4183.121",
+	"10.4.3": "85.0.4183.121",
+	"10.4.4": "85.0.4183.121",
+	"10.4.5": "85.0.4183.121",
+	"10.4.6": "85.0.4183.121",
+	"10.4.7": "85.0.4183.121",
+	"11.0.0-beta.1": "86.0.4234.0",
+	"11.0.0-beta.3": "86.0.4234.0",
+	"11.0.0-beta.4": "86.0.4234.0",
+	"11.0.0-beta.5": "86.0.4234.0",
+	"11.0.0-beta.6": "86.0.4234.0",
+	"11.0.0-beta.7": "86.0.4234.0",
+	"11.0.0-beta.8": "87.0.4251.1",
+	"11.0.0-beta.9": "87.0.4251.1",
+	"11.0.0-beta.11": "87.0.4251.1",
+	"11.0.0-beta.12": "87.0.4280.11",
+	"11.0.0-beta.13": "87.0.4280.11",
+	"11.0.0-beta.16": "87.0.4280.27",
+	"11.0.0-beta.17": "87.0.4280.27",
+	"11.0.0-beta.18": "87.0.4280.27",
+	"11.0.0-beta.19": "87.0.4280.27",
+	"11.0.0-beta.20": "87.0.4280.40",
+	"11.0.0-beta.22": "87.0.4280.47",
+	"11.0.0-beta.23": "87.0.4280.47",
+	"11.0.0": "87.0.4280.60",
+	"11.0.1": "87.0.4280.60",
+	"11.0.2": "87.0.4280.67",
+	"11.0.3": "87.0.4280.67",
+	"11.0.4": "87.0.4280.67",
+	"11.0.5": "87.0.4280.88",
+	"11.1.0": "87.0.4280.88",
+	"11.1.1": "87.0.4280.88",
+	"11.2.0": "87.0.4280.141",
+	"11.2.1": "87.0.4280.141",
+	"11.2.2": "87.0.4280.141",
+	"11.2.3": "87.0.4280.141",
+	"11.3.0": "87.0.4280.141",
+	"11.4.0": "87.0.4280.141",
+	"11.4.1": "87.0.4280.141",
+	"11.4.2": "87.0.4280.141",
+	"11.4.3": "87.0.4280.141",
+	"11.4.4": "87.0.4280.141",
+	"11.4.5": "87.0.4280.141",
+	"11.4.6": "87.0.4280.141",
+	"11.4.7": "87.0.4280.141",
+	"11.4.8": "87.0.4280.141",
+	"11.4.9": "87.0.4280.141",
+	"11.4.10": "87.0.4280.141",
+	"11.4.11": "87.0.4280.141",
+	"11.4.12": "87.0.4280.141",
+	"11.5.0": "87.0.4280.141",
+	"12.0.0-beta.1": "89.0.4328.0",
+	"12.0.0-beta.3": "89.0.4328.0",
+	"12.0.0-beta.4": "89.0.4328.0",
+	"12.0.0-beta.5": "89.0.4328.0",
+	"12.0.0-beta.6": "89.0.4328.0",
+	"12.0.0-beta.7": "89.0.4328.0",
+	"12.0.0-beta.8": "89.0.4328.0",
+	"12.0.0-beta.9": "89.0.4328.0",
+	"12.0.0-beta.10": "89.0.4328.0",
+	"12.0.0-beta.11": "89.0.4328.0",
+	"12.0.0-beta.12": "89.0.4328.0",
+	"12.0.0-beta.14": "89.0.4328.0",
+	"12.0.0-beta.16": "89.0.4348.1",
+	"12.0.0-beta.18": "89.0.4348.1",
+	"12.0.0-beta.19": "89.0.4348.1",
+	"12.0.0-beta.20": "89.0.4348.1",
+	"12.0.0-beta.21": "89.0.4388.2",
+	"12.0.0-beta.22": "89.0.4388.2",
+	"12.0.0-beta.23": "89.0.4388.2",
+	"12.0.0-beta.24": "89.0.4388.2",
+	"12.0.0-beta.25": "89.0.4388.2",
+	"12.0.0-beta.26": "89.0.4388.2",
+	"12.0.0-beta.27": "89.0.4389.23",
+	"12.0.0-beta.28": "89.0.4389.23",
+	"12.0.0-beta.29": "89.0.4389.23",
+	"12.0.0-beta.30": "89.0.4389.58",
+	"12.0.0-beta.31": "89.0.4389.58",
+	"12.0.0": "89.0.4389.69",
+	"12.0.1": "89.0.4389.82",
+	"12.0.2": "89.0.4389.90",
+	"12.0.3": "89.0.4389.114",
+	"12.0.4": "89.0.4389.114",
+	"12.0.5": "89.0.4389.128",
+	"12.0.6": "89.0.4389.128",
+	"12.0.7": "89.0.4389.128",
+	"12.0.8": "89.0.4389.128",
+	"12.0.9": "89.0.4389.128",
+	"12.0.10": "89.0.4389.128",
+	"12.0.11": "89.0.4389.128",
+	"12.0.12": "89.0.4389.128",
+	"12.0.13": "89.0.4389.128",
+	"12.0.14": "89.0.4389.128",
+	"12.0.15": "89.0.4389.128",
+	"12.0.16": "89.0.4389.128",
+	"12.0.17": "89.0.4389.128",
+	"12.0.18": "89.0.4389.128",
+	"12.1.0": "89.0.4389.128",
+	"12.1.1": "89.0.4389.128",
+	"12.1.2": "89.0.4389.128",
+	"12.2.0": "89.0.4389.128",
+	"12.2.1": "89.0.4389.128",
+	"12.2.2": "89.0.4389.128",
+	"12.2.3": "89.0.4389.128",
+	"13.0.0-beta.2": "90.0.4402.0",
+	"13.0.0-beta.3": "90.0.4402.0",
+	"13.0.0-beta.4": "90.0.4415.0",
+	"13.0.0-beta.5": "90.0.4415.0",
+	"13.0.0-beta.6": "90.0.4415.0",
+	"13.0.0-beta.7": "90.0.4415.0",
+	"13.0.0-beta.8": "90.0.4415.0",
+	"13.0.0-beta.9": "90.0.4415.0",
+	"13.0.0-beta.10": "90.0.4415.0",
+	"13.0.0-beta.11": "90.0.4415.0",
+	"13.0.0-beta.12": "90.0.4415.0",
+	"13.0.0-beta.13": "90.0.4415.0",
+	"13.0.0-beta.14": "91.0.4448.0",
+	"13.0.0-beta.16": "91.0.4448.0",
+	"13.0.0-beta.17": "91.0.4448.0",
+	"13.0.0-beta.18": "91.0.4448.0",
+	"13.0.0-beta.20": "91.0.4448.0",
+	"13.0.0-beta.21": "91.0.4472.33",
+	"13.0.0-beta.22": "91.0.4472.33",
+	"13.0.0-beta.23": "91.0.4472.33",
+	"13.0.0-beta.24": "91.0.4472.38",
+	"13.0.0-beta.25": "91.0.4472.38",
+	"13.0.0-beta.26": "91.0.4472.38",
+	"13.0.0-beta.27": "91.0.4472.38",
+	"13.0.0-beta.28": "91.0.4472.38",
+	"13.0.0": "91.0.4472.69",
+	"13.0.1": "91.0.4472.69",
+	"13.1.0": "91.0.4472.77",
+	"13.1.1": "91.0.4472.77",
+	"13.1.2": "91.0.4472.77",
+	"13.1.3": "91.0.4472.106",
+	"13.1.4": "91.0.4472.106",
+	"13.1.5": "91.0.4472.124",
+	"13.1.6": "91.0.4472.124",
+	"13.1.7": "91.0.4472.124",
+	"13.1.8": "91.0.4472.164",
+	"13.1.9": "91.0.4472.164",
+	"13.2.0": "91.0.4472.164",
+	"13.2.1": "91.0.4472.164",
+	"13.2.2": "91.0.4472.164",
+	"13.2.3": "91.0.4472.164",
+	"13.3.0": "91.0.4472.164",
+	"13.4.0": "91.0.4472.164",
+	"13.5.0": "91.0.4472.164",
+	"13.5.1": "91.0.4472.164",
+	"13.5.2": "91.0.4472.164",
+	"13.6.0": "91.0.4472.164",
+	"13.6.1": "91.0.4472.164",
+	"13.6.2": "91.0.4472.164",
+	"13.6.3": "91.0.4472.164",
+	"13.6.6": "91.0.4472.164",
+	"13.6.7": "91.0.4472.164",
+	"13.6.8": "91.0.4472.164",
+	"13.6.9": "91.0.4472.164",
+	"14.0.0-beta.1": "92.0.4511.0",
+	"14.0.0-beta.2": "92.0.4511.0",
+	"14.0.0-beta.3": "92.0.4511.0",
+	"14.0.0-beta.5": "93.0.4536.0",
+	"14.0.0-beta.6": "93.0.4536.0",
+	"14.0.0-beta.7": "93.0.4536.0",
+	"14.0.0-beta.8": "93.0.4536.0",
+	"14.0.0-beta.9": "93.0.4539.0",
+	"14.0.0-beta.10": "93.0.4539.0",
+	"14.0.0-beta.11": "93.0.4557.4",
+	"14.0.0-beta.12": "93.0.4557.4",
+	"14.0.0-beta.13": "93.0.4566.0",
+	"14.0.0-beta.14": "93.0.4566.0",
+	"14.0.0-beta.15": "93.0.4566.0",
+	"14.0.0-beta.16": "93.0.4566.0",
+	"14.0.0-beta.17": "93.0.4566.0",
+	"14.0.0-beta.18": "93.0.4577.15",
+	"14.0.0-beta.19": "93.0.4577.15",
+	"14.0.0-beta.20": "93.0.4577.15",
+	"14.0.0-beta.21": "93.0.4577.15",
+	"14.0.0-beta.22": "93.0.4577.25",
+	"14.0.0-beta.23": "93.0.4577.25",
+	"14.0.0-beta.24": "93.0.4577.51",
+	"14.0.0-beta.25": "93.0.4577.51",
+	"14.0.0": "93.0.4577.58",
+	"14.0.1": "93.0.4577.63",
+	"14.0.2": "93.0.4577.82",
+	"14.1.0": "93.0.4577.82",
+	"14.1.1": "93.0.4577.82",
+	"14.2.0": "93.0.4577.82",
+	"14.2.1": "93.0.4577.82",
+	"14.2.2": "93.0.4577.82",
+	"14.2.3": "93.0.4577.82",
+	"14.2.4": "93.0.4577.82",
+	"14.2.5": "93.0.4577.82",
+	"14.2.6": "93.0.4577.82",
+	"14.2.7": "93.0.4577.82",
+	"14.2.8": "93.0.4577.82",
+	"14.2.9": "93.0.4577.82",
+	"15.0.0-alpha.1": "93.0.4566.0",
+	"15.0.0-alpha.2": "93.0.4566.0",
+	"15.0.0-alpha.3": "94.0.4584.0",
+	"15.0.0-alpha.4": "94.0.4584.0",
+	"15.0.0-alpha.5": "94.0.4584.0",
+	"15.0.0-alpha.6": "94.0.4584.0",
+	"15.0.0-alpha.7": "94.0.4590.2",
+	"15.0.0-alpha.8": "94.0.4590.2",
+	"15.0.0-alpha.9": "94.0.4590.2",
+	"15.0.0-alpha.10": "94.0.4606.12",
+	"15.0.0-beta.1": "94.0.4606.20",
+	"15.0.0-beta.2": "94.0.4606.20",
+	"15.0.0-beta.3": "94.0.4606.31",
+	"15.0.0-beta.4": "94.0.4606.31",
+	"15.0.0-beta.5": "94.0.4606.31",
+	"15.0.0-beta.6": "94.0.4606.31",
+	"15.0.0-beta.7": "94.0.4606.31",
+	"15.0.0": "94.0.4606.51",
+	"15.1.0": "94.0.4606.61",
+	"15.1.1": "94.0.4606.61",
+	"15.1.2": "94.0.4606.71",
+	"15.2.0": "94.0.4606.81",
+	"15.3.0": "94.0.4606.81",
+	"15.3.1": "94.0.4606.81",
+	"15.3.2": "94.0.4606.81",
+	"15.3.3": "94.0.4606.81",
+	"15.3.4": "94.0.4606.81",
+	"15.3.5": "94.0.4606.81",
+	"15.3.6": "94.0.4606.81",
+	"15.3.7": "94.0.4606.81",
+	"15.4.0": "94.0.4606.81",
+	"15.4.1": "94.0.4606.81",
+	"15.4.2": "94.0.4606.81",
+	"15.5.0": "94.0.4606.81",
+	"15.5.1": "94.0.4606.81",
+	"15.5.2": "94.0.4606.81",
+	"15.5.3": "94.0.4606.81",
+	"15.5.4": "94.0.4606.81",
+	"15.5.5": "94.0.4606.81",
+	"15.5.6": "94.0.4606.81",
+	"15.5.7": "94.0.4606.81",
+	"16.0.0-alpha.1": "95.0.4629.0",
+	"16.0.0-alpha.2": "95.0.4629.0",
+	"16.0.0-alpha.3": "95.0.4629.0",
+	"16.0.0-alpha.4": "95.0.4629.0",
+	"16.0.0-alpha.5": "95.0.4629.0",
+	"16.0.0-alpha.6": "95.0.4629.0",
+	"16.0.0-alpha.7": "95.0.4629.0",
+	"16.0.0-alpha.8": "96.0.4647.0",
+	"16.0.0-alpha.9": "96.0.4647.0",
+	"16.0.0-beta.1": "96.0.4647.0",
+	"16.0.0-beta.2": "96.0.4647.0",
+	"16.0.0-beta.3": "96.0.4647.0",
+	"16.0.0-beta.4": "96.0.4664.18",
+	"16.0.0-beta.5": "96.0.4664.18",
+	"16.0.0-beta.6": "96.0.4664.27",
+	"16.0.0-beta.7": "96.0.4664.27",
+	"16.0.0-beta.8": "96.0.4664.35",
+	"16.0.0-beta.9": "96.0.4664.35",
+	"16.0.0": "96.0.4664.45",
+	"16.0.1": "96.0.4664.45",
+	"16.0.2": "96.0.4664.55",
+	"16.0.3": "96.0.4664.55",
+	"16.0.4": "96.0.4664.55",
+	"16.0.5": "96.0.4664.55",
+	"16.0.6": "96.0.4664.110",
+	"16.0.7": "96.0.4664.110",
+	"16.0.8": "96.0.4664.110",
+	"16.0.9": "96.0.4664.174",
+	"16.0.10": "96.0.4664.174",
+	"16.1.0": "96.0.4664.174",
+	"16.1.1": "96.0.4664.174",
+	"16.2.0": "96.0.4664.174",
+	"16.2.1": "96.0.4664.174",
+	"16.2.2": "96.0.4664.174",
+	"16.2.3": "96.0.4664.174",
+	"16.2.4": "96.0.4664.174",
+	"16.2.5": "96.0.4664.174",
+	"16.2.6": "96.0.4664.174",
+	"16.2.7": "96.0.4664.174",
+	"16.2.8": "96.0.4664.174",
+	"17.0.0-alpha.1": "96.0.4664.4",
+	"17.0.0-alpha.2": "96.0.4664.4",
+	"17.0.0-alpha.3": "96.0.4664.4",
+	"17.0.0-alpha.4": "98.0.4706.0",
+	"17.0.0-alpha.5": "98.0.4706.0",
+	"17.0.0-alpha.6": "98.0.4706.0",
+	"17.0.0-beta.1": "98.0.4706.0",
+	"17.0.0-beta.2": "98.0.4706.0",
+	"17.0.0-beta.3": "98.0.4758.9",
+	"17.0.0-beta.4": "98.0.4758.11",
+	"17.0.0-beta.5": "98.0.4758.11",
+	"17.0.0-beta.6": "98.0.4758.11",
+	"17.0.0-beta.7": "98.0.4758.11",
+	"17.0.0-beta.8": "98.0.4758.11",
+	"17.0.0-beta.9": "98.0.4758.11",
+	"17.0.0": "98.0.4758.74",
+	"17.0.1": "98.0.4758.82",
+	"17.1.0": "98.0.4758.102",
+	"17.1.1": "98.0.4758.109",
+	"17.1.2": "98.0.4758.109",
+	"17.2.0": "98.0.4758.109",
+	"17.3.0": "98.0.4758.141",
+	"17.3.1": "98.0.4758.141",
+	"17.4.0": "98.0.4758.141",
+	"17.4.1": "98.0.4758.141",
+	"17.4.2": "98.0.4758.141",
+	"17.4.3": "98.0.4758.141",
+	"17.4.4": "98.0.4758.141",
+	"17.4.5": "98.0.4758.141",
+	"17.4.6": "98.0.4758.141",
+	"17.4.7": "98.0.4758.141",
+	"17.4.8": "98.0.4758.141",
+	"17.4.9": "98.0.4758.141",
+	"17.4.10": "98.0.4758.141",
+	"17.4.11": "98.0.4758.141",
+	"18.0.0-alpha.1": "99.0.4767.0",
+	"18.0.0-alpha.2": "99.0.4767.0",
+	"18.0.0-alpha.3": "99.0.4767.0",
+	"18.0.0-alpha.4": "99.0.4767.0",
+	"18.0.0-alpha.5": "99.0.4767.0",
+	"18.0.0-beta.1": "100.0.4894.0",
+	"18.0.0-beta.2": "100.0.4894.0",
+	"18.0.0-beta.3": "100.0.4894.0",
+	"18.0.0-beta.4": "100.0.4894.0",
+	"18.0.0-beta.5": "100.0.4894.0",
+	"18.0.0-beta.6": "100.0.4894.0",
+	"18.0.0": "100.0.4896.56",
+	"18.0.1": "100.0.4896.60",
+	"18.0.2": "100.0.4896.60",
+	"18.0.3": "100.0.4896.75",
+	"18.0.4": "100.0.4896.75",
+	"18.1.0": "100.0.4896.127",
+	"18.2.0": "100.0.4896.143",
+	"18.2.1": "100.0.4896.143",
+	"18.2.2": "100.0.4896.143",
+	"18.2.3": "100.0.4896.143",
+	"18.2.4": "100.0.4896.160",
+	"18.3.0": "100.0.4896.160",
+	"18.3.1": "100.0.4896.160",
+	"18.3.2": "100.0.4896.160",
+	"18.3.3": "100.0.4896.160",
+	"18.3.4": "100.0.4896.160",
+	"18.3.5": "100.0.4896.160",
+	"18.3.6": "100.0.4896.160",
+	"18.3.7": "100.0.4896.160",
+	"18.3.8": "100.0.4896.160",
+	"18.3.9": "100.0.4896.160",
+	"18.3.11": "100.0.4896.160",
+	"18.3.12": "100.0.4896.160",
+	"18.3.13": "100.0.4896.160",
+	"18.3.14": "100.0.4896.160",
+	"18.3.15": "100.0.4896.160",
+	"19.0.0-alpha.1": "102.0.4962.3",
+	"19.0.0-alpha.2": "102.0.4971.0",
+	"19.0.0-alpha.3": "102.0.4971.0",
+	"19.0.0-alpha.4": "102.0.4989.0",
+	"19.0.0-alpha.5": "102.0.4989.0",
+	"19.0.0-beta.1": "102.0.4999.0",
+	"19.0.0-beta.2": "102.0.4999.0",
+	"19.0.0-beta.3": "102.0.4999.0",
+	"19.0.0-beta.4": "102.0.5005.27",
+	"19.0.0-beta.5": "102.0.5005.40",
+	"19.0.0-beta.6": "102.0.5005.40",
+	"19.0.0-beta.7": "102.0.5005.40",
+	"19.0.0-beta.8": "102.0.5005.49",
+	"19.0.0": "102.0.5005.61",
+	"19.0.1": "102.0.5005.61",
+	"19.0.2": "102.0.5005.63",
+	"19.0.3": "102.0.5005.63",
+	"19.0.4": "102.0.5005.63",
+	"19.0.5": "102.0.5005.115",
+	"19.0.6": "102.0.5005.115",
+	"19.0.7": "102.0.5005.134",
+	"19.0.8": "102.0.5005.148",
+	"19.0.9": "102.0.5005.167",
+	"19.0.10": "102.0.5005.167",
+	"19.0.11": "102.0.5005.167",
+	"19.0.12": "102.0.5005.167",
+	"19.0.13": "102.0.5005.167",
+	"19.0.14": "102.0.5005.167",
+	"19.0.15": "102.0.5005.167",
+	"19.0.16": "102.0.5005.167",
+	"19.0.17": "102.0.5005.167",
+	"19.1.0": "102.0.5005.167",
+	"19.1.1": "102.0.5005.167",
+	"19.1.2": "102.0.5005.167",
+	"19.1.3": "102.0.5005.167",
+	"19.1.4": "102.0.5005.167",
+	"19.1.5": "102.0.5005.167",
+	"19.1.6": "102.0.5005.167",
+	"19.1.7": "102.0.5005.167",
+	"19.1.8": "102.0.5005.167",
+	"19.1.9": "102.0.5005.167",
+	"20.0.0-alpha.1": "103.0.5044.0",
+	"20.0.0-alpha.2": "104.0.5073.0",
+	"20.0.0-alpha.3": "104.0.5073.0",
+	"20.0.0-alpha.4": "104.0.5073.0",
+	"20.0.0-alpha.5": "104.0.5073.0",
+	"20.0.0-alpha.6": "104.0.5073.0",
+	"20.0.0-alpha.7": "104.0.5073.0",
+	"20.0.0-beta.1": "104.0.5073.0",
+	"20.0.0-beta.2": "104.0.5073.0",
+	"20.0.0-beta.3": "104.0.5073.0",
+	"20.0.0-beta.4": "104.0.5073.0",
+	"20.0.0-beta.5": "104.0.5073.0",
+	"20.0.0-beta.6": "104.0.5073.0",
+	"20.0.0-beta.7": "104.0.5073.0",
+	"20.0.0-beta.8": "104.0.5073.0",
+	"20.0.0-beta.9": "104.0.5112.39",
+	"20.0.0-beta.10": "104.0.5112.48",
+	"20.0.0-beta.11": "104.0.5112.48",
+	"20.0.0-beta.12": "104.0.5112.48",
+	"20.0.0-beta.13": "104.0.5112.57",
+	"20.0.0": "104.0.5112.65",
+	"20.0.1": "104.0.5112.81",
+	"20.0.2": "104.0.5112.81",
+	"20.0.3": "104.0.5112.81",
+	"20.1.0": "104.0.5112.102",
+	"20.1.1": "104.0.5112.102",
+	"20.1.2": "104.0.5112.114",
+	"20.1.3": "104.0.5112.114",
+	"20.1.4": "104.0.5112.114",
+	"20.2.0": "104.0.5112.124",
+	"20.3.0": "104.0.5112.124",
+	"20.3.1": "104.0.5112.124",
+	"20.3.2": "104.0.5112.124",
+	"20.3.3": "104.0.5112.124",
+	"20.3.4": "104.0.5112.124",
+	"20.3.5": "104.0.5112.124",
+	"20.3.6": "104.0.5112.124",
+	"20.3.7": "104.0.5112.124",
+	"20.3.8": "104.0.5112.124",
+	"20.3.9": "104.0.5112.124",
+	"20.3.10": "104.0.5112.124",
+	"20.3.11": "104.0.5112.124",
+	"20.3.12": "104.0.5112.124",
+	"21.0.0-alpha.1": "105.0.5187.0",
+	"21.0.0-alpha.2": "105.0.5187.0",
+	"21.0.0-alpha.3": "105.0.5187.0",
+	"21.0.0-alpha.4": "105.0.5187.0",
+	"21.0.0-alpha.5": "105.0.5187.0",
+	"21.0.0-alpha.6": "106.0.5216.0",
+	"21.0.0-beta.1": "106.0.5216.0",
+	"21.0.0-beta.2": "106.0.5216.0",
+	"21.0.0-beta.3": "106.0.5216.0",
+	"21.0.0-beta.4": "106.0.5216.0",
+	"21.0.0-beta.5": "106.0.5216.0",
+	"21.0.0-beta.6": "106.0.5249.40",
+	"21.0.0-beta.7": "106.0.5249.40",
+	"21.0.0-beta.8": "106.0.5249.40",
+	"21.0.0": "106.0.5249.51",
+	"21.0.1": "106.0.5249.61",
+	"21.1.0": "106.0.5249.91",
+	"21.1.1": "106.0.5249.103",
+	"21.2.0": "106.0.5249.119",
+	"21.2.1": "106.0.5249.165",
+	"21.2.2": "106.0.5249.168",
+	"21.2.3": "106.0.5249.168",
+	"21.3.0": "106.0.5249.181",
+	"21.3.1": "106.0.5249.181",
+	"21.3.3": "106.0.5249.199",
+	"21.3.4": "106.0.5249.199",
+	"21.3.5": "106.0.5249.199",
+	"21.4.0": "106.0.5249.199",
+	"21.4.1": "106.0.5249.199",
+	"21.4.2": "106.0.5249.199",
+	"21.4.3": "106.0.5249.199",
+	"21.4.4": "106.0.5249.199",
+	"22.0.0-alpha.1": "107.0.5286.0",
+	"22.0.0-alpha.3": "108.0.5329.0",
+	"22.0.0-alpha.4": "108.0.5329.0",
+	"22.0.0-alpha.5": "108.0.5329.0",
+	"22.0.0-alpha.6": "108.0.5329.0",
+	"22.0.0-alpha.7": "108.0.5355.0",
+	"22.0.0-alpha.8": "108.0.5359.10",
+	"22.0.0-beta.1": "108.0.5359.10",
+	"22.0.0-beta.2": "108.0.5359.10",
+	"22.0.0-beta.3": "108.0.5359.10",
+	"22.0.0-beta.4": "108.0.5359.29",
+	"22.0.0-beta.5": "108.0.5359.40",
+	"22.0.0-beta.6": "108.0.5359.40",
+	"22.0.0-beta.7": "108.0.5359.48",
+	"22.0.0-beta.8": "108.0.5359.48",
+	"22.0.0": "108.0.5359.62",
+	"22.0.1": "108.0.5359.125",
+	"22.0.2": "108.0.5359.179",
+	"22.0.3": "108.0.5359.179",
+	"22.1.0": "108.0.5359.179",
+	"22.2.0": "108.0.5359.215",
+	"22.2.1": "108.0.5359.215",
+	"22.3.0": "108.0.5359.215",
+	"22.3.1": "108.0.5359.215",
+	"22.3.2": "108.0.5359.215",
+	"22.3.3": "108.0.5359.215",
+	"22.3.4": "108.0.5359.215",
+	"22.3.5": "108.0.5359.215",
+	"22.3.6": "108.0.5359.215",
+	"22.3.7": "108.0.5359.215",
+	"22.3.8": "108.0.5359.215",
+	"22.3.9": "108.0.5359.215",
+	"22.3.10": "108.0.5359.215",
+	"22.3.11": "108.0.5359.215",
+	"22.3.12": "108.0.5359.215",
+	"22.3.13": "108.0.5359.215",
+	"22.3.14": "108.0.5359.215",
+	"22.3.15": "108.0.5359.215",
+	"22.3.16": "108.0.5359.215",
+	"22.3.17": "108.0.5359.215",
+	"22.3.18": "108.0.5359.215",
+	"22.3.20": "108.0.5359.215",
+	"22.3.21": "108.0.5359.215",
+	"22.3.22": "108.0.5359.215",
+	"22.3.23": "108.0.5359.215",
+	"22.3.24": "108.0.5359.215",
+	"22.3.25": "108.0.5359.215",
+	"22.3.26": "108.0.5359.215",
+	"22.3.27": "108.0.5359.215",
+	"23.0.0-alpha.1": "110.0.5415.0",
+	"23.0.0-alpha.2": "110.0.5451.0",
+	"23.0.0-alpha.3": "110.0.5451.0",
+	"23.0.0-beta.1": "110.0.5478.5",
+	"23.0.0-beta.2": "110.0.5478.5",
+	"23.0.0-beta.3": "110.0.5478.5",
+	"23.0.0-beta.4": "110.0.5481.30",
+	"23.0.0-beta.5": "110.0.5481.38",
+	"23.0.0-beta.6": "110.0.5481.52",
+	"23.0.0-beta.8": "110.0.5481.52",
+	"23.0.0": "110.0.5481.77",
+	"23.1.0": "110.0.5481.100",
+	"23.1.1": "110.0.5481.104",
+	"23.1.2": "110.0.5481.177",
+	"23.1.3": "110.0.5481.179",
+	"23.1.4": "110.0.5481.192",
+	"23.2.0": "110.0.5481.192",
+	"23.2.1": "110.0.5481.208",
+	"23.2.2": "110.0.5481.208",
+	"23.2.3": "110.0.5481.208",
+	"23.2.4": "110.0.5481.208",
+	"23.3.0": "110.0.5481.208",
+	"23.3.1": "110.0.5481.208",
+	"23.3.2": "110.0.5481.208",
+	"23.3.3": "110.0.5481.208",
+	"23.3.4": "110.0.5481.208",
+	"23.3.5": "110.0.5481.208",
+	"23.3.6": "110.0.5481.208",
+	"23.3.7": "110.0.5481.208",
+	"23.3.8": "110.0.5481.208",
+	"23.3.9": "110.0.5481.208",
+	"23.3.10": "110.0.5481.208",
+	"23.3.11": "110.0.5481.208",
+	"23.3.12": "110.0.5481.208",
+	"23.3.13": "110.0.5481.208",
+	"24.0.0-alpha.1": "111.0.5560.0",
+	"24.0.0-alpha.2": "111.0.5560.0",
+	"24.0.0-alpha.3": "111.0.5560.0",
+	"24.0.0-alpha.4": "111.0.5560.0",
+	"24.0.0-alpha.5": "111.0.5560.0",
+	"24.0.0-alpha.6": "111.0.5560.0",
+	"24.0.0-alpha.7": "111.0.5560.0",
+	"24.0.0-beta.1": "111.0.5563.50",
+	"24.0.0-beta.2": "111.0.5563.50",
+	"24.0.0-beta.3": "112.0.5615.20",
+	"24.0.0-beta.4": "112.0.5615.20",
+	"24.0.0-beta.5": "112.0.5615.29",
+	"24.0.0-beta.6": "112.0.5615.39",
+	"24.0.0-beta.7": "112.0.5615.39",
+	"24.0.0": "112.0.5615.49",
+	"24.1.0": "112.0.5615.50",
+	"24.1.1": "112.0.5615.50",
+	"24.1.2": "112.0.5615.87",
+	"24.1.3": "112.0.5615.165",
+	"24.2.0": "112.0.5615.165",
+	"24.3.0": "112.0.5615.165",
+	"24.3.1": "112.0.5615.183",
+	"24.4.0": "112.0.5615.204",
+	"24.4.1": "112.0.5615.204",
+	"24.5.0": "112.0.5615.204",
+	"24.5.1": "112.0.5615.204",
+	"24.6.0": "112.0.5615.204",
+	"24.6.1": "112.0.5615.204",
+	"24.6.2": "112.0.5615.204",
+	"24.6.3": "112.0.5615.204",
+	"24.6.4": "112.0.5615.204",
+	"24.6.5": "112.0.5615.204",
+	"24.7.0": "112.0.5615.204",
+	"24.7.1": "112.0.5615.204",
+	"24.8.0": "112.0.5615.204",
+	"24.8.1": "112.0.5615.204",
+	"24.8.2": "112.0.5615.204",
+	"24.8.3": "112.0.5615.204",
+	"24.8.4": "112.0.5615.204",
+	"24.8.5": "112.0.5615.204",
+	"24.8.6": "112.0.5615.204",
+	"24.8.7": "112.0.5615.204",
+	"24.8.8": "112.0.5615.204",
+	"25.0.0-alpha.1": "114.0.5694.0",
+	"25.0.0-alpha.2": "114.0.5694.0",
+	"25.0.0-alpha.3": "114.0.5710.0",
+	"25.0.0-alpha.4": "114.0.5710.0",
+	"25.0.0-alpha.5": "114.0.5719.0",
+	"25.0.0-alpha.6": "114.0.5719.0",
+	"25.0.0-beta.1": "114.0.5719.0",
+	"25.0.0-beta.2": "114.0.5719.0",
+	"25.0.0-beta.3": "114.0.5719.0",
+	"25.0.0-beta.4": "114.0.5735.16",
+	"25.0.0-beta.5": "114.0.5735.16",
+	"25.0.0-beta.6": "114.0.5735.16",
+	"25.0.0-beta.7": "114.0.5735.16",
+	"25.0.0-beta.8": "114.0.5735.35",
+	"25.0.0-beta.9": "114.0.5735.45",
+	"25.0.0": "114.0.5735.45",
+	"25.0.1": "114.0.5735.45",
+	"25.1.0": "114.0.5735.106",
+	"25.1.1": "114.0.5735.106",
+	"25.2.0": "114.0.5735.134",
+	"25.3.0": "114.0.5735.199",
+	"25.3.1": "114.0.5735.243",
+	"25.3.2": "114.0.5735.248",
+	"25.4.0": "114.0.5735.248",
+	"25.5.0": "114.0.5735.289",
+	"25.6.0": "114.0.5735.289",
+	"25.7.0": "114.0.5735.289",
+	"25.8.0": "114.0.5735.289",
+	"25.8.1": "114.0.5735.289",
+	"25.8.2": "114.0.5735.289",
+	"25.8.3": "114.0.5735.289",
+	"25.8.4": "114.0.5735.289",
+	"25.9.0": "114.0.5735.289",
+	"25.9.1": "114.0.5735.289",
+	"25.9.2": "114.0.5735.289",
+	"25.9.3": "114.0.5735.289",
+	"25.9.4": "114.0.5735.289",
+	"25.9.5": "114.0.5735.289",
+	"25.9.6": "114.0.5735.289",
+	"25.9.7": "114.0.5735.289",
+	"25.9.8": "114.0.5735.289",
+	"26.0.0-alpha.1": "116.0.5791.0",
+	"26.0.0-alpha.2": "116.0.5791.0",
+	"26.0.0-alpha.3": "116.0.5791.0",
+	"26.0.0-alpha.4": "116.0.5791.0",
+	"26.0.0-alpha.5": "116.0.5791.0",
+	"26.0.0-alpha.6": "116.0.5815.0",
+	"26.0.0-alpha.7": "116.0.5831.0",
+	"26.0.0-alpha.8": "116.0.5845.0",
+	"26.0.0-beta.1": "116.0.5845.0",
+	"26.0.0-beta.2": "116.0.5845.14",
+	"26.0.0-beta.3": "116.0.5845.14",
+	"26.0.0-beta.4": "116.0.5845.14",
+	"26.0.0-beta.5": "116.0.5845.14",
+	"26.0.0-beta.6": "116.0.5845.14",
+	"26.0.0-beta.7": "116.0.5845.14",
+	"26.0.0-beta.8": "116.0.5845.42",
+	"26.0.0-beta.9": "116.0.5845.42",
+	"26.0.0-beta.10": "116.0.5845.49",
+	"26.0.0-beta.11": "116.0.5845.49",
+	"26.0.0-beta.12": "116.0.5845.62",
+	"26.0.0": "116.0.5845.82",
+	"26.1.0": "116.0.5845.97",
+	"26.2.0": "116.0.5845.179",
+	"26.2.1": "116.0.5845.188",
+	"26.2.2": "116.0.5845.190",
+	"26.2.3": "116.0.5845.190",
+	"26.2.4": "116.0.5845.190",
+	"26.3.0": "116.0.5845.228",
+	"26.4.0": "116.0.5845.228",
+	"26.4.1": "116.0.5845.228",
+	"26.4.2": "116.0.5845.228",
+	"26.4.3": "116.0.5845.228",
+	"26.5.0": "116.0.5845.228",
+	"26.6.0": "116.0.5845.228",
+	"26.6.1": "116.0.5845.228",
+	"26.6.2": "116.0.5845.228",
+	"26.6.3": "116.0.5845.228",
+	"26.6.4": "116.0.5845.228",
+	"26.6.5": "116.0.5845.228",
+	"26.6.6": "116.0.5845.228",
+	"26.6.7": "116.0.5845.228",
+	"26.6.8": "116.0.5845.228",
+	"26.6.9": "116.0.5845.228",
+	"26.6.10": "116.0.5845.228",
+	"27.0.0-alpha.1": "118.0.5949.0",
+	"27.0.0-alpha.2": "118.0.5949.0",
+	"27.0.0-alpha.3": "118.0.5949.0",
+	"27.0.0-alpha.4": "118.0.5949.0",
+	"27.0.0-alpha.5": "118.0.5949.0",
+	"27.0.0-alpha.6": "118.0.5949.0",
+	"27.0.0-beta.1": "118.0.5993.5",
+	"27.0.0-beta.2": "118.0.5993.5",
+	"27.0.0-beta.3": "118.0.5993.5",
+	"27.0.0-beta.4": "118.0.5993.11",
+	"27.0.0-beta.5": "118.0.5993.18",
+	"27.0.0-beta.6": "118.0.5993.18",
+	"27.0.0-beta.7": "118.0.5993.18",
+	"27.0.0-beta.8": "118.0.5993.18",
+	"27.0.0-beta.9": "118.0.5993.18",
+	"27.0.0": "118.0.5993.54",
+	"27.0.1": "118.0.5993.89",
+	"27.0.2": "118.0.5993.89",
+	"27.0.3": "118.0.5993.120",
+	"27.0.4": "118.0.5993.129",
+	"27.1.0": "118.0.5993.144",
+	"27.1.2": "118.0.5993.144",
+	"27.1.3": "118.0.5993.159",
+	"27.2.0": "118.0.5993.159",
+	"27.2.1": "118.0.5993.159",
+	"27.2.2": "118.0.5993.159",
+	"27.2.3": "118.0.5993.159",
+	"27.2.4": "118.0.5993.159",
+	"27.3.0": "118.0.5993.159",
+	"27.3.1": "118.0.5993.159",
+	"27.3.2": "118.0.5993.159",
+	"27.3.3": "118.0.5993.159",
+	"27.3.4": "118.0.5993.159",
+	"27.3.5": "118.0.5993.159",
+	"27.3.6": "118.0.5993.159",
+	"27.3.7": "118.0.5993.159",
+	"27.3.8": "118.0.5993.159",
+	"27.3.9": "118.0.5993.159",
+	"27.3.10": "118.0.5993.159",
+	"27.3.11": "118.0.5993.159",
+	"28.0.0-alpha.1": "119.0.6045.0",
+	"28.0.0-alpha.2": "119.0.6045.0",
+	"28.0.0-alpha.3": "119.0.6045.21",
+	"28.0.0-alpha.4": "119.0.6045.21",
+	"28.0.0-alpha.5": "119.0.6045.33",
+	"28.0.0-alpha.6": "119.0.6045.33",
+	"28.0.0-alpha.7": "119.0.6045.33",
+	"28.0.0-beta.1": "119.0.6045.33",
+	"28.0.0-beta.2": "120.0.6099.0",
+	"28.0.0-beta.3": "120.0.6099.5",
+	"28.0.0-beta.4": "120.0.6099.5",
+	"28.0.0-beta.5": "120.0.6099.18",
+	"28.0.0-beta.6": "120.0.6099.18",
+	"28.0.0-beta.7": "120.0.6099.18",
+	"28.0.0-beta.8": "120.0.6099.18",
+	"28.0.0-beta.9": "120.0.6099.18",
+	"28.0.0-beta.10": "120.0.6099.18",
+	"28.0.0-beta.11": "120.0.6099.35",
+	"28.0.0": "120.0.6099.56",
+	"28.1.0": "120.0.6099.109",
+	"28.1.1": "120.0.6099.109",
+	"28.1.2": "120.0.6099.199",
+	"28.1.3": "120.0.6099.199",
+	"28.1.4": "120.0.6099.216",
+	"28.2.0": "120.0.6099.227",
+	"28.2.1": "120.0.6099.268",
+	"28.2.2": "120.0.6099.276",
+	"28.2.3": "120.0.6099.283",
+	"28.2.4": "120.0.6099.291",
+	"28.2.5": "120.0.6099.291",
+	"28.2.6": "120.0.6099.291",
+	"28.2.7": "120.0.6099.291",
+	"28.2.8": "120.0.6099.291",
+	"28.2.9": "120.0.6099.291",
+	"28.2.10": "120.0.6099.291",
+	"28.3.0": "120.0.6099.291",
+	"28.3.1": "120.0.6099.291",
+	"28.3.2": "120.0.6099.291",
+	"28.3.3": "120.0.6099.291",
+	"29.0.0-alpha.1": "121.0.6147.0",
+	"29.0.0-alpha.2": "121.0.6147.0",
+	"29.0.0-alpha.3": "121.0.6147.0",
+	"29.0.0-alpha.4": "121.0.6159.0",
+	"29.0.0-alpha.5": "121.0.6159.0",
+	"29.0.0-alpha.6": "121.0.6159.0",
+	"29.0.0-alpha.7": "121.0.6159.0",
+	"29.0.0-alpha.8": "122.0.6194.0",
+	"29.0.0-alpha.9": "122.0.6236.2",
+	"29.0.0-alpha.10": "122.0.6236.2",
+	"29.0.0-alpha.11": "122.0.6236.2",
+	"29.0.0-beta.1": "122.0.6236.2",
+	"29.0.0-beta.2": "122.0.6236.2",
+	"29.0.0-beta.3": "122.0.6261.6",
+	"29.0.0-beta.4": "122.0.6261.6",
+	"29.0.0-beta.5": "122.0.6261.18",
+	"29.0.0-beta.6": "122.0.6261.18",
+	"29.0.0-beta.7": "122.0.6261.18",
+	"29.0.0-beta.8": "122.0.6261.18",
+	"29.0.0-beta.9": "122.0.6261.18",
+	"29.0.0-beta.10": "122.0.6261.18",
+	"29.0.0-beta.11": "122.0.6261.18",
+	"29.0.0-beta.12": "122.0.6261.29",
+	"29.0.0": "122.0.6261.39",
+	"29.0.1": "122.0.6261.57",
+	"29.1.0": "122.0.6261.70",
+	"29.1.1": "122.0.6261.111",
+	"29.1.2": "122.0.6261.112",
+	"29.1.3": "122.0.6261.112",
+	"29.1.4": "122.0.6261.129",
+	"29.1.5": "122.0.6261.130",
+	"29.1.6": "122.0.6261.139",
+	"29.2.0": "122.0.6261.156",
+	"29.3.0": "122.0.6261.156",
+	"29.3.1": "122.0.6261.156",
+	"29.3.2": "122.0.6261.156",
+	"29.3.3": "122.0.6261.156",
+	"29.4.0": "122.0.6261.156",
+	"29.4.1": "122.0.6261.156",
+	"29.4.2": "122.0.6261.156",
+	"29.4.3": "122.0.6261.156",
+	"29.4.4": "122.0.6261.156",
+	"29.4.5": "122.0.6261.156",
+	"29.4.6": "122.0.6261.156",
+	"30.0.0-alpha.1": "123.0.6296.0",
+	"30.0.0-alpha.2": "123.0.6312.5",
+	"30.0.0-alpha.3": "124.0.6323.0",
+	"30.0.0-alpha.4": "124.0.6323.0",
+	"30.0.0-alpha.5": "124.0.6331.0",
+	"30.0.0-alpha.6": "124.0.6331.0",
+	"30.0.0-alpha.7": "124.0.6353.0",
+	"30.0.0-beta.1": "124.0.6359.0",
+	"30.0.0-beta.2": "124.0.6359.0",
+	"30.0.0-beta.3": "124.0.6367.9",
+	"30.0.0-beta.4": "124.0.6367.9",
+	"30.0.0-beta.5": "124.0.6367.9",
+	"30.0.0-beta.6": "124.0.6367.18",
+	"30.0.0-beta.7": "124.0.6367.29",
+	"30.0.0-beta.8": "124.0.6367.29",
+	"30.0.0": "124.0.6367.49",
+	"30.0.1": "124.0.6367.60",
+	"30.0.2": "124.0.6367.91",
+	"30.0.3": "124.0.6367.119",
+	"30.0.4": "124.0.6367.201",
+	"30.0.5": "124.0.6367.207",
+	"30.0.6": "124.0.6367.207",
+	"30.0.7": "124.0.6367.221",
+	"30.0.8": "124.0.6367.230",
+	"30.0.9": "124.0.6367.233",
+	"30.1.0": "124.0.6367.243",
+	"30.1.1": "124.0.6367.243",
+	"30.1.2": "124.0.6367.243",
+	"30.2.0": "124.0.6367.243",
+	"30.3.0": "124.0.6367.243",
+	"30.3.1": "124.0.6367.243",
+	"30.4.0": "124.0.6367.243",
+	"30.5.0": "124.0.6367.243",
+	"30.5.1": "124.0.6367.243",
+	"31.0.0-alpha.1": "125.0.6412.0",
+	"31.0.0-alpha.2": "125.0.6412.0",
+	"31.0.0-alpha.3": "125.0.6412.0",
+	"31.0.0-alpha.4": "125.0.6412.0",
+	"31.0.0-alpha.5": "125.0.6412.0",
+	"31.0.0-beta.1": "126.0.6445.0",
+	"31.0.0-beta.2": "126.0.6445.0",
+	"31.0.0-beta.3": "126.0.6445.0",
+	"31.0.0-beta.4": "126.0.6445.0",
+	"31.0.0-beta.5": "126.0.6445.0",
+	"31.0.0-beta.6": "126.0.6445.0",
+	"31.0.0-beta.7": "126.0.6445.0",
+	"31.0.0-beta.8": "126.0.6445.0",
+	"31.0.0-beta.9": "126.0.6445.0",
+	"31.0.0-beta.10": "126.0.6478.36",
+	"31.0.0": "126.0.6478.36",
+	"31.0.1": "126.0.6478.36",
+	"31.0.2": "126.0.6478.61",
+	"31.1.0": "126.0.6478.114",
+	"31.2.0": "126.0.6478.127",
+	"31.2.1": "126.0.6478.127",
+	"31.3.0": "126.0.6478.183",
+	"31.3.1": "126.0.6478.185",
+	"31.4.0": "126.0.6478.234",
+	"31.5.0": "126.0.6478.234",
+	"31.6.0": "126.0.6478.234",
+	"31.7.0": "126.0.6478.234",
+	"31.7.1": "126.0.6478.234",
+	"31.7.2": "126.0.6478.234",
+	"31.7.3": "126.0.6478.234",
+	"31.7.4": "126.0.6478.234",
+	"31.7.5": "126.0.6478.234",
+	"31.7.6": "126.0.6478.234",
+	"31.7.7": "126.0.6478.234",
+	"32.0.0-alpha.1": "127.0.6521.0",
+	"32.0.0-alpha.2": "127.0.6521.0",
+	"32.0.0-alpha.3": "127.0.6521.0",
+	"32.0.0-alpha.4": "127.0.6521.0",
+	"32.0.0-alpha.5": "127.0.6521.0",
+	"32.0.0-alpha.6": "128.0.6571.0",
+	"32.0.0-alpha.7": "128.0.6571.0",
+	"32.0.0-alpha.8": "128.0.6573.0",
+	"32.0.0-alpha.9": "128.0.6573.0",
+	"32.0.0-alpha.10": "128.0.6573.0",
+	"32.0.0-beta.1": "128.0.6573.0",
+	"32.0.0-beta.2": "128.0.6611.0",
+	"32.0.0-beta.3": "128.0.6613.7",
+	"32.0.0-beta.4": "128.0.6613.18",
+	"32.0.0-beta.5": "128.0.6613.27",
+	"32.0.0-beta.6": "128.0.6613.27",
+	"32.0.0-beta.7": "128.0.6613.27",
+	"32.0.0": "128.0.6613.36",
+	"32.0.1": "128.0.6613.36",
+	"32.0.2": "128.0.6613.84",
+	"32.1.0": "128.0.6613.120",
+	"32.1.1": "128.0.6613.137",
+	"32.1.2": "128.0.6613.162",
+	"32.2.0": "128.0.6613.178",
+	"32.2.1": "128.0.6613.186",
+	"32.2.2": "128.0.6613.186",
+	"32.2.3": "128.0.6613.186",
+	"32.2.4": "128.0.6613.186",
+	"32.2.5": "128.0.6613.186",
+	"32.2.6": "128.0.6613.186",
+	"32.2.7": "128.0.6613.186",
+	"32.2.8": "128.0.6613.186",
+	"32.3.0": "128.0.6613.186",
+	"32.3.1": "128.0.6613.186",
+	"32.3.2": "128.0.6613.186",
+	"32.3.3": "128.0.6613.186",
+	"33.0.0-alpha.1": "129.0.6668.0",
+	"33.0.0-alpha.2": "130.0.6672.0",
+	"33.0.0-alpha.3": "130.0.6672.0",
+	"33.0.0-alpha.4": "130.0.6672.0",
+	"33.0.0-alpha.5": "130.0.6672.0",
+	"33.0.0-alpha.6": "130.0.6672.0",
+	"33.0.0-beta.1": "130.0.6672.0",
+	"33.0.0-beta.2": "130.0.6672.0",
+	"33.0.0-beta.3": "130.0.6672.0",
+	"33.0.0-beta.4": "130.0.6672.0",
+	"33.0.0-beta.5": "130.0.6723.19",
+	"33.0.0-beta.6": "130.0.6723.19",
+	"33.0.0-beta.7": "130.0.6723.19",
+	"33.0.0-beta.8": "130.0.6723.31",
+	"33.0.0-beta.9": "130.0.6723.31",
+	"33.0.0-beta.10": "130.0.6723.31",
+	"33.0.0-beta.11": "130.0.6723.44",
+	"33.0.0": "130.0.6723.44",
+	"33.0.1": "130.0.6723.59",
+	"33.0.2": "130.0.6723.59",
+	"33.1.0": "130.0.6723.91",
+	"33.2.0": "130.0.6723.118",
+	"33.2.1": "130.0.6723.137",
+	"33.3.0": "130.0.6723.152",
+	"33.3.1": "130.0.6723.170",
+	"33.3.2": "130.0.6723.191",
+	"33.4.0": "130.0.6723.191",
+	"33.4.1": "130.0.6723.191",
+	"33.4.2": "130.0.6723.191",
+	"33.4.3": "130.0.6723.191",
+	"33.4.4": "130.0.6723.191",
+	"33.4.5": "130.0.6723.191",
+	"33.4.6": "130.0.6723.191",
+	"33.4.7": "130.0.6723.191",
+	"33.4.8": "130.0.6723.191",
+	"33.4.9": "130.0.6723.191",
+	"33.4.10": "130.0.6723.191",
+	"33.4.11": "130.0.6723.191",
+	"34.0.0-alpha.1": "131.0.6776.0",
+	"34.0.0-alpha.2": "132.0.6779.0",
+	"34.0.0-alpha.3": "132.0.6789.1",
+	"34.0.0-alpha.4": "132.0.6789.1",
+	"34.0.0-alpha.5": "132.0.6789.1",
+	"34.0.0-alpha.6": "132.0.6789.1",
+	"34.0.0-alpha.7": "132.0.6789.1",
+	"34.0.0-alpha.8": "132.0.6820.0",
+	"34.0.0-alpha.9": "132.0.6824.0",
+	"34.0.0-beta.1": "132.0.6824.0",
+	"34.0.0-beta.2": "132.0.6824.0",
+	"34.0.0-beta.3": "132.0.6824.0",
+	"34.0.0-beta.4": "132.0.6834.6",
+	"34.0.0-beta.5": "132.0.6834.6",
+	"34.0.0-beta.6": "132.0.6834.15",
+	"34.0.0-beta.7": "132.0.6834.15",
+	"34.0.0-beta.8": "132.0.6834.15",
+	"34.0.0-beta.9": "132.0.6834.32",
+	"34.0.0-beta.10": "132.0.6834.32",
+	"34.0.0-beta.11": "132.0.6834.32",
+	"34.0.0-beta.12": "132.0.6834.46",
+	"34.0.0-beta.13": "132.0.6834.46",
+	"34.0.0-beta.14": "132.0.6834.57",
+	"34.0.0-beta.15": "132.0.6834.57",
+	"34.0.0-beta.16": "132.0.6834.57",
+	"34.0.0": "132.0.6834.83",
+	"34.0.1": "132.0.6834.83",
+	"34.0.2": "132.0.6834.159",
+	"34.1.0": "132.0.6834.194",
+	"34.1.1": "132.0.6834.194",
+	"34.2.0": "132.0.6834.196",
+	"34.3.0": "132.0.6834.210",
+	"34.3.1": "132.0.6834.210",
+	"34.3.2": "132.0.6834.210",
+	"34.3.3": "132.0.6834.210",
+	"34.3.4": "132.0.6834.210",
+	"34.4.0": "132.0.6834.210",
+	"34.4.1": "132.0.6834.210",
+	"34.5.0": "132.0.6834.210",
+	"34.5.1": "132.0.6834.210",
+	"34.5.2": "132.0.6834.210",
+	"34.5.3": "132.0.6834.210",
+	"34.5.4": "132.0.6834.210",
+	"34.5.5": "132.0.6834.210",
+	"34.5.6": "132.0.6834.210",
+	"34.5.7": "132.0.6834.210",
+	"34.5.8": "132.0.6834.210",
+	"35.0.0-alpha.1": "133.0.6920.0",
+	"35.0.0-alpha.2": "133.0.6920.0",
+	"35.0.0-alpha.3": "133.0.6920.0",
+	"35.0.0-alpha.4": "133.0.6920.0",
+	"35.0.0-alpha.5": "133.0.6920.0",
+	"35.0.0-beta.1": "133.0.6920.0",
+	"35.0.0-beta.2": "134.0.6968.0",
+	"35.0.0-beta.3": "134.0.6968.0",
+	"35.0.0-beta.4": "134.0.6968.0",
+	"35.0.0-beta.5": "134.0.6989.0",
+	"35.0.0-beta.6": "134.0.6990.0",
+	"35.0.0-beta.7": "134.0.6990.0",
+	"35.0.0-beta.8": "134.0.6998.10",
+	"35.0.0-beta.9": "134.0.6998.10",
+	"35.0.0-beta.10": "134.0.6998.23",
+	"35.0.0-beta.11": "134.0.6998.23",
+	"35.0.0-beta.12": "134.0.6998.23",
+	"35.0.0-beta.13": "134.0.6998.44",
+	"35.0.0": "134.0.6998.44",
+	"35.0.1": "134.0.6998.44",
+	"35.0.2": "134.0.6998.88",
+	"35.0.3": "134.0.6998.88",
+	"35.1.0": "134.0.6998.165",
+	"35.1.1": "134.0.6998.165",
+	"35.1.2": "134.0.6998.178",
+	"35.1.3": "134.0.6998.179",
+	"35.1.4": "134.0.6998.179",
+	"35.1.5": "134.0.6998.179",
+	"35.2.0": "134.0.6998.205",
+	"35.2.1": "134.0.6998.205",
+	"35.2.2": "134.0.6998.205",
+	"35.3.0": "134.0.6998.205",
+	"35.4.0": "134.0.6998.205",
+	"35.5.0": "134.0.6998.205",
+	"35.5.1": "134.0.6998.205",
+	"35.6.0": "134.0.6998.205",
+	"35.7.0": "134.0.6998.205",
+	"35.7.1": "134.0.6998.205",
+	"35.7.2": "134.0.6998.205",
+	"35.7.4": "134.0.6998.205",
+	"35.7.5": "134.0.6998.205",
+	"36.0.0-alpha.1": "135.0.7049.5",
+	"36.0.0-alpha.2": "136.0.7062.0",
+	"36.0.0-alpha.3": "136.0.7062.0",
+	"36.0.0-alpha.4": "136.0.7062.0",
+	"36.0.0-alpha.5": "136.0.7067.0",
+	"36.0.0-alpha.6": "136.0.7067.0",
+	"36.0.0-beta.1": "136.0.7067.0",
+	"36.0.0-beta.2": "136.0.7067.0",
+	"36.0.0-beta.3": "136.0.7067.0",
+	"36.0.0-beta.4": "136.0.7067.0",
+	"36.0.0-beta.5": "136.0.7103.17",
+	"36.0.0-beta.6": "136.0.7103.25",
+	"36.0.0-beta.7": "136.0.7103.25",
+	"36.0.0-beta.8": "136.0.7103.33",
+	"36.0.0-beta.9": "136.0.7103.33",
+	"36.0.0": "136.0.7103.48",
+	"36.0.1": "136.0.7103.48",
+	"36.1.0": "136.0.7103.49",
+	"36.2.0": "136.0.7103.49",
+	"36.2.1": "136.0.7103.93",
+	"36.3.0": "136.0.7103.113",
+	"36.3.1": "136.0.7103.113",
+	"36.3.2": "136.0.7103.115",
+	"36.4.0": "136.0.7103.149",
+	"36.5.0": "136.0.7103.168",
+	"36.6.0": "136.0.7103.177",
+	"36.7.0": "136.0.7103.177",
+	"36.7.1": "136.0.7103.177",
+	"36.7.3": "136.0.7103.177",
+	"36.7.4": "136.0.7103.177",
+	"36.8.0": "136.0.7103.177",
+	"36.8.1": "136.0.7103.177",
+	"36.9.0": "136.0.7103.177",
+	"36.9.1": "136.0.7103.177",
+	"36.9.2": "136.0.7103.177",
+	"36.9.3": "136.0.7103.177",
+	"36.9.4": "136.0.7103.177",
+	"36.9.5": "136.0.7103.177",
+	"37.0.0-alpha.1": "137.0.7151.0",
+	"37.0.0-alpha.2": "137.0.7151.0",
+	"37.0.0-alpha.3": "138.0.7156.0",
+	"37.0.0-alpha.4": "138.0.7165.0",
+	"37.0.0-alpha.5": "138.0.7177.0",
+	"37.0.0-alpha.6": "138.0.7178.0",
+	"37.0.0-alpha.7": "138.0.7178.0",
+	"37.0.0-beta.1": "138.0.7178.0",
+	"37.0.0-beta.2": "138.0.7178.0",
+	"37.0.0-beta.3": "138.0.7190.0",
+	"37.0.0-beta.4": "138.0.7204.15",
+	"37.0.0-beta.5": "138.0.7204.15",
+	"37.0.0-beta.6": "138.0.7204.15",
+	"37.0.0-beta.7": "138.0.7204.15",
+	"37.0.0-beta.8": "138.0.7204.23",
+	"37.0.0-beta.9": "138.0.7204.35",
+	"37.0.0": "138.0.7204.35",
+	"37.1.0": "138.0.7204.35",
+	"37.2.0": "138.0.7204.97",
+	"37.2.1": "138.0.7204.97",
+	"37.2.2": "138.0.7204.100",
+	"37.2.3": "138.0.7204.100",
+	"37.2.4": "138.0.7204.157",
+	"37.2.5": "138.0.7204.168",
+	"37.2.6": "138.0.7204.185",
+	"37.3.0": "138.0.7204.224",
+	"37.3.1": "138.0.7204.235",
+	"37.4.0": "138.0.7204.243",
+	"37.5.0": "138.0.7204.251",
+	"37.5.1": "138.0.7204.251",
+	"37.6.0": "138.0.7204.251",
+	"37.6.1": "138.0.7204.251",
+	"37.7.0": "138.0.7204.251",
+	"37.7.1": "138.0.7204.251",
+	"37.8.0": "138.0.7204.251",
+	"37.9.0": "138.0.7204.251",
+	"37.10.0": "138.0.7204.251",
+	"37.10.1": "138.0.7204.251",
+	"37.10.2": "138.0.7204.251",
+	"37.10.3": "138.0.7204.251",
+	"38.0.0-alpha.1": "139.0.7219.0",
+	"38.0.0-alpha.2": "139.0.7219.0",
+	"38.0.0-alpha.3": "139.0.7219.0",
+	"38.0.0-alpha.4": "140.0.7261.0",
+	"38.0.0-alpha.5": "140.0.7261.0",
+	"38.0.0-alpha.6": "140.0.7261.0",
+	"38.0.0-alpha.7": "140.0.7281.0",
+	"38.0.0-alpha.8": "140.0.7281.0",
+	"38.0.0-alpha.9": "140.0.7301.0",
+	"38.0.0-alpha.10": "140.0.7309.0",
+	"38.0.0-alpha.11": "140.0.7312.0",
+	"38.0.0-alpha.12": "140.0.7314.0",
+	"38.0.0-alpha.13": "140.0.7314.0",
+	"38.0.0-beta.1": "140.0.7314.0",
+	"38.0.0-beta.2": "140.0.7327.0",
+	"38.0.0-beta.3": "140.0.7327.0",
+	"38.0.0-beta.4": "140.0.7339.2",
+	"38.0.0-beta.5": "140.0.7339.2",
+	"38.0.0-beta.6": "140.0.7339.2",
+	"38.0.0-beta.7": "140.0.7339.16",
+	"38.0.0-beta.8": "140.0.7339.24",
+	"38.0.0-beta.9": "140.0.7339.24",
+	"38.0.0-beta.11": "140.0.7339.41",
+	"38.0.0": "140.0.7339.41",
+	"38.1.0": "140.0.7339.80",
+	"38.1.1": "140.0.7339.133",
+	"38.1.2": "140.0.7339.133",
+	"38.2.0": "140.0.7339.133",
+	"38.2.1": "140.0.7339.133",
+	"38.2.2": "140.0.7339.133",
+	"38.3.0": "140.0.7339.240",
+	"38.4.0": "140.0.7339.240",
+	"38.5.0": "140.0.7339.249",
+	"38.6.0": "140.0.7339.249",
+	"38.7.0": "140.0.7339.249",
+	"38.7.1": "140.0.7339.249",
+	"38.7.2": "140.0.7339.249",
+	"39.0.0-alpha.1": "141.0.7361.0",
+	"39.0.0-alpha.2": "141.0.7361.0",
+	"39.0.0-alpha.3": "141.0.7390.7",
+	"39.0.0-alpha.4": "141.0.7390.7",
+	"39.0.0-alpha.5": "141.0.7390.7",
+	"39.0.0-alpha.6": "142.0.7417.0",
+	"39.0.0-alpha.7": "142.0.7417.0",
+	"39.0.0-alpha.8": "142.0.7417.0",
+	"39.0.0-alpha.9": "142.0.7417.0",
+	"39.0.0-beta.1": "142.0.7417.0",
+	"39.0.0-beta.2": "142.0.7417.0",
+	"39.0.0-beta.3": "142.0.7417.0",
+	"39.0.0-beta.4": "142.0.7444.34",
+	"39.0.0-beta.5": "142.0.7444.34",
+	"39.0.0": "142.0.7444.52",
+	"39.1.0": "142.0.7444.59",
+	"39.1.1": "142.0.7444.59",
+	"39.1.2": "142.0.7444.134",
+	"39.2.0": "142.0.7444.162",
+	"39.2.1": "142.0.7444.162",
+	"39.2.2": "142.0.7444.162",
+	"39.2.3": "142.0.7444.175",
+	"39.2.4": "142.0.7444.177",
+	"39.2.5": "142.0.7444.177",
+	"39.2.6": "142.0.7444.226",
+	"40.0.0-alpha.2": "143.0.7499.0",
+	"40.0.0-alpha.4": "144.0.7506.0",
+	"40.0.0-alpha.5": "144.0.7526.0",
+	"40.0.0-alpha.6": "144.0.7526.0",
+	"40.0.0-alpha.7": "144.0.7526.0",
+	"40.0.0-alpha.8": "144.0.7526.0",
+	"40.0.0-beta.1": "144.0.7527.0",
+	"40.0.0-beta.2": "144.0.7527.0",
+	"40.0.0-beta.3": "144.0.7547.0"
+};
Index: node_modules/electron-to-chromium/full-versions.json
===================================================================
--- node_modules/electron-to-chromium/full-versions.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/full-versions.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.11":"82.0.4085.14","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.10":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.25":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","18.3.8":"100.0.4896.160","18.3.9":"100.0.4896.160","18.3.11":"100.0.4896.160","18.3.12":"100.0.4896.160","18.3.13":"100.0.4896.160","18.3.14":"100.0.4896.160","18.3.15":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","19.0.12":"102.0.5005.167","19.0.13":"102.0.5005.167","19.0.14":"102.0.5005.167","19.0.15":"102.0.5005.167","19.0.16":"102.0.5005.167","19.0.17":"102.0.5005.167","19.1.0":"102.0.5005.167","19.1.1":"102.0.5005.167","19.1.2":"102.0.5005.167","19.1.3":"102.0.5005.167","19.1.4":"102.0.5005.167","19.1.5":"102.0.5005.167","19.1.6":"102.0.5005.167","19.1.7":"102.0.5005.167","19.1.8":"102.0.5005.167","19.1.9":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","20.0.2":"104.0.5112.81","20.0.3":"104.0.5112.81","20.1.0":"104.0.5112.102","20.1.1":"104.0.5112.102","20.1.2":"104.0.5112.114","20.1.3":"104.0.5112.114","20.1.4":"104.0.5112.114","20.2.0":"104.0.5112.124","20.3.0":"104.0.5112.124","20.3.1":"104.0.5112.124","20.3.2":"104.0.5112.124","20.3.3":"104.0.5112.124","20.3.4":"104.0.5112.124","20.3.5":"104.0.5112.124","20.3.6":"104.0.5112.124","20.3.7":"104.0.5112.124","20.3.8":"104.0.5112.124","20.3.9":"104.0.5112.124","20.3.10":"104.0.5112.124","20.3.11":"104.0.5112.124","20.3.12":"104.0.5112.124","21.0.0-alpha.1":"105.0.5187.0","21.0.0-alpha.2":"105.0.5187.0","21.0.0-alpha.3":"105.0.5187.0","21.0.0-alpha.4":"105.0.5187.0","21.0.0-alpha.5":"105.0.5187.0","21.0.0-alpha.6":"106.0.5216.0","21.0.0-beta.1":"106.0.5216.0","21.0.0-beta.2":"106.0.5216.0","21.0.0-beta.3":"106.0.5216.0","21.0.0-beta.4":"106.0.5216.0","21.0.0-beta.5":"106.0.5216.0","21.0.0-beta.6":"106.0.5249.40","21.0.0-beta.7":"106.0.5249.40","21.0.0-beta.8":"106.0.5249.40","21.0.0":"106.0.5249.51","21.0.1":"106.0.5249.61","21.1.0":"106.0.5249.91","21.1.1":"106.0.5249.103","21.2.0":"106.0.5249.119","21.2.1":"106.0.5249.165","21.2.2":"106.0.5249.168","21.2.3":"106.0.5249.168","21.3.0":"106.0.5249.181","21.3.1":"106.0.5249.181","21.3.3":"106.0.5249.199","21.3.4":"106.0.5249.199","21.3.5":"106.0.5249.199","21.4.0":"106.0.5249.199","21.4.1":"106.0.5249.199","21.4.2":"106.0.5249.199","21.4.3":"106.0.5249.199","21.4.4":"106.0.5249.199","22.0.0-alpha.1":"107.0.5286.0","22.0.0-alpha.3":"108.0.5329.0","22.0.0-alpha.4":"108.0.5329.0","22.0.0-alpha.5":"108.0.5329.0","22.0.0-alpha.6":"108.0.5329.0","22.0.0-alpha.7":"108.0.5355.0","22.0.0-alpha.8":"108.0.5359.10","22.0.0-beta.1":"108.0.5359.10","22.0.0-beta.2":"108.0.5359.10","22.0.0-beta.3":"108.0.5359.10","22.0.0-beta.4":"108.0.5359.29","22.0.0-beta.5":"108.0.5359.40","22.0.0-beta.6":"108.0.5359.40","22.0.0-beta.7":"108.0.5359.48","22.0.0-beta.8":"108.0.5359.48","22.0.0":"108.0.5359.62","22.0.1":"108.0.5359.125","22.0.2":"108.0.5359.179","22.0.3":"108.0.5359.179","22.1.0":"108.0.5359.179","22.2.0":"108.0.5359.215","22.2.1":"108.0.5359.215","22.3.0":"108.0.5359.215","22.3.1":"108.0.5359.215","22.3.2":"108.0.5359.215","22.3.3":"108.0.5359.215","22.3.4":"108.0.5359.215","22.3.5":"108.0.5359.215","22.3.6":"108.0.5359.215","22.3.7":"108.0.5359.215","22.3.8":"108.0.5359.215","22.3.9":"108.0.5359.215","22.3.10":"108.0.5359.215","22.3.11":"108.0.5359.215","22.3.12":"108.0.5359.215","22.3.13":"108.0.5359.215","22.3.14":"108.0.5359.215","22.3.15":"108.0.5359.215","22.3.16":"108.0.5359.215","22.3.17":"108.0.5359.215","22.3.18":"108.0.5359.215","22.3.20":"108.0.5359.215","22.3.21":"108.0.5359.215","22.3.22":"108.0.5359.215","22.3.23":"108.0.5359.215","22.3.24":"108.0.5359.215","22.3.25":"108.0.5359.215","22.3.26":"108.0.5359.215","22.3.27":"108.0.5359.215","23.0.0-alpha.1":"110.0.5415.0","23.0.0-alpha.2":"110.0.5451.0","23.0.0-alpha.3":"110.0.5451.0","23.0.0-beta.1":"110.0.5478.5","23.0.0-beta.2":"110.0.5478.5","23.0.0-beta.3":"110.0.5478.5","23.0.0-beta.4":"110.0.5481.30","23.0.0-beta.5":"110.0.5481.38","23.0.0-beta.6":"110.0.5481.52","23.0.0-beta.8":"110.0.5481.52","23.0.0":"110.0.5481.77","23.1.0":"110.0.5481.100","23.1.1":"110.0.5481.104","23.1.2":"110.0.5481.177","23.1.3":"110.0.5481.179","23.1.4":"110.0.5481.192","23.2.0":"110.0.5481.192","23.2.1":"110.0.5481.208","23.2.2":"110.0.5481.208","23.2.3":"110.0.5481.208","23.2.4":"110.0.5481.208","23.3.0":"110.0.5481.208","23.3.1":"110.0.5481.208","23.3.2":"110.0.5481.208","23.3.3":"110.0.5481.208","23.3.4":"110.0.5481.208","23.3.5":"110.0.5481.208","23.3.6":"110.0.5481.208","23.3.7":"110.0.5481.208","23.3.8":"110.0.5481.208","23.3.9":"110.0.5481.208","23.3.10":"110.0.5481.208","23.3.11":"110.0.5481.208","23.3.12":"110.0.5481.208","23.3.13":"110.0.5481.208","24.0.0-alpha.1":"111.0.5560.0","24.0.0-alpha.2":"111.0.5560.0","24.0.0-alpha.3":"111.0.5560.0","24.0.0-alpha.4":"111.0.5560.0","24.0.0-alpha.5":"111.0.5560.0","24.0.0-alpha.6":"111.0.5560.0","24.0.0-alpha.7":"111.0.5560.0","24.0.0-beta.1":"111.0.5563.50","24.0.0-beta.2":"111.0.5563.50","24.0.0-beta.3":"112.0.5615.20","24.0.0-beta.4":"112.0.5615.20","24.0.0-beta.5":"112.0.5615.29","24.0.0-beta.6":"112.0.5615.39","24.0.0-beta.7":"112.0.5615.39","24.0.0":"112.0.5615.49","24.1.0":"112.0.5615.50","24.1.1":"112.0.5615.50","24.1.2":"112.0.5615.87","24.1.3":"112.0.5615.165","24.2.0":"112.0.5615.165","24.3.0":"112.0.5615.165","24.3.1":"112.0.5615.183","24.4.0":"112.0.5615.204","24.4.1":"112.0.5615.204","24.5.0":"112.0.5615.204","24.5.1":"112.0.5615.204","24.6.0":"112.0.5615.204","24.6.1":"112.0.5615.204","24.6.2":"112.0.5615.204","24.6.3":"112.0.5615.204","24.6.4":"112.0.5615.204","24.6.5":"112.0.5615.204","24.7.0":"112.0.5615.204","24.7.1":"112.0.5615.204","24.8.0":"112.0.5615.204","24.8.1":"112.0.5615.204","24.8.2":"112.0.5615.204","24.8.3":"112.0.5615.204","24.8.4":"112.0.5615.204","24.8.5":"112.0.5615.204","24.8.6":"112.0.5615.204","24.8.7":"112.0.5615.204","24.8.8":"112.0.5615.204","25.0.0-alpha.1":"114.0.5694.0","25.0.0-alpha.2":"114.0.5694.0","25.0.0-alpha.3":"114.0.5710.0","25.0.0-alpha.4":"114.0.5710.0","25.0.0-alpha.5":"114.0.5719.0","25.0.0-alpha.6":"114.0.5719.0","25.0.0-beta.1":"114.0.5719.0","25.0.0-beta.2":"114.0.5719.0","25.0.0-beta.3":"114.0.5719.0","25.0.0-beta.4":"114.0.5735.16","25.0.0-beta.5":"114.0.5735.16","25.0.0-beta.6":"114.0.5735.16","25.0.0-beta.7":"114.0.5735.16","25.0.0-beta.8":"114.0.5735.35","25.0.0-beta.9":"114.0.5735.45","25.0.0":"114.0.5735.45","25.0.1":"114.0.5735.45","25.1.0":"114.0.5735.106","25.1.1":"114.0.5735.106","25.2.0":"114.0.5735.134","25.3.0":"114.0.5735.199","25.3.1":"114.0.5735.243","25.3.2":"114.0.5735.248","25.4.0":"114.0.5735.248","25.5.0":"114.0.5735.289","25.6.0":"114.0.5735.289","25.7.0":"114.0.5735.289","25.8.0":"114.0.5735.289","25.8.1":"114.0.5735.289","25.8.2":"114.0.5735.289","25.8.3":"114.0.5735.289","25.8.4":"114.0.5735.289","25.9.0":"114.0.5735.289","25.9.1":"114.0.5735.289","25.9.2":"114.0.5735.289","25.9.3":"114.0.5735.289","25.9.4":"114.0.5735.289","25.9.5":"114.0.5735.289","25.9.6":"114.0.5735.289","25.9.7":"114.0.5735.289","25.9.8":"114.0.5735.289","26.0.0-alpha.1":"116.0.5791.0","26.0.0-alpha.2":"116.0.5791.0","26.0.0-alpha.3":"116.0.5791.0","26.0.0-alpha.4":"116.0.5791.0","26.0.0-alpha.5":"116.0.5791.0","26.0.0-alpha.6":"116.0.5815.0","26.0.0-alpha.7":"116.0.5831.0","26.0.0-alpha.8":"116.0.5845.0","26.0.0-beta.1":"116.0.5845.0","26.0.0-beta.2":"116.0.5845.14","26.0.0-beta.3":"116.0.5845.14","26.0.0-beta.4":"116.0.5845.14","26.0.0-beta.5":"116.0.5845.14","26.0.0-beta.6":"116.0.5845.14","26.0.0-beta.7":"116.0.5845.14","26.0.0-beta.8":"116.0.5845.42","26.0.0-beta.9":"116.0.5845.42","26.0.0-beta.10":"116.0.5845.49","26.0.0-beta.11":"116.0.5845.49","26.0.0-beta.12":"116.0.5845.62","26.0.0":"116.0.5845.82","26.1.0":"116.0.5845.97","26.2.0":"116.0.5845.179","26.2.1":"116.0.5845.188","26.2.2":"116.0.5845.190","26.2.3":"116.0.5845.190","26.2.4":"116.0.5845.190","26.3.0":"116.0.5845.228","26.4.0":"116.0.5845.228","26.4.1":"116.0.5845.228","26.4.2":"116.0.5845.228","26.4.3":"116.0.5845.228","26.5.0":"116.0.5845.228","26.6.0":"116.0.5845.228","26.6.1":"116.0.5845.228","26.6.2":"116.0.5845.228","26.6.3":"116.0.5845.228","26.6.4":"116.0.5845.228","26.6.5":"116.0.5845.228","26.6.6":"116.0.5845.228","26.6.7":"116.0.5845.228","26.6.8":"116.0.5845.228","26.6.9":"116.0.5845.228","26.6.10":"116.0.5845.228","27.0.0-alpha.1":"118.0.5949.0","27.0.0-alpha.2":"118.0.5949.0","27.0.0-alpha.3":"118.0.5949.0","27.0.0-alpha.4":"118.0.5949.0","27.0.0-alpha.5":"118.0.5949.0","27.0.0-alpha.6":"118.0.5949.0","27.0.0-beta.1":"118.0.5993.5","27.0.0-beta.2":"118.0.5993.5","27.0.0-beta.3":"118.0.5993.5","27.0.0-beta.4":"118.0.5993.11","27.0.0-beta.5":"118.0.5993.18","27.0.0-beta.6":"118.0.5993.18","27.0.0-beta.7":"118.0.5993.18","27.0.0-beta.8":"118.0.5993.18","27.0.0-beta.9":"118.0.5993.18","27.0.0":"118.0.5993.54","27.0.1":"118.0.5993.89","27.0.2":"118.0.5993.89","27.0.3":"118.0.5993.120","27.0.4":"118.0.5993.129","27.1.0":"118.0.5993.144","27.1.2":"118.0.5993.144","27.1.3":"118.0.5993.159","27.2.0":"118.0.5993.159","27.2.1":"118.0.5993.159","27.2.2":"118.0.5993.159","27.2.3":"118.0.5993.159","27.2.4":"118.0.5993.159","27.3.0":"118.0.5993.159","27.3.1":"118.0.5993.159","27.3.2":"118.0.5993.159","27.3.3":"118.0.5993.159","27.3.4":"118.0.5993.159","27.3.5":"118.0.5993.159","27.3.6":"118.0.5993.159","27.3.7":"118.0.5993.159","27.3.8":"118.0.5993.159","27.3.9":"118.0.5993.159","27.3.10":"118.0.5993.159","27.3.11":"118.0.5993.159","28.0.0-alpha.1":"119.0.6045.0","28.0.0-alpha.2":"119.0.6045.0","28.0.0-alpha.3":"119.0.6045.21","28.0.0-alpha.4":"119.0.6045.21","28.0.0-alpha.5":"119.0.6045.33","28.0.0-alpha.6":"119.0.6045.33","28.0.0-alpha.7":"119.0.6045.33","28.0.0-beta.1":"119.0.6045.33","28.0.0-beta.2":"120.0.6099.0","28.0.0-beta.3":"120.0.6099.5","28.0.0-beta.4":"120.0.6099.5","28.0.0-beta.5":"120.0.6099.18","28.0.0-beta.6":"120.0.6099.18","28.0.0-beta.7":"120.0.6099.18","28.0.0-beta.8":"120.0.6099.18","28.0.0-beta.9":"120.0.6099.18","28.0.0-beta.10":"120.0.6099.18","28.0.0-beta.11":"120.0.6099.35","28.0.0":"120.0.6099.56","28.1.0":"120.0.6099.109","28.1.1":"120.0.6099.109","28.1.2":"120.0.6099.199","28.1.3":"120.0.6099.199","28.1.4":"120.0.6099.216","28.2.0":"120.0.6099.227","28.2.1":"120.0.6099.268","28.2.2":"120.0.6099.276","28.2.3":"120.0.6099.283","28.2.4":"120.0.6099.291","28.2.5":"120.0.6099.291","28.2.6":"120.0.6099.291","28.2.7":"120.0.6099.291","28.2.8":"120.0.6099.291","28.2.9":"120.0.6099.291","28.2.10":"120.0.6099.291","28.3.0":"120.0.6099.291","28.3.1":"120.0.6099.291","28.3.2":"120.0.6099.291","28.3.3":"120.0.6099.291","29.0.0-alpha.1":"121.0.6147.0","29.0.0-alpha.2":"121.0.6147.0","29.0.0-alpha.3":"121.0.6147.0","29.0.0-alpha.4":"121.0.6159.0","29.0.0-alpha.5":"121.0.6159.0","29.0.0-alpha.6":"121.0.6159.0","29.0.0-alpha.7":"121.0.6159.0","29.0.0-alpha.8":"122.0.6194.0","29.0.0-alpha.9":"122.0.6236.2","29.0.0-alpha.10":"122.0.6236.2","29.0.0-alpha.11":"122.0.6236.2","29.0.0-beta.1":"122.0.6236.2","29.0.0-beta.2":"122.0.6236.2","29.0.0-beta.3":"122.0.6261.6","29.0.0-beta.4":"122.0.6261.6","29.0.0-beta.5":"122.0.6261.18","29.0.0-beta.6":"122.0.6261.18","29.0.0-beta.7":"122.0.6261.18","29.0.0-beta.8":"122.0.6261.18","29.0.0-beta.9":"122.0.6261.18","29.0.0-beta.10":"122.0.6261.18","29.0.0-beta.11":"122.0.6261.18","29.0.0-beta.12":"122.0.6261.29","29.0.0":"122.0.6261.39","29.0.1":"122.0.6261.57","29.1.0":"122.0.6261.70","29.1.1":"122.0.6261.111","29.1.2":"122.0.6261.112","29.1.3":"122.0.6261.112","29.1.4":"122.0.6261.129","29.1.5":"122.0.6261.130","29.1.6":"122.0.6261.139","29.2.0":"122.0.6261.156","29.3.0":"122.0.6261.156","29.3.1":"122.0.6261.156","29.3.2":"122.0.6261.156","29.3.3":"122.0.6261.156","29.4.0":"122.0.6261.156","29.4.1":"122.0.6261.156","29.4.2":"122.0.6261.156","29.4.3":"122.0.6261.156","29.4.4":"122.0.6261.156","29.4.5":"122.0.6261.156","29.4.6":"122.0.6261.156","30.0.0-alpha.1":"123.0.6296.0","30.0.0-alpha.2":"123.0.6312.5","30.0.0-alpha.3":"124.0.6323.0","30.0.0-alpha.4":"124.0.6323.0","30.0.0-alpha.5":"124.0.6331.0","30.0.0-alpha.6":"124.0.6331.0","30.0.0-alpha.7":"124.0.6353.0","30.0.0-beta.1":"124.0.6359.0","30.0.0-beta.2":"124.0.6359.0","30.0.0-beta.3":"124.0.6367.9","30.0.0-beta.4":"124.0.6367.9","30.0.0-beta.5":"124.0.6367.9","30.0.0-beta.6":"124.0.6367.18","30.0.0-beta.7":"124.0.6367.29","30.0.0-beta.8":"124.0.6367.29","30.0.0":"124.0.6367.49","30.0.1":"124.0.6367.60","30.0.2":"124.0.6367.91","30.0.3":"124.0.6367.119","30.0.4":"124.0.6367.201","30.0.5":"124.0.6367.207","30.0.6":"124.0.6367.207","30.0.7":"124.0.6367.221","30.0.8":"124.0.6367.230","30.0.9":"124.0.6367.233","30.1.0":"124.0.6367.243","30.1.1":"124.0.6367.243","30.1.2":"124.0.6367.243","30.2.0":"124.0.6367.243","30.3.0":"124.0.6367.243","30.3.1":"124.0.6367.243","30.4.0":"124.0.6367.243","30.5.0":"124.0.6367.243","30.5.1":"124.0.6367.243","31.0.0-alpha.1":"125.0.6412.0","31.0.0-alpha.2":"125.0.6412.0","31.0.0-alpha.3":"125.0.6412.0","31.0.0-alpha.4":"125.0.6412.0","31.0.0-alpha.5":"125.0.6412.0","31.0.0-beta.1":"126.0.6445.0","31.0.0-beta.2":"126.0.6445.0","31.0.0-beta.3":"126.0.6445.0","31.0.0-beta.4":"126.0.6445.0","31.0.0-beta.5":"126.0.6445.0","31.0.0-beta.6":"126.0.6445.0","31.0.0-beta.7":"126.0.6445.0","31.0.0-beta.8":"126.0.6445.0","31.0.0-beta.9":"126.0.6445.0","31.0.0-beta.10":"126.0.6478.36","31.0.0":"126.0.6478.36","31.0.1":"126.0.6478.36","31.0.2":"126.0.6478.61","31.1.0":"126.0.6478.114","31.2.0":"126.0.6478.127","31.2.1":"126.0.6478.127","31.3.0":"126.0.6478.183","31.3.1":"126.0.6478.185","31.4.0":"126.0.6478.234","31.5.0":"126.0.6478.234","31.6.0":"126.0.6478.234","31.7.0":"126.0.6478.234","31.7.1":"126.0.6478.234","31.7.2":"126.0.6478.234","31.7.3":"126.0.6478.234","31.7.4":"126.0.6478.234","31.7.5":"126.0.6478.234","31.7.6":"126.0.6478.234","31.7.7":"126.0.6478.234","32.0.0-alpha.1":"127.0.6521.0","32.0.0-alpha.2":"127.0.6521.0","32.0.0-alpha.3":"127.0.6521.0","32.0.0-alpha.4":"127.0.6521.0","32.0.0-alpha.5":"127.0.6521.0","32.0.0-alpha.6":"128.0.6571.0","32.0.0-alpha.7":"128.0.6571.0","32.0.0-alpha.8":"128.0.6573.0","32.0.0-alpha.9":"128.0.6573.0","32.0.0-alpha.10":"128.0.6573.0","32.0.0-beta.1":"128.0.6573.0","32.0.0-beta.2":"128.0.6611.0","32.0.0-beta.3":"128.0.6613.7","32.0.0-beta.4":"128.0.6613.18","32.0.0-beta.5":"128.0.6613.27","32.0.0-beta.6":"128.0.6613.27","32.0.0-beta.7":"128.0.6613.27","32.0.0":"128.0.6613.36","32.0.1":"128.0.6613.36","32.0.2":"128.0.6613.84","32.1.0":"128.0.6613.120","32.1.1":"128.0.6613.137","32.1.2":"128.0.6613.162","32.2.0":"128.0.6613.178","32.2.1":"128.0.6613.186","32.2.2":"128.0.6613.186","32.2.3":"128.0.6613.186","32.2.4":"128.0.6613.186","32.2.5":"128.0.6613.186","32.2.6":"128.0.6613.186","32.2.7":"128.0.6613.186","32.2.8":"128.0.6613.186","32.3.0":"128.0.6613.186","32.3.1":"128.0.6613.186","32.3.2":"128.0.6613.186","32.3.3":"128.0.6613.186","33.0.0-alpha.1":"129.0.6668.0","33.0.0-alpha.2":"130.0.6672.0","33.0.0-alpha.3":"130.0.6672.0","33.0.0-alpha.4":"130.0.6672.0","33.0.0-alpha.5":"130.0.6672.0","33.0.0-alpha.6":"130.0.6672.0","33.0.0-beta.1":"130.0.6672.0","33.0.0-beta.2":"130.0.6672.0","33.0.0-beta.3":"130.0.6672.0","33.0.0-beta.4":"130.0.6672.0","33.0.0-beta.5":"130.0.6723.19","33.0.0-beta.6":"130.0.6723.19","33.0.0-beta.7":"130.0.6723.19","33.0.0-beta.8":"130.0.6723.31","33.0.0-beta.9":"130.0.6723.31","33.0.0-beta.10":"130.0.6723.31","33.0.0-beta.11":"130.0.6723.44","33.0.0":"130.0.6723.44","33.0.1":"130.0.6723.59","33.0.2":"130.0.6723.59","33.1.0":"130.0.6723.91","33.2.0":"130.0.6723.118","33.2.1":"130.0.6723.137","33.3.0":"130.0.6723.152","33.3.1":"130.0.6723.170","33.3.2":"130.0.6723.191","33.4.0":"130.0.6723.191","33.4.1":"130.0.6723.191","33.4.2":"130.0.6723.191","33.4.3":"130.0.6723.191","33.4.4":"130.0.6723.191","33.4.5":"130.0.6723.191","33.4.6":"130.0.6723.191","33.4.7":"130.0.6723.191","33.4.8":"130.0.6723.191","33.4.9":"130.0.6723.191","33.4.10":"130.0.6723.191","33.4.11":"130.0.6723.191","34.0.0-alpha.1":"131.0.6776.0","34.0.0-alpha.2":"132.0.6779.0","34.0.0-alpha.3":"132.0.6789.1","34.0.0-alpha.4":"132.0.6789.1","34.0.0-alpha.5":"132.0.6789.1","34.0.0-alpha.6":"132.0.6789.1","34.0.0-alpha.7":"132.0.6789.1","34.0.0-alpha.8":"132.0.6820.0","34.0.0-alpha.9":"132.0.6824.0","34.0.0-beta.1":"132.0.6824.0","34.0.0-beta.2":"132.0.6824.0","34.0.0-beta.3":"132.0.6824.0","34.0.0-beta.4":"132.0.6834.6","34.0.0-beta.5":"132.0.6834.6","34.0.0-beta.6":"132.0.6834.15","34.0.0-beta.7":"132.0.6834.15","34.0.0-beta.8":"132.0.6834.15","34.0.0-beta.9":"132.0.6834.32","34.0.0-beta.10":"132.0.6834.32","34.0.0-beta.11":"132.0.6834.32","34.0.0-beta.12":"132.0.6834.46","34.0.0-beta.13":"132.0.6834.46","34.0.0-beta.14":"132.0.6834.57","34.0.0-beta.15":"132.0.6834.57","34.0.0-beta.16":"132.0.6834.57","34.0.0":"132.0.6834.83","34.0.1":"132.0.6834.83","34.0.2":"132.0.6834.159","34.1.0":"132.0.6834.194","34.1.1":"132.0.6834.194","34.2.0":"132.0.6834.196","34.3.0":"132.0.6834.210","34.3.1":"132.0.6834.210","34.3.2":"132.0.6834.210","34.3.3":"132.0.6834.210","34.3.4":"132.0.6834.210","34.4.0":"132.0.6834.210","34.4.1":"132.0.6834.210","34.5.0":"132.0.6834.210","34.5.1":"132.0.6834.210","34.5.2":"132.0.6834.210","34.5.3":"132.0.6834.210","34.5.4":"132.0.6834.210","34.5.5":"132.0.6834.210","34.5.6":"132.0.6834.210","34.5.7":"132.0.6834.210","34.5.8":"132.0.6834.210","35.0.0-alpha.1":"133.0.6920.0","35.0.0-alpha.2":"133.0.6920.0","35.0.0-alpha.3":"133.0.6920.0","35.0.0-alpha.4":"133.0.6920.0","35.0.0-alpha.5":"133.0.6920.0","35.0.0-beta.1":"133.0.6920.0","35.0.0-beta.2":"134.0.6968.0","35.0.0-beta.3":"134.0.6968.0","35.0.0-beta.4":"134.0.6968.0","35.0.0-beta.5":"134.0.6989.0","35.0.0-beta.6":"134.0.6990.0","35.0.0-beta.7":"134.0.6990.0","35.0.0-beta.8":"134.0.6998.10","35.0.0-beta.9":"134.0.6998.10","35.0.0-beta.10":"134.0.6998.23","35.0.0-beta.11":"134.0.6998.23","35.0.0-beta.12":"134.0.6998.23","35.0.0-beta.13":"134.0.6998.44","35.0.0":"134.0.6998.44","35.0.1":"134.0.6998.44","35.0.2":"134.0.6998.88","35.0.3":"134.0.6998.88","35.1.0":"134.0.6998.165","35.1.1":"134.0.6998.165","35.1.2":"134.0.6998.178","35.1.3":"134.0.6998.179","35.1.4":"134.0.6998.179","35.1.5":"134.0.6998.179","35.2.0":"134.0.6998.205","35.2.1":"134.0.6998.205","35.2.2":"134.0.6998.205","35.3.0":"134.0.6998.205","35.4.0":"134.0.6998.205","35.5.0":"134.0.6998.205","35.5.1":"134.0.6998.205","35.6.0":"134.0.6998.205","35.7.0":"134.0.6998.205","35.7.1":"134.0.6998.205","35.7.2":"134.0.6998.205","35.7.4":"134.0.6998.205","35.7.5":"134.0.6998.205","36.0.0-alpha.1":"135.0.7049.5","36.0.0-alpha.2":"136.0.7062.0","36.0.0-alpha.3":"136.0.7062.0","36.0.0-alpha.4":"136.0.7062.0","36.0.0-alpha.5":"136.0.7067.0","36.0.0-alpha.6":"136.0.7067.0","36.0.0-beta.1":"136.0.7067.0","36.0.0-beta.2":"136.0.7067.0","36.0.0-beta.3":"136.0.7067.0","36.0.0-beta.4":"136.0.7067.0","36.0.0-beta.5":"136.0.7103.17","36.0.0-beta.6":"136.0.7103.25","36.0.0-beta.7":"136.0.7103.25","36.0.0-beta.8":"136.0.7103.33","36.0.0-beta.9":"136.0.7103.33","36.0.0":"136.0.7103.48","36.0.1":"136.0.7103.48","36.1.0":"136.0.7103.49","36.2.0":"136.0.7103.49","36.2.1":"136.0.7103.93","36.3.0":"136.0.7103.113","36.3.1":"136.0.7103.113","36.3.2":"136.0.7103.115","36.4.0":"136.0.7103.149","36.5.0":"136.0.7103.168","36.6.0":"136.0.7103.177","36.7.0":"136.0.7103.177","36.7.1":"136.0.7103.177","36.7.3":"136.0.7103.177","36.7.4":"136.0.7103.177","36.8.0":"136.0.7103.177","36.8.1":"136.0.7103.177","36.9.0":"136.0.7103.177","36.9.1":"136.0.7103.177","36.9.2":"136.0.7103.177","36.9.3":"136.0.7103.177","36.9.4":"136.0.7103.177","36.9.5":"136.0.7103.177","37.0.0-alpha.1":"137.0.7151.0","37.0.0-alpha.2":"137.0.7151.0","37.0.0-alpha.3":"138.0.7156.0","37.0.0-alpha.4":"138.0.7165.0","37.0.0-alpha.5":"138.0.7177.0","37.0.0-alpha.6":"138.0.7178.0","37.0.0-alpha.7":"138.0.7178.0","37.0.0-beta.1":"138.0.7178.0","37.0.0-beta.2":"138.0.7178.0","37.0.0-beta.3":"138.0.7190.0","37.0.0-beta.4":"138.0.7204.15","37.0.0-beta.5":"138.0.7204.15","37.0.0-beta.6":"138.0.7204.15","37.0.0-beta.7":"138.0.7204.15","37.0.0-beta.8":"138.0.7204.23","37.0.0-beta.9":"138.0.7204.35","37.0.0":"138.0.7204.35","37.1.0":"138.0.7204.35","37.2.0":"138.0.7204.97","37.2.1":"138.0.7204.97","37.2.2":"138.0.7204.100","37.2.3":"138.0.7204.100","37.2.4":"138.0.7204.157","37.2.5":"138.0.7204.168","37.2.6":"138.0.7204.185","37.3.0":"138.0.7204.224","37.3.1":"138.0.7204.235","37.4.0":"138.0.7204.243","37.5.0":"138.0.7204.251","37.5.1":"138.0.7204.251","37.6.0":"138.0.7204.251","37.6.1":"138.0.7204.251","37.7.0":"138.0.7204.251","37.7.1":"138.0.7204.251","37.8.0":"138.0.7204.251","37.9.0":"138.0.7204.251","37.10.0":"138.0.7204.251","37.10.1":"138.0.7204.251","37.10.2":"138.0.7204.251","37.10.3":"138.0.7204.251","38.0.0-alpha.1":"139.0.7219.0","38.0.0-alpha.2":"139.0.7219.0","38.0.0-alpha.3":"139.0.7219.0","38.0.0-alpha.4":"140.0.7261.0","38.0.0-alpha.5":"140.0.7261.0","38.0.0-alpha.6":"140.0.7261.0","38.0.0-alpha.7":"140.0.7281.0","38.0.0-alpha.8":"140.0.7281.0","38.0.0-alpha.9":"140.0.7301.0","38.0.0-alpha.10":"140.0.7309.0","38.0.0-alpha.11":"140.0.7312.0","38.0.0-alpha.12":"140.0.7314.0","38.0.0-alpha.13":"140.0.7314.0","38.0.0-beta.1":"140.0.7314.0","38.0.0-beta.2":"140.0.7327.0","38.0.0-beta.3":"140.0.7327.0","38.0.0-beta.4":"140.0.7339.2","38.0.0-beta.5":"140.0.7339.2","38.0.0-beta.6":"140.0.7339.2","38.0.0-beta.7":"140.0.7339.16","38.0.0-beta.8":"140.0.7339.24","38.0.0-beta.9":"140.0.7339.24","38.0.0-beta.11":"140.0.7339.41","38.0.0":"140.0.7339.41","38.1.0":"140.0.7339.80","38.1.1":"140.0.7339.133","38.1.2":"140.0.7339.133","38.2.0":"140.0.7339.133","38.2.1":"140.0.7339.133","38.2.2":"140.0.7339.133","38.3.0":"140.0.7339.240","38.4.0":"140.0.7339.240","38.5.0":"140.0.7339.249","38.6.0":"140.0.7339.249","38.7.0":"140.0.7339.249","38.7.1":"140.0.7339.249","38.7.2":"140.0.7339.249","39.0.0-alpha.1":"141.0.7361.0","39.0.0-alpha.2":"141.0.7361.0","39.0.0-alpha.3":"141.0.7390.7","39.0.0-alpha.4":"141.0.7390.7","39.0.0-alpha.5":"141.0.7390.7","39.0.0-alpha.6":"142.0.7417.0","39.0.0-alpha.7":"142.0.7417.0","39.0.0-alpha.8":"142.0.7417.0","39.0.0-alpha.9":"142.0.7417.0","39.0.0-beta.1":"142.0.7417.0","39.0.0-beta.2":"142.0.7417.0","39.0.0-beta.3":"142.0.7417.0","39.0.0-beta.4":"142.0.7444.34","39.0.0-beta.5":"142.0.7444.34","39.0.0":"142.0.7444.52","39.1.0":"142.0.7444.59","39.1.1":"142.0.7444.59","39.1.2":"142.0.7444.134","39.2.0":"142.0.7444.162","39.2.1":"142.0.7444.162","39.2.2":"142.0.7444.162","39.2.3":"142.0.7444.175","39.2.4":"142.0.7444.177","39.2.5":"142.0.7444.177","39.2.6":"142.0.7444.226","40.0.0-alpha.2":"143.0.7499.0","40.0.0-alpha.4":"144.0.7506.0","40.0.0-alpha.5":"144.0.7526.0","40.0.0-alpha.6":"144.0.7526.0","40.0.0-alpha.7":"144.0.7526.0","40.0.0-alpha.8":"144.0.7526.0","40.0.0-beta.1":"144.0.7527.0","40.0.0-beta.2":"144.0.7527.0","40.0.0-beta.3":"144.0.7547.0"}
Index: node_modules/electron-to-chromium/index.js
===================================================================
--- node_modules/electron-to-chromium/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,36 @@
+var versions = require('./versions');
+var fullVersions = require('./full-versions');
+var chromiumVersions = require('./chromium-versions');
+var fullChromiumVersions = require('./full-chromium-versions');
+
+var electronToChromium = function (query) {
+  var number = getQueryString(query);
+  return number.split('.').length > 2 ? fullVersions[number] : versions[number] || undefined;
+};
+
+var chromiumToElectron = function (query) {
+  var number = getQueryString(query);
+  return number.split('.').length > 2 ? fullChromiumVersions[number] : chromiumVersions[number] || undefined;
+};
+
+var electronToBrowserList = function (query) {
+  var number = getQueryString(query);
+  return versions[number] ? "Chrome >= " + versions[number] : undefined;
+};
+
+var getQueryString = function (query) {
+  var number = query;
+  if (query === 1) { number = "1.0" }
+  if (typeof query === 'number') { number += ''; }
+  return number;
+};
+
+module.exports = {
+  versions: versions,
+  fullVersions: fullVersions,
+  chromiumVersions: chromiumVersions,
+  fullChromiumVersions: fullChromiumVersions,
+  electronToChromium: electronToChromium,
+  electronToBrowserList: electronToBrowserList,
+  chromiumToElectron: chromiumToElectron
+};
Index: node_modules/electron-to-chromium/package.json
===================================================================
--- node_modules/electron-to-chromium/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,44 @@
+{
+  "name": "electron-to-chromium",
+  "version": "1.5.267",
+  "description": "Provides a list of electron-to-chromium version mappings",
+  "main": "index.js",
+  "files": [
+    "versions.js",
+    "full-versions.js",
+    "chromium-versions.js",
+    "full-chromium-versions.js",
+    "versions.json",
+    "full-versions.json",
+    "chromium-versions.json",
+    "full-chromium-versions.json",
+    "LICENSE"
+  ],
+  "scripts": {
+    "build": "node build.mjs",
+    "update": "node automated-update.js",
+    "test": "nyc ava --verbose",
+    "report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/kilian/electron-to-chromium/"
+  },
+  "keywords": [
+    "electron",
+    "chrome",
+    "chromium",
+    "browserslist",
+    "browserlist"
+  ],
+  "author": "Kilian Valkhof",
+  "license": "ISC",
+  "devDependencies": {
+    "ava": "^5.1.1",
+    "codecov": "^3.8.2",
+    "compare-versions": "^6.0.0-rc.1",
+    "node-fetch": "^3.3.0",
+    "nyc": "^15.1.0",
+    "shelljs": "^0.8.5"
+  }
+}
Index: node_modules/electron-to-chromium/versions.js
===================================================================
--- node_modules/electron-to-chromium/versions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/versions.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,224 @@
+module.exports = {
+	"0.20": "39",
+	"0.21": "41",
+	"0.22": "41",
+	"0.23": "41",
+	"0.24": "41",
+	"0.25": "42",
+	"0.26": "42",
+	"0.27": "43",
+	"0.28": "43",
+	"0.29": "43",
+	"0.30": "44",
+	"0.31": "45",
+	"0.32": "45",
+	"0.33": "45",
+	"0.34": "45",
+	"0.35": "45",
+	"0.36": "47",
+	"0.37": "49",
+	"1.0": "49",
+	"1.1": "50",
+	"1.2": "51",
+	"1.3": "52",
+	"1.4": "53",
+	"1.5": "54",
+	"1.6": "56",
+	"1.7": "58",
+	"1.8": "59",
+	"2.0": "61",
+	"2.1": "61",
+	"3.0": "66",
+	"3.1": "66",
+	"4.0": "69",
+	"4.1": "69",
+	"4.2": "69",
+	"5.0": "73",
+	"6.0": "76",
+	"6.1": "76",
+	"7.0": "78",
+	"7.1": "78",
+	"7.2": "78",
+	"7.3": "78",
+	"8.0": "80",
+	"8.1": "80",
+	"8.2": "80",
+	"8.3": "80",
+	"8.4": "80",
+	"8.5": "80",
+	"9.0": "83",
+	"9.1": "83",
+	"9.2": "83",
+	"9.3": "83",
+	"9.4": "83",
+	"10.0": "85",
+	"10.1": "85",
+	"10.2": "85",
+	"10.3": "85",
+	"10.4": "85",
+	"11.0": "87",
+	"11.1": "87",
+	"11.2": "87",
+	"11.3": "87",
+	"11.4": "87",
+	"11.5": "87",
+	"12.0": "89",
+	"12.1": "89",
+	"12.2": "89",
+	"13.0": "91",
+	"13.1": "91",
+	"13.2": "91",
+	"13.3": "91",
+	"13.4": "91",
+	"13.5": "91",
+	"13.6": "91",
+	"14.0": "93",
+	"14.1": "93",
+	"14.2": "93",
+	"15.0": "94",
+	"15.1": "94",
+	"15.2": "94",
+	"15.3": "94",
+	"15.4": "94",
+	"15.5": "94",
+	"16.0": "96",
+	"16.1": "96",
+	"16.2": "96",
+	"17.0": "98",
+	"17.1": "98",
+	"17.2": "98",
+	"17.3": "98",
+	"17.4": "98",
+	"18.0": "100",
+	"18.1": "100",
+	"18.2": "100",
+	"18.3": "100",
+	"19.0": "102",
+	"19.1": "102",
+	"20.0": "104",
+	"20.1": "104",
+	"20.2": "104",
+	"20.3": "104",
+	"21.0": "106",
+	"21.1": "106",
+	"21.2": "106",
+	"21.3": "106",
+	"21.4": "106",
+	"22.0": "108",
+	"22.1": "108",
+	"22.2": "108",
+	"22.3": "108",
+	"23.0": "110",
+	"23.1": "110",
+	"23.2": "110",
+	"23.3": "110",
+	"24.0": "112",
+	"24.1": "112",
+	"24.2": "112",
+	"24.3": "112",
+	"24.4": "112",
+	"24.5": "112",
+	"24.6": "112",
+	"24.7": "112",
+	"24.8": "112",
+	"25.0": "114",
+	"25.1": "114",
+	"25.2": "114",
+	"25.3": "114",
+	"25.4": "114",
+	"25.5": "114",
+	"25.6": "114",
+	"25.7": "114",
+	"25.8": "114",
+	"25.9": "114",
+	"26.0": "116",
+	"26.1": "116",
+	"26.2": "116",
+	"26.3": "116",
+	"26.4": "116",
+	"26.5": "116",
+	"26.6": "116",
+	"27.0": "118",
+	"27.1": "118",
+	"27.2": "118",
+	"27.3": "118",
+	"28.0": "120",
+	"28.1": "120",
+	"28.2": "120",
+	"28.3": "120",
+	"29.0": "122",
+	"29.1": "122",
+	"29.2": "122",
+	"29.3": "122",
+	"29.4": "122",
+	"30.0": "124",
+	"30.1": "124",
+	"30.2": "124",
+	"30.3": "124",
+	"30.4": "124",
+	"30.5": "124",
+	"31.0": "126",
+	"31.1": "126",
+	"31.2": "126",
+	"31.3": "126",
+	"31.4": "126",
+	"31.5": "126",
+	"31.6": "126",
+	"31.7": "126",
+	"32.0": "128",
+	"32.1": "128",
+	"32.2": "128",
+	"32.3": "128",
+	"33.0": "130",
+	"33.1": "130",
+	"33.2": "130",
+	"33.3": "130",
+	"33.4": "130",
+	"34.0": "132",
+	"34.1": "132",
+	"34.2": "132",
+	"34.3": "132",
+	"34.4": "132",
+	"34.5": "132",
+	"35.0": "134",
+	"35.1": "134",
+	"35.2": "134",
+	"35.3": "134",
+	"35.4": "134",
+	"35.5": "134",
+	"35.6": "134",
+	"35.7": "134",
+	"36.0": "136",
+	"36.1": "136",
+	"36.2": "136",
+	"36.3": "136",
+	"36.4": "136",
+	"36.5": "136",
+	"36.6": "136",
+	"36.7": "136",
+	"36.8": "136",
+	"36.9": "136",
+	"37.0": "138",
+	"37.1": "138",
+	"37.2": "138",
+	"37.3": "138",
+	"37.4": "138",
+	"37.5": "138",
+	"37.6": "138",
+	"37.7": "138",
+	"37.8": "138",
+	"37.9": "138",
+	"37.10": "138",
+	"38.0": "140",
+	"38.1": "140",
+	"38.2": "140",
+	"38.3": "140",
+	"38.4": "140",
+	"38.5": "140",
+	"38.6": "140",
+	"38.7": "140",
+	"39.0": "142",
+	"39.1": "142",
+	"39.2": "142",
+	"40.0": "144"
+};
Index: node_modules/electron-to-chromium/versions.json
===================================================================
--- node_modules/electron-to-chromium/versions.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/electron-to-chromium/versions.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","19.1":"102","20.0":"104","20.1":"104","20.2":"104","20.3":"104","21.0":"106","21.1":"106","21.2":"106","21.3":"106","21.4":"106","22.0":"108","22.1":"108","22.2":"108","22.3":"108","23.0":"110","23.1":"110","23.2":"110","23.3":"110","24.0":"112","24.1":"112","24.2":"112","24.3":"112","24.4":"112","24.5":"112","24.6":"112","24.7":"112","24.8":"112","25.0":"114","25.1":"114","25.2":"114","25.3":"114","25.4":"114","25.5":"114","25.6":"114","25.7":"114","25.8":"114","25.9":"114","26.0":"116","26.1":"116","26.2":"116","26.3":"116","26.4":"116","26.5":"116","26.6":"116","27.0":"118","27.1":"118","27.2":"118","27.3":"118","28.0":"120","28.1":"120","28.2":"120","28.3":"120","29.0":"122","29.1":"122","29.2":"122","29.3":"122","29.4":"122","30.0":"124","30.1":"124","30.2":"124","30.3":"124","30.4":"124","30.5":"124","31.0":"126","31.1":"126","31.2":"126","31.3":"126","31.4":"126","31.5":"126","31.6":"126","31.7":"126","32.0":"128","32.1":"128","32.2":"128","32.3":"128","33.0":"130","33.1":"130","33.2":"130","33.3":"130","33.4":"130","34.0":"132","34.1":"132","34.2":"132","34.3":"132","34.4":"132","34.5":"132","35.0":"134","35.1":"134","35.2":"134","35.3":"134","35.4":"134","35.5":"134","35.6":"134","35.7":"134","36.0":"136","36.1":"136","36.2":"136","36.3":"136","36.4":"136","36.5":"136","36.6":"136","36.7":"136","36.8":"136","36.9":"136","37.0":"138","37.1":"138","37.2":"138","37.3":"138","37.4":"138","37.5":"138","37.6":"138","37.7":"138","37.8":"138","37.9":"138","37.10":"138","38.0":"140","38.1":"140","38.2":"140","38.3":"140","38.4":"140","38.5":"140","38.6":"140","38.7":"140","39.0":"142","39.1":"142","39.2":"142","40.0":"144"}
Index: node_modules/escalade/dist/index.js
===================================================================
--- node_modules/escalade/dist/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/dist/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,22 @@
+const { dirname, resolve } = require('path');
+const { readdir, stat } = require('fs');
+const { promisify } = require('util');
+
+const toStats = promisify(stat);
+const toRead = promisify(readdir);
+
+module.exports = async function (start, callback) {
+	let dir = resolve('.', start);
+	let tmp, stats = await toStats(dir);
+
+	if (!stats.isDirectory()) {
+		dir = dirname(dir);
+	}
+
+	while (true) {
+		tmp = await callback(dir, await toRead(dir));
+		if (tmp) return resolve(dir, tmp);
+		dir = dirname(tmp = dir);
+		if (tmp === dir) break;
+	}
+}
Index: node_modules/escalade/dist/index.mjs
===================================================================
--- node_modules/escalade/dist/index.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/dist/index.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,22 @@
+import { dirname, resolve } from 'path';
+import { readdir, stat } from 'fs';
+import { promisify } from 'util';
+
+const toStats = promisify(stat);
+const toRead = promisify(readdir);
+
+export default async function (start, callback) {
+	let dir = resolve('.', start);
+	let tmp, stats = await toStats(dir);
+
+	if (!stats.isDirectory()) {
+		dir = dirname(dir);
+	}
+
+	while (true) {
+		tmp = await callback(dir, await toRead(dir));
+		if (tmp) return resolve(dir, tmp);
+		dir = dirname(tmp = dir);
+		if (tmp === dir) break;
+	}
+}
Index: node_modules/escalade/index.d.mts
===================================================================
--- node_modules/escalade/index.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/index.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,11 @@
+type Promisable<T> = T | Promise<T>;
+
+export type Callback = (
+	directory: string,
+	files: string[],
+) => Promisable<string | false | void>;
+
+export default function (
+	directory: string,
+	callback: Callback,
+): Promise<string | void>;
Index: node_modules/escalade/index.d.ts
===================================================================
--- node_modules/escalade/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,15 @@
+type Promisable<T> = T | Promise<T>;
+
+declare namespace escalade {
+	export type Callback = (
+		directory: string,
+		files: string[],
+	) => Promisable<string | false | void>;
+}
+
+declare function escalade(
+	directory: string,
+	callback: escalade.Callback,
+): Promise<string | void>;
+
+export = escalade;
Index: node_modules/escalade/license
===================================================================
--- node_modules/escalade/license	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/license	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Index: node_modules/escalade/package.json
===================================================================
--- node_modules/escalade/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,74 @@
+{
+  "name": "escalade",
+  "version": "3.2.0",
+  "repository": "lukeed/escalade",
+  "description": "A tiny (183B to 210B) and fast utility to ascend parent directories",
+  "module": "dist/index.mjs",
+  "main": "dist/index.js",
+  "types": "index.d.ts",
+  "license": "MIT",
+  "author": {
+    "name": "Luke Edwards",
+    "email": "luke.edwards05@gmail.com",
+    "url": "https://lukeed.com"
+  },
+  "exports": {
+    ".": [
+      {
+        "import": {
+          "types": "./index.d.mts",
+          "default": "./dist/index.mjs"
+        },
+        "require": {
+          "types": "./index.d.ts",
+          "default": "./dist/index.js"
+        }
+      },
+      "./dist/index.js"
+    ],
+    "./sync": [
+      {
+        "import": {
+          "types": "./sync/index.d.mts",
+          "default": "./sync/index.mjs"
+        },
+        "require": {
+          "types": "./sync/index.d.ts",
+          "default": "./sync/index.js"
+        }
+      },
+      "./sync/index.js"
+    ]
+  },
+  "files": [
+    "*.d.mts",
+    "*.d.ts",
+    "dist",
+    "sync"
+  ],
+  "modes": {
+    "sync": "src/sync.js",
+    "default": "src/async.js"
+  },
+  "engines": {
+    "node": ">=6"
+  },
+  "scripts": {
+    "build": "bundt",
+    "pretest": "npm run build",
+    "test": "uvu -r esm test -i fixtures"
+  },
+  "keywords": [
+    "find",
+    "parent",
+    "parents",
+    "directory",
+    "search",
+    "walk"
+  ],
+  "devDependencies": {
+    "bundt": "1.1.1",
+    "esm": "3.2.25",
+    "uvu": "0.3.3"
+  }
+}
Index: node_modules/escalade/readme.md
===================================================================
--- node_modules/escalade/readme.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/readme.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,211 @@
+# escalade [![CI](https://github.com/lukeed/escalade/workflows/CI/badge.svg)](https://github.com/lukeed/escalade/actions) [![licenses](https://licenses.dev/b/npm/escalade)](https://licenses.dev/npm/escalade) [![codecov](https://badgen.now.sh/codecov/c/github/lukeed/escalade)](https://codecov.io/gh/lukeed/escalade)
+
+> A tiny (183B to 210B) and [fast](#benchmarks) utility to ascend parent directories
+
+With [escalade](https://en.wikipedia.org/wiki/Escalade), you can scale parent directories until you've found what you're looking for.<br>Given an input file or directory, `escalade` will continue executing your callback function until either:
+
+1) the callback returns a truthy value
+2) `escalade` has reached the system root directory (eg, `/`)
+
+> **Important:**<br>Please note that `escalade` only deals with direct ancestry – it will not dive into parents' sibling directories.
+
+---
+
+**Notice:** As of v3.1.0, `escalade` now includes [Deno support](http://deno.land/x/escalade)! Please see [Deno Usage](#deno) below.
+
+---
+
+## Install
+
+```
+$ npm install --save escalade
+```
+
+
+## Modes
+
+There are two "versions" of `escalade` available:
+
+#### "async"
+> **Node.js:** >= 8.x<br>
+> **Size (gzip):** 210 bytes<br>
+> **Availability:** [CommonJS](https://unpkg.com/escalade/dist/index.js), [ES Module](https://unpkg.com/escalade/dist/index.mjs)
+
+This is the primary/default mode. It makes use of `async`/`await` and [`util.promisify`](https://nodejs.org/api/util.html#util_util_promisify_original).
+
+#### "sync"
+> **Node.js:** >= 6.x<br>
+> **Size (gzip):** 183 bytes<br>
+> **Availability:** [CommonJS](https://unpkg.com/escalade/sync/index.js), [ES Module](https://unpkg.com/escalade/sync/index.mjs)
+
+This is the opt-in mode, ideal for scenarios where `async` usage cannot be supported.
+
+
+## Usage
+
+***Example Structure***
+
+```
+/Users/lukeed
+  └── oss
+    ├── license
+    └── escalade
+      ├── package.json
+      └── test
+        └── fixtures
+          ├── index.js
+          └── foobar
+            └── demo.js
+```
+
+***Example Usage***
+
+```js
+//~> demo.js
+import { join } from 'path';
+import escalade from 'escalade';
+
+const input = join(__dirname, 'demo.js');
+// or: const input = __dirname;
+
+const pkg = await escalade(input, (dir, names) => {
+  console.log('~> dir:', dir);
+  console.log('~> names:', names);
+  console.log('---');
+
+  if (names.includes('package.json')) {
+    // will be resolved into absolute
+    return 'package.json';
+  }
+});
+
+//~> dir: /Users/lukeed/oss/escalade/test/fixtures/foobar
+//~> names: ['demo.js']
+//---
+//~> dir: /Users/lukeed/oss/escalade/test/fixtures
+//~> names: ['index.js', 'foobar']
+//---
+//~> dir: /Users/lukeed/oss/escalade/test
+//~> names: ['fixtures']
+//---
+//~> dir: /Users/lukeed/oss/escalade
+//~> names: ['package.json', 'test']
+//---
+
+console.log(pkg);
+//=> /Users/lukeed/oss/escalade/package.json
+
+// Now search for "missing123.txt"
+// (Assume it doesn't exist anywhere!)
+const missing = await escalade(input, (dir, names) => {
+  console.log('~> dir:', dir);
+  return names.includes('missing123.txt') && 'missing123.txt';
+});
+
+//~> dir: /Users/lukeed/oss/escalade/test/fixtures/foobar
+//~> dir: /Users/lukeed/oss/escalade/test/fixtures
+//~> dir: /Users/lukeed/oss/escalade/test
+//~> dir: /Users/lukeed/oss/escalade
+//~> dir: /Users/lukeed/oss
+//~> dir: /Users/lukeed
+//~> dir: /Users
+//~> dir: /
+
+console.log(missing);
+//=> undefined
+```
+
+> **Note:** To run the above example with "sync" mode, import from `escalade/sync` and remove the `await` keyword.
+
+
+## API
+
+### escalade(input, callback)
+Returns: `string|void` or `Promise<string|void>`
+
+When your `callback` locates a file, `escalade` will resolve/return with an absolute path.<br>
+If your `callback` was never satisfied, then `escalade` will resolve/return with nothing (undefined).
+
+> **Important:**<br>The `sync` and `async` versions share the same API.<br>The **only** difference is that `sync` is not Promise-based.
+
+#### input
+Type: `string`
+
+The path from which to start ascending.
+
+This may be a file or a directory path.<br>However, when `input` is a file, `escalade` will begin with its parent directory.
+
+> **Important:** Unless given an absolute path, `input` will be resolved from `process.cwd()` location.
+
+#### callback
+Type: `Function`
+
+The callback to execute for each ancestry level. It always is given two arguments:
+
+1) `dir` - an absolute path of the current parent directory
+2) `names` - a list (`string[]`) of contents _relative to_ the `dir` parent
+
+> **Note:** The `names` list can contain names of files _and_ directories.
+
+When your callback returns a _falsey_ value, then `escalade` will continue with `dir`'s parent directory, re-invoking your callback with new argument values.
+
+When your callback returns a string, then `escalade` stops iteration immediately.<br>
+If the string is an absolute path, then it's left as is. Otherwise, the string is resolved into an absolute path _from_ the `dir` that housed the satisfying condition.
+
+> **Important:** Your `callback` can be a `Promise/AsyncFunction` when using the "async" version of `escalade`.
+
+## Benchmarks
+
+> Running on Node.js v10.13.0
+
+```
+# Load Time
+  find-up         3.891ms
+  escalade        0.485ms
+  escalade/sync   0.309ms
+
+# Levels: 6 (target = "foo.txt"):
+  find-up          x 24,856 ops/sec ±6.46% (55 runs sampled)
+  escalade         x 73,084 ops/sec ±4.23% (73 runs sampled)
+  find-up.sync     x  3,663 ops/sec ±1.12% (83 runs sampled)
+  escalade/sync    x  9,360 ops/sec ±0.62% (88 runs sampled)
+
+# Levels: 12 (target = "package.json"):
+  find-up          x 29,300 ops/sec ±10.68% (70 runs sampled)
+  escalade         x 73,685 ops/sec ± 5.66% (66 runs sampled)
+  find-up.sync     x  1,707 ops/sec ± 0.58% (91 runs sampled)
+  escalade/sync    x  4,667 ops/sec ± 0.68% (94 runs sampled)
+
+# Levels: 18 (target = "missing123.txt"):
+  find-up          x 21,818 ops/sec ±17.37% (14 runs sampled)
+  escalade         x 67,101 ops/sec ±21.60% (20 runs sampled)
+  find-up.sync     x  1,037 ops/sec ± 2.86% (88 runs sampled)
+  escalade/sync    x  1,248 ops/sec ± 0.50% (93 runs sampled)
+```
+
+## Deno
+
+As of v3.1.0, `escalade` is available on the Deno registry.
+
+Please note that the [API](#api) is identical and that there are still [two modes](#modes) from which to choose:
+
+```ts
+// Choose "async" mode
+import escalade from 'https://deno.land/escalade/async.ts';
+
+// Choose "sync" mode
+import escalade from 'https://deno.land/escalade/sync.ts';
+```
+
+> **Important:** The `allow-read` permission is required!
+
+
+## Related
+
+- [premove](https://github.com/lukeed/premove) - A tiny (247B) utility to remove items recursively
+- [totalist](https://github.com/lukeed/totalist) - A tiny (195B to 224B) utility to recursively list all (total) files in a directory
+- [mk-dirs](https://github.com/lukeed/mk-dirs) - A tiny (420B) utility to make a directory and its parents, recursively
+
+## License
+
+MIT © [Luke Edwards](https://lukeed.com)
Index: node_modules/escalade/sync/index.d.mts
===================================================================
--- node_modules/escalade/sync/index.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/sync/index.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,9 @@
+export type Callback = (
+	directory: string,
+	files: string[],
+) => string | false | void;
+
+export default function (
+	directory: string,
+	callback: Callback,
+): string | void;
Index: node_modules/escalade/sync/index.d.ts
===================================================================
--- node_modules/escalade/sync/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/sync/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,13 @@
+declare namespace escalade {
+	export type Callback = (
+		directory: string,
+		files: string[],
+	) => string | false | void;
+}
+
+declare function escalade(
+	directory: string,
+	callback: escalade.Callback,
+): string | void;
+
+export = escalade;
Index: node_modules/escalade/sync/index.js
===================================================================
--- node_modules/escalade/sync/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/sync/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,18 @@
+const { dirname, resolve } = require('path');
+const { readdirSync, statSync } = require('fs');
+
+module.exports = function (start, callback) {
+	let dir = resolve('.', start);
+	let tmp, stats = statSync(dir);
+
+	if (!stats.isDirectory()) {
+		dir = dirname(dir);
+	}
+
+	while (true) {
+		tmp = callback(dir, readdirSync(dir));
+		if (tmp) return resolve(dir, tmp);
+		dir = dirname(tmp = dir);
+		if (tmp === dir) break;
+	}
+}
Index: node_modules/escalade/sync/index.mjs
===================================================================
--- node_modules/escalade/sync/index.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/escalade/sync/index.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,18 @@
+import { dirname, resolve } from 'path';
+import { readdirSync, statSync } from 'fs';
+
+export default function (start, callback) {
+	let dir = resolve('.', start);
+	let tmp, stats = statSync(dir);
+
+	if (!stats.isDirectory()) {
+		dir = dirname(dir);
+	}
+
+	while (true) {
+		tmp = callback(dir, readdirSync(dir));
+		if (tmp) return resolve(dir, tmp);
+		dir = dirname(tmp = dir);
+		if (tmp === dir) break;
+	}
+}
Index: node_modules/fraction.js/CHANGELOG.md
===================================================================
--- node_modules/fraction.js/CHANGELOG.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/CHANGELOG.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,38 @@
+# CHANGELOG
+
+v5.2.2
+    - Improved documentation and removed unecessary check
+
+v5.2.1:
+  - 2bb7b05: Added negative sign check
+
+v5.2:
+  - 6f9d124: Implemented log and improved simplify
+  - b773e7a: Added named export to TS definition
+  - 70304f9: Fixed merge conflict
+  - 3b940d3: Implemented other comparing functions
+  - 10acdfc: Update README.md
+  - ba41d00: Update README.md
+  - 73ded97: Update README.md
+  - acabc39: Fixed param parsing
+
+v5.0.5:
+  - 2c9d4c2: Improved roundTo() and param parser
+
+v5.0.4:
+  - 39e61e7: Fixed bignum param passing
+
+v5.0.3:
+  - 7d9a3ec: Upgraded bundler for code quality
+
+v5.0.2:
+  - c64b1d6: fixed esm export
+
+v5.0.1:
+  - e440f9c: Fixed CJS export
+  - 9bbdd29: Fixed CJS export
+
+v5.0.0:
+  - ac7cd06: Fixed readme
+  - 33cc9e5: Added crude build
+  - 1adcc76: Release breaking v5.0. Fraction.js now builds on BigInt. The API stays the same as v4, except that the object attributes `n`, `d`, and `s`, are not Number but BigInt and may break code that directly accesses these attributes.
Index: node_modules/fraction.js/LICENSE
===================================================================
--- node_modules/fraction.js/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2025 Robert Eisele
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
Index: node_modules/fraction.js/README.md
===================================================================
--- node_modules/fraction.js/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,520 @@
+# Fraction.js - ℚ in JavaScript
+
+[![NPM Package](https://img.shields.io/npm/v/fraction.js.svg?style=flat)](https://npmjs.org/package/fraction.js "View this project on npm")
+[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)
+
+Do you find the limitations of floating-point arithmetic frustrating, especially when rational and irrational numbers like π or √2 are stored within the same finite precision? This can lead to avoidable inaccuracies such as:
+
+```javascript
+1 / 98 * 98 // Results in 0.9999999999999999
+```
+
+For applications requiring higher precision or where working with fractions is preferable, consider incorporating *Fraction.js* into your project.
+
+The library effectively addresses precision issues, as demonstrated below:
+
+```javascript
+Fraction(1).div(98).mul(98) // Returns 1
+```
+
+*Fraction.js* uses a `BigInt` representation for both the numerator and denominator, ensuring minimal performance overhead while maximizing accuracy. Its design is optimized for precision, making it an ideal choice as a foundational library for other math tools, such as [Polynomial.js](https://github.com/rawify/Polynomial.js) and [Math.js](https://github.com/josdejong/mathjs).
+
+## Convert Decimal to Fraction
+
+One of the core features of *Fraction.js* is its ability to seamlessly convert decimal numbers into fractions.
+
+```javascript
+let x = new Fraction(1.88);
+let res = x.toFraction(true); // Returns "1 22/25" as a string
+```
+
+This is particularly useful when you need precise fraction representations instead of dealing with the limitations of floating-point arithmetic. What if you allow some error tolerance?
+
+```javascript
+let x = new Fraction(0.33333);
+let res = x.simplify(0.001) // Error < 0.001
+       .toFraction(); // Returns "1/3" as a string
+```
+
+## Precision
+
+As native `BigInt` support in JavaScript becomes more common, libraries like *Fraction.js* use it to handle calculations with higher precision. This improves the speed and accuracy of math operations with large numbers, providing a better solution for tasks that need more precision than floating-point numbers can offer.
+
+## Examples / Motivation
+
+A simple example of using *Fraction.js* might look like this:
+
+```javascript
+var f = new Fraction("9.4'31'"); // 9.4313131313131...
+f.mul([-4, 3]).mod("4.'8'"); // 4.88888888888888...
+```
+
+The result can then be displayed as:
+
+```javascript
+console.log(f.toFraction()); // -4154 / 1485
+```
+
+Additionally, you can access the internal attributes of the fraction, such as the sign (s), numerator (n), and denominator (d). Keep in mind that these values are stored as `BigInt`:
+
+```javascript
+Number(f.s) * Number(f.n) / Number(f.d) = -1 * 4154 / 1485 = -2.797306...
+```
+
+If you attempted to calculate this manually using floating-point arithmetic, you'd get something like:
+
+```javascript
+(9.4313131 * (-4 / 3)) % 4.888888 = -2.797308133...
+```
+
+While the result is reasonably close, it’s not as accurate as the fraction-based approach that *Fraction.js* provides, especially when dealing with repeating decimals or complex operations. This highlights the value of precision that the library brings.
+
+### Laplace Probability
+
+Here's a straightforward example of using *Fraction.js* to calculate probabilities. Let's determine the probability of rolling a specific outcome on a fair die:
+
+- **P({3})**: The probability of rolling a 3.
+- **P({1, 4})**: The probability of rolling either 1 or 4.
+- **P({2, 4, 6})**: The probability of rolling 2, 4, or 6.
+
+#### P({3}):
+
+```javascript
+var p = new Fraction([3].length, 6).toString(); // "0.1(6)"
+```
+
+#### P({1, 4}):
+
+```javascript
+var p = new Fraction([1, 4].length, 6).toString(); // "0.(3)"
+```
+
+#### P({2, 4, 6}):
+
+```javascript
+var p = new Fraction([2, 4, 6].length, 6).toString(); // "0.5"
+```
+
+### Convert degrees/minutes/seconds to precise rational representation:
+
+57+45/60+17/3600
+
+```javascript
+var deg = 57; // 57°
+var min = 45; // 45 Minutes
+var sec = 17; // 17 Seconds
+
+new Fraction(deg).add(min, 60).add(sec, 3600).toString() // -> 57.7547(2)
+```
+
+
+### Rational approximation of irrational numbers
+
+To approximate a number like *sqrt(5) - 2* with a numerator and denominator, you can reformat the equation as follows: *pow(n / d + 2, 2) = 5*.
+
+Then the following algorithm will generate the rational number besides the binary representation.
+
+```javascript
+var x = "/", s = "";
+
+var a = new Fraction(0),
+    b = new Fraction(1);
+for (var n = 0; n <= 10; n++) {
+
+  var c = a.add(b).div(2);
+
+  console.log(n + "\t" + a + "\t" + b + "\t" + c + "\t" + x);
+
+  if (c.add(2).pow(2).valueOf() < 5) {
+    a = c;
+    x = "1";
+  } else {
+    b = c;
+    x = "0";
+  }
+  s+= x;
+}
+console.log(s)
+```
+
+The result is
+
+```
+n   a[n]        b[n]        c[n]            x[n]
+0   0/1         1/1         1/2             /
+1   0/1         1/2         1/4             0
+2   0/1         1/4         1/8             0
+3   1/8         1/4         3/16            1
+4   3/16        1/4         7/32            1
+5   7/32        1/4         15/64           1
+6   15/64       1/4         31/128          1
+7   15/64       31/128      61/256          0
+8   15/64       61/256      121/512         0
+9   15/64       121/512     241/1024        0
+10  241/1024    121/512     483/2048        1
+```
+
+Thus the approximation after 11 iterations of the bisection method is *483 / 2048* and the binary representation is 0.00111100011 (see [WolframAlpha](http://www.wolframalpha.com/input/?i=sqrt%285%29-2+binary))
+
+I published another example on how to approximate PI with fraction.js on my [blog](https://raw.org/article/rational-numbers-in-javascript/) (Still not the best idea to approximate irrational numbers, but it illustrates the capabilities of Fraction.js perfectly).
+
+
+### Get the exact fractional part of a number
+
+```javascript
+var f = new Fraction("-6.(3416)");
+console.log(f.mod(1).abs().toFraction()); // = 3416/9999
+```
+
+### Mathematical correct modulo
+
+The behaviour on negative congruences is different to most modulo implementations in computer science. Even the *mod()* function of Fraction.js behaves in the typical way. To solve the problem of having the mathematical correct modulo with Fraction.js you could come up with this:
+
+```javascript
+var a = -1;
+var b = 10.99;
+
+console.log(new Fraction(a)
+  .mod(b)); // Not correct, usual Modulo
+
+console.log(new Fraction(a)
+  .mod(b).add(b).mod(b)); // Correct! Mathematical Modulo
+```
+
+fmod() imprecision circumvented
+---
+It turns out that Fraction.js outperforms almost any fmod() implementation, including JavaScript itself, [php.js](http://phpjs.org/functions/fmod/), C++, Python, Java and even Wolframalpha due to the fact that numbers like 0.05, 0.1, ... are infinite decimal in base 2.
+
+The equation *fmod(4.55, 0.05)* gives *0.04999999999999957*, wolframalpha says *1/20*. The correct answer should be **zero**, as 0.05 divides 4.55 without any remainder.
+
+
+## Parser
+
+Any function (see below) as well as the constructor of the *Fraction* class parses its input and reduce it to the smallest term.
+
+You can pass either Arrays, Objects, Integers, Doubles or Strings.
+
+### Arrays / Objects
+
+```javascript
+new Fraction(numerator, denominator);
+new Fraction([numerator, denominator]);
+new Fraction({n: numerator, d: denominator});
+```
+
+### Integers
+
+```javascript
+new Fraction(123);
+```
+
+### Doubles
+
+```javascript
+new Fraction(55.4);
+```
+
+**Note:** If you pass a double as it is, Fraction.js will perform a number analysis based on Farey Sequences. If you concern performance, cache Fraction.js objects and pass arrays/objects.
+
+The method is really precise, but too large exact numbers, like 1234567.9991829 will result in a wrong approximation. If you want to keep the number as it is, convert it to a string, as the string parser will not perform any further observations. If you have problems with the approximation, in the file `examples/approx.js` is a different approximation algorithm, which might work better in some more specific use-cases.
+
+
+### Strings
+
+```javascript
+new Fraction("123.45");
+new Fraction("123/45"); // A rational number represented as two decimals, separated by a slash
+new Fraction("123:45"); // A rational number represented as two decimals, separated by a colon
+new Fraction("4 123/45"); // A rational number represented as a whole number and a fraction
+new Fraction("123.'456'"); // Note the quotes, see below!
+new Fraction("123.(456)"); // Note the brackets, see below!
+new Fraction("123.45'6'"); // Note the quotes, see below!
+new Fraction("123.45(6)"); // Note the brackets, see below!
+```
+
+### Two arguments
+
+```javascript
+new Fraction(3, 2); // 3/2 = 1.5
+```
+
+### Repeating decimal places
+
+*Fraction.js* can easily handle repeating decimal places. For example *1/3* is *0.3333...*. There is only one repeating digit. As you can see in the examples above, you can pass a number like *1/3* as "0.'3'" or "0.(3)", which are synonym. There are no tests to parse something like 0.166666666 to 1/6! If you really want to handle this number, wrap around brackets on your own with the function below for example: 0.1(66666666)
+
+Assume you want to divide 123.32 / 33.6(567). [WolframAlpha](http://www.wolframalpha.com/input/?i=123.32+%2F+%2812453%2F370%29) states that you'll get a period of 1776 digits. *Fraction.js* comes to the same result. Give it a try:
+
+```javascript
+var f = new Fraction("123.32");
+console.log("Bam: " + f.div("33.6(567)"));
+```
+
+To automatically make a number like "0.123123123" to something more Fraction.js friendly like "0.(123)", I hacked this little brute force algorithm in a 10 minutes. Improvements are welcome...
+
+```javascript
+function formatDecimal(str) {
+
+  var comma, pre, offset, pad, times, repeat;
+
+  if (-1 === (comma = str.indexOf(".")))
+    return str;
+
+  pre = str.substr(0, comma + 1);
+  str = str.substr(comma + 1);
+
+  for (var i = 0; i < str.length; i++) {
+
+    offset = str.substr(0, i);
+
+    for (var j = 0; j < 5; j++) {
+
+      pad = str.substr(i, j + 1);
+
+      times = Math.ceil((str.length - offset.length) / pad.length);
+
+      repeat = new Array(times + 1).join(pad); // Silly String.repeat hack
+
+      if (0 === (offset + repeat).indexOf(str)) {
+        return pre + offset + "(" + pad + ")";
+      }
+    }
+  }
+  return null;
+}
+
+var f, x = formatDecimal("13.0123123123"); // = 13.0(123)
+if (x !== null) {
+  f = new Fraction(x);
+}
+```
+
+## Attributes
+
+
+The Fraction object allows direct access to the numerator, denominator and sign attributes. It is ensured that only the sign-attribute holds sign information so that a sign comparison is only necessary against this attribute.
+
+```javascript
+var f = new Fraction('-1/2');
+console.log(f.n); // Numerator: 1
+console.log(f.d); // Denominator: 2
+console.log(f.s); // Sign: -1
+```
+
+
+## Functions
+
+### Fraction abs()
+
+Returns the actual number without any sign information
+
+### Fraction neg()
+
+Returns the actual number with flipped sign in order to get the additive inverse
+
+### Fraction add(n)
+
+Returns the sum of the actual number and the parameter n
+
+### Fraction sub(n)
+
+Returns the difference of the actual number and the parameter n
+
+### Fraction mul(n)
+
+Returns the product of the actual number and the parameter n
+
+### Fraction div(n)
+
+Returns the quotient of the actual number and the parameter n
+
+### Fraction pow(exp)
+
+Returns the power of the actual number, raised to an possible rational exponent. If the result becomes non-rational the function returns `null`.
+
+### Fraction log(base)
+
+Returns the logarithm of the actual number to a given rational base. If the result becomes non-rational the function returns `null`.
+
+### Fraction mod(n)
+
+Returns the modulus (rest of the division) of the actual object and n (this % n). It's a much more precise [fmod()](#fmod-impreciseness-circumvented) if you like. Please note that *mod()* is just like the modulo operator of most programming languages. If you want a mathematical correct modulo, see [here](#mathematical-correct-modulo).
+
+### Fraction mod()
+
+Returns the modulus (rest of the division) of the actual object (numerator mod denominator)
+
+### Fraction gcd(n)
+
+Returns the fractional greatest common divisor
+
+### Fraction lcm(n)
+
+Returns the fractional least common multiple
+
+### Fraction ceil([places=0-16])
+
+Returns the ceiling of a rational number with Math.ceil
+
+### Fraction floor([places=0-16])
+
+Returns the floor of a rational number with Math.floor
+
+### Fraction round([places=0-16])
+
+Returns the rational number rounded with Math.round
+
+### Fraction roundTo(multiple)
+
+Rounds a fraction to the closest multiple of another fraction. 
+
+### Fraction inverse()
+
+Returns the multiplicative inverse of the actual number (n / d becomes d / n) in order to get the reciprocal
+
+### Fraction simplify([eps=0.001])
+
+Simplifies the rational number under a certain error threshold. Ex. `0.333` will be `1/3` with `eps=0.001`
+
+### boolean equals(n)
+
+Check if two rational numbers are equal
+
+### boolean lt(n)
+
+Check if this rational number is less than another
+
+### boolean lte(n)
+
+Check if this rational number is less than or equal another
+
+### boolean gt(n)
+
+Check if this rational number is greater than another
+
+### boolean gte(n)
+
+Check if this rational number is greater than or equal another
+
+### int compare(n)
+
+Compare two numbers.
+```
+result < 0: n is greater than actual number
+result > 0: n is smaller than actual number
+result = 0: n is equal to the actual number
+```
+
+### boolean divisible(n)
+
+Check if two numbers are divisible (n divides this)
+
+### double valueOf()
+
+Returns a decimal representation of the fraction
+
+### String toString([decimalPlaces=15])
+
+Generates an exact string representation of the given object. For repeating decimal places, digits within repeating cycles are enclosed in parentheses, e.g., `1/3 = "0.(3)"`. For other numbers, the string will include up to the specified `decimalPlaces` significant digits, including any trailing zeros if truncation occurs. For example, `1/2` will be represented as `"0.5"`, without additional trailing zeros.
+
+**Note:** Since both `valueOf()` and `toString()` are provided, `toString()` will only be invoked implicitly when the object is used in a string context. For instance, when using the plus operator like `"123" + new Fraction`, `valueOf()` will be called first, as JavaScript attempts to combine primitives before concatenating them, with the string type taking precedence. However, `alert(new Fraction)` or `String(new Fraction)` will behave as expected. To ensure specific behavior, explicitly call either `toString()` or `valueOf()`.
+
+### String toLatex(showMixed=false)
+
+Generates an exact LaTeX representation of the actual object. You can see a [live demo](https://raw.org/article/rational-numbers-in-javascript/) on my blog.
+
+The optional boolean parameter indicates if you want to show the a mixed fraction. "1 1/3" instead of "4/3"
+
+### String toFraction(showMixed=false)
+
+Gets a string representation of the fraction
+
+The optional boolean parameter indicates if you want to showa mixed fraction. "1 1/3" instead of "4/3"
+
+### Array toContinued()
+
+Gets an array of the fraction represented as a continued fraction. The first element always contains the whole part.
+
+```javascript
+var f = new Fraction('88/33');
+var c = f.toContinued(); // [2, 1, 2]
+```
+
+### Fraction clone()
+
+Creates a copy of the actual Fraction object
+
+
+## Exceptions
+
+If a really hard error occurs (parsing error, division by zero), *Fraction.js* throws exceptions! Please make sure you handle them correctly.
+
+
+## Installation
+
+You can install `Fraction.js` via npm:
+
+```bash
+npm install fraction.js
+```
+
+Or with yarn:
+
+```bash
+yarn add fraction.js
+```
+
+Alternatively, download or clone the repository:
+
+```bash
+git clone https://github.com/rawify/Fraction.js
+```
+
+## Usage
+
+Include the `fraction.min.js` file in your project:
+
+```html
+<script src="path/to/fraction.min.js"></script>
+<script>
+  var x = new Fraction("13/4");
+</script>
+```
+
+Or in a Node.js project:
+
+```javascript
+const Fraction = require('fraction.js');
+```
+
+or 
+
+```javascript
+import Fraction from 'fraction.js';
+```
+
+
+## Coding Style
+
+As every library I publish, Fraction.js is also built to be as small as possible after compressing it with Google Closure Compiler in advanced mode. Thus the coding style orientates a little on maxing-out the compression rate. Please make sure you keep this style if you plan to extend the library.
+
+## Building the library
+
+After cloning the Git repository run:
+
+```bash
+npm install
+npm run build
+```
+
+## Run a test
+
+Testing the source against the shipped test suite is as easy as
+
+```bash
+npm run test
+```
+
+## Copyright and Licensing
+
+Copyright (c) 2025, [Robert Eisele](https://raw.org/)
+Licensed under the MIT license.
Index: node_modules/fraction.js/dist/fraction.js
===================================================================
--- node_modules/fraction.js/dist/fraction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/dist/fraction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1045 @@
+'use strict';
+
+/**
+ *
+ * This class offers the possibility to calculate fractions.
+ * You can pass a fraction in different formats. Either as array, as double, as string or as an integer.
+ *
+ * Array/Object form
+ * [ 0 => <numerator>, 1 => <denominator> ]
+ * { n => <numerator>, d => <denominator> }
+ *
+ * Integer form
+ * - Single integer value as BigInt or Number
+ *
+ * Double form
+ * - Single double value as Number
+ *
+ * String form
+ * 123.456 - a simple double
+ * 123/456 - a string fraction
+ * 123.'456' - a double with repeating decimal places
+ * 123.(456) - synonym
+ * 123.45'6' - a double with repeating last place
+ * 123.45(6) - synonym
+ *
+ * Example:
+ * let f = new Fraction("9.4'31'");
+ * f.mul([-4, 3]).div(4.9);
+ *
+ */
+
+// Set Identity function to downgrade BigInt to Number if needed
+if (typeof BigInt === 'undefined') BigInt = function (n) { if (isNaN(n)) throw new Error(""); return n; };
+
+const C_ZERO = BigInt(0);
+const C_ONE = BigInt(1);
+const C_TWO = BigInt(2);
+const C_THREE = BigInt(3);
+const C_FIVE = BigInt(5);
+const C_TEN = BigInt(10);
+const MAX_INTEGER = BigInt(Number.MAX_SAFE_INTEGER);
+
+// Maximum search depth for cyclic rational numbers. 2000 should be more than enough.
+// Example: 1/7 = 0.(142857) has 6 repeating decimal places.
+// If MAX_CYCLE_LEN gets reduced, long cycles will not be detected and toString() only gets the first 10 digits
+const MAX_CYCLE_LEN = 2000;
+
+// Parsed data to avoid calling "new" all the time
+const P = {
+  "s": C_ONE,
+  "n": C_ZERO,
+  "d": C_ONE
+};
+
+function assign(n, s) {
+
+  try {
+    n = BigInt(n);
+  } catch (e) {
+    throw InvalidParameter();
+  }
+  return n * s;
+}
+
+function ifloor(x) {
+  return typeof x === 'bigint' ? x : Math.floor(x);
+}
+
+// Creates a new Fraction internally without the need of the bulky constructor
+function newFraction(n, d) {
+
+  if (d === C_ZERO) {
+    throw DivisionByZero();
+  }
+
+  const f = Object.create(Fraction.prototype);
+  f["s"] = n < C_ZERO ? -C_ONE : C_ONE;
+
+  n = n < C_ZERO ? -n : n;
+
+  const a = gcd(n, d);
+
+  f["n"] = n / a;
+  f["d"] = d / a;
+  return f;
+}
+
+const FACTORSTEPS = [C_TWO * C_TWO, C_TWO, C_TWO * C_TWO, C_TWO, C_TWO * C_TWO, C_TWO * C_THREE, C_TWO, C_TWO * C_THREE]; // repeats
+function factorize(n) {
+
+  const factors = Object.create(null);
+  if (n <= C_ONE) {
+    factors[n] = C_ONE;
+    return factors;
+  }
+
+  const add = (p) => { factors[p] = (factors[p] || C_ZERO) + C_ONE; };
+
+  while (n % C_TWO === C_ZERO) { add(C_TWO); n /= C_TWO; }
+  while (n % C_THREE === C_ZERO) { add(C_THREE); n /= C_THREE; }
+  while (n % C_FIVE === C_ZERO) { add(C_FIVE); n /= C_FIVE; }
+
+  // 30-wheel trial division: test only residues coprime to 2*3*5
+  // Residue step pattern after 5: 7,11,13,17,19,23,29,31, ...
+  for (let si = 0, p = C_TWO + C_FIVE; p * p <= n;) {
+    while (n % p === C_ZERO) { add(p); n /= p; }
+    p += FACTORSTEPS[si];
+    si = (si + 1) & 7; // fast modulo 8
+  }
+  if (n > C_ONE) add(n);
+  return factors;
+}
+
+const parse = function (p1, p2) {
+
+  let n = C_ZERO, d = C_ONE, s = C_ONE;
+
+  if (p1 === undefined || p1 === null) { // No argument
+    /* void */
+  } else if (p2 !== undefined) { // Two arguments
+
+    if (typeof p1 === "bigint") {
+      n = p1;
+    } else if (isNaN(p1)) {
+      throw InvalidParameter();
+    } else if (p1 % 1 !== 0) {
+      throw NonIntegerParameter();
+    } else {
+      n = BigInt(p1);
+    }
+
+    if (typeof p2 === "bigint") {
+      d = p2;
+    } else if (isNaN(p2)) {
+      throw InvalidParameter();
+    } else if (p2 % 1 !== 0) {
+      throw NonIntegerParameter();
+    } else {
+      d = BigInt(p2);
+    }
+
+    s = n * d;
+
+  } else if (typeof p1 === "object") {
+    if ("d" in p1 && "n" in p1) {
+      n = BigInt(p1["n"]);
+      d = BigInt(p1["d"]);
+      if ("s" in p1)
+        n *= BigInt(p1["s"]);
+    } else if (0 in p1) {
+      n = BigInt(p1[0]);
+      if (1 in p1)
+        d = BigInt(p1[1]);
+    } else if (typeof p1 === "bigint") {
+      n = p1;
+    } else {
+      throw InvalidParameter();
+    }
+    s = n * d;
+  } else if (typeof p1 === "number") {
+
+    if (isNaN(p1)) {
+      throw InvalidParameter();
+    }
+
+    if (p1 < 0) {
+      s = -C_ONE;
+      p1 = -p1;
+    }
+
+    if (p1 % 1 === 0) {
+      n = BigInt(p1);
+    } else {
+
+      let z = 1;
+
+      let A = 0, B = 1;
+      let C = 1, D = 1;
+
+      let N = 10000000;
+
+      if (p1 >= 1) {
+        z = 10 ** Math.floor(1 + Math.log10(p1));
+        p1 /= z;
+      }
+
+      // Using Farey Sequences
+
+      while (B <= N && D <= N) {
+        let M = (A + C) / (B + D);
+
+        if (p1 === M) {
+          if (B + D <= N) {
+            n = A + C;
+            d = B + D;
+          } else if (D > B) {
+            n = C;
+            d = D;
+          } else {
+            n = A;
+            d = B;
+          }
+          break;
+
+        } else {
+
+          if (p1 > M) {
+            A += C;
+            B += D;
+          } else {
+            C += A;
+            D += B;
+          }
+
+          if (B > N) {
+            n = C;
+            d = D;
+          } else {
+            n = A;
+            d = B;
+          }
+        }
+      }
+      n = BigInt(n) * BigInt(z);
+      d = BigInt(d);
+    }
+
+  } else if (typeof p1 === "string") {
+
+    let ndx = 0;
+
+    let v = C_ZERO, w = C_ZERO, x = C_ZERO, y = C_ONE, z = C_ONE;
+
+    let match = p1.replace(/_/g, '').match(/\d+|./g);
+
+    if (match === null)
+      throw InvalidParameter();
+
+    if (match[ndx] === '-') {// Check for minus sign at the beginning
+      s = -C_ONE;
+      ndx++;
+    } else if (match[ndx] === '+') {// Check for plus sign at the beginning
+      ndx++;
+    }
+
+    if (match.length === ndx + 1) { // Check if it's just a simple number "1234"
+      w = assign(match[ndx++], s);
+    } else if (match[ndx + 1] === '.' || match[ndx] === '.') { // Check if it's a decimal number
+
+      if (match[ndx] !== '.') { // Handle 0.5 and .5
+        v = assign(match[ndx++], s);
+      }
+      ndx++;
+
+      // Check for decimal places
+      if (ndx + 1 === match.length || match[ndx + 1] === '(' && match[ndx + 3] === ')' || match[ndx + 1] === "'" && match[ndx + 3] === "'") {
+        w = assign(match[ndx], s);
+        y = C_TEN ** BigInt(match[ndx].length);
+        ndx++;
+      }
+
+      // Check for repeating places
+      if (match[ndx] === '(' && match[ndx + 2] === ')' || match[ndx] === "'" && match[ndx + 2] === "'") {
+        x = assign(match[ndx + 1], s);
+        z = C_TEN ** BigInt(match[ndx + 1].length) - C_ONE;
+        ndx += 3;
+      }
+
+    } else if (match[ndx + 1] === '/' || match[ndx + 1] === ':') { // Check for a simple fraction "123/456" or "123:456"
+      w = assign(match[ndx], s);
+      y = assign(match[ndx + 2], C_ONE);
+      ndx += 3;
+    } else if (match[ndx + 3] === '/' && match[ndx + 1] === ' ') { // Check for a complex fraction "123 1/2"
+      v = assign(match[ndx], s);
+      w = assign(match[ndx + 2], s);
+      y = assign(match[ndx + 4], C_ONE);
+      ndx += 5;
+    }
+
+    if (match.length <= ndx) { // Check for more tokens on the stack
+      d = y * z;
+      s = /* void */
+        n = x + d * v + z * w;
+    } else {
+      throw InvalidParameter();
+    }
+
+  } else if (typeof p1 === "bigint") {
+    n = p1;
+    s = p1;
+    d = C_ONE;
+  } else {
+    throw InvalidParameter();
+  }
+
+  if (d === C_ZERO) {
+    throw DivisionByZero();
+  }
+
+  P["s"] = s < C_ZERO ? -C_ONE : C_ONE;
+  P["n"] = n < C_ZERO ? -n : n;
+  P["d"] = d < C_ZERO ? -d : d;
+};
+
+function modpow(b, e, m) {
+
+  let r = C_ONE;
+  for (; e > C_ZERO; b = (b * b) % m, e >>= C_ONE) {
+
+    if (e & C_ONE) {
+      r = (r * b) % m;
+    }
+  }
+  return r;
+}
+
+function cycleLen(n, d) {
+
+  for (; d % C_TWO === C_ZERO;
+    d /= C_TWO) {
+  }
+
+  for (; d % C_FIVE === C_ZERO;
+    d /= C_FIVE) {
+  }
+
+  if (d === C_ONE) // Catch non-cyclic numbers
+    return C_ZERO;
+
+  // If we would like to compute really large numbers quicker, we could make use of Fermat's little theorem:
+  // 10^(d-1) % d == 1
+  // However, we don't need such large numbers and MAX_CYCLE_LEN should be the capstone,
+  // as we want to translate the numbers to strings.
+
+  let rem = C_TEN % d;
+  let t = 1;
+
+  for (; rem !== C_ONE; t++) {
+    rem = rem * C_TEN % d;
+
+    if (t > MAX_CYCLE_LEN)
+      return C_ZERO; // Returning 0 here means that we don't print it as a cyclic number. It's likely that the answer is `d-1`
+  }
+  return BigInt(t);
+}
+
+function cycleStart(n, d, len) {
+
+  let rem1 = C_ONE;
+  let rem2 = modpow(C_TEN, len, d);
+
+  for (let t = 0; t < 300; t++) { // s < ~log10(Number.MAX_VALUE)
+    // Solve 10^s == 10^(s+t) (mod d)
+
+    if (rem1 === rem2)
+      return BigInt(t);
+
+    rem1 = rem1 * C_TEN % d;
+    rem2 = rem2 * C_TEN % d;
+  }
+  return 0;
+}
+
+function gcd(a, b) {
+
+  if (!a)
+    return b;
+  if (!b)
+    return a;
+
+  while (1) {
+    a %= b;
+    if (!a)
+      return b;
+    b %= a;
+    if (!b)
+      return a;
+  }
+}
+
+/**
+ * Module constructor
+ *
+ * @constructor
+ * @param {number|Fraction=} a
+ * @param {number=} b
+ */
+function Fraction(a, b) {
+
+  parse(a, b);
+
+  if (this instanceof Fraction) {
+    a = gcd(P["d"], P["n"]); // Abuse a
+    this["s"] = P["s"];
+    this["n"] = P["n"] / a;
+    this["d"] = P["d"] / a;
+  } else {
+    return newFraction(P['s'] * P['n'], P['d']);
+  }
+}
+
+const DivisionByZero = function () { return new Error("Division by Zero"); };
+const InvalidParameter = function () { return new Error("Invalid argument"); };
+const NonIntegerParameter = function () { return new Error("Parameters must be integer"); };
+
+Fraction.prototype = {
+
+  "s": C_ONE,
+  "n": C_ZERO,
+  "d": C_ONE,
+
+  /**
+   * Calculates the absolute value
+   *
+   * Ex: new Fraction(-4).abs() => 4
+   **/
+  "abs": function () {
+
+    return newFraction(this["n"], this["d"]);
+  },
+
+  /**
+   * Inverts the sign of the current fraction
+   *
+   * Ex: new Fraction(-4).neg() => 4
+   **/
+  "neg": function () {
+
+    return newFraction(-this["s"] * this["n"], this["d"]);
+  },
+
+  /**
+   * Adds two rational numbers
+   *
+   * Ex: new Fraction({n: 2, d: 3}).add("14.9") => 467 / 30
+   **/
+  "add": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * this["n"] * P["d"] + P["s"] * this["d"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Subtracts two rational numbers
+   *
+   * Ex: new Fraction({n: 2, d: 3}).add("14.9") => -427 / 30
+   **/
+  "sub": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * this["n"] * P["d"] - P["s"] * this["d"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Multiplies two rational numbers
+   *
+   * Ex: new Fraction("-17.(345)").mul(3) => 5776 / 111
+   **/
+  "mul": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * P["s"] * this["n"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Divides two rational numbers
+   *
+   * Ex: new Fraction("-17.(345)").inverse().div(3)
+   **/
+  "div": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * P["s"] * this["n"] * P["d"],
+      this["d"] * P["n"]
+    );
+  },
+
+  /**
+   * Clones the actual object
+   *
+   * Ex: new Fraction("-17.(345)").clone()
+   **/
+  "clone": function () {
+    return newFraction(this['s'] * this['n'], this['d']);
+  },
+
+  /**
+   * Calculates the modulo of two rational numbers - a more precise fmod
+   *
+   * Ex: new Fraction('4.(3)').mod([7, 8]) => (13/3) % (7/8) = (5/6)
+   * Ex: new Fraction(20, 10).mod().equals(0) ? "is Integer"
+   **/
+  "mod": function (a, b) {
+
+    if (a === undefined) {
+      return newFraction(this["s"] * this["n"] % this["d"], C_ONE);
+    }
+
+    parse(a, b);
+    if (C_ZERO === P["n"] * this["d"]) {
+      throw DivisionByZero();
+    }
+
+    /**
+     * I derived the rational modulo similar to the modulo for integers
+     *
+     * https://raw.org/book/analysis/rational-numbers/
+     *
+     *    n1/d1 = (n2/d2) * q + r, where 0 ≤ r < n2/d2
+     * => d2 * n1 = n2 * d1 * q + d1 * d2 * r
+     * => r = (d2 * n1 - n2 * d1 * q) / (d1 * d2)
+     *      = (d2 * n1 - n2 * d1 * floor((d2 * n1) / (n2 * d1))) / (d1 * d2)
+     *      = ((d2 * n1) % (n2 * d1)) / (d1 * d2)
+     */
+    return newFraction(
+      this["s"] * (P["d"] * this["n"]) % (P["n"] * this["d"]),
+      P["d"] * this["d"]);
+  },
+
+  /**
+   * Calculates the fractional gcd of two rational numbers
+   *
+   * Ex: new Fraction(5,8).gcd(3,7) => 1/56
+   */
+  "gcd": function (a, b) {
+
+    parse(a, b);
+
+    // https://raw.org/book/analysis/rational-numbers/
+    // gcd(a / b, c / d) = gcd(a, c) / lcm(b, d)
+
+    return newFraction(gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]), P["d"] * this["d"]);
+  },
+
+  /**
+   * Calculates the fractional lcm of two rational numbers
+   *
+   * Ex: new Fraction(5,8).lcm(3,7) => 15
+   */
+  "lcm": function (a, b) {
+
+    parse(a, b);
+
+    // https://raw.org/book/analysis/rational-numbers/
+    // lcm(a / b, c / d) = lcm(a, c) / gcd(b, d)
+
+    if (P["n"] === C_ZERO && this["n"] === C_ZERO) {
+      return newFraction(C_ZERO, C_ONE);
+    }
+    return newFraction(P["n"] * this["n"], gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]));
+  },
+
+  /**
+   * Gets the inverse of the fraction, means numerator and denominator are exchanged
+   *
+   * Ex: new Fraction([-3, 4]).inverse() => -4 / 3
+   **/
+  "inverse": function () {
+    return newFraction(this["s"] * this["d"], this["n"]);
+  },
+
+  /**
+   * Calculates the fraction to some integer exponent
+   *
+   * Ex: new Fraction(-1,2).pow(-3) => -8
+   */
+  "pow": function (a, b) {
+
+    parse(a, b);
+
+    // Trivial case when exp is an integer
+
+    if (P['d'] === C_ONE) {
+
+      if (P['s'] < C_ZERO) {
+        return newFraction((this['s'] * this["d"]) ** P['n'], this["n"] ** P['n']);
+      } else {
+        return newFraction((this['s'] * this["n"]) ** P['n'], this["d"] ** P['n']);
+      }
+    }
+
+    // Negative roots become complex
+    //     (-a/b)^(c/d) = x
+    // ⇔ (-1)^(c/d) * (a/b)^(c/d) = x
+    // ⇔ (cos(pi) + i*sin(pi))^(c/d) * (a/b)^(c/d) = x
+    // ⇔ (cos(c*pi/d) + i*sin(c*pi/d)) * (a/b)^(c/d) = x       # DeMoivre's formula
+    // From which follows that only for c=0 the root is non-complex
+    if (this['s'] < C_ZERO) return null;
+
+    // Now prime factor n and d
+    let N = factorize(this['n']);
+    let D = factorize(this['d']);
+
+    // Exponentiate and take root for n and d individually
+    let n = C_ONE;
+    let d = C_ONE;
+    for (let k in N) {
+      if (k === '1') continue;
+      if (k === '0') {
+        n = C_ZERO;
+        break;
+      }
+      N[k] *= P['n'];
+
+      if (N[k] % P['d'] === C_ZERO) {
+        N[k] /= P['d'];
+      } else return null;
+      n *= BigInt(k) ** N[k];
+    }
+
+    for (let k in D) {
+      if (k === '1') continue;
+      D[k] *= P['n'];
+
+      if (D[k] % P['d'] === C_ZERO) {
+        D[k] /= P['d'];
+      } else return null;
+      d *= BigInt(k) ** D[k];
+    }
+
+    if (P['s'] < C_ZERO) {
+      return newFraction(d, n);
+    }
+    return newFraction(n, d);
+  },
+
+  /**
+   * Calculates the logarithm of a fraction to a given rational base
+   *
+   * Ex: new Fraction(27, 8).log(9, 4) => 3/2
+   */
+  "log": function (a, b) {
+
+    parse(a, b);
+
+    if (this['s'] <= C_ZERO || P['s'] <= C_ZERO) return null;
+
+    const allPrimes = Object.create(null);
+
+    const baseFactors = factorize(P['n']);
+    const T1 = factorize(P['d']);
+
+    const numberFactors = factorize(this['n']);
+    const T2 = factorize(this['d']);
+
+    for (const prime in T1) {
+      baseFactors[prime] = (baseFactors[prime] || C_ZERO) - T1[prime];
+    }
+    for (const prime in T2) {
+      numberFactors[prime] = (numberFactors[prime] || C_ZERO) - T2[prime];
+    }
+
+    for (const prime in baseFactors) {
+      if (prime === '1') continue;
+      allPrimes[prime] = true;
+    }
+    for (const prime in numberFactors) {
+      if (prime === '1') continue;
+      allPrimes[prime] = true;
+    }
+
+    let retN = null;
+    let retD = null;
+
+    // Iterate over all unique primes to determine if a consistent ratio exists
+    for (const prime in allPrimes) {
+
+      const baseExponent = baseFactors[prime] || C_ZERO;
+      const numberExponent = numberFactors[prime] || C_ZERO;
+
+      if (baseExponent === C_ZERO) {
+        if (numberExponent !== C_ZERO) {
+          return null; // Logarithm cannot be expressed as a rational number
+        }
+        continue; // Skip this prime since both exponents are zero
+      }
+
+      // Calculate the ratio of exponents for this prime
+      let curN = numberExponent;
+      let curD = baseExponent;
+
+      // Simplify the current ratio
+      const gcdValue = gcd(curN, curD);
+      curN /= gcdValue;
+      curD /= gcdValue;
+
+      // Check if this is the first ratio; otherwise, ensure ratios are consistent
+      if (retN === null && retD === null) {
+        retN = curN;
+        retD = curD;
+      } else if (curN * retD !== retN * curD) {
+        return null; // Ratios do not match, logarithm cannot be rational
+      }
+    }
+
+    return retN !== null && retD !== null
+      ? newFraction(retN, retD)
+      : null;
+  },
+
+  /**
+   * Check if two rational numbers are the same
+   *
+   * Ex: new Fraction(19.6).equals([98, 5]);
+   **/
+  "equals": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] === P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is less than another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "lt": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] < P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is less than or equal another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "lte": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] <= P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is greater than another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "gt": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] > P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is greater than or equal another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "gte": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] >= P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Compare two rational numbers
+   * < 0 iff this < that
+   * > 0 iff this > that
+   * = 0 iff this = that
+   *
+   * Ex: new Fraction(19.6).compare([98, 5]);
+   **/
+  "compare": function (a, b) {
+
+    parse(a, b);
+    let t = this["s"] * this["n"] * P["d"] - P["s"] * P["n"] * this["d"];
+
+    return (C_ZERO < t) - (t < C_ZERO);
+  },
+
+  /**
+   * Calculates the ceil of a rational number
+   *
+   * Ex: new Fraction('4.(3)').ceil() => (5 / 1)
+   **/
+  "ceil": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) +
+      (places * this["n"] % this["d"] > C_ZERO && this["s"] >= C_ZERO ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+   * Calculates the floor of a rational number
+   *
+   * Ex: new Fraction('4.(3)').floor() => (4 / 1)
+   **/
+  "floor": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) -
+      (places * this["n"] % this["d"] > C_ZERO && this["s"] < C_ZERO ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+   * Rounds a rational numbers
+   *
+   * Ex: new Fraction('4.(3)').round() => (4 / 1)
+   **/
+  "round": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    /* Derivation:
+
+    s >= 0:
+      round(n / d) = ifloor(n / d) + (n % d) / d >= 0.5 ? 1 : 0
+                   = ifloor(n / d) + 2(n % d) >= d ? 1 : 0
+    s < 0:
+      round(n / d) =-ifloor(n / d) - (n % d) / d > 0.5 ? 1 : 0
+                   =-ifloor(n / d) - 2(n % d) > d ? 1 : 0
+
+    =>:
+
+    round(s * n / d) = s * ifloor(n / d) + s * (C + 2(n % d) > d ? 1 : 0)
+        where C = s >= 0 ? 1 : 0, to fix the >= for the positve case.
+    */
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) +
+      this["s"] * ((this["s"] >= C_ZERO ? C_ONE : C_ZERO) + C_TWO * (places * this["n"] % this["d"]) > this["d"] ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+    * Rounds a rational number to a multiple of another rational number
+    *
+    * Ex: new Fraction('0.9').roundTo("1/8") => 7 / 8
+    **/
+  "roundTo": function (a, b) {
+
+    /*
+    k * x/y ≤ a/b < (k+1) * x/y
+    ⇔ k ≤ a/b / (x/y) < (k+1)
+    ⇔ k = floor(a/b * y/x)
+    ⇔ k = floor((a * y) / (b * x))
+    */
+
+    parse(a, b);
+
+    const n = this['n'] * P['d'];
+    const d = this['d'] * P['n'];
+    const r = n % d;
+
+    // round(n / d) = ifloor(n / d) + 2(n % d) >= d ? 1 : 0
+    let k = ifloor(n / d);
+    if (r + r >= d) {
+      k++;
+    }
+    return newFraction(this['s'] * k * P['n'], P['d']);
+  },
+
+  /**
+   * Check if two rational numbers are divisible
+   *
+   * Ex: new Fraction(19.6).divisible(1.5);
+   */
+  "divisible": function (a, b) {
+
+    parse(a, b);
+    if (P['n'] === C_ZERO) return false;
+    return (this['n'] * P['d']) % (P['n'] * this['d']) === C_ZERO;
+  },
+
+  /**
+   * Returns a decimal representation of the fraction
+   *
+   * Ex: new Fraction("100.'91823'").valueOf() => 100.91823918239183
+   **/
+  'valueOf': function () {
+    //if (this['n'] <= MAX_INTEGER && this['d'] <= MAX_INTEGER) {
+    return Number(this['s'] * this['n']) / Number(this['d']);
+    //}
+  },
+
+  /**
+   * Creates a string representation of a fraction with all digits
+   *
+   * Ex: new Fraction("100.'91823'").toString() => "100.(91823)"
+   **/
+  'toString': function (dec = 15) {
+
+    let N = this["n"];
+    let D = this["d"];
+
+    let cycLen = cycleLen(N, D); // Cycle length
+    let cycOff = cycleStart(N, D, cycLen); // Cycle start
+
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    // Append integer part
+    str += ifloor(N / D);
+
+    N %= D;
+    N *= C_TEN;
+
+    if (N)
+      str += ".";
+
+    if (cycLen) {
+
+      for (let i = cycOff; i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+      str += "(";
+      for (let i = cycLen; i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+      str += ")";
+    } else {
+      for (let i = dec; N && i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+    }
+    return str;
+  },
+
+  /**
+   * Returns a string-fraction representation of a Fraction object
+   *
+   * Ex: new Fraction("1.'3'").toFraction() => "4 1/3"
+   **/
+  'toFraction': function (showMixed = false) {
+
+    let n = this["n"];
+    let d = this["d"];
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    if (d === C_ONE) {
+      str += n;
+    } else {
+      const whole = ifloor(n / d);
+      if (showMixed && whole > C_ZERO) {
+        str += whole;
+        str += " ";
+        n %= d;
+      }
+
+      str += n;
+      str += '/';
+      str += d;
+    }
+    return str;
+  },
+
+  /**
+   * Returns a latex representation of a Fraction object
+   *
+   * Ex: new Fraction("1.'3'").toLatex() => "\frac{4}{3}"
+   **/
+  'toLatex': function (showMixed = false) {
+
+    let n = this["n"];
+    let d = this["d"];
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    if (d === C_ONE) {
+      str += n;
+    } else {
+      const whole = ifloor(n / d);
+      if (showMixed && whole > C_ZERO) {
+        str += whole;
+        n %= d;
+      }
+
+      str += "\\frac{";
+      str += n;
+      str += '}{';
+      str += d;
+      str += '}';
+    }
+    return str;
+  },
+
+  /**
+   * Returns an array of continued fraction elements
+   *
+   * Ex: new Fraction("7/8").toContinued() => [0,1,7]
+   */
+  'toContinued': function () {
+
+    let a = this['n'];
+    let b = this['d'];
+    const res = [];
+
+    while (b) {
+      res.push(ifloor(a / b));
+      const t = a % b;
+      a = b;
+      b = t;
+    }
+    return res;
+  },
+
+  "simplify": function (eps = 1e-3) {
+
+    // Continued fractions give best approximations for a max denominator,
+    // generally outperforming mediants in denominator–accuracy trade-offs.
+    // Semiconvergents can further reduce the denominator within tolerance.
+
+    const ieps = BigInt(Math.ceil(1 / eps));
+
+    const thisABS = this['abs']();
+    const cont = thisABS['toContinued']();
+
+    for (let i = 1; i < cont.length; i++) {
+
+      let s = newFraction(cont[i - 1], C_ONE);
+      for (let k = i - 2; k >= 0; k--) {
+        s = s['inverse']()['add'](cont[k]);
+      }
+
+      let t = s['sub'](thisABS);
+      if (t['n'] * ieps < t['d']) { // More robust than Math.abs(t.valueOf()) < eps
+        return s['mul'](this['s']);
+      }
+    }
+    return this;
+  }
+};
+
+Object.defineProperty(Fraction, "__esModule", { 'value': true });
+Fraction['default'] = Fraction;
+Fraction['Fraction'] = Fraction;
+module['exports'] = Fraction;
Index: node_modules/fraction.js/dist/fraction.min.js
===================================================================
--- node_modules/fraction.js/dist/fraction.min.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/dist/fraction.min.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,21 @@
+/*
+Fraction.js v5.3.4 8/22/2025
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2025, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+'use strict';(function(F){function D(){return Error("Parameters must be integer")}function x(){return Error("Invalid argument")}function C(){return Error("Division by Zero")}function q(a,b){var d=g,c=h;let f=h;if(void 0!==a&&null!==a)if(void 0!==b){if("bigint"===typeof a)d=a;else{if(isNaN(a))throw x();if(0!==a%1)throw D();d=BigInt(a)}if("bigint"===typeof b)c=b;else{if(isNaN(b))throw x();if(0!==b%1)throw D();c=BigInt(b)}f=d*c}else if("object"===typeof a){if("d"in a&&"n"in a)d=BigInt(a.n),c=BigInt(a.d),
+"s"in a&&(d*=BigInt(a.s));else if(0 in a)d=BigInt(a[0]),1 in a&&(c=BigInt(a[1]));else if("bigint"===typeof a)d=a;else throw x();f=d*c}else if("number"===typeof a){if(isNaN(a))throw x();0>a&&(f=-h,a=-a);if(0===a%1)d=BigInt(a);else{b=1;var k=0,l=1,m=1;let r=1;1<=a&&(b=10**Math.floor(1+Math.log10(a)),a/=b);for(;1E7>=l&&1E7>=r;)if(c=(k+m)/(l+r),a===c){1E7>=l+r?(d=k+m,c=l+r):r>l?(d=m,c=r):(d=k,c=l);break}else a>c?(k+=m,l+=r):(m+=k,r+=l),1E7<l?(d=m,c=r):(d=k,c=l);d=BigInt(d)*BigInt(b);c=BigInt(c)}}else if("string"===
+typeof a){c=0;k=b=d=g;l=m=h;a=a.replace(/_/g,"").match(/\d+|./g);if(null===a)throw x();"-"===a[c]?(f=-h,c++):"+"===a[c]&&c++;if(a.length===c+1)b=w(a[c++],f);else if("."===a[c+1]||"."===a[c]){"."!==a[c]&&(d=w(a[c++],f));c++;if(c+1===a.length||"("===a[c+1]&&")"===a[c+3]||"'"===a[c+1]&&"'"===a[c+3])b=w(a[c],f),m=t**BigInt(a[c].length),c++;if("("===a[c]&&")"===a[c+2]||"'"===a[c]&&"'"===a[c+2])k=w(a[c+1],f),l=t**BigInt(a[c+1].length)-h,c+=3}else"/"===a[c+1]||":"===a[c+1]?(b=w(a[c],f),m=w(a[c+2],h),c+=
+3):"/"===a[c+3]&&" "===a[c+1]&&(d=w(a[c],f),b=w(a[c+2],f),m=w(a[c+4],h),c+=5);if(a.length<=c)c=m*l,f=d=k+c*d+l*b;else throw x();}else if("bigint"===typeof a)f=d=a,c=h;else throw x();if(c===g)throw C();e.s=f<g?-h:h;e.n=d<g?-d:d;e.d=c<g?-c:c}function w(a,b){try{a=BigInt(a)}catch(d){throw x();}return a*b}function u(a){return"bigint"===typeof a?a:Math.floor(a)}function n(a,b){if(b===g)throw C();const d=Object.create(v.prototype);d.s=a<g?-h:h;a=a<g?-a:a;const c=y(a,b);d.n=a/c;d.d=b/c;return d}function A(a){const b=
+Object.create(null);if(a<=h)return b[a]=h,b;for(;a%p===g;)b[p]=(b[p]||g)+h,a/=p;for(;a%B===g;)b[B]=(b[B]||g)+h,a/=B;for(;a%z===g;)b[z]=(b[z]||g)+h,a/=z;for(let d=0,c=p+z;c*c<=a;){for(;a%c===g;)b[c]=(b[c]||g)+h,a/=c;c+=G[d];d=d+1&7}a>h&&(b[a]=(b[a]||g)+h);return b}function y(a,b){if(!a)return b;if(!b)return a;for(;;){a%=b;if(!a)return b;b%=a;if(!b)return a}}function v(a,b){q(a,b);if(this instanceof v)a=y(e.d,e.n),this.s=e.s,this.n=e.n/a,this.d=e.d/a;else return n(e.s*e.n,e.d)}"undefined"===typeof BigInt&&
+(BigInt=function(a){if(isNaN(a))throw Error("");return a});const g=BigInt(0),h=BigInt(1),p=BigInt(2),B=BigInt(3),z=BigInt(5),t=BigInt(10),e={s:h,n:g,d:h},G=[p*p,p,p*p,p,p*p,p*B,p,p*B];v.prototype={s:h,n:g,d:h,abs:function(){return n(this.n,this.d)},neg:function(){return n(-this.s*this.n,this.d)},add:function(a,b){q(a,b);return n(this.s*this.n*e.d+e.s*this.d*e.n,this.d*e.d)},sub:function(a,b){q(a,b);return n(this.s*this.n*e.d-e.s*this.d*e.n,this.d*e.d)},mul:function(a,b){q(a,b);return n(this.s*e.s*
+this.n*e.n,this.d*e.d)},div:function(a,b){q(a,b);return n(this.s*e.s*this.n*e.d,this.d*e.n)},clone:function(){return n(this.s*this.n,this.d)},mod:function(a,b){if(void 0===a)return n(this.s*this.n%this.d,h);q(a,b);if(g===e.n*this.d)throw C();return n(this.s*e.d*this.n%(e.n*this.d),e.d*this.d)},gcd:function(a,b){q(a,b);return n(y(e.n,this.n)*y(e.d,this.d),e.d*this.d)},lcm:function(a,b){q(a,b);return e.n===g&&this.n===g?n(g,h):n(e.n*this.n,y(e.n,this.n)*y(e.d,this.d))},inverse:function(){return n(this.s*
+this.d,this.n)},pow:function(a,b){q(a,b);if(e.d===h)return e.s<g?n((this.s*this.d)**e.n,this.n**e.n):n((this.s*this.n)**e.n,this.d**e.n);if(this.s<g)return null;a=A(this.n);b=A(this.d);let d=h,c=h;for(let f in a)if("1"!==f){if("0"===f){d=g;break}a[f]*=e.n;if(a[f]%e.d===g)a[f]/=e.d;else return null;d*=BigInt(f)**a[f]}for(let f in b)if("1"!==f){b[f]*=e.n;if(b[f]%e.d===g)b[f]/=e.d;else return null;c*=BigInt(f)**b[f]}return e.s<g?n(c,d):n(d,c)},log:function(a,b){q(a,b);if(this.s<=g||e.s<=g)return null;
+var d=Object.create(null);a=A(e.n);const c=A(e.d);b=A(this.n);const f=A(this.d);for(var k in c)a[k]=(a[k]||g)-c[k];for(var l in f)b[l]=(b[l]||g)-f[l];for(var m in a)"1"!==m&&(d[m]=!0);for(var r in b)"1"!==r&&(d[r]=!0);l=k=null;for(const E in d)if(m=a[E]||g,d=b[E]||g,m===g){if(d!==g)return null}else if(r=y(d,m),d/=r,m/=r,null===k&&null===l)k=d,l=m;else if(d*l!==k*m)return null;return null!==k&&null!==l?n(k,l):null},equals:function(a,b){q(a,b);return this.s*this.n*e.d===e.s*e.n*this.d},lt:function(a,
+b){q(a,b);return this.s*this.n*e.d<e.s*e.n*this.d},lte:function(a,b){q(a,b);return this.s*this.n*e.d<=e.s*e.n*this.d},gt:function(a,b){q(a,b);return this.s*this.n*e.d>e.s*e.n*this.d},gte:function(a,b){q(a,b);return this.s*this.n*e.d>=e.s*e.n*this.d},compare:function(a,b){q(a,b);a=this.s*this.n*e.d-e.s*e.n*this.d;return(g<a)-(a<g)},ceil:function(a){a=t**BigInt(a||0);return n(u(this.s*a*this.n/this.d)+(a*this.n%this.d>g&&this.s>=g?h:g),a)},floor:function(a){a=t**BigInt(a||0);return n(u(this.s*a*this.n/
+this.d)-(a*this.n%this.d>g&&this.s<g?h:g),a)},round:function(a){a=t**BigInt(a||0);return n(u(this.s*a*this.n/this.d)+this.s*((this.s>=g?h:g)+a*this.n%this.d*p>this.d?h:g),a)},roundTo:function(a,b){q(a,b);var d=this.n*e.d;a=this.d*e.n;b=d%a;d=u(d/a);b+b>=a&&d++;return n(this.s*d*e.n,e.d)},divisible:function(a,b){q(a,b);return e.n===g?!1:this.n*e.d%(e.n*this.d)===g},valueOf:function(){return Number(this.s*this.n)/Number(this.d)},toString:function(a=15){let b=this.n,d=this.d;var c;a:{for(c=d;c%p===g;c/=
+p);for(;c%z===g;c/=z);if(c===h)c=g;else{for(var f=t%c,k=1;f!==h;k++)if(f=f*t%c,2E3<k){c=g;break a}c=BigInt(k)}}a:{f=h;k=t;var l=c;let m=h;for(;l>g;k=k*k%d,l>>=h)l&h&&(m=m*k%d);k=m;for(l=0;300>l;l++){if(f===k){f=BigInt(l);break a}f=f*t%d;k=k*t%d}f=0}k=f;f=this.s<g?"-":"";f+=u(b/d);(b=b%d*t)&&(f+=".");if(c){for(a=k;a--;)f+=u(b/d),b%=d,b*=t;f+="(";for(a=c;a--;)f+=u(b/d),b%=d,b*=t;f+=")"}else for(;b&&a--;)f+=u(b/d),b%=d,b*=t;return f},toFraction:function(a=!1){let b=this.n,d=this.d,c=this.s<g?"-":"";
+if(d===h)c+=b;else{const f=u(b/d);a&&f>g&&(c+=f,c+=" ",b%=d);c=c+b+"/"+d}return c},toLatex:function(a=!1){let b=this.n,d=this.d,c=this.s<g?"-":"";if(d===h)c+=b;else{const f=u(b/d);a&&f>g&&(c+=f,b%=d);c=c+"\\frac{"+b+"}{"+d;c+="}"}return c},toContinued:function(){let a=this.n,b=this.d;const d=[];for(;b;){d.push(u(a/b));const c=a%b;a=b;b=c}return d},simplify:function(a=.001){a=BigInt(Math.ceil(1/a));const b=this.abs(),d=b.toContinued();for(let f=1;f<d.length;f++){let k=n(d[f-1],h);for(var c=f-2;0<=
+c;c--)k=k.inverse().add(d[c]);c=k.sub(b);if(c.n*a<c.d)return k.mul(this.s)}return this}};"function"===typeof define&&define.amd?define([],function(){return v}):"object"===typeof exports?(Object.defineProperty(v,"__esModule",{value:!0}),v["default"]=v,v.Fraction=v,module.exports=v):F.Fraction=v})(this);
Index: node_modules/fraction.js/dist/fraction.mjs
===================================================================
--- node_modules/fraction.js/dist/fraction.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/dist/fraction.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1043 @@
+'use strict';
+
+/**
+ *
+ * This class offers the possibility to calculate fractions.
+ * You can pass a fraction in different formats. Either as array, as double, as string or as an integer.
+ *
+ * Array/Object form
+ * [ 0 => <numerator>, 1 => <denominator> ]
+ * { n => <numerator>, d => <denominator> }
+ *
+ * Integer form
+ * - Single integer value as BigInt or Number
+ *
+ * Double form
+ * - Single double value as Number
+ *
+ * String form
+ * 123.456 - a simple double
+ * 123/456 - a string fraction
+ * 123.'456' - a double with repeating decimal places
+ * 123.(456) - synonym
+ * 123.45'6' - a double with repeating last place
+ * 123.45(6) - synonym
+ *
+ * Example:
+ * let f = new Fraction("9.4'31'");
+ * f.mul([-4, 3]).div(4.9);
+ *
+ */
+
+// Set Identity function to downgrade BigInt to Number if needed
+if (typeof BigInt === 'undefined') BigInt = function (n) { if (isNaN(n)) throw new Error(""); return n; };
+
+const C_ZERO = BigInt(0);
+const C_ONE = BigInt(1);
+const C_TWO = BigInt(2);
+const C_THREE = BigInt(3);
+const C_FIVE = BigInt(5);
+const C_TEN = BigInt(10);
+const MAX_INTEGER = BigInt(Number.MAX_SAFE_INTEGER);
+
+// Maximum search depth for cyclic rational numbers. 2000 should be more than enough.
+// Example: 1/7 = 0.(142857) has 6 repeating decimal places.
+// If MAX_CYCLE_LEN gets reduced, long cycles will not be detected and toString() only gets the first 10 digits
+const MAX_CYCLE_LEN = 2000;
+
+// Parsed data to avoid calling "new" all the time
+const P = {
+  "s": C_ONE,
+  "n": C_ZERO,
+  "d": C_ONE
+};
+
+function assign(n, s) {
+
+  try {
+    n = BigInt(n);
+  } catch (e) {
+    throw InvalidParameter();
+  }
+  return n * s;
+}
+
+function ifloor(x) {
+  return typeof x === 'bigint' ? x : Math.floor(x);
+}
+
+// Creates a new Fraction internally without the need of the bulky constructor
+function newFraction(n, d) {
+
+  if (d === C_ZERO) {
+    throw DivisionByZero();
+  }
+
+  const f = Object.create(Fraction.prototype);
+  f["s"] = n < C_ZERO ? -C_ONE : C_ONE;
+
+  n = n < C_ZERO ? -n : n;
+
+  const a = gcd(n, d);
+
+  f["n"] = n / a;
+  f["d"] = d / a;
+  return f;
+}
+
+const FACTORSTEPS = [C_TWO * C_TWO, C_TWO, C_TWO * C_TWO, C_TWO, C_TWO * C_TWO, C_TWO * C_THREE, C_TWO, C_TWO * C_THREE]; // repeats
+function factorize(n) {
+
+  const factors = Object.create(null);
+  if (n <= C_ONE) {
+    factors[n] = C_ONE;
+    return factors;
+  }
+
+  const add = (p) => { factors[p] = (factors[p] || C_ZERO) + C_ONE; };
+
+  while (n % C_TWO === C_ZERO) { add(C_TWO); n /= C_TWO; }
+  while (n % C_THREE === C_ZERO) { add(C_THREE); n /= C_THREE; }
+  while (n % C_FIVE === C_ZERO) { add(C_FIVE); n /= C_FIVE; }
+
+  // 30-wheel trial division: test only residues coprime to 2*3*5
+  // Residue step pattern after 5: 7,11,13,17,19,23,29,31, ...
+  for (let si = 0, p = C_TWO + C_FIVE; p * p <= n;) {
+    while (n % p === C_ZERO) { add(p); n /= p; }
+    p += FACTORSTEPS[si];
+    si = (si + 1) & 7; // fast modulo 8
+  }
+  if (n > C_ONE) add(n);
+  return factors;
+}
+
+const parse = function (p1, p2) {
+
+  let n = C_ZERO, d = C_ONE, s = C_ONE;
+
+  if (p1 === undefined || p1 === null) { // No argument
+    /* void */
+  } else if (p2 !== undefined) { // Two arguments
+
+    if (typeof p1 === "bigint") {
+      n = p1;
+    } else if (isNaN(p1)) {
+      throw InvalidParameter();
+    } else if (p1 % 1 !== 0) {
+      throw NonIntegerParameter();
+    } else {
+      n = BigInt(p1);
+    }
+
+    if (typeof p2 === "bigint") {
+      d = p2;
+    } else if (isNaN(p2)) {
+      throw InvalidParameter();
+    } else if (p2 % 1 !== 0) {
+      throw NonIntegerParameter();
+    } else {
+      d = BigInt(p2);
+    }
+
+    s = n * d;
+
+  } else if (typeof p1 === "object") {
+    if ("d" in p1 && "n" in p1) {
+      n = BigInt(p1["n"]);
+      d = BigInt(p1["d"]);
+      if ("s" in p1)
+        n *= BigInt(p1["s"]);
+    } else if (0 in p1) {
+      n = BigInt(p1[0]);
+      if (1 in p1)
+        d = BigInt(p1[1]);
+    } else if (typeof p1 === "bigint") {
+      n = p1;
+    } else {
+      throw InvalidParameter();
+    }
+    s = n * d;
+  } else if (typeof p1 === "number") {
+
+    if (isNaN(p1)) {
+      throw InvalidParameter();
+    }
+
+    if (p1 < 0) {
+      s = -C_ONE;
+      p1 = -p1;
+    }
+
+    if (p1 % 1 === 0) {
+      n = BigInt(p1);
+    } else {
+
+      let z = 1;
+
+      let A = 0, B = 1;
+      let C = 1, D = 1;
+
+      let N = 10000000;
+
+      if (p1 >= 1) {
+        z = 10 ** Math.floor(1 + Math.log10(p1));
+        p1 /= z;
+      }
+
+      // Using Farey Sequences
+
+      while (B <= N && D <= N) {
+        let M = (A + C) / (B + D);
+
+        if (p1 === M) {
+          if (B + D <= N) {
+            n = A + C;
+            d = B + D;
+          } else if (D > B) {
+            n = C;
+            d = D;
+          } else {
+            n = A;
+            d = B;
+          }
+          break;
+
+        } else {
+
+          if (p1 > M) {
+            A += C;
+            B += D;
+          } else {
+            C += A;
+            D += B;
+          }
+
+          if (B > N) {
+            n = C;
+            d = D;
+          } else {
+            n = A;
+            d = B;
+          }
+        }
+      }
+      n = BigInt(n) * BigInt(z);
+      d = BigInt(d);
+    }
+
+  } else if (typeof p1 === "string") {
+
+    let ndx = 0;
+
+    let v = C_ZERO, w = C_ZERO, x = C_ZERO, y = C_ONE, z = C_ONE;
+
+    let match = p1.replace(/_/g, '').match(/\d+|./g);
+
+    if (match === null)
+      throw InvalidParameter();
+
+    if (match[ndx] === '-') {// Check for minus sign at the beginning
+      s = -C_ONE;
+      ndx++;
+    } else if (match[ndx] === '+') {// Check for plus sign at the beginning
+      ndx++;
+    }
+
+    if (match.length === ndx + 1) { // Check if it's just a simple number "1234"
+      w = assign(match[ndx++], s);
+    } else if (match[ndx + 1] === '.' || match[ndx] === '.') { // Check if it's a decimal number
+
+      if (match[ndx] !== '.') { // Handle 0.5 and .5
+        v = assign(match[ndx++], s);
+      }
+      ndx++;
+
+      // Check for decimal places
+      if (ndx + 1 === match.length || match[ndx + 1] === '(' && match[ndx + 3] === ')' || match[ndx + 1] === "'" && match[ndx + 3] === "'") {
+        w = assign(match[ndx], s);
+        y = C_TEN ** BigInt(match[ndx].length);
+        ndx++;
+      }
+
+      // Check for repeating places
+      if (match[ndx] === '(' && match[ndx + 2] === ')' || match[ndx] === "'" && match[ndx + 2] === "'") {
+        x = assign(match[ndx + 1], s);
+        z = C_TEN ** BigInt(match[ndx + 1].length) - C_ONE;
+        ndx += 3;
+      }
+
+    } else if (match[ndx + 1] === '/' || match[ndx + 1] === ':') { // Check for a simple fraction "123/456" or "123:456"
+      w = assign(match[ndx], s);
+      y = assign(match[ndx + 2], C_ONE);
+      ndx += 3;
+    } else if (match[ndx + 3] === '/' && match[ndx + 1] === ' ') { // Check for a complex fraction "123 1/2"
+      v = assign(match[ndx], s);
+      w = assign(match[ndx + 2], s);
+      y = assign(match[ndx + 4], C_ONE);
+      ndx += 5;
+    }
+
+    if (match.length <= ndx) { // Check for more tokens on the stack
+      d = y * z;
+      s = /* void */
+        n = x + d * v + z * w;
+    } else {
+      throw InvalidParameter();
+    }
+
+  } else if (typeof p1 === "bigint") {
+    n = p1;
+    s = p1;
+    d = C_ONE;
+  } else {
+    throw InvalidParameter();
+  }
+
+  if (d === C_ZERO) {
+    throw DivisionByZero();
+  }
+
+  P["s"] = s < C_ZERO ? -C_ONE : C_ONE;
+  P["n"] = n < C_ZERO ? -n : n;
+  P["d"] = d < C_ZERO ? -d : d;
+};
+
+function modpow(b, e, m) {
+
+  let r = C_ONE;
+  for (; e > C_ZERO; b = (b * b) % m, e >>= C_ONE) {
+
+    if (e & C_ONE) {
+      r = (r * b) % m;
+    }
+  }
+  return r;
+}
+
+function cycleLen(n, d) {
+
+  for (; d % C_TWO === C_ZERO;
+    d /= C_TWO) {
+  }
+
+  for (; d % C_FIVE === C_ZERO;
+    d /= C_FIVE) {
+  }
+
+  if (d === C_ONE) // Catch non-cyclic numbers
+    return C_ZERO;
+
+  // If we would like to compute really large numbers quicker, we could make use of Fermat's little theorem:
+  // 10^(d-1) % d == 1
+  // However, we don't need such large numbers and MAX_CYCLE_LEN should be the capstone,
+  // as we want to translate the numbers to strings.
+
+  let rem = C_TEN % d;
+  let t = 1;
+
+  for (; rem !== C_ONE; t++) {
+    rem = rem * C_TEN % d;
+
+    if (t > MAX_CYCLE_LEN)
+      return C_ZERO; // Returning 0 here means that we don't print it as a cyclic number. It's likely that the answer is `d-1`
+  }
+  return BigInt(t);
+}
+
+function cycleStart(n, d, len) {
+
+  let rem1 = C_ONE;
+  let rem2 = modpow(C_TEN, len, d);
+
+  for (let t = 0; t < 300; t++) { // s < ~log10(Number.MAX_VALUE)
+    // Solve 10^s == 10^(s+t) (mod d)
+
+    if (rem1 === rem2)
+      return BigInt(t);
+
+    rem1 = rem1 * C_TEN % d;
+    rem2 = rem2 * C_TEN % d;
+  }
+  return 0;
+}
+
+function gcd(a, b) {
+
+  if (!a)
+    return b;
+  if (!b)
+    return a;
+
+  while (1) {
+    a %= b;
+    if (!a)
+      return b;
+    b %= a;
+    if (!b)
+      return a;
+  }
+}
+
+/**
+ * Module constructor
+ *
+ * @constructor
+ * @param {number|Fraction=} a
+ * @param {number=} b
+ */
+function Fraction(a, b) {
+
+  parse(a, b);
+
+  if (this instanceof Fraction) {
+    a = gcd(P["d"], P["n"]); // Abuse a
+    this["s"] = P["s"];
+    this["n"] = P["n"] / a;
+    this["d"] = P["d"] / a;
+  } else {
+    return newFraction(P['s'] * P['n'], P['d']);
+  }
+}
+
+const DivisionByZero = function () { return new Error("Division by Zero"); };
+const InvalidParameter = function () { return new Error("Invalid argument"); };
+const NonIntegerParameter = function () { return new Error("Parameters must be integer"); };
+
+Fraction.prototype = {
+
+  "s": C_ONE,
+  "n": C_ZERO,
+  "d": C_ONE,
+
+  /**
+   * Calculates the absolute value
+   *
+   * Ex: new Fraction(-4).abs() => 4
+   **/
+  "abs": function () {
+
+    return newFraction(this["n"], this["d"]);
+  },
+
+  /**
+   * Inverts the sign of the current fraction
+   *
+   * Ex: new Fraction(-4).neg() => 4
+   **/
+  "neg": function () {
+
+    return newFraction(-this["s"] * this["n"], this["d"]);
+  },
+
+  /**
+   * Adds two rational numbers
+   *
+   * Ex: new Fraction({n: 2, d: 3}).add("14.9") => 467 / 30
+   **/
+  "add": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * this["n"] * P["d"] + P["s"] * this["d"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Subtracts two rational numbers
+   *
+   * Ex: new Fraction({n: 2, d: 3}).add("14.9") => -427 / 30
+   **/
+  "sub": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * this["n"] * P["d"] - P["s"] * this["d"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Multiplies two rational numbers
+   *
+   * Ex: new Fraction("-17.(345)").mul(3) => 5776 / 111
+   **/
+  "mul": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * P["s"] * this["n"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Divides two rational numbers
+   *
+   * Ex: new Fraction("-17.(345)").inverse().div(3)
+   **/
+  "div": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * P["s"] * this["n"] * P["d"],
+      this["d"] * P["n"]
+    );
+  },
+
+  /**
+   * Clones the actual object
+   *
+   * Ex: new Fraction("-17.(345)").clone()
+   **/
+  "clone": function () {
+    return newFraction(this['s'] * this['n'], this['d']);
+  },
+
+  /**
+   * Calculates the modulo of two rational numbers - a more precise fmod
+   *
+   * Ex: new Fraction('4.(3)').mod([7, 8]) => (13/3) % (7/8) = (5/6)
+   * Ex: new Fraction(20, 10).mod().equals(0) ? "is Integer"
+   **/
+  "mod": function (a, b) {
+
+    if (a === undefined) {
+      return newFraction(this["s"] * this["n"] % this["d"], C_ONE);
+    }
+
+    parse(a, b);
+    if (C_ZERO === P["n"] * this["d"]) {
+      throw DivisionByZero();
+    }
+
+    /**
+     * I derived the rational modulo similar to the modulo for integers
+     *
+     * https://raw.org/book/analysis/rational-numbers/
+     *
+     *    n1/d1 = (n2/d2) * q + r, where 0 ≤ r < n2/d2
+     * => d2 * n1 = n2 * d1 * q + d1 * d2 * r
+     * => r = (d2 * n1 - n2 * d1 * q) / (d1 * d2)
+     *      = (d2 * n1 - n2 * d1 * floor((d2 * n1) / (n2 * d1))) / (d1 * d2)
+     *      = ((d2 * n1) % (n2 * d1)) / (d1 * d2)
+     */
+    return newFraction(
+      this["s"] * (P["d"] * this["n"]) % (P["n"] * this["d"]),
+      P["d"] * this["d"]);
+  },
+
+  /**
+   * Calculates the fractional gcd of two rational numbers
+   *
+   * Ex: new Fraction(5,8).gcd(3,7) => 1/56
+   */
+  "gcd": function (a, b) {
+
+    parse(a, b);
+
+    // https://raw.org/book/analysis/rational-numbers/
+    // gcd(a / b, c / d) = gcd(a, c) / lcm(b, d)
+
+    return newFraction(gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]), P["d"] * this["d"]);
+  },
+
+  /**
+   * Calculates the fractional lcm of two rational numbers
+   *
+   * Ex: new Fraction(5,8).lcm(3,7) => 15
+   */
+  "lcm": function (a, b) {
+
+    parse(a, b);
+
+    // https://raw.org/book/analysis/rational-numbers/
+    // lcm(a / b, c / d) = lcm(a, c) / gcd(b, d)
+
+    if (P["n"] === C_ZERO && this["n"] === C_ZERO) {
+      return newFraction(C_ZERO, C_ONE);
+    }
+    return newFraction(P["n"] * this["n"], gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]));
+  },
+
+  /**
+   * Gets the inverse of the fraction, means numerator and denominator are exchanged
+   *
+   * Ex: new Fraction([-3, 4]).inverse() => -4 / 3
+   **/
+  "inverse": function () {
+    return newFraction(this["s"] * this["d"], this["n"]);
+  },
+
+  /**
+   * Calculates the fraction to some integer exponent
+   *
+   * Ex: new Fraction(-1,2).pow(-3) => -8
+   */
+  "pow": function (a, b) {
+
+    parse(a, b);
+
+    // Trivial case when exp is an integer
+
+    if (P['d'] === C_ONE) {
+
+      if (P['s'] < C_ZERO) {
+        return newFraction((this['s'] * this["d"]) ** P['n'], this["n"] ** P['n']);
+      } else {
+        return newFraction((this['s'] * this["n"]) ** P['n'], this["d"] ** P['n']);
+      }
+    }
+
+    // Negative roots become complex
+    //     (-a/b)^(c/d) = x
+    // ⇔ (-1)^(c/d) * (a/b)^(c/d) = x
+    // ⇔ (cos(pi) + i*sin(pi))^(c/d) * (a/b)^(c/d) = x
+    // ⇔ (cos(c*pi/d) + i*sin(c*pi/d)) * (a/b)^(c/d) = x       # DeMoivre's formula
+    // From which follows that only for c=0 the root is non-complex
+    if (this['s'] < C_ZERO) return null;
+
+    // Now prime factor n and d
+    let N = factorize(this['n']);
+    let D = factorize(this['d']);
+
+    // Exponentiate and take root for n and d individually
+    let n = C_ONE;
+    let d = C_ONE;
+    for (let k in N) {
+      if (k === '1') continue;
+      if (k === '0') {
+        n = C_ZERO;
+        break;
+      }
+      N[k] *= P['n'];
+
+      if (N[k] % P['d'] === C_ZERO) {
+        N[k] /= P['d'];
+      } else return null;
+      n *= BigInt(k) ** N[k];
+    }
+
+    for (let k in D) {
+      if (k === '1') continue;
+      D[k] *= P['n'];
+
+      if (D[k] % P['d'] === C_ZERO) {
+        D[k] /= P['d'];
+      } else return null;
+      d *= BigInt(k) ** D[k];
+    }
+
+    if (P['s'] < C_ZERO) {
+      return newFraction(d, n);
+    }
+    return newFraction(n, d);
+  },
+
+  /**
+   * Calculates the logarithm of a fraction to a given rational base
+   *
+   * Ex: new Fraction(27, 8).log(9, 4) => 3/2
+   */
+  "log": function (a, b) {
+
+    parse(a, b);
+
+    if (this['s'] <= C_ZERO || P['s'] <= C_ZERO) return null;
+
+    const allPrimes = Object.create(null);
+
+    const baseFactors = factorize(P['n']);
+    const T1 = factorize(P['d']);
+
+    const numberFactors = factorize(this['n']);
+    const T2 = factorize(this['d']);
+
+    for (const prime in T1) {
+      baseFactors[prime] = (baseFactors[prime] || C_ZERO) - T1[prime];
+    }
+    for (const prime in T2) {
+      numberFactors[prime] = (numberFactors[prime] || C_ZERO) - T2[prime];
+    }
+
+    for (const prime in baseFactors) {
+      if (prime === '1') continue;
+      allPrimes[prime] = true;
+    }
+    for (const prime in numberFactors) {
+      if (prime === '1') continue;
+      allPrimes[prime] = true;
+    }
+
+    let retN = null;
+    let retD = null;
+
+    // Iterate over all unique primes to determine if a consistent ratio exists
+    for (const prime in allPrimes) {
+
+      const baseExponent = baseFactors[prime] || C_ZERO;
+      const numberExponent = numberFactors[prime] || C_ZERO;
+
+      if (baseExponent === C_ZERO) {
+        if (numberExponent !== C_ZERO) {
+          return null; // Logarithm cannot be expressed as a rational number
+        }
+        continue; // Skip this prime since both exponents are zero
+      }
+
+      // Calculate the ratio of exponents for this prime
+      let curN = numberExponent;
+      let curD = baseExponent;
+
+      // Simplify the current ratio
+      const gcdValue = gcd(curN, curD);
+      curN /= gcdValue;
+      curD /= gcdValue;
+
+      // Check if this is the first ratio; otherwise, ensure ratios are consistent
+      if (retN === null && retD === null) {
+        retN = curN;
+        retD = curD;
+      } else if (curN * retD !== retN * curD) {
+        return null; // Ratios do not match, logarithm cannot be rational
+      }
+    }
+
+    return retN !== null && retD !== null
+      ? newFraction(retN, retD)
+      : null;
+  },
+
+  /**
+   * Check if two rational numbers are the same
+   *
+   * Ex: new Fraction(19.6).equals([98, 5]);
+   **/
+  "equals": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] === P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is less than another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "lt": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] < P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is less than or equal another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "lte": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] <= P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is greater than another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "gt": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] > P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is greater than or equal another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "gte": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] >= P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Compare two rational numbers
+   * < 0 iff this < that
+   * > 0 iff this > that
+   * = 0 iff this = that
+   *
+   * Ex: new Fraction(19.6).compare([98, 5]);
+   **/
+  "compare": function (a, b) {
+
+    parse(a, b);
+    let t = this["s"] * this["n"] * P["d"] - P["s"] * P["n"] * this["d"];
+
+    return (C_ZERO < t) - (t < C_ZERO);
+  },
+
+  /**
+   * Calculates the ceil of a rational number
+   *
+   * Ex: new Fraction('4.(3)').ceil() => (5 / 1)
+   **/
+  "ceil": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) +
+      (places * this["n"] % this["d"] > C_ZERO && this["s"] >= C_ZERO ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+   * Calculates the floor of a rational number
+   *
+   * Ex: new Fraction('4.(3)').floor() => (4 / 1)
+   **/
+  "floor": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) -
+      (places * this["n"] % this["d"] > C_ZERO && this["s"] < C_ZERO ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+   * Rounds a rational numbers
+   *
+   * Ex: new Fraction('4.(3)').round() => (4 / 1)
+   **/
+  "round": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    /* Derivation:
+
+    s >= 0:
+      round(n / d) = ifloor(n / d) + (n % d) / d >= 0.5 ? 1 : 0
+                   = ifloor(n / d) + 2(n % d) >= d ? 1 : 0
+    s < 0:
+      round(n / d) =-ifloor(n / d) - (n % d) / d > 0.5 ? 1 : 0
+                   =-ifloor(n / d) - 2(n % d) > d ? 1 : 0
+
+    =>:
+
+    round(s * n / d) = s * ifloor(n / d) + s * (C + 2(n % d) > d ? 1 : 0)
+        where C = s >= 0 ? 1 : 0, to fix the >= for the positve case.
+    */
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) +
+      this["s"] * ((this["s"] >= C_ZERO ? C_ONE : C_ZERO) + C_TWO * (places * this["n"] % this["d"]) > this["d"] ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+    * Rounds a rational number to a multiple of another rational number
+    *
+    * Ex: new Fraction('0.9').roundTo("1/8") => 7 / 8
+    **/
+  "roundTo": function (a, b) {
+
+    /*
+    k * x/y ≤ a/b < (k+1) * x/y
+    ⇔ k ≤ a/b / (x/y) < (k+1)
+    ⇔ k = floor(a/b * y/x)
+    ⇔ k = floor((a * y) / (b * x))
+    */
+
+    parse(a, b);
+
+    const n = this['n'] * P['d'];
+    const d = this['d'] * P['n'];
+    const r = n % d;
+
+    // round(n / d) = ifloor(n / d) + 2(n % d) >= d ? 1 : 0
+    let k = ifloor(n / d);
+    if (r + r >= d) {
+      k++;
+    }
+    return newFraction(this['s'] * k * P['n'], P['d']);
+  },
+
+  /**
+   * Check if two rational numbers are divisible
+   *
+   * Ex: new Fraction(19.6).divisible(1.5);
+   */
+  "divisible": function (a, b) {
+
+    parse(a, b);
+    if (P['n'] === C_ZERO) return false;
+    return (this['n'] * P['d']) % (P['n'] * this['d']) === C_ZERO;
+  },
+
+  /**
+   * Returns a decimal representation of the fraction
+   *
+   * Ex: new Fraction("100.'91823'").valueOf() => 100.91823918239183
+   **/
+  'valueOf': function () {
+    //if (this['n'] <= MAX_INTEGER && this['d'] <= MAX_INTEGER) {
+    return Number(this['s'] * this['n']) / Number(this['d']);
+    //}
+  },
+
+  /**
+   * Creates a string representation of a fraction with all digits
+   *
+   * Ex: new Fraction("100.'91823'").toString() => "100.(91823)"
+   **/
+  'toString': function (dec = 15) {
+
+    let N = this["n"];
+    let D = this["d"];
+
+    let cycLen = cycleLen(N, D); // Cycle length
+    let cycOff = cycleStart(N, D, cycLen); // Cycle start
+
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    // Append integer part
+    str += ifloor(N / D);
+
+    N %= D;
+    N *= C_TEN;
+
+    if (N)
+      str += ".";
+
+    if (cycLen) {
+
+      for (let i = cycOff; i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+      str += "(";
+      for (let i = cycLen; i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+      str += ")";
+    } else {
+      for (let i = dec; N && i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+    }
+    return str;
+  },
+
+  /**
+   * Returns a string-fraction representation of a Fraction object
+   *
+   * Ex: new Fraction("1.'3'").toFraction() => "4 1/3"
+   **/
+  'toFraction': function (showMixed = false) {
+
+    let n = this["n"];
+    let d = this["d"];
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    if (d === C_ONE) {
+      str += n;
+    } else {
+      const whole = ifloor(n / d);
+      if (showMixed && whole > C_ZERO) {
+        str += whole;
+        str += " ";
+        n %= d;
+      }
+
+      str += n;
+      str += '/';
+      str += d;
+    }
+    return str;
+  },
+
+  /**
+   * Returns a latex representation of a Fraction object
+   *
+   * Ex: new Fraction("1.'3'").toLatex() => "\frac{4}{3}"
+   **/
+  'toLatex': function (showMixed = false) {
+
+    let n = this["n"];
+    let d = this["d"];
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    if (d === C_ONE) {
+      str += n;
+    } else {
+      const whole = ifloor(n / d);
+      if (showMixed && whole > C_ZERO) {
+        str += whole;
+        n %= d;
+      }
+
+      str += "\\frac{";
+      str += n;
+      str += '}{';
+      str += d;
+      str += '}';
+    }
+    return str;
+  },
+
+  /**
+   * Returns an array of continued fraction elements
+   *
+   * Ex: new Fraction("7/8").toContinued() => [0,1,7]
+   */
+  'toContinued': function () {
+
+    let a = this['n'];
+    let b = this['d'];
+    const res = [];
+
+    while (b) {
+      res.push(ifloor(a / b));
+      const t = a % b;
+      a = b;
+      b = t;
+    }
+    return res;
+  },
+
+  "simplify": function (eps = 1e-3) {
+
+    // Continued fractions give best approximations for a max denominator,
+    // generally outperforming mediants in denominator–accuracy trade-offs.
+    // Semiconvergents can further reduce the denominator within tolerance.
+
+    const ieps = BigInt(Math.ceil(1 / eps));
+
+    const thisABS = this['abs']();
+    const cont = thisABS['toContinued']();
+
+    for (let i = 1; i < cont.length; i++) {
+
+      let s = newFraction(cont[i - 1], C_ONE);
+      for (let k = i - 2; k >= 0; k--) {
+        s = s['inverse']()['add'](cont[k]);
+      }
+
+      let t = s['sub'](thisABS);
+      if (t['n'] * ieps < t['d']) { // More robust than Math.abs(t.valueOf()) < eps
+        return s['mul'](this['s']);
+      }
+    }
+    return this;
+  }
+};
+export {
+  Fraction as default, Fraction
+};
Index: node_modules/fraction.js/examples/angles.js
===================================================================
--- node_modules/fraction.js/examples/angles.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/angles.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,26 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+
+// This example generates a list of angles with human readable radians
+
+var Fraction = require('fraction.js');
+
+var tab = [];
+for (var d = 1; d <= 360; d++) {
+
+   var pi = Fraction(2, 360).mul(d);
+   var tau = Fraction(1, 360).mul(d);
+
+   if (pi.d <= 6n && pi.d != 5n)
+      tab.push([
+         d,
+         pi.toFraction() + "pi",
+         tau.toFraction() + "tau"]);
+}
+
+console.table(tab);
Index: node_modules/fraction.js/examples/approx.js
===================================================================
--- node_modules/fraction.js/examples/approx.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/approx.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,54 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+const Fraction = require('fraction.js');
+
+// Another rational approximation, not using Farey Sequences but Binary Search using the mediant
+function approximate(p, precision) {
+
+  var num1 = Math.floor(p);
+  var den1 = 1;
+
+  var num2 = num1 + 1;
+  var den2 = 1;
+
+  if (p !== num1) {
+
+    while (den1 <= precision && den2 <= precision) {
+
+      var m = (num1 + num2) / (den1 + den2);
+
+      if (p === m) {
+
+        if (den1 + den2 <= precision) {
+          den1 += den2;
+          num1 += num2;
+          den2 = precision + 1;
+        } else if (den1 > den2) {
+          den2 = precision + 1;
+        } else {
+          den1 = precision + 1;
+        }
+        break;
+
+      } else if (p < m) {
+        num2 += num1;
+        den2 += den1;
+      } else {
+        num1 += num2;
+        den1 += den2;
+      }
+    }
+  }
+
+  if (den1 > precision) {
+    den1 = den2;
+    num1 = num2;
+  }
+  return new Fraction(num1, den1);
+}
+
Index: node_modules/fraction.js/examples/egyptian.js
===================================================================
--- node_modules/fraction.js/examples/egyptian.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/egyptian.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,24 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+const Fraction = require('fraction.js');
+
+// Based on http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fractions/egyptian.html
+function egyptian(a, b) {
+
+  var res = [];
+
+  do {
+    var t = Math.ceil(b / a);
+    var x = new Fraction(a, b).sub(1, t);
+    res.push(t);
+    a = Number(x.n);
+    b = Number(x.d);
+  } while (a !== 0n);
+  return res;
+}
+console.log("1 / " + egyptian(521, 1050).join(" + 1 / "));
Index: node_modules/fraction.js/examples/hesse-convergence.js
===================================================================
--- node_modules/fraction.js/examples/hesse-convergence.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/hesse-convergence.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,111 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+const Fraction = require('fraction.js');
+
+/*
+We have the polynom f(x) = 1/3x_1^2 + x_2^2 + x_1 * x_2 + 3
+
+The gradient of f(x):
+
+grad(x) = | x_1^2+x_2 |
+          | 2x_2+x_1  |
+
+And thus the Hesse-Matrix H:
+| 2x_1  1 |
+|  1    2 |
+
+The inverse Hesse-Matrix H^-1 is
+| -2 / (1-4x_1)    1 / (1 - 4x_1)     |
+| 1 / (1 - 4x_1)   -2x_1 / (1 - 4x_1) |
+
+We now want to find lim ->oo x[n], with the starting element of (3 2)^T
+
+*/
+
+// Get the Hesse Matrix
+function H(x) {
+
+  var z = Fraction(1).sub(Fraction(4).mul(x[0]));
+
+  return [
+    Fraction(-2).div(z),
+    Fraction(1).div(z),
+    Fraction(1).div(z),
+    Fraction(-2).mul(x[0]).div(z),
+  ];
+}
+
+// Get the gradient of f(x)
+function grad(x) {
+
+  return [
+    Fraction(x[0]).mul(x[0]).add(x[1]),
+    Fraction(2).mul(x[1]).add(x[0])
+  ];
+}
+
+// A simple matrix multiplication helper
+function matrMult(m, v) {
+
+  return [
+    Fraction(m[0]).mul(v[0]).add(Fraction(m[1]).mul(v[1])),
+    Fraction(m[2]).mul(v[0]).add(Fraction(m[3]).mul(v[1]))
+  ];
+}
+
+// A simple vector subtraction helper
+function vecSub(a, b) {
+
+  return [
+    Fraction(a[0]).sub(b[0]),
+    Fraction(a[1]).sub(b[1])
+  ];
+}
+
+// Main function, gets a vector and the actual index
+function run(V, j) {
+
+  var t = H(V);
+  //console.log("H(X)");
+  for (var i in t) {
+
+    //	console.log(t[i].toFraction());
+  }
+
+  var s = grad(V);
+  //console.log("vf(X)");
+  for (var i in s) {
+
+    //	console.log(s[i].toFraction());
+  }
+
+  //console.log("multiplication");
+  var r = matrMult(t, s);
+  for (var i in r) {
+
+    //	console.log(r[i].toFraction());
+  }
+
+  var R = (vecSub(V, r));
+
+  console.log("X" + j);
+  console.log(R[0].toFraction(), "= " + R[0].valueOf());
+  console.log(R[1].toFraction(), "= " + R[1].valueOf());
+  console.log("\n");
+
+  return R;
+}
+
+
+// Set the starting vector
+var v = [3, 2];
+
+for (var i = 0; i < 15; i++) {
+
+  v = run(v, i);
+}
Index: node_modules/fraction.js/examples/integrate.js
===================================================================
--- node_modules/fraction.js/examples/integrate.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/integrate.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,67 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+const Fraction = require('fraction.js');
+
+// NOTE: This is a nice example, but a stable version of this is served with Polynomial.js: 
+// https://github.com/rawify/Polynomial.js
+
+function integrate(poly) {
+
+    poly = poly.replace(/\s+/g, "");
+
+    var regex = /(\([+-]?[0-9/]+\)|[+-]?[0-9/]+)x(?:\^(\([+-]?[0-9/]+\)|[+-]?[0-9]+))?/g;
+    var arr;
+    var res = {};
+    while (null !== (arr = regex.exec(poly))) {
+
+        var a = (arr[1] || "1").replace("(", "").replace(")", "").split("/");
+        var b = (arr[2] || "1").replace("(", "").replace(")", "").split("/");
+
+        var exp = new Fraction(b).add(1);
+        var key = "" + exp;
+
+        if (res[key] !== undefined) {
+            res[key] = { x: new Fraction(a).div(exp).add(res[key].x), e: exp };
+        } else {
+            res[key] = { x: new Fraction(a).div(exp), e: exp };
+        }
+    }
+
+    var str = "";
+    var c = 0;
+    for (var i in res) {
+        if (res[i].x.s !== -1n && c > 0) {
+            str += "+";
+        } else if (res[i].x.s === -1n) {
+            str += "-";
+        }
+        if (res[i].x.n !== res[i].x.d) {
+            if (res[i].x.d !== 1n) {
+                str += res[i].x.n + "/" + res[i].x.d;
+            } else {
+                str += res[i].x.n;
+            }
+        }
+        str += "x";
+        if (res[i].e.n !== res[i].e.d) {
+            str += "^";
+            if (res[i].e.d !== 1n) {
+                str += "(" + res[i].e.n + "/" + res[i].e.d + ")";
+            } else {
+                str += res[i].e.n;
+            }
+        }
+        c++;
+    }
+    return str;
+}
+
+var poly = "-2/3x^3-2x^2+3x+8x^3-1/3x^(4/8)";
+
+console.log("f(x): " + poly);
+console.log("F(x): " + integrate(poly));
Index: node_modules/fraction.js/examples/ratio-chain.js
===================================================================
--- node_modules/fraction.js/examples/ratio-chain.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/ratio-chain.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,24 @@
+/*
+Given the ratio a : b : c = 2 : 3 : 4 
+What is c, given a = 40?
+
+A general ratio chain is a_1 : a_2 : a_3 : ... : a_n = r_1 : r2 : r_3 : ... : r_n.
+Now each term can be expressed as a_i = r_i * x for some unknown proportional constant x.
+If a_k is known it follows that x = a_k / r_k. Substituting x into the first equation yields
+a_i = r_i / r_k * a_k.
+
+Given an array r and a given value a_k, the following function calculates all a_i:
+*/
+
+function calculateRatios(r, a_k, k) {    
+    const x = Fraction(a_k).div(r[k]);
+    return r.map(r_i => x.mul(r_i));
+}
+
+// Example usage:
+const r = [2, 3, 4]; // Ratio array representing a : b : c = 2 : 3 : 4
+const a_k = 40; // Given value of a (corresponding to r[0])
+const k = 0; // Index of the known value (a corresponds to r[0])
+
+const result = calculateRatios(r, a_k, k);
+console.log(result); // Output: [40, 60, 80]
Index: node_modules/fraction.js/examples/rational-pow.js
===================================================================
--- node_modules/fraction.js/examples/rational-pow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/rational-pow.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,29 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+const Fraction = require('fraction.js');
+ 
+// Calculates (a/b)^(c/d) if result is rational
+// Derivation: https://raw.org/book/analysis/rational-numbers/
+function root(a, b, c, d) {
+
+  // Initial estimate
+  let x = Fraction(100 * (Math.floor(Math.pow(a / b, c / d)) || 1), 100);
+  const abc = Fraction(a, b).pow(c);
+
+  for (let i = 0; i < 30; i++) {
+    const n = abc.mul(x.pow(1 - d)).sub(x).div(d).add(x)
+
+    if (x.n === n.n && x.d === n.d) {
+      return n;
+    }
+    x = n;
+  }
+  return null;
+}
+
+root(18, 2, 1, 2); // 3/1
Index: node_modules/fraction.js/examples/tape-measure.js
===================================================================
--- node_modules/fraction.js/examples/tape-measure.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/tape-measure.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,16 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+const Fraction = require('fraction.js');
+
+function closestTapeMeasure(frac) {
+
+    // A tape measure is usually divided in parts of 1/16
+
+    return Fraction(frac).roundTo("1/16");
+}
+console.log(closestTapeMeasure("1/3")); // 5/16
Index: node_modules/fraction.js/examples/toFraction.js
===================================================================
--- node_modules/fraction.js/examples/toFraction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/toFraction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,35 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+
+const Fraction = require('fraction.js');
+
+function toFraction(frac) {
+
+  var map = {
+    '1:4': "¼",
+    '1:2': "½",
+    '3:4': "¾",
+    '1:7': "⅐",
+    '1:9': "⅑",
+    '1:10': "⅒",
+    '1:3': "⅓",
+    '2:3': "⅔",
+    '1:5': "⅕",
+    '2:5': "⅖",
+    '3:5': "⅗",
+    '4:5': "⅘",
+    '1:6': "⅙",
+    '5:6': "⅚",
+    '1:8': "⅛",
+    '3:8': "⅜",
+    '5:8': "⅝",
+    '7:8': "⅞"
+  };
+  return map[frac.n + ":" + frac.d] || frac.toFraction(false);
+}
+console.log(toFraction(Fraction(0.25))); // ¼
Index: node_modules/fraction.js/examples/valueOfPi.js
===================================================================
--- node_modules/fraction.js/examples/valueOfPi.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/examples/valueOfPi.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,42 @@
+/*
+Fraction.js v5.0.0 10/1/2024
+https://raw.org/article/rational-numbers-in-javascript/
+
+Copyright (c) 2024, Robert Eisele (https://raw.org/)
+Licensed under the MIT license.
+*/
+
+var Fraction = require("fraction.js")
+
+function valueOfPi(val) {
+
+  let minLen = Infinity, minI = 0, min = null;
+  const choose = [val, val * Math.PI, val / Math.PI];
+  for (let i = 0; i < choose.length; i++) {
+    let el = new Fraction(choose[i]).simplify(1e-13);
+    let len = Math.log(Number(el.n) + 1) + Math.log(Number(el.d));
+    if (len < minLen) {
+      minLen = len;
+      minI = i;
+      min = el;
+    }
+  }
+
+  if (minI == 2) {
+    return min.toFraction().replace(/(\d+)(\/\d+)?/, (_, p, q) =>
+      (p == "1" ? "" : p) + "π" + (q || ""));
+  }
+
+  if (minI == 1) {
+    return min.toFraction().replace(/(\d+)(\/\d+)?/, (_, p, q) =>
+      p + (!q ? "/π" : "/(" + q.slice(1) + "π)"));
+  }
+  return min.toFraction();
+}
+
+console.log(valueOfPi(-3)); // -3
+console.log(valueOfPi(4 * Math.PI)); // 4π
+console.log(valueOfPi(3.14)); // 157/50
+console.log(valueOfPi(3 / 2 * Math.PI)); // 3π/2
+console.log(valueOfPi(Math.PI / 2)); // π/2
+console.log(valueOfPi(-1 / (2 * Math.PI))); // -1/(2π)
Index: node_modules/fraction.js/fraction.d.mts
===================================================================
--- node_modules/fraction.js/fraction.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/fraction.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,79 @@
+/**
+ * Interface representing a fraction with numerator and denominator.
+ */
+export interface NumeratorDenominator {
+    n: number | bigint;
+    d: number | bigint;
+}
+
+/**
+ * Type for handling multiple types of input for Fraction operations.
+ */
+export type FractionInput =
+    | Fraction
+    | number
+    | bigint
+    | string
+    | [number | bigint | string, number | bigint | string]
+    | NumeratorDenominator;
+
+/**
+ * Function signature for Fraction operations like add, sub, mul, etc.
+ */
+export type FractionParam = {
+    (numerator: number | bigint, denominator: number | bigint): Fraction;
+    (num: FractionInput): Fraction;
+};
+
+/**
+ * Fraction class representing a rational number with numerator and denominator.
+ */
+declare class Fraction {
+    constructor();
+    constructor(num: FractionInput);
+    constructor(numerator: number | bigint, denominator: number | bigint);
+
+    s: bigint;
+    n: bigint;
+    d: bigint;
+
+    abs(): Fraction;
+    neg(): Fraction;
+
+    add: FractionParam;
+    sub: FractionParam;
+    mul: FractionParam;
+    div: FractionParam;
+    pow: FractionParam;
+    log: FractionParam;
+    gcd: FractionParam;
+    lcm: FractionParam;
+
+    mod(): Fraction;
+    mod(num: FractionInput): Fraction;
+
+    ceil(places?: number): Fraction;
+    floor(places?: number): Fraction;
+    round(places?: number): Fraction;
+    roundTo: FractionParam;
+
+    inverse(): Fraction;
+    simplify(eps?: number): Fraction;
+
+    equals(num: FractionInput): boolean;
+    lt(num: FractionInput): boolean;
+    lte(num: FractionInput): boolean;
+    gt(num: FractionInput): boolean;
+    gte(num: FractionInput): boolean;
+    compare(num: FractionInput): number;
+    divisible(num: FractionInput): boolean;
+
+    valueOf(): number;
+    toString(decimalPlaces?: number): string;
+    toLatex(showMixed?: boolean): string;
+    toFraction(showMixed?: boolean): string;
+    toContinued(): bigint[];
+    clone(): Fraction;
+}
+
+export { Fraction as default, Fraction };
Index: node_modules/fraction.js/fraction.d.ts
===================================================================
--- node_modules/fraction.js/fraction.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/fraction.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,79 @@
+declare class Fraction {
+  constructor();
+  constructor(num: Fraction.FractionInput);
+  constructor(numerator: number | bigint, denominator: number | bigint);
+
+  s: bigint;
+  n: bigint;
+  d: bigint;
+
+  abs(): Fraction;
+  neg(): Fraction;
+
+  add: Fraction.FractionParam;
+  sub: Fraction.FractionParam;
+  mul: Fraction.FractionParam;
+  div: Fraction.FractionParam;
+  pow: Fraction.FractionParam;
+  log: Fraction.FractionParam;
+  gcd: Fraction.FractionParam;
+  lcm: Fraction.FractionParam;
+
+  mod(): Fraction;
+  mod(num: Fraction.FractionInput): Fraction;
+
+  ceil(places?: number): Fraction;
+  floor(places?: number): Fraction;
+  round(places?: number): Fraction;
+  roundTo: Fraction.FractionParam;
+
+  inverse(): Fraction;
+  simplify(eps?: number): Fraction;
+
+  equals(num: Fraction.FractionInput): boolean;
+  lt(num: Fraction.FractionInput): boolean;
+  lte(num: Fraction.FractionInput): boolean;
+  gt(num: Fraction.FractionInput): boolean;
+  gte(num: Fraction.FractionInput): boolean;
+  compare(num: Fraction.FractionInput): number;
+  divisible(num: Fraction.FractionInput): boolean;
+
+  valueOf(): number;
+  toString(decimalPlaces?: number): string;
+  toLatex(showMixed?: boolean): string;
+  toFraction(showMixed?: boolean): string;
+  toContinued(): bigint[];
+  clone(): Fraction;
+
+  static default: typeof Fraction;
+  static Fraction: typeof Fraction;
+}
+
+declare namespace Fraction {
+  interface NumeratorDenominator { n: number | bigint; d: number | bigint; }
+  type FractionInput =
+    | Fraction
+    | number
+    | bigint
+    | string
+    | [number | bigint | string, number | bigint | string]
+    | NumeratorDenominator;
+
+  type FractionParam = {
+    (numerator: number | bigint, denominator: number | bigint): Fraction;
+    (num: FractionInput): Fraction;
+  };
+}
+
+/**
+ * Export matches CJS runtime:
+ *   module.exports = Fraction;
+ *   module.exports.default  = Fraction;
+ *   module.exports.Fraction = Fraction;
+ */
+declare const FractionExport: typeof Fraction & {
+  default: typeof Fraction;
+  Fraction: typeof Fraction;
+};
+
+export = FractionExport;
Index: node_modules/fraction.js/package.json
===================================================================
--- node_modules/fraction.js/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,81 @@
+{
+  "name": "fraction.js",
+  "title": "Fraction.js",
+  "version": "5.3.4",
+  "description": "The RAW rational numbers library",
+  "homepage": "https://raw.org/article/rational-numbers-in-javascript/",
+  "bugs": "https://github.com/rawify/Fraction.js/issues",
+  "keywords": [
+    "math",
+    "numbers",
+    "parser",
+    "ratio",
+    "fraction",
+    "fractions",
+    "rational",
+    "rationals",
+    "rational numbers",
+    "bigint",
+    "arbitrary precision",
+    "mixed numbers",
+    "decimal",
+    "numerator",
+    "denominator",
+    "simplification"
+  ],
+  "private": false,
+  "main": "./dist/fraction.js",
+  "module": "./dist/fraction.mjs",
+  "browser": "./dist/fraction.min.js",
+  "unpkg": "./dist/fraction.min.js",
+  "types": "./fraction.d.mts",
+  "exports": {
+    ".": {
+      "types": {
+        "import": "./fraction.d.mts",
+        "require": "./fraction.d.ts"
+      },
+      "import": "./dist/fraction.mjs",
+      "require": "./dist/fraction.js",
+      "browser": "./dist/fraction.min.js"
+    },
+    "./package.json": "./package.json"
+  },
+  "typesVersions": {
+    "<4.7": {
+      "*": [
+        "fraction.d.ts"
+      ]
+    }
+  },
+  "sideEffects": false,
+  "repository": {
+    "type": "git",
+    "url": "git+ssh://git@github.com/rawify/Fraction.js.git"
+  },
+  "funding": {
+    "type": "github",
+    "url": "https://github.com/sponsors/rawify"
+  },
+  "author": {
+    "name": "Robert Eisele",
+    "email": "robert@raw.org",
+    "url": "https://raw.org/"
+  },
+  "license": "MIT",
+  "engines": {
+    "node": "*"
+  },
+  "directories": {
+    "example": "examples",
+    "test": "tests"
+  },
+  "scripts": {
+    "build": "crude-build Fraction",
+    "test": "mocha tests/*.js"
+  },
+  "devDependencies": {
+    "crude-build": "^0.1.2",
+    "mocha": "*"
+  }
+}
Index: node_modules/fraction.js/src/fraction.js
===================================================================
--- node_modules/fraction.js/src/fraction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/src/fraction.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1046 @@
+/**
+ * @license Fraction.js v5.3.4 8/22/2025
+ * https://raw.org/article/rational-numbers-in-javascript/
+ *
+ * Copyright (c) 2025, Robert Eisele (https://raw.org/)
+ * Licensed under the MIT license.
+ **/
+
+/**
+ *
+ * This class offers the possibility to calculate fractions.
+ * You can pass a fraction in different formats. Either as array, as double, as string or as an integer.
+ *
+ * Array/Object form
+ * [ 0 => <numerator>, 1 => <denominator> ]
+ * { n => <numerator>, d => <denominator> }
+ *
+ * Integer form
+ * - Single integer value as BigInt or Number
+ *
+ * Double form
+ * - Single double value as Number
+ *
+ * String form
+ * 123.456 - a simple double
+ * 123/456 - a string fraction
+ * 123.'456' - a double with repeating decimal places
+ * 123.(456) - synonym
+ * 123.45'6' - a double with repeating last place
+ * 123.45(6) - synonym
+ *
+ * Example:
+ * let f = new Fraction("9.4'31'");
+ * f.mul([-4, 3]).div(4.9);
+ *
+ */
+
+// Set Identity function to downgrade BigInt to Number if needed
+if (typeof BigInt === 'undefined') BigInt = function (n) { if (isNaN(n)) throw new Error(""); return n; };
+
+const C_ZERO = BigInt(0);
+const C_ONE = BigInt(1);
+const C_TWO = BigInt(2);
+const C_THREE = BigInt(3);
+const C_FIVE = BigInt(5);
+const C_TEN = BigInt(10);
+const MAX_INTEGER = BigInt(Number.MAX_SAFE_INTEGER);
+
+// Maximum search depth for cyclic rational numbers. 2000 should be more than enough.
+// Example: 1/7 = 0.(142857) has 6 repeating decimal places.
+// If MAX_CYCLE_LEN gets reduced, long cycles will not be detected and toString() only gets the first 10 digits
+const MAX_CYCLE_LEN = 2000;
+
+// Parsed data to avoid calling "new" all the time
+const P = {
+  "s": C_ONE,
+  "n": C_ZERO,
+  "d": C_ONE
+};
+
+function assign(n, s) {
+
+  try {
+    n = BigInt(n);
+  } catch (e) {
+    throw InvalidParameter();
+  }
+  return n * s;
+}
+
+function ifloor(x) {
+  return typeof x === 'bigint' ? x : Math.floor(x);
+}
+
+// Creates a new Fraction internally without the need of the bulky constructor
+function newFraction(n, d) {
+
+  if (d === C_ZERO) {
+    throw DivisionByZero();
+  }
+
+  const f = Object.create(Fraction.prototype);
+  f["s"] = n < C_ZERO ? -C_ONE : C_ONE;
+
+  n = n < C_ZERO ? -n : n;
+
+  const a = gcd(n, d);
+
+  f["n"] = n / a;
+  f["d"] = d / a;
+  return f;
+}
+
+const FACTORSTEPS = [C_TWO * C_TWO, C_TWO, C_TWO * C_TWO, C_TWO, C_TWO * C_TWO, C_TWO * C_THREE, C_TWO, C_TWO * C_THREE]; // repeats
+function factorize(n) {
+
+  const factors = Object.create(null);
+  if (n <= C_ONE) {
+    factors[n] = C_ONE;
+    return factors;
+  }
+
+  const add = (p) => { factors[p] = (factors[p] || C_ZERO) + C_ONE; };
+
+  while (n % C_TWO === C_ZERO) { add(C_TWO); n /= C_TWO; }
+  while (n % C_THREE === C_ZERO) { add(C_THREE); n /= C_THREE; }
+  while (n % C_FIVE === C_ZERO) { add(C_FIVE); n /= C_FIVE; }
+
+  // 30-wheel trial division: test only residues coprime to 2*3*5
+  // Residue step pattern after 5: 7,11,13,17,19,23,29,31, ...
+  for (let si = 0, p = C_TWO + C_FIVE; p * p <= n;) {
+    while (n % p === C_ZERO) { add(p); n /= p; }
+    p += FACTORSTEPS[si];
+    si = (si + 1) & 7; // fast modulo 8
+  }
+  if (n > C_ONE) add(n);
+  return factors;
+}
+
+const parse = function (p1, p2) {
+
+  let n = C_ZERO, d = C_ONE, s = C_ONE;
+
+  if (p1 === undefined || p1 === null) { // No argument
+    /* void */
+  } else if (p2 !== undefined) { // Two arguments
+
+    if (typeof p1 === "bigint") {
+      n = p1;
+    } else if (isNaN(p1)) {
+      throw InvalidParameter();
+    } else if (p1 % 1 !== 0) {
+      throw NonIntegerParameter();
+    } else {
+      n = BigInt(p1);
+    }
+
+    if (typeof p2 === "bigint") {
+      d = p2;
+    } else if (isNaN(p2)) {
+      throw InvalidParameter();
+    } else if (p2 % 1 !== 0) {
+      throw NonIntegerParameter();
+    } else {
+      d = BigInt(p2);
+    }
+
+    s = n * d;
+
+  } else if (typeof p1 === "object") {
+    if ("d" in p1 && "n" in p1) {
+      n = BigInt(p1["n"]);
+      d = BigInt(p1["d"]);
+      if ("s" in p1)
+        n *= BigInt(p1["s"]);
+    } else if (0 in p1) {
+      n = BigInt(p1[0]);
+      if (1 in p1)
+        d = BigInt(p1[1]);
+    } else if (typeof p1 === "bigint") {
+      n = p1;
+    } else {
+      throw InvalidParameter();
+    }
+    s = n * d;
+  } else if (typeof p1 === "number") {
+
+    if (isNaN(p1)) {
+      throw InvalidParameter();
+    }
+
+    if (p1 < 0) {
+      s = -C_ONE;
+      p1 = -p1;
+    }
+
+    if (p1 % 1 === 0) {
+      n = BigInt(p1);
+    } else {
+
+      let z = 1;
+
+      let A = 0, B = 1;
+      let C = 1, D = 1;
+
+      let N = 10000000;
+
+      if (p1 >= 1) {
+        z = 10 ** Math.floor(1 + Math.log10(p1));
+        p1 /= z;
+      }
+
+      // Using Farey Sequences
+
+      while (B <= N && D <= N) {
+        let M = (A + C) / (B + D);
+
+        if (p1 === M) {
+          if (B + D <= N) {
+            n = A + C;
+            d = B + D;
+          } else if (D > B) {
+            n = C;
+            d = D;
+          } else {
+            n = A;
+            d = B;
+          }
+          break;
+
+        } else {
+
+          if (p1 > M) {
+            A += C;
+            B += D;
+          } else {
+            C += A;
+            D += B;
+          }
+
+          if (B > N) {
+            n = C;
+            d = D;
+          } else {
+            n = A;
+            d = B;
+          }
+        }
+      }
+      n = BigInt(n) * BigInt(z);
+      d = BigInt(d);
+    }
+
+  } else if (typeof p1 === "string") {
+
+    let ndx = 0;
+
+    let v = C_ZERO, w = C_ZERO, x = C_ZERO, y = C_ONE, z = C_ONE;
+
+    let match = p1.replace(/_/g, '').match(/\d+|./g);
+
+    if (match === null)
+      throw InvalidParameter();
+
+    if (match[ndx] === '-') {// Check for minus sign at the beginning
+      s = -C_ONE;
+      ndx++;
+    } else if (match[ndx] === '+') {// Check for plus sign at the beginning
+      ndx++;
+    }
+
+    if (match.length === ndx + 1) { // Check if it's just a simple number "1234"
+      w = assign(match[ndx++], s);
+    } else if (match[ndx + 1] === '.' || match[ndx] === '.') { // Check if it's a decimal number
+
+      if (match[ndx] !== '.') { // Handle 0.5 and .5
+        v = assign(match[ndx++], s);
+      }
+      ndx++;
+
+      // Check for decimal places
+      if (ndx + 1 === match.length || match[ndx + 1] === '(' && match[ndx + 3] === ')' || match[ndx + 1] === "'" && match[ndx + 3] === "'") {
+        w = assign(match[ndx], s);
+        y = C_TEN ** BigInt(match[ndx].length);
+        ndx++;
+      }
+
+      // Check for repeating places
+      if (match[ndx] === '(' && match[ndx + 2] === ')' || match[ndx] === "'" && match[ndx + 2] === "'") {
+        x = assign(match[ndx + 1], s);
+        z = C_TEN ** BigInt(match[ndx + 1].length) - C_ONE;
+        ndx += 3;
+      }
+
+    } else if (match[ndx + 1] === '/' || match[ndx + 1] === ':') { // Check for a simple fraction "123/456" or "123:456"
+      w = assign(match[ndx], s);
+      y = assign(match[ndx + 2], C_ONE);
+      ndx += 3;
+    } else if (match[ndx + 3] === '/' && match[ndx + 1] === ' ') { // Check for a complex fraction "123 1/2"
+      v = assign(match[ndx], s);
+      w = assign(match[ndx + 2], s);
+      y = assign(match[ndx + 4], C_ONE);
+      ndx += 5;
+    }
+
+    if (match.length <= ndx) { // Check for more tokens on the stack
+      d = y * z;
+      s = /* void */
+        n = x + d * v + z * w;
+    } else {
+      throw InvalidParameter();
+    }
+
+  } else if (typeof p1 === "bigint") {
+    n = p1;
+    s = p1;
+    d = C_ONE;
+  } else {
+    throw InvalidParameter();
+  }
+
+  if (d === C_ZERO) {
+    throw DivisionByZero();
+  }
+
+  P["s"] = s < C_ZERO ? -C_ONE : C_ONE;
+  P["n"] = n < C_ZERO ? -n : n;
+  P["d"] = d < C_ZERO ? -d : d;
+};
+
+function modpow(b, e, m) {
+
+  let r = C_ONE;
+  for (; e > C_ZERO; b = (b * b) % m, e >>= C_ONE) {
+
+    if (e & C_ONE) {
+      r = (r * b) % m;
+    }
+  }
+  return r;
+}
+
+function cycleLen(n, d) {
+
+  for (; d % C_TWO === C_ZERO;
+    d /= C_TWO) {
+  }
+
+  for (; d % C_FIVE === C_ZERO;
+    d /= C_FIVE) {
+  }
+
+  if (d === C_ONE) // Catch non-cyclic numbers
+    return C_ZERO;
+
+  // If we would like to compute really large numbers quicker, we could make use of Fermat's little theorem:
+  // 10^(d-1) % d == 1
+  // However, we don't need such large numbers and MAX_CYCLE_LEN should be the capstone,
+  // as we want to translate the numbers to strings.
+
+  let rem = C_TEN % d;
+  let t = 1;
+
+  for (; rem !== C_ONE; t++) {
+    rem = rem * C_TEN % d;
+
+    if (t > MAX_CYCLE_LEN)
+      return C_ZERO; // Returning 0 here means that we don't print it as a cyclic number. It's likely that the answer is `d-1`
+  }
+  return BigInt(t);
+}
+
+function cycleStart(n, d, len) {
+
+  let rem1 = C_ONE;
+  let rem2 = modpow(C_TEN, len, d);
+
+  for (let t = 0; t < 300; t++) { // s < ~log10(Number.MAX_VALUE)
+    // Solve 10^s == 10^(s+t) (mod d)
+
+    if (rem1 === rem2)
+      return BigInt(t);
+
+    rem1 = rem1 * C_TEN % d;
+    rem2 = rem2 * C_TEN % d;
+  }
+  return 0;
+}
+
+function gcd(a, b) {
+
+  if (!a)
+    return b;
+  if (!b)
+    return a;
+
+  while (1) {
+    a %= b;
+    if (!a)
+      return b;
+    b %= a;
+    if (!b)
+      return a;
+  }
+}
+
+/**
+ * Module constructor
+ *
+ * @constructor
+ * @param {number|Fraction=} a
+ * @param {number=} b
+ */
+function Fraction(a, b) {
+
+  parse(a, b);
+
+  if (this instanceof Fraction) {
+    a = gcd(P["d"], P["n"]); // Abuse a
+    this["s"] = P["s"];
+    this["n"] = P["n"] / a;
+    this["d"] = P["d"] / a;
+  } else {
+    return newFraction(P['s'] * P['n'], P['d']);
+  }
+}
+
+const DivisionByZero = function () { return new Error("Division by Zero"); };
+const InvalidParameter = function () { return new Error("Invalid argument"); };
+const NonIntegerParameter = function () { return new Error("Parameters must be integer"); };
+
+Fraction.prototype = {
+
+  "s": C_ONE,
+  "n": C_ZERO,
+  "d": C_ONE,
+
+  /**
+   * Calculates the absolute value
+   *
+   * Ex: new Fraction(-4).abs() => 4
+   **/
+  "abs": function () {
+
+    return newFraction(this["n"], this["d"]);
+  },
+
+  /**
+   * Inverts the sign of the current fraction
+   *
+   * Ex: new Fraction(-4).neg() => 4
+   **/
+  "neg": function () {
+
+    return newFraction(-this["s"] * this["n"], this["d"]);
+  },
+
+  /**
+   * Adds two rational numbers
+   *
+   * Ex: new Fraction({n: 2, d: 3}).add("14.9") => 467 / 30
+   **/
+  "add": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * this["n"] * P["d"] + P["s"] * this["d"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Subtracts two rational numbers
+   *
+   * Ex: new Fraction({n: 2, d: 3}).add("14.9") => -427 / 30
+   **/
+  "sub": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * this["n"] * P["d"] - P["s"] * this["d"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Multiplies two rational numbers
+   *
+   * Ex: new Fraction("-17.(345)").mul(3) => 5776 / 111
+   **/
+  "mul": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * P["s"] * this["n"] * P["n"],
+      this["d"] * P["d"]
+    );
+  },
+
+  /**
+   * Divides two rational numbers
+   *
+   * Ex: new Fraction("-17.(345)").inverse().div(3)
+   **/
+  "div": function (a, b) {
+
+    parse(a, b);
+    return newFraction(
+      this["s"] * P["s"] * this["n"] * P["d"],
+      this["d"] * P["n"]
+    );
+  },
+
+  /**
+   * Clones the actual object
+   *
+   * Ex: new Fraction("-17.(345)").clone()
+   **/
+  "clone": function () {
+    return newFraction(this['s'] * this['n'], this['d']);
+  },
+
+  /**
+   * Calculates the modulo of two rational numbers - a more precise fmod
+   *
+   * Ex: new Fraction('4.(3)').mod([7, 8]) => (13/3) % (7/8) = (5/6)
+   * Ex: new Fraction(20, 10).mod().equals(0) ? "is Integer"
+   **/
+  "mod": function (a, b) {
+
+    if (a === undefined) {
+      return newFraction(this["s"] * this["n"] % this["d"], C_ONE);
+    }
+
+    parse(a, b);
+    if (C_ZERO === P["n"] * this["d"]) {
+      throw DivisionByZero();
+    }
+
+    /**
+     * I derived the rational modulo similar to the modulo for integers
+     *
+     * https://raw.org/book/analysis/rational-numbers/
+     *
+     *    n1/d1 = (n2/d2) * q + r, where 0 ≤ r < n2/d2
+     * => d2 * n1 = n2 * d1 * q + d1 * d2 * r
+     * => r = (d2 * n1 - n2 * d1 * q) / (d1 * d2)
+     *      = (d2 * n1 - n2 * d1 * floor((d2 * n1) / (n2 * d1))) / (d1 * d2)
+     *      = ((d2 * n1) % (n2 * d1)) / (d1 * d2)
+     */
+    return newFraction(
+      this["s"] * (P["d"] * this["n"]) % (P["n"] * this["d"]),
+      P["d"] * this["d"]);
+  },
+
+  /**
+   * Calculates the fractional gcd of two rational numbers
+   *
+   * Ex: new Fraction(5,8).gcd(3,7) => 1/56
+   */
+  "gcd": function (a, b) {
+
+    parse(a, b);
+
+    // https://raw.org/book/analysis/rational-numbers/
+    // gcd(a / b, c / d) = gcd(a, c) / lcm(b, d)
+
+    return newFraction(gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]), P["d"] * this["d"]);
+  },
+
+  /**
+   * Calculates the fractional lcm of two rational numbers
+   *
+   * Ex: new Fraction(5,8).lcm(3,7) => 15
+   */
+  "lcm": function (a, b) {
+
+    parse(a, b);
+
+    // https://raw.org/book/analysis/rational-numbers/
+    // lcm(a / b, c / d) = lcm(a, c) / gcd(b, d)
+
+    if (P["n"] === C_ZERO && this["n"] === C_ZERO) {
+      return newFraction(C_ZERO, C_ONE);
+    }
+    return newFraction(P["n"] * this["n"], gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]));
+  },
+
+  /**
+   * Gets the inverse of the fraction, means numerator and denominator are exchanged
+   *
+   * Ex: new Fraction([-3, 4]).inverse() => -4 / 3
+   **/
+  "inverse": function () {
+    return newFraction(this["s"] * this["d"], this["n"]);
+  },
+
+  /**
+   * Calculates the fraction to some integer exponent
+   *
+   * Ex: new Fraction(-1,2).pow(-3) => -8
+   */
+  "pow": function (a, b) {
+
+    parse(a, b);
+
+    // Trivial case when exp is an integer
+
+    if (P['d'] === C_ONE) {
+
+      if (P['s'] < C_ZERO) {
+        return newFraction((this['s'] * this["d"]) ** P['n'], this["n"] ** P['n']);
+      } else {
+        return newFraction((this['s'] * this["n"]) ** P['n'], this["d"] ** P['n']);
+      }
+    }
+
+    // Negative roots become complex
+    //     (-a/b)^(c/d) = x
+    // ⇔ (-1)^(c/d) * (a/b)^(c/d) = x
+    // ⇔ (cos(pi) + i*sin(pi))^(c/d) * (a/b)^(c/d) = x
+    // ⇔ (cos(c*pi/d) + i*sin(c*pi/d)) * (a/b)^(c/d) = x       # DeMoivre's formula
+    // From which follows that only for c=0 the root is non-complex
+    if (this['s'] < C_ZERO) return null;
+
+    // Now prime factor n and d
+    let N = factorize(this['n']);
+    let D = factorize(this['d']);
+
+    // Exponentiate and take root for n and d individually
+    let n = C_ONE;
+    let d = C_ONE;
+    for (let k in N) {
+      if (k === '1') continue;
+      if (k === '0') {
+        n = C_ZERO;
+        break;
+      }
+      N[k] *= P['n'];
+
+      if (N[k] % P['d'] === C_ZERO) {
+        N[k] /= P['d'];
+      } else return null;
+      n *= BigInt(k) ** N[k];
+    }
+
+    for (let k in D) {
+      if (k === '1') continue;
+      D[k] *= P['n'];
+
+      if (D[k] % P['d'] === C_ZERO) {
+        D[k] /= P['d'];
+      } else return null;
+      d *= BigInt(k) ** D[k];
+    }
+
+    if (P['s'] < C_ZERO) {
+      return newFraction(d, n);
+    }
+    return newFraction(n, d);
+  },
+
+  /**
+   * Calculates the logarithm of a fraction to a given rational base
+   *
+   * Ex: new Fraction(27, 8).log(9, 4) => 3/2
+   */
+  "log": function (a, b) {
+
+    parse(a, b);
+
+    if (this['s'] <= C_ZERO || P['s'] <= C_ZERO) return null;
+
+    const allPrimes = Object.create(null);
+
+    const baseFactors = factorize(P['n']);
+    const T1 = factorize(P['d']);
+
+    const numberFactors = factorize(this['n']);
+    const T2 = factorize(this['d']);
+
+    for (const prime in T1) {
+      baseFactors[prime] = (baseFactors[prime] || C_ZERO) - T1[prime];
+    }
+    for (const prime in T2) {
+      numberFactors[prime] = (numberFactors[prime] || C_ZERO) - T2[prime];
+    }
+
+    for (const prime in baseFactors) {
+      if (prime === '1') continue;
+      allPrimes[prime] = true;
+    }
+    for (const prime in numberFactors) {
+      if (prime === '1') continue;
+      allPrimes[prime] = true;
+    }
+
+    let retN = null;
+    let retD = null;
+
+    // Iterate over all unique primes to determine if a consistent ratio exists
+    for (const prime in allPrimes) {
+
+      const baseExponent = baseFactors[prime] || C_ZERO;
+      const numberExponent = numberFactors[prime] || C_ZERO;
+
+      if (baseExponent === C_ZERO) {
+        if (numberExponent !== C_ZERO) {
+          return null; // Logarithm cannot be expressed as a rational number
+        }
+        continue; // Skip this prime since both exponents are zero
+      }
+
+      // Calculate the ratio of exponents for this prime
+      let curN = numberExponent;
+      let curD = baseExponent;
+
+      // Simplify the current ratio
+      const gcdValue = gcd(curN, curD);
+      curN /= gcdValue;
+      curD /= gcdValue;
+
+      // Check if this is the first ratio; otherwise, ensure ratios are consistent
+      if (retN === null && retD === null) {
+        retN = curN;
+        retD = curD;
+      } else if (curN * retD !== retN * curD) {
+        return null; // Ratios do not match, logarithm cannot be rational
+      }
+    }
+
+    return retN !== null && retD !== null
+      ? newFraction(retN, retD)
+      : null;
+  },
+
+  /**
+   * Check if two rational numbers are the same
+   *
+   * Ex: new Fraction(19.6).equals([98, 5]);
+   **/
+  "equals": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] === P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is less than another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "lt": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] < P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is less than or equal another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "lte": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] <= P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is greater than another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "gt": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] > P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Check if this rational number is greater than or equal another
+   *
+   * Ex: new Fraction(19.6).lt([98, 5]);
+   **/
+  "gte": function (a, b) {
+
+    parse(a, b);
+    return this["s"] * this["n"] * P["d"] >= P["s"] * P["n"] * this["d"];
+  },
+
+  /**
+   * Compare two rational numbers
+   * < 0 iff this < that
+   * > 0 iff this > that
+   * = 0 iff this = that
+   *
+   * Ex: new Fraction(19.6).compare([98, 5]);
+   **/
+  "compare": function (a, b) {
+
+    parse(a, b);
+    let t = this["s"] * this["n"] * P["d"] - P["s"] * P["n"] * this["d"];
+
+    return (C_ZERO < t) - (t < C_ZERO);
+  },
+
+  /**
+   * Calculates the ceil of a rational number
+   *
+   * Ex: new Fraction('4.(3)').ceil() => (5 / 1)
+   **/
+  "ceil": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) +
+      (places * this["n"] % this["d"] > C_ZERO && this["s"] >= C_ZERO ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+   * Calculates the floor of a rational number
+   *
+   * Ex: new Fraction('4.(3)').floor() => (4 / 1)
+   **/
+  "floor": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) -
+      (places * this["n"] % this["d"] > C_ZERO && this["s"] < C_ZERO ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+   * Rounds a rational numbers
+   *
+   * Ex: new Fraction('4.(3)').round() => (4 / 1)
+   **/
+  "round": function (places) {
+
+    places = C_TEN ** BigInt(places || 0);
+
+    /* Derivation:
+
+    s >= 0:
+      round(n / d) = ifloor(n / d) + (n % d) / d >= 0.5 ? 1 : 0
+                   = ifloor(n / d) + 2(n % d) >= d ? 1 : 0
+    s < 0:
+      round(n / d) =-ifloor(n / d) - (n % d) / d > 0.5 ? 1 : 0
+                   =-ifloor(n / d) - 2(n % d) > d ? 1 : 0
+
+    =>:
+
+    round(s * n / d) = s * ifloor(n / d) + s * (C + 2(n % d) > d ? 1 : 0)
+        where C = s >= 0 ? 1 : 0, to fix the >= for the positve case.
+    */
+
+    return newFraction(ifloor(this["s"] * places * this["n"] / this["d"]) +
+      this["s"] * ((this["s"] >= C_ZERO ? C_ONE : C_ZERO) + C_TWO * (places * this["n"] % this["d"]) > this["d"] ? C_ONE : C_ZERO),
+      places);
+  },
+
+  /**
+    * Rounds a rational number to a multiple of another rational number
+    *
+    * Ex: new Fraction('0.9').roundTo("1/8") => 7 / 8
+    **/
+  "roundTo": function (a, b) {
+
+    /*
+    k * x/y ≤ a/b < (k+1) * x/y
+    ⇔ k ≤ a/b / (x/y) < (k+1)
+    ⇔ k = floor(a/b * y/x)
+    ⇔ k = floor((a * y) / (b * x))
+    */
+
+    parse(a, b);
+
+    const n = this['n'] * P['d'];
+    const d = this['d'] * P['n'];
+    const r = n % d;
+
+    // round(n / d) = ifloor(n / d) + 2(n % d) >= d ? 1 : 0
+    let k = ifloor(n / d);
+    if (r + r >= d) {
+      k++;
+    }
+    return newFraction(this['s'] * k * P['n'], P['d']);
+  },
+
+  /**
+   * Check if two rational numbers are divisible
+   *
+   * Ex: new Fraction(19.6).divisible(1.5);
+   */
+  "divisible": function (a, b) {
+
+    parse(a, b);
+    if (P['n'] === C_ZERO) return false;
+    return (this['n'] * P['d']) % (P['n'] * this['d']) === C_ZERO;
+  },
+
+  /**
+   * Returns a decimal representation of the fraction
+   *
+   * Ex: new Fraction("100.'91823'").valueOf() => 100.91823918239183
+   **/
+  'valueOf': function () {
+    //if (this['n'] <= MAX_INTEGER && this['d'] <= MAX_INTEGER) {
+    return Number(this['s'] * this['n']) / Number(this['d']);
+    //}
+  },
+
+  /**
+   * Creates a string representation of a fraction with all digits
+   *
+   * Ex: new Fraction("100.'91823'").toString() => "100.(91823)"
+   **/
+  'toString': function (dec = 15) {
+
+    let N = this["n"];
+    let D = this["d"];
+
+    let cycLen = cycleLen(N, D); // Cycle length
+    let cycOff = cycleStart(N, D, cycLen); // Cycle start
+
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    // Append integer part
+    str += ifloor(N / D);
+
+    N %= D;
+    N *= C_TEN;
+
+    if (N)
+      str += ".";
+
+    if (cycLen) {
+
+      for (let i = cycOff; i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+      str += "(";
+      for (let i = cycLen; i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+      str += ")";
+    } else {
+      for (let i = dec; N && i--;) {
+        str += ifloor(N / D);
+        N %= D;
+        N *= C_TEN;
+      }
+    }
+    return str;
+  },
+
+  /**
+   * Returns a string-fraction representation of a Fraction object
+   *
+   * Ex: new Fraction("1.'3'").toFraction() => "4 1/3"
+   **/
+  'toFraction': function (showMixed = false) {
+
+    let n = this["n"];
+    let d = this["d"];
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    if (d === C_ONE) {
+      str += n;
+    } else {
+      const whole = ifloor(n / d);
+      if (showMixed && whole > C_ZERO) {
+        str += whole;
+        str += " ";
+        n %= d;
+      }
+
+      str += n;
+      str += '/';
+      str += d;
+    }
+    return str;
+  },
+
+  /**
+   * Returns a latex representation of a Fraction object
+   *
+   * Ex: new Fraction("1.'3'").toLatex() => "\frac{4}{3}"
+   **/
+  'toLatex': function (showMixed = false) {
+
+    let n = this["n"];
+    let d = this["d"];
+    let str = this['s'] < C_ZERO ? "-" : "";
+
+    if (d === C_ONE) {
+      str += n;
+    } else {
+      const whole = ifloor(n / d);
+      if (showMixed && whole > C_ZERO) {
+        str += whole;
+        n %= d;
+      }
+
+      str += "\\frac{";
+      str += n;
+      str += '}{';
+      str += d;
+      str += '}';
+    }
+    return str;
+  },
+
+  /**
+   * Returns an array of continued fraction elements
+   *
+   * Ex: new Fraction("7/8").toContinued() => [0,1,7]
+   */
+  'toContinued': function () {
+
+    let a = this['n'];
+    let b = this['d'];
+    const res = [];
+
+    while (b) {
+      res.push(ifloor(a / b));
+      const t = a % b;
+      a = b;
+      b = t;
+    }
+    return res;
+  },
+
+  "simplify": function (eps = 1e-3) {
+
+    // Continued fractions give best approximations for a max denominator,
+    // generally outperforming mediants in denominator–accuracy trade-offs.
+    // Semiconvergents can further reduce the denominator within tolerance.
+
+    const ieps = BigInt(Math.ceil(1 / eps));
+
+    const thisABS = this['abs']();
+    const cont = thisABS['toContinued']();
+
+    for (let i = 1; i < cont.length; i++) {
+
+      let s = newFraction(cont[i - 1], C_ONE);
+      for (let k = i - 2; k >= 0; k--) {
+        s = s['inverse']()['add'](cont[k]);
+      }
+
+      let t = s['sub'](thisABS);
+      if (t['n'] * ieps < t['d']) { // More robust than Math.abs(t.valueOf()) < eps
+        return s['mul'](this['s']);
+      }
+    }
+    return this;
+  }
+};
Index: node_modules/fraction.js/tests/fraction.test.js
===================================================================
--- node_modules/fraction.js/tests/fraction.test.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/fraction.js/tests/fraction.test.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1806 @@
+const Fraction = require('fraction.js');
+const assert = require('assert');
+
+var DivisionByZero = function () { return new Error("Division by Zero"); };
+var InvalidParameter = function () { return new Error("Invalid argument"); };
+var NonIntegerParameter = function () { return new Error("Parameters must be integer"); };
+
+var tests = [{
+  set: "",
+  expectError: InvalidParameter()
+}, {
+  set: "foo",
+  expectError: InvalidParameter()
+}, {
+  set: " 123",
+  expectError: InvalidParameter()
+}, {
+  set: 0,
+  expect: 0
+}, {
+  set: .2,
+  expect: "0.2"
+}, {
+  set: .333,
+  expect: "0.333"
+}, {
+  set: 1.1,
+  expect: "1.1"
+}, {
+  set: 1.2,
+  expect: "1.2"
+}, {
+  set: 1.3,
+  expect: "1.3"
+}, {
+  set: 1.4,
+  expect: "1.4"
+}, {
+  set: 1.5,
+  expect: "1.5"
+}, {
+  set: 2.555,
+  expect: "2.555"
+}, {
+  set: 1e12,
+  expect: "1000000000000"
+}, {
+  set: " - ",
+  expectError: InvalidParameter()
+}, {
+  set: ".5",
+  expect: "0.5"
+}, {
+  set: "2_000_000",
+  expect: "2000000"
+}, {
+  set: "-.5",
+  expect: "-0.5"
+}, {
+  set: "123",
+  expect: "123"
+}, {
+  set: "-123",
+  expect: "-123"
+}, {
+  set: "123.4",
+  expect: "123.4"
+}, {
+  set: "-123.4",
+  expect: "-123.4"
+}, {
+  set: "123.",
+  expect: "123"
+}, {
+  set: "-123.",
+  expect: "-123"
+}, {
+  set: "123.4(56)",
+  expect: "123.4(56)"
+}, {
+  set: "-123.4(56)",
+  expect: "-123.4(56)"
+}, {
+  set: "123.(4)",
+  expect: "123.(4)"
+}, {
+  set: "-123.(4)",
+  expect: "-123.(4)"
+}, {
+  set: "0/0",
+  expectError: DivisionByZero()
+}, {
+  set: "9/0",
+  expectError: DivisionByZero()
+}, {
+  label: "0/1+0/1",
+  set: "0/1",
+  param: "0/1",
+  expect: "0"
+}, {
+  label: "1/9+0/1",
+  set: "1/9",
+  param: "0/1",
+  expect: "0.(1)"
+}, {
+  set: "123/456",
+  expect: "0.269(736842105263157894)"
+}, {
+  set: "-123/456",
+  expect: "-0.269(736842105263157894)"
+}, {
+  set: "19 123/456",
+  expect: "19.269(736842105263157894)"
+}, {
+  set: "-19 123/456",
+  expect: "-19.269(736842105263157894)"
+}, {
+  set: "123.(22)123",
+  expectError: InvalidParameter()
+}, {
+  set: "+33.3(3)",
+  expect: "33.(3)"
+}, {
+  set: "3.'09009'",
+  expect: "3.(09009)"
+}, {
+  set: "123.(((",
+  expectError: InvalidParameter()
+}, {
+  set: "123.((",
+  expectError: InvalidParameter()
+}, {
+  set: "123.()",
+  expectError: InvalidParameter()
+}, {
+  set: null,
+  expect: "0" // I would say it's just fine
+}, {
+  set: [22, 7],
+  expect: '3.(142857)' // We got Pi! - almost ;o
+}, {
+  set: "355/113",
+  expect: "3.(1415929203539823008849557522123893805309734513274336283185840707964601769911504424778761061946902654867256637168)" // Yay, a better PI
+}, {
+  set: "3 1/7",
+  expect: '3.(142857)'
+}, {
+  set: [36, -36],
+  expect: "-1"
+}, {
+  set: [1n, 3n],
+  expect: "0.(3)"
+}, {
+  set: 1n,
+  set2: 3n,
+  expect: "0.(3)"
+}, {
+  set: { n: 1n, d: 3n },
+  expect: "0.(3)"
+}, {
+  set: { n: 1n, d: 3n },
+  expect: "0.(3)"
+}, {
+  set: [1n, 3n],
+  expect: "0.(3)"
+}, {
+  set: "9/12",
+  expect: "0.75"
+}, {
+  set: "0.09(33)",
+  expect: "0.09(3)"
+}, {
+  set: 1 / 2,
+  expect: "0.5"
+}, {
+  set: 1 / 3,
+  expect: "0.(3)"
+}, {
+  set: "0.'3'",
+  expect: "0.(3)"
+}, {
+  set: "0.00002",
+  expect: "0.00002"
+}, {
+  set: 7 / 8,
+  expect: "0.875"
+}, {
+  set: 0.003,
+  expect: "0.003"
+}, {
+  set: 4,
+  expect: "4"
+}, {
+  set: -99,
+  expect: "-99"
+}, {
+  set: "-92332.1192",
+  expect: "-92332.1192"
+}, {
+  set: '88.92933(12111)',
+  expect: "88.92933(12111)"
+}, {
+  set: '-192322.823(123)',
+  expect: "-192322.8(231)"
+}, {
+  label: "-99.12 % 0.09(34)",
+  set: '-99.12',
+  fn: "mod",
+  param: "0.09(34)",
+  expect: "-0.07(95)"
+}, {
+  label: "0.4 / 0.1",
+  set: .4,
+  fn: "div",
+  param: ".1",
+  expect: "4"
+}, {
+  label: "1 / -.1",
+  set: 1,
+  fn: "div",
+  param: "-.1",
+  expect: "-10"
+}, {
+  label: "1 - (-1)",
+  set: 1,
+  fn: "sub",
+  param: "-1",
+  expect: "2"
+}, {
+  label: "1 + (-1)",
+  set: 1,
+  fn: "add",
+  param: "-1",
+  expect: "0"
+}, {
+  label: "-187 % 12",
+  set: '-187',
+  fn: "mod",
+  param: "12",
+  expect: "-7"
+}, {
+  label: "Negate by 99 * -1",
+  set: '99',
+  fn: "mul",
+  param: "-1",
+  expect: "-99"
+}, {
+  label: "0.5050000000000000000000000",
+  set: "0.5050000000000000000000000",
+  expect: "101/200",
+  fn: "toFraction",
+  param: true
+}, {
+  label: "0.505000000(0000000000)",
+  set: "0.505000000(0000000000)",
+  expect: "101/200",
+  fn: "toFraction",
+  param: true
+}, {
+  set: [20, -5],
+  expect: "-4",
+  fn: "toFraction",
+  param: true
+}, {
+  set: [-10, -7],
+  expect: "1 3/7",
+  fn: "toFraction",
+  param: true
+}, {
+  set: [21, -6],
+  expect: "-3 1/2",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "10/78",
+  expect: "5/39",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "0/91",
+  expect: "0",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "-0/287",
+  expect: "0",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "-5/20",
+  expect: "-1/4",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "42/9",
+  expect: "4 2/3",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "71/23",
+  expect: "3 2/23",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "6/3",
+  expect: "2",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "28/4",
+  expect: "7",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "105/35",
+  expect: "3",
+  fn: "toFraction",
+  param: true
+}, {
+  set: "4/6",
+  expect: "2/3",
+  fn: "toFraction",
+  param: true
+}, {
+  label: "99.(9) + 66",
+  set: '99.(999999)',
+  fn: "add",
+  param: "66",
+  expect: "166"
+}, {
+  label: "123.32 / 33.'9821'",
+  set: '123.32',
+  fn: "div",
+  param: "33.'9821'",
+  expect: "3.628958880242975"
+}, {
+  label: "-82.124 / 66.(3)",
+  set: '-82.124',
+  fn: "div",
+  param: "66.(3)",
+  expect: "-1.238(050251256281407035175879396984924623115577889447236180904522613065326633165829145728643216080402010)"
+}, {
+  label: "100 - .91",
+  set: '100',
+  fn: "sub",
+  param: ".91",
+  expect: "99.09"
+}, {
+  label: "381.(33411) % 11.119(356)",
+  set: '381.(33411)',
+  fn: "mod",
+  param: "11.119(356)",
+  expect: "3.275(997225017295217)"
+}, {
+  label: "13/26 mod 1",
+  set: '13/26',
+  fn: "mod",
+  param: "1.000",
+  expect: "0.5"
+}, {
+  label: "381.(33411) % 1", // Extract fraction part of a number
+  set: '381.(33411)',
+  fn: "mod",
+  param: "1",
+  expect: "0.(33411)"
+}, {
+  label: "-222/3",
+  set: {
+    n: 3,
+    d: 222,
+    s: -1
+  },
+  fn: "inverse",
+  param: null,
+  expect: "-74"
+}, {
+  label: "inverse",
+  set: 1 / 2,
+  fn: "inverse",
+  param: null,
+  expect: "2"
+}, {
+  label: "abs(-222/3)",
+  set: {
+    n: -222,
+    d: 3
+  },
+  fn: "abs",
+  param: null,
+  expect: "74"
+}, {
+  label: "9 % -2",
+  set: 9,
+  fn: "mod",
+  param: "-2",
+  expect: "1"
+}, {
+  label: "-9 % 2",
+  set: '-9',
+  fn: "mod",
+  param: "-2",
+  expect: "-1"
+}, {
+  label: "1 / 195312500",
+  set: '1',
+  fn: "div",
+  param: "195312500",
+  expect: "0.00000000512"
+}, {
+  label: "10 / 0",
+  set: 10,
+  fn: "div",
+  param: 0,
+  expectError: DivisionByZero()
+}, {
+  label: "-3 / 4",
+  set: [-3, 4],
+  fn: "inverse",
+  param: null,
+  expect: "-1.(3)"
+}, {
+  label: "-19.6",
+  set: [-98, 5],
+  fn: "equals",
+  param: '-19.6',
+  expect: "true" // actually, we get a real bool but we call toString() in the test below
+}, {
+  label: "-19.6",
+  set: [98, -5],
+  fn: "equals",
+  param: '-19.6',
+  expect: "true"
+}, {
+  label: "99/88",
+  set: [99, 88],
+  fn: "equals",
+  param: [88, 99],
+  expect: "false"
+}, {
+  label: "99/88",
+  set: [99, -88],
+  fn: "equals",
+  param: [9, 8],
+  expect: "false"
+}, {
+  label: "12.5",
+  set: 12.5,
+  fn: "add",
+  param: 0,
+  expect: "12.5"
+}, {
+  label: "0/1 -> 1/0",
+  set: 0,
+  fn: "inverse",
+  param: null,
+  expectError: DivisionByZero()
+}, {
+  label: "abs(-100.25)",
+  set: -100.25,
+  fn: "abs",
+  param: null,
+  expect: "100.25"
+}, {
+  label: "0.022222222",
+  set: '0.0(22222222)',
+  fn: "abs",
+  param: null,
+  expect: "0.0(2)"
+}, {
+  label: "1.5 | 100.5",
+  set: 100.5,
+  fn: "divisible",
+  param: '1.5',
+  expect: "true"
+}, {
+  label: "1.5 | 100.6",
+  set: 100.6,
+  fn: "divisible",
+  param: 1.6,
+  expect: "false"
+}, {
+  label: "(1/6) | (2/3)", // == 4
+  set: [2, 3],
+  fn: "divisible",
+  param: [1, 6],
+  expect: "true"
+}, {
+  label: "(1/6) | (2/5)",
+  set: [2, 5],
+  fn: "divisible",
+  param: [1, 6],
+  expect: "false"
+}, {
+  label: "0 | (2/5)",
+  set: [2, 5],
+  fn: "divisible",
+  param: 0,
+  expect: "false"
+}, {
+  label: "6 | 0",
+  set: 0,
+  fn: "divisible",
+  param: 6,
+  expect: "true"
+}, {
+  label: "fmod(4.55, 0.05)", // http://phpjs.org/functions/fmod/ (comment section)
+  set: 4.55,
+  fn: "mod",
+  param: 0.05,
+  expect: "0"
+}, {
+  label: "fmod(99.12, 0.4)",
+  set: 99.12,
+  fn: "mod",
+  param: "0.4",
+  expect: "0.32"
+}, {
+  label: "fmod(fmod(1.0,0.1))", // http://stackoverflow.com/questions/4218961/why-fmod1-0-0-1-1
+  set: 1.0,
+  fn: "mod",
+  param: 0.1,
+  expect: "0"
+}, {
+  label: "bignum",
+  set: [5385020324, 1673196525],
+  fn: "add",
+  param: 0,
+  expect: "3.21(840276592733181776121606516006839065124164060763872313206005492988936251824931324190982287630557922656455433410609073551596098372245902196097377144624418820138297860736950789447760776337973807350574075570710380240599651018280712721418065340531352107607323652551812465663589637206543923464101146157950573080469432602963360804254598843372567965379918536467197121390148715495330113717514444395585868193217769203770011415724163065662594535928766646225254382476081224230369471990147720394052336440275597631903998844367669243157195775313960803259497565595290726533154854597848271290188102679689703515252041298615534717298077104242133182771222884293284077911887845930112722413166618308629346454087334421161315763550250022184333666363549254920906556389124702491239037207539024741878423396797336762338781453063321417070239253574830368476888869943116813489676593728283053898883754853602746993512910863832926021645903191198654921901657666901979730085800889408373591978384009612977172541043856160291750546158945674358246709841810124486123947693472528578195558946669459524487119048971249805817042322628538808374587079661786890216019304725725509141850506771761314768448972244907094819599867385572056456428511886850828834945135927771544947477105237234460548500123140047759781236696030073335228807028510891749551057667897081007863078128255137273847732859712937785356684266362554153643129279150277938809369688357439064129062782986595074359241811119587401724970711375341877428295519559485099934689381452068220139292962014728066686607540019843156200674036183526020650801913421377683054893985032630879985)"
+}, {
+  label: "ceil(0.4)",
+  set: 0.4,
+  fn: "ceil",
+  param: null,
+  expect: "1"
+},
+
+
+{
+  label: "1 < 2",
+  set: 1,
+  fn: "lt",
+  param: 2,
+  expect: "true"
+}, {
+  label: "2 < 2",
+  set: 2,
+  fn: "lt",
+  param: 2,
+  expect: "false"
+}, {
+  label: "3 > 2",
+  set: 3,
+  fn: "gt",
+  param: 2,
+  expect: "true"
+}, {
+  label: "2 > 2",
+  set: 2,
+  fn: "gt",
+  param: 2,
+  expect: "false"
+}, {
+  label: "1 <= 2",
+  set: 1,
+  fn: "lte",
+  param: 2,
+  expect: "true"
+}, {
+  label: "2 <= 2",
+  set: 2,
+  fn: "lte",
+  param: 2,
+  expect: "true"
+}, {
+  label: "3 <= 2",
+  set: 3,
+  fn: "lte",
+  param: 2,
+  expect: "false"
+}, {
+  label: "3 >= 2",
+  set: 3,
+  fn: "gte",
+  param: 2,
+  expect: "true"
+}, {
+  label: "2 >= 2",
+  set: 2,
+  fn: "gte",
+  param: 2,
+  expect: "true"
+}, {
+  label: "ceil(0.5)",
+  set: 0.5,
+  fn: "ceil",
+  param: null,
+  expect: "1"
+}, {
+  label: "ceil(0.23, 2)",
+  set: 0.23,
+  fn: "ceil",
+  param: 2,
+  expect: "0.23"
+}, {
+  label: "ceil(0.6)",
+  set: 0.6,
+  fn: "ceil",
+  param: null,
+  expect: "1"
+}, {
+  label: "ceil(-0.4)",
+  set: -0.4,
+  fn: "ceil",
+  param: null,
+  expect: "0"
+}, {
+  label: "ceil(-0.5)",
+  set: -0.5,
+  fn: "ceil",
+  param: null,
+  expect: "0"
+}, {
+  label: "ceil(-0.6)",
+  set: -0.6,
+  fn: "ceil",
+  param: null,
+  expect: "0"
+}, {
+  label: "floor(0.4)",
+  set: 0.4,
+  fn: "floor",
+  param: null,
+  expect: "0"
+}, {
+  label: "floor(0.4, 1)",
+  set: 0.4,
+  fn: "floor",
+  param: 1,
+  expect: "0.4"
+}, {
+  label: "floor(0.5)",
+  set: 0.5,
+  fn: "floor",
+  param: null,
+  expect: "0"
+}, {
+  label: "floor(0.6)",
+  set: 0.6,
+  fn: "floor",
+  param: null,
+  expect: "0"
+}, {
+  label: "floor(-0.4)",
+  set: -0.4,
+  fn: "floor",
+  param: null,
+  expect: "-1"
+}, {
+  label: "floor(-0.5)",
+  set: -0.5,
+  fn: "floor",
+  param: null,
+  expect: "-1"
+}, {
+  label: "floor(-0.6)",
+  set: -0.6,
+  fn: "floor",
+  param: null,
+  expect: "-1"
+}, {
+  label: "floor(10.4)",
+  set: 10.4,
+  fn: "floor",
+  param: null,
+  expect: "10"
+}, {
+  label: "floor(10.4, 1)",
+  set: 10.4,
+  fn: "floor",
+  param: 1,
+  expect: "10.4"
+}, {
+  label: "floor(10.5)",
+  set: 10.5,
+  fn: "floor",
+  param: null,
+  expect: "10"
+}, {
+  label: "floor(10.6)",
+  set: 10.6,
+  fn: "floor",
+  param: null,
+  expect: "10"
+}, {
+  label: "floor(-10.4)",
+  set: -10.4,
+  fn: "floor",
+  param: null,
+  expect: "-11"
+}, {
+  label: "floor(-10.5)",
+  set: -10.5,
+  fn: "floor",
+  param: null,
+  expect: "-11"
+}, {
+  label: "floor(-10.6)",
+  set: -10.6,
+  fn: "floor",
+  param: null,
+  expect: "-11"
+}, {
+  label: "floor(-10.543,3)",
+  set: -10.543,
+  fn: "floor",
+  param: 3,
+  expect: "-10.543"
+}, {
+  label: "floor(10.543,3)",
+  set: 10.543,
+  fn: "floor",
+  param: 3,
+  expect: "10.543"
+}, {
+  label: "round(-10.543,3)",
+  set: -10.543,
+  fn: "round",
+  param: 3,
+  expect: "-10.543"
+}, {
+  label: "round(10.543,3)",
+  set: 10.543,
+  fn: "round",
+  param: 3,
+  expect: "10.543"
+}, {
+  label: "round(10.4)",
+  set: 10.4,
+  fn: "round",
+  param: null,
+  expect: "10"
+}, {
+  label: "round(10.5)",
+  set: 10.5,
+  fn: "round",
+  param: null,
+  expect: "11"
+}, {
+  label: "round(10.5, 1)",
+  set: 10.5,
+  fn: "round",
+  param: 1,
+  expect: "10.5"
+}, {
+  label: "round(10.6)",
+  set: 10.6,
+  fn: "round",
+  param: null,
+  expect: "11"
+}, {
+  label: "round(-10.4)",
+  set: -10.4,
+  fn: "round",
+  param: null,
+  expect: "-10"
+}, {
+  label: "round(-10.5)",
+  set: -10.5,
+  fn: "round",
+  param: null,
+  expect: "-10"
+}, {
+  label: "round(-10.6)",
+  set: -10.6,
+  fn: "round",
+  param: null,
+  expect: "-11"
+}, {
+  label: "round(-0.4)",
+  set: -0.4,
+  fn: "round",
+  param: null,
+  expect: "0"
+}, {
+  label: "round(-0.5)",
+  set: -0.5,
+  fn: "round",
+  param: null,
+  expect: "0"
+}, {
+  label: "round(-0.6)",
+  set: -0.6,
+  fn: "round",
+  param: null,
+  expect: "-1"
+}, {
+  label: "round(-0)",
+  set: -0,
+  fn: "round",
+  param: null,
+  expect: "0"
+}, {
+  label: "round(big fraction)",
+  set: [
+    '409652136432929109317120'.repeat(100),
+    '63723676445298091081155'.repeat(100)
+  ],
+  fn: "round",
+  param: null,
+  expect: "6428570341270001560623330590225448467479093479780591305451264291405695842465355472558570608574213642"
+}, {
+  label: "round(big numerator)",
+  set: ['409652136432929109317'.repeat(100), 10],
+  fn: "round",
+  param: null,
+  expect: '409652136432929109317'.repeat(99) + '40965213643292910932'
+}, {
+  label: "17402216385200408/5539306332998545",
+  set: [17402216385200408, 5539306332998545],
+  fn: "add",
+  param: 0,
+  expect: "3.141587653589870"
+}, {
+  label: "17402216385200401/553930633299855",
+  set: [17402216385200401, 553930633299855],
+  fn: "add",
+  param: 0,
+  expect: "31.415876535898660"
+}, {
+  label: "1283191/418183",
+  set: [1283191, 418183],
+  fn: "add",
+  param: 0,
+  expect: "3.068491545567371"
+}, {
+  label: "1.001",
+  set: "1.001",
+  fn: "add",
+  param: 0,
+  expect: "1.001"
+}, {
+  label: "99+1",
+  set: [99, 1],
+  fn: "add",
+  param: 1,
+  expect: "100"
+}, {
+  label: "gcd(5/8, 3/7)",
+  set: [5, 8],
+  fn: "gcd",
+  param: [3, 7],
+  expect: "0.017(857142)" // == 1/56
+}, {
+  label: "gcd(52, 39)",
+  set: 52,
+  fn: "gcd",
+  param: 39,
+  expect: "13"
+}, {
+  label: "gcd(51357, 3819)",
+  set: 51357,
+  fn: "gcd",
+  param: 3819,
+  expect: "57"
+}, {
+  label: "gcd(841, 299)",
+  set: 841,
+  fn: "gcd",
+  param: 299,
+  expect: "1"
+}, {
+  label: "gcd(2/3, 7/5)",
+  set: [2, 3],
+  fn: "gcd",
+  param: [7, 5],
+  expect: "0.0(6)" // == 1/15
+}, {
+  label: "lcm(-3, 3)",
+  set: -3,
+  fn: "lcm",
+  param: 3,
+  expect: "3"
+}, {
+  label: "lcm(3,-3)",
+  set: 3,
+  fn: "lcm",
+  param: -3,
+  expect: "3"
+}, {
+  label: "lcm(0,3)",
+  set: 0,
+  fn: "lcm",
+  param: 3,
+  expect: "0"
+}, {
+  label: "lcm(3, 0)",
+  set: 3,
+  fn: "lcm",
+  param: 0,
+  expect: "0"
+}, {
+  label: "lcm(0, 0)",
+  set: 0,
+  fn: "lcm",
+  param: 0,
+  expect: "0"
+}, {
+  label: "lcm(200, 333)",
+  set: 200,
+  fn: "lcm",
+  param: 333, expect: "66600"
+},
+{
+  label: "1 + -1",
+  set: 1,
+  fn: "add",
+  param: -1,
+  expect: "0"
+}, {
+  label: "3/10+3/14",
+  set: "3/10",
+  fn: "add",
+  param: "3/14",
+  expect: "0.5(142857)"
+}, {
+  label: "3/10-3/14",
+  set: "3/10",
+  fn: "sub",
+  param: "3/14",
+  expect: "0.0(857142)"
+}, {
+  label: "3/10*3/14",
+  set: "3/10",
+  fn: "mul",
+  param: "3/14",
+  expect: "0.06(428571)"
+}, {
+  label: "3/10 / 3/14",
+  set: "3/10",
+  fn: "div",
+  param: "3/14",
+  expect: "1.4"
+}, {
+  label: "1-2",
+  set: "1",
+  fn: "sub",
+  param: "2",
+  expect: "-1"
+}, {
+  label: "1--1",
+  set: "1",
+  fn: "sub",
+  param: "-1",
+  expect: "2"
+}, {
+  label: "0/1*1/3",
+  set: "0/1",
+  fn: "mul",
+  param: "1/3",
+  expect: "0"
+}, {
+  label: "3/10 * 8/12",
+  set: "3/10",
+  fn: "mul",
+  param: "8/12",
+  expect: "0.2"
+}, {
+  label: ".5+5",
+  set: ".5",
+  fn: "add",
+  param: 5, expect: "5.5"
+},
+{
+  label: "10/12-5/60",
+  set: "10/12",
+  fn: "sub",
+  param: "5/60",
+  expect: "0.75"
+}, {
+  label: "10/15 / 3/4",
+  set: "10/15",
+  fn: "div",
+  param: "3/4",
+  expect: "0.(8)"
+}, {
+  label: "1/4 + 3/8",
+  set: "1/4",
+  fn: "add",
+  param: "3/8",
+  expect: "0.625"
+}, {
+  label: "2-1/3",
+  set: "2",
+  fn: "sub",
+  param: "1/3",
+  expect: "1.(6)"
+}, {
+  label: "5*6",
+  set: "5",
+  fn: "mul",
+  param: 6,
+  expect: "30"
+}, {
+  label: "1/2-1/5",
+  set: "1/2",
+  fn: "sub",
+  param: "1/5",
+  expect: "0.3"
+}, {
+  label: "1/2-5",
+  set: "1/2",
+  fn: "add",
+  param: -5,
+  expect: "-4.5"
+}, {
+  label: "1*-1",
+  set: "1",
+  fn: "mul",
+  param: -1,
+  expect: "-1"
+}, {
+  label: "5/10",
+  set: 5.0,
+  fn: "div",
+  param: 10,
+  expect: "0.5"
+}, {
+  label: "1/-1",
+  set: "1",
+  fn: "div",
+  param: -1,
+  expect: "-1"
+}, {
+  label: "4/5 + 13/2",
+  set: "4/5",
+  fn: "add",
+  param: "13/2",
+  expect: "7.3"
+}, {
+  label: "4/5 + 61/2",
+  set: "4/5",
+  fn: "add",
+  param: "61/2",
+  expect: "31.3"
+}, {
+  label: "0.8 + 6.5",
+  set: "0.8",
+  fn: "add",
+  param: "6.5",
+  expect: "7.3"
+}, {
+  label: "2/7 inverse",
+  set: "2/7",
+  fn: "inverse",
+  param: null,
+  expect: "3.5"
+}, {
+  label: "neg 1/3",
+  set: "1/3",
+  fn: "neg",
+  param: null,
+  expect: "-0.(3)"
+}, {
+  label: "1/2+1/3",
+  set: "1/2",
+  fn: "add",
+  param: "1/3",
+  expect: "0.8(3)"
+}, {
+  label: "1/2+3",
+  set: ".5",
+  fn: "add",
+  param: 3,
+  expect: "3.5"
+}, {
+  label: "1/2+3.14",
+  set: "1/2",
+  fn: "add",
+  param: "3.14",
+  expect: "3.64"
+}, {
+  label: "3.5 < 4.1",
+  set: 3.5,
+  fn: "compare",
+  param: 4.1,
+  expect: "-1"
+}, {
+  label: "3.5 > 4.1",
+  set: 4.1,
+  fn: "compare",
+  param: 3.1,
+  expect: "1"
+}, {
+  label: "-3.5 > -4.1",
+  set: -3.5,
+  fn: "compare",
+  param: -4.1,
+  expect: "1"
+}, {
+  label: "-3.5 > -4.1",
+  set: -4.1,
+  fn: "compare",
+  param: -3.5,
+  expect: "-1"
+}, {
+  label: "4.3 == 4.3",
+  set: 4.3,
+  fn: "compare",
+  param: 4.3,
+  expect: "0"
+}, {
+  label: "-4.3 == -4.3",
+  set: -4.3,
+  fn: "compare",
+  param: -4.3,
+  expect: "0"
+}, {
+  label: "-4.3 < 4.3",
+  set: -4.3,
+  fn: "compare",
+  param: 4.3,
+  expect: "-1"
+}, {
+  label: "4.3 == -4.3",
+  set: 4.3,
+  fn: "compare",
+  param: -4.3,
+  expect: "1"
+}, {
+  label: "2^0.5",
+  set: 2,
+  fn: "pow",
+  param: 0.5,
+  expect: "null"
+}, {
+  label: "(-8/27)^(1/3)",
+  set: [-8, 27],
+  fn: "pow",
+  param: [1, 3],
+  expect: "null"
+}, {
+  label: "(-8/27)^(2/3)",
+  set: [-8, 27],
+  fn: "pow",
+  param: [2, 3],
+  expect: "null"
+}, {
+  label: "(-32/243)^(5/3)",
+  set: [-32, 243],
+  fn: "pow",
+  param: [5, 3],
+  expect: "null"
+}, {
+  label: "sqrt(0)",
+  set: 0,
+  fn: "pow",
+  param: 0.5,
+  expect: "0"
+}, {
+  label: "27^(2/3)",
+  set: 27,
+  fn: "pow",
+  param: "2/3",
+  expect: "9"
+}, {
+  label: "(243/1024)^(2/5)",
+  set: "243/1024",
+  fn: "pow",
+  param: "2/5",
+  expect: "0.5625"
+}, {
+  label: "-0.5^-3",
+  set: -0.5,
+  fn: "pow",
+  param: -3,
+  expect: "-8"
+}, {
+  label: "",
+  set: -3,
+  fn: "pow",
+  param: -3,
+  expect: "-0.(037)"
+}, {
+  label: "-3",
+  set: -3,
+  fn: "pow",
+  param: 2,
+  expect: "9"
+}, {
+  label: "-3",
+  set: -3,
+  fn: "pow",
+  param: 3,
+  expect: "-27"
+}, {
+  label: "0^0",
+  set: 0,
+  fn: "pow",
+  param: 0,
+  expect: "1"
+}, {
+  label: "2/3^7",
+  set: [2, 3],
+  fn: "pow",
+  param: 7,
+  expect: "0.(058527663465935070873342478280749885688157293095564700502972107910379515317786922725194330132601737540009144947416552354823959762231367169638774577046181984453589391860996799268404206675811614083219021490626428898033836305441243712848651120256)"
+}, {
+  label: "-0.6^4",
+  set: -0.6,
+  fn: "pow",
+  param: 4,
+  expect: "0.1296"
+}, {
+  label: "8128371:12394 - 8128371/12394",
+  set: "8128371:12394",
+  fn: "sub",
+  param: "8128371/12394",
+  expect: "0"
+}, {
+  label: "3/4 + 1/4",
+  set: "3/4",
+  fn: "add",
+  param: "1/4",
+  expect: "1"
+}, {
+  label: "1/10 + 2/10",
+  set: "1/10",
+  fn: "add",
+  param: "2/10",
+  expect: "0.3"
+}, {
+  label: "5/10 + 2/10",
+  set: "5/10",
+  fn: "add",
+  param: "2/10",
+  expect: "0.7"
+}, {
+  label: "18/10 + 2/10",
+  set: "18/10",
+  fn: "add",
+  param: "2/10",
+  expect: "2"
+}, {
+  label: "1/3 + 1/6",
+  set: "1/3",
+  fn: "add",
+  param: "1/6",
+  expect: "0.5"
+}, {
+  label: "1/3 + 2/6",
+  set: "1/3",
+  fn: "add",
+  param: "2/6",
+  expect: "0.(6)"
+}, {
+  label: "3/4 / 1/4",
+  set: "3/4",
+  fn: "div",
+  param: "1/4",
+  expect: "3"
+}, {
+  label: "1/10 / 2/10",
+  set: "1/10",
+  fn: "div",
+  param: "2/10",
+  expect: "0.5"
+}, {
+  label: "5/10 / 2/10",
+  set: "5/10",
+  fn: "div",
+  param: "2/10",
+  expect: "2.5"
+}, {
+  label: "18/10 / 2/10",
+  set: "18/10",
+  fn: "div",
+  param: "2/10",
+  expect: "9"
+}, {
+  label: "1/3 / 1/6",
+  set: "1/3",
+  fn: "div",
+  param: "1/6",
+  expect: "2"
+}, {
+  label: "1/3 / 2/6",
+  set: "1/3",
+  fn: "div",
+  param: "2/6",
+  expect: "1"
+}, {
+  label: "3/4 * 1/4",
+  set: "3/4",
+  fn: "mul",
+  param: "1/4",
+  expect: "0.1875"
+}, {
+  label: "1/10 * 2/10",
+  set: "1/10",
+  fn: "mul",
+  param: "2/10",
+  expect: "0.02"
+}, {
+  label: "5/10 * 2/10",
+  set: "5/10",
+  fn: "mul",
+  param: "2/10",
+  expect: "0.1"
+}, {
+  label: "18/10 * 2/10",
+  set: "18/10",
+  fn: "mul",
+  param: "2/10",
+  expect: "0.36"
+}, {
+  label: "1/3 * 1/6",
+  set: "1/3",
+  fn: "mul",
+  param: "1/6",
+  expect: "0.0(5)"
+}, {
+  label: "1/3 * 2/6",
+  set: "1/3",
+  fn: "mul",
+  param: "2/6",
+  expect: "0.(1)"
+}, {
+  label: "5/4 - 1/4",
+  set: "5/4",
+  fn: "sub",
+  param: "1/4",
+  expect: "1"
+}, {
+  label: "5/10 - 2/10",
+  set: "5/10",
+  fn: "sub",
+  param: "2/10",
+  expect: "0.3"
+}, {
+  label: "9/10 - 2/10",
+  set: "9/10",
+  fn: "sub",
+  param: "2/10",
+  expect: "0.7"
+}, {
+  label: "22/10 - 2/10",
+  set: "22/10",
+  fn: "sub",
+  param: "2/10",
+  expect: "2"
+}, {
+  label: "2/3 - 1/6",
+  set: "2/3",
+  fn: "sub",
+  param: "1/6",
+  expect: "0.5"
+}, {
+  label: "3/3 - 2/6",
+  set: "3/3",
+  fn: "sub",
+  param: "2/6",
+  expect: "0.(6)"
+}, {
+  label: "0.006999999999999999",
+  set: 0.006999999999999999,
+  fn: "add",
+  param: 0,
+  expect: "0.007"
+}, {
+  label: "1/7 - 1",
+  set: 1 / 7,
+  fn: "add",
+  param: -1,
+  expect: "-0.(857142)"
+}, {
+  label: "0.0065 + 0.0005",
+  set: 0.0065,
+  fn: "add",
+  param: 0.0005,
+  expect: "0.007"
+}, {
+  label: "6.5/.5",
+  set: 6.5,
+  fn: "div",
+  param: .5,
+  expect: "13"
+}, {
+  label: "0.999999999999999999999999999",
+  set: 0.999999999999999999999999999,
+  fn: "sub",
+  param: 1,
+  expect: "0"
+}, {
+  label: "0.5833333333333334",
+  set: 0.5833333333333334,
+  fn: "add",
+  param: 0,
+  expect: "0.58(3)"
+}, {
+  label: "1.75/3",
+  set: 1.75 / 3,
+  fn: "add",
+  param: 0,
+  expect: "0.58(3)"
+}, {
+  label: "3.3333333333333",
+  set: 3.3333333333333,
+  fn: "add",
+  param: 0,
+  expect: "3.(3)"
+}, {
+  label: "4.285714285714285714285714",
+  set: 4.285714285714285714285714,
+  fn: "add",
+  param: 0,
+  expect: "4.(285714)"
+}, {
+  label: "-4",
+  set: -4,
+  fn: "neg",
+  param: 0,
+  expect: "4"
+}, {
+  label: "4",
+  set: 4,
+  fn: "neg",
+  param: 0,
+  expect: "-4"
+}, {
+  label: "0",
+  set: 0,
+  fn: "neg",
+  param: 0,
+  expect: "0"
+}, {
+  label: "6869570742453802/5329686054127205",
+  set: "6869570742453802/5329686054127205",
+  fn: "neg",
+  param: 0,
+  expect: "-1.288925965373540"
+}, {
+  label: "686970702/53212205",
+  set: "686970702/53212205",
+  fn: "neg",
+  param: 0,
+  expect: "-12.910021338149772"
+}, {
+  label: "1/3000000000000000",
+  set: "1/3000000000000000",
+  fn: "add",
+  param: 0,
+  expect: "0.000000000000000(3)"
+}, {
+  label: "toString(15) .0000000000000003",
+  set: ".0000000000000003",
+  fn: "toString",
+  param: 15,
+  expect: "0.000000000000000"
+}, {
+  label: "toString(16) .0000000000000003",
+  set: ".0000000000000003",
+  fn: "toString",
+  param: 16,
+  expect: "0.0000000000000003"
+}, {
+  label: "12 / 4.3",
+  set: 12,
+  set2: 4.3,
+  fn: "toString",
+  param: null,
+  expectError: NonIntegerParameter()
+}, {
+  label: "12.5 / 4",
+  set: 12.5,
+  set2: 4,
+  fn: "toString",
+  param: null,
+  expectError: NonIntegerParameter()
+}, {
+  label: "0.9 round to multiple of 1/8",
+  set: .9,
+  fn: "roundTo",
+  param: "1/8",
+  expect: "0.875"
+}, {
+  label: "1/3 round to multiple of 1/16",
+  set: 1 / 3,
+  fn: "roundTo",
+  param: "1/16",
+  expect: "0.3125"
+}, {
+  label: "1/3 round to multiple of 1/16",
+  set: -1 / 3,
+  fn: "roundTo",
+  param: "1/16",
+  expect: "-0.3125"
+}, {
+  label: "1/2 round to multiple of 1/4",
+  set: 1 / 2,
+  fn: "roundTo",
+  param: "1/4",
+  expect: "0.5"
+}, {
+  label: "1/4 round to multiple of 1/2",
+  set: 1 / 4,
+  fn: "roundTo",
+  param: "1/2",
+  expect: "0.5"
+}, {
+  label: "10/3 round to multiple of 1/2",
+  set: "10/3",
+  fn: "roundTo",
+  param: "1/2",
+  expect: "3.5"
+}, {
+  label: "-10/3 round to multiple of 1/2",
+  set: "-10/3",
+  fn: "roundTo",
+  param: "1/2",
+  expect: "-3.5"
+}, {
+  label: "log_2(8)",
+  set: "8",
+  fn: "log",
+  param: "2",
+  expect: "3" // because 2^3 = 8
+}, {
+  label: "log_2(3)",
+  set: "3",
+  fn: "log",
+  param: "2",
+  expect: 'null' // because 2^(p/q) != 3
+}, {
+  label: "log_10(1000)",
+  set: "1000",
+  fn: "log",
+  param: "10",
+  expect: "3" // because 10^3 = 1000
+}, {
+  label: "log_27(81)",
+  set: "81",
+  fn: "log",
+  param: "27",
+  expect: "1.(3)" // because 27^(4/3) = 81
+}, {
+  label: "log_27(9)",
+  set: "9",
+  fn: "log",
+  param: "27",
+  expect: "0.(6)" // because 27^(2/3) = 9
+}, {
+  label: "log_9/4(27/8)",
+  set: "27/8",
+  fn: "log",
+  param: "9/4",
+  expect: "1.5" // because (9/4)^(3/2) = 27/8
+}];
+
+describe('Fraction', function () {
+  for (var i = 0; i < tests.length; i++) {
+
+    (function (i) {
+      var action;
+
+      if (tests[i].fn) {
+        action = function () {
+          var x = Fraction(tests[i].set, tests[i].set2)[tests[i].fn](tests[i].param);
+          if (x === null) return "null";
+          return x.toString();
+        };
+      } else {
+        action = function () {
+          var x = new Fraction(tests[i].set, tests[i].set2);
+          if (x === null) return "null";
+          return x.toString();
+        };
+      }
+
+      it(String(tests[i].label || tests[i].set), function () {
+        if (tests[i].expectError) {
+          assert.throws(action, tests[i].expectError);
+        } else {
+          assert.equal(action(), tests[i].expect);
+        }
+      });
+
+    })(i);
+  }
+});
+
+describe('JSON', function () {
+
+  it("Should be possible to stringify the object", function () {
+
+    if (typeof Fraction(1).n !== 'number') {
+      return;
+    }
+    assert.equal('{"s":1,"n":14623,"d":330}', JSON.stringify(new Fraction("44.3(12)")));
+    assert.equal('{"s":-1,"n":2,"d":1}', JSON.stringify(new Fraction(-1 / 2).inverse()));
+  });
+});
+
+describe('Arguments', function () {
+
+  it("Should be possible to use different kind of params", function () {
+
+    // String
+    var fraction = new Fraction("0.1");
+    assert.equal("1/10", fraction.n + "/" + fraction.d);
+
+    var fraction = new Fraction("6234/6460");
+    assert.equal("3117/3230", fraction.n + "/" + fraction.d);
+
+    // Two params
+    var fraction = new Fraction(1, 2);
+    assert.equal("1/2", fraction.n + "/" + fraction.d);
+
+    // Object
+    var fraction = new Fraction({ n: 1, d: 3 });
+    assert.equal("1/3", fraction.n + "/" + fraction.d);
+
+    // Array
+    var fraction = new Fraction([1, 4]);
+    assert.equal("1/4", fraction.n + "/" + fraction.d);
+  });
+});
+
+describe('fractions', function () {
+
+  it("Should pass 0.08 = 2/25", function () {
+
+    var fraction = new Fraction("0.08");
+    assert.equal("2/25", fraction.n + "/" + fraction.d);
+  });
+
+  it("Should pass 0.200 = 1/5", function () {
+
+    var fraction = new Fraction("0.200");
+    assert.equal("1/5", fraction.n + "/" + fraction.d);
+  });
+
+  it("Should pass 0.125 = 1/8", function () {
+
+    var fraction = new Fraction("0.125");
+    assert.equal("1/8", fraction.n + "/" + fraction.d);
+  });
+
+  it("Should pass 8.36 = 209/25", function () {
+
+    var fraction = new Fraction(8.36);
+    assert.equal("209/25", fraction.n + "/" + fraction.d);
+  });
+
+});
+
+describe('constructors', function () {
+
+  it("Should pass 0.08 = 2/25", function () {
+
+    var tmp = new Fraction({ d: 4, n: 2, s: -1 });
+    assert.equal("-1/2", tmp.s * tmp.n + "/" + tmp.d);
+
+    var tmp = new Fraction(-88.3);
+    assert.equal("-883/10", tmp.s * tmp.n + "/" + tmp.d);
+
+    var tmp = new Fraction(-88.3).clone();
+    assert.equal("-883/10", tmp.s * tmp.n + "/" + tmp.d);
+
+    var tmp = new Fraction("123.'3'");
+    assert.equal("370/3", tmp.s * tmp.n + "/" + tmp.d);
+
+    var tmp = new Fraction("123.'3'").clone();
+    assert.equal("370/3", tmp.s * tmp.n + "/" + tmp.d);
+
+    var tmp = new Fraction([-1023461776, 334639305]);
+    tmp = tmp.add([4, 25]);
+    assert.equal("-4849597436/1673196525", tmp.s * tmp.n + "/" + tmp.d);
+  });
+});
+
+describe('Latex Output', function () {
+
+  it("Should pass 123.'3' = \\frac{370}{3}", function () {
+
+    var tmp = new Fraction("123.'3'");
+    assert.equal("\\frac{370}{3}", tmp.toLatex());
+  });
+
+  it("Should pass 1.'3' = \\frac{4}{3}", function () {
+
+    var tmp = new Fraction("1.'3'");
+    assert.equal("\\frac{4}{3}", tmp.toLatex());
+  });
+
+  it("Should pass -1.0000000000 = -1", function () {
+
+    var tmp = new Fraction("-1.0000000000");
+    assert.equal('-1', tmp.toLatex());
+  });
+
+  it("Should pass -0.0000000000 = 0", function () {
+
+    var tmp = new Fraction("-0.0000000000");
+    assert.equal('0', tmp.toLatex());
+  });
+});
+
+describe('Fraction Output', function () {
+
+  it("Should pass 123.'3' = 123 1/3", function () {
+
+    var tmp = new Fraction("123.'3'");
+    assert.equal('370/3', tmp.toFraction());
+  });
+
+  it("Should pass 1.'3' = 1 1/3", function () {
+
+    var tmp = new Fraction("1.'3'");
+    assert.equal('4/3', tmp.toFraction());
+  });
+
+  it("Should pass -1.0000000000 = -1", function () {
+
+    var tmp = new Fraction("-1.0000000000");
+    assert.equal('-1', tmp.toFraction());
+  });
+
+  it("Should pass -0.0000000000 = 0", function () {
+
+    var tmp = new Fraction("-0.0000000000");
+    assert.equal('0', tmp.toFraction());
+  });
+
+  it("Should pass 1/-99/293 = -1/29007", function () {
+
+    var tmp = new Fraction(-99).inverse().div(293);
+    assert.equal('-1/29007', tmp.toFraction());
+  });
+
+  it('Should work with large calculations', function () {
+    var x = Fraction(1123875);
+    var y = Fraction(1238750184);
+    var z = Fraction(1657134);
+    var r = Fraction(77344464613500, 92063);
+    assert.equal(x.mul(y).div(z).toFraction(), r.toFraction());
+  });
+});
+
+describe('Fraction toContinued', function () {
+
+  it("Should pass 415/93", function () {
+
+    var tmp = new Fraction(415, 93);
+    assert.equal('4,2,6,7', tmp.toContinued().toString());
+  });
+
+  it("Should pass 0/2", function () {
+
+    var tmp = new Fraction(0, 2);
+    assert.equal('0', tmp.toContinued().toString());
+  });
+
+  it("Should pass 1/7", function () {
+
+    var tmp = new Fraction(1, 7);
+    assert.equal('0,7', tmp.toContinued().toString());
+  });
+
+  it("Should pass 23/88", function () {
+
+    var tmp = new Fraction('23/88');
+    assert.equal('0,3,1,4,1,3', tmp.toContinued().toString());
+  });
+
+  it("Should pass 1/99", function () {
+
+    var tmp = new Fraction('1/99');
+    assert.equal('0,99', tmp.toContinued().toString());
+  });
+
+  it("Should pass 1768/99", function () {
+
+    var tmp = new Fraction('1768/99');
+    assert.equal('17,1,6,14', tmp.toContinued().toString());
+  });
+
+  it("Should pass 1768/99", function () {
+
+    var tmp = new Fraction('7/8');
+    assert.equal('0,1,7', tmp.toContinued().toString());
+  });
+
+});
+
+
+describe('Fraction simplify', function () {
+
+  it("Should pass 415/93", function () {
+
+    var tmp = new Fraction(415, 93);
+    assert.equal('9/2', tmp.simplify(0.1).toFraction());
+    assert.equal('58/13', tmp.simplify(0.01).toFraction());
+    assert.equal('415/93', tmp.simplify(0.0001).toFraction());
+  });
+
+});
Index: node_modules/nanoid/LICENSE
===================================================================
--- node_modules/nanoid/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2017 Andrey Sitnik <andrey@sitnik.ru>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Index: node_modules/nanoid/README.md
===================================================================
--- node_modules/nanoid/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,39 @@
+# Nano ID
+
+<img src="https://ai.github.io/nanoid/logo.svg" align="right"
+     alt="Nano ID logo by Anton Lovchikov" width="180" height="94">
+
+**English** | [Русский](./README.ru.md) | [简体中文](./README.zh-CN.md) | [Bahasa Indonesia](./README.id-ID.md)
+
+A tiny, secure, URL-friendly, unique string ID generator for JavaScript.
+
+> “An amazing level of senseless perfectionism,
+> which is simply impossible not to respect.”
+
+* **Small.** 130 bytes (minified and gzipped). No dependencies.
+  [Size Limit] controls the size.
+* **Fast.** It is 2 times faster than UUID.
+* **Safe.** It uses hardware random generator. Can be used in clusters.
+* **Short IDs.** It uses a larger alphabet than UUID (`A-Za-z0-9_-`).
+  So ID size was reduced from 36 to 21 symbols.
+* **Portable.** Nano ID was ported
+  to [20 programming languages](#other-programming-languages).
+
+```js
+import { nanoid } from 'nanoid'
+model.id = nanoid() //=> "V1StGXR8_Z5jdHi6B-myT"
+```
+
+Supports modern browsers, IE [with Babel], Node.js and React Native.
+
+[online tool]: https://gitpod.io/#https://github.com/ai/nanoid/
+[with Babel]:  https://developer.epages.com/blog/coding/how-to-transpile-node-modules-with-babel-and-webpack-in-a-monorepo/
+[Size Limit]:  https://github.com/ai/size-limit
+
+<a href="https://evilmartians.com/?utm_source=nanoid">
+  <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
+       alt="Sponsored by Evil Martians" width="236" height="54">
+</a>
+
+## Docs
+Read full docs **[here](https://github.com/ai/nanoid#readme)**.
Index: node_modules/nanoid/async/index.browser.cjs
===================================================================
--- node_modules/nanoid/async/index.browser.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/async/index.browser.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,69 @@
+let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes))
+
+let customAlphabet = (alphabet, defaultSize = 21) => {
+  // First, a bitmask is necessary to generate the ID. The bitmask makes bytes
+  // values closer to the alphabet size. The bitmask calculates the closest
+  // `2^31 - 1` number, which exceeds the alphabet size.
+  // For example, the bitmask for the alphabet size 30 is 31 (00011111).
+  // `Math.clz32` is not used, because it is not available in browsers.
+  let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
+  // Though, the bitmask solution is not perfect since the bytes exceeding
+  // the alphabet size are refused. Therefore, to reliably generate the ID,
+  // the random bytes redundancy has to be satisfied.
+
+  // Note: every hardware random generator call is performance expensive,
+  // because the system call for entropy collection takes a lot of time.
+  // So, to avoid additional system calls, extra bytes are requested in advance.
+
+  // Next, a step determines how many random bytes to generate.
+  // The number of random bytes gets decided upon the ID size, mask,
+  // alphabet size, and magic number 1.6 (using 1.6 peaks at performance
+  // according to benchmarks).
+
+  // `-~f => Math.ceil(f)` if f is a float
+  // `-~i => i + 1` if i is an integer
+  let step = -~((1.6 * mask * defaultSize) / alphabet.length)
+
+  return async (size = defaultSize) => {
+    let id = ''
+    while (true) {
+      let bytes = crypto.getRandomValues(new Uint8Array(step))
+      // A compact alternative for `for (var i = 0; i < step; i++)`.
+      let i = step | 0
+      while (i--) {
+        // Adding `|| ''` refuses a random byte that exceeds the alphabet size.
+        id += alphabet[bytes[i] & mask] || ''
+        if (id.length === size) return id
+      }
+    }
+  }
+}
+
+let nanoid = async (size = 21) => {
+  let id = ''
+  let bytes = crypto.getRandomValues(new Uint8Array((size |= 0)))
+
+  // A compact alternative for `for (var i = 0; i < step; i++)`.
+  while (size--) {
+    // It is incorrect to use bytes exceeding the alphabet size.
+    // The following mask reduces the random byte in the 0-255 value
+    // range to the 0-63 value range. Therefore, adding hacks, such
+    // as empty string fallback or magic numbers, is unneccessary because
+    // the bitmask trims bytes down to the alphabet size.
+    let byte = bytes[size] & 63
+    if (byte < 36) {
+      // `0-9a-z`
+      id += byte.toString(36)
+    } else if (byte < 62) {
+      // `A-Z`
+      id += (byte - 26).toString(36).toUpperCase()
+    } else if (byte < 63) {
+      id += '_'
+    } else {
+      id += '-'
+    }
+  }
+  return id
+}
+
+module.exports = { nanoid, customAlphabet, random }
Index: node_modules/nanoid/async/index.browser.js
===================================================================
--- node_modules/nanoid/async/index.browser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/async/index.browser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,34 @@
+let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes))
+let customAlphabet = (alphabet, defaultSize = 21) => {
+  let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
+  let step = -~((1.6 * mask * defaultSize) / alphabet.length)
+  return async (size = defaultSize) => {
+    let id = ''
+    while (true) {
+      let bytes = crypto.getRandomValues(new Uint8Array(step))
+      let i = step | 0
+      while (i--) {
+        id += alphabet[bytes[i] & mask] || ''
+        if (id.length === size) return id
+      }
+    }
+  }
+}
+let nanoid = async (size = 21) => {
+  let id = ''
+  let bytes = crypto.getRandomValues(new Uint8Array((size |= 0)))
+  while (size--) {
+    let byte = bytes[size] & 63
+    if (byte < 36) {
+      id += byte.toString(36)
+    } else if (byte < 62) {
+      id += (byte - 26).toString(36).toUpperCase()
+    } else if (byte < 63) {
+      id += '_'
+    } else {
+      id += '-'
+    }
+  }
+  return id
+}
+export { nanoid, customAlphabet, random }
Index: node_modules/nanoid/async/index.cjs
===================================================================
--- node_modules/nanoid/async/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/async/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,71 @@
+let crypto = require('crypto')
+
+let { urlAlphabet } = require('../url-alphabet/index.cjs')
+
+// `crypto.randomFill()` is a little faster than `crypto.randomBytes()`,
+// because it is possible to use in combination with `Buffer.allocUnsafe()`.
+let random = bytes =>
+  new Promise((resolve, reject) => {
+    // `Buffer.allocUnsafe()` is faster because it doesn’t flush the memory.
+    // Memory flushing is unnecessary since the buffer allocation itself resets
+    // the memory with the new bytes.
+    crypto.randomFill(Buffer.allocUnsafe(bytes), (err, buf) => {
+      if (err) {
+        reject(err)
+      } else {
+        resolve(buf)
+      }
+    })
+  })
+
+let customAlphabet = (alphabet, defaultSize = 21) => {
+  // First, a bitmask is necessary to generate the ID. The bitmask makes bytes
+  // values closer to the alphabet size. The bitmask calculates the closest
+  // `2^31 - 1` number, which exceeds the alphabet size.
+  // For example, the bitmask for the alphabet size 30 is 31 (00011111).
+  let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+  // Though, the bitmask solution is not perfect since the bytes exceeding
+  // the alphabet size are refused. Therefore, to reliably generate the ID,
+  // the random bytes redundancy has to be satisfied.
+
+  // Note: every hardware random generator call is performance expensive,
+  // because the system call for entropy collection takes a lot of time.
+  // So, to avoid additional system calls, extra bytes are requested in advance.
+
+  // Next, a step determines how many random bytes to generate.
+  // The number of random bytes gets decided upon the ID size, mask,
+  // alphabet size, and magic number 1.6 (using 1.6 peaks at performance
+  // according to benchmarks).
+  let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+
+  let tick = (id, size = defaultSize) =>
+    random(step).then(bytes => {
+      // A compact alternative for `for (var i = 0; i < step; i++)`.
+      let i = step
+      while (i--) {
+        // Adding `|| ''` refuses a random byte that exceeds the alphabet size.
+        id += alphabet[bytes[i] & mask] || ''
+        if (id.length >= size) return id
+      }
+      return tick(id, size)
+    })
+
+  return size => tick('', size)
+}
+
+let nanoid = (size = 21) =>
+  random((size |= 0)).then(bytes => {
+    let id = ''
+    // A compact alternative for `for (var i = 0; i < step; i++)`.
+    while (size--) {
+      // It is incorrect to use bytes exceeding the alphabet size.
+      // The following mask reduces the random byte in the 0-255 value
+      // range to the 0-63 value range. Therefore, adding hacks, such
+      // as empty string fallback or magic numbers, is unneccessary because
+      // the bitmask trims bytes down to the alphabet size.
+      id += urlAlphabet[bytes[size] & 63]
+    }
+    return id
+  })
+
+module.exports = { nanoid, customAlphabet, random }
Index: node_modules/nanoid/async/index.d.ts
===================================================================
--- node_modules/nanoid/async/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/async/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,56 @@
+/**
+ * Generate secure URL-friendly unique ID. The non-blocking version.
+ *
+ * By default, the ID will have 21 symbols to have a collision probability
+ * similar to UUID v4.
+ *
+ * ```js
+ * import { nanoid } from 'nanoid/async'
+ * nanoid().then(id => {
+ *   model.id = id
+ * })
+ * ```
+ *
+ * @param size Size of the ID. The default size is 21.
+ * @returns A promise with a random string.
+ */
+export function nanoid(size?: number): Promise<string>
+
+/**
+ * A low-level function.
+ * Generate secure unique ID with custom alphabet. The non-blocking version.
+ *
+ * Alphabet must contain 256 symbols or less. Otherwise, the generator
+ * will not be secure.
+ *
+ * @param alphabet Alphabet used to generate the ID.
+ * @param defaultSize Size of the ID. The default size is 21.
+ * @returns A function that returns a promise with a random string.
+ *
+ * ```js
+ * import { customAlphabet } from 'nanoid/async'
+ * const nanoid = customAlphabet('0123456789абвгдеё', 5)
+ * nanoid().then(id => {
+ *   model.id = id //=> "8ё56а"
+ * })
+ * ```
+ */
+export function customAlphabet(
+  alphabet: string,
+  defaultSize?: number
+): (size?: number) => Promise<string>
+
+/**
+ * Generate an array of random bytes collected from hardware noise.
+ *
+ * ```js
+ * import { random } from 'nanoid/async'
+ * random(5).then(bytes => {
+ *   bytes //=> [10, 67, 212, 67, 89]
+ * })
+ * ```
+ *
+ * @param bytes Size of the array.
+ * @returns A promise with a random bytes array.
+ */
+export function random(bytes: number): Promise<Uint8Array>
Index: node_modules/nanoid/async/index.js
===================================================================
--- node_modules/nanoid/async/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/async/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,35 @@
+import crypto from 'crypto'
+import { urlAlphabet } from '../url-alphabet/index.js'
+let random = bytes =>
+  new Promise((resolve, reject) => {
+    crypto.randomFill(Buffer.allocUnsafe(bytes), (err, buf) => {
+      if (err) {
+        reject(err)
+      } else {
+        resolve(buf)
+      }
+    })
+  })
+let customAlphabet = (alphabet, defaultSize = 21) => {
+  let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+  let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+  let tick = (id, size = defaultSize) =>
+    random(step).then(bytes => {
+      let i = step
+      while (i--) {
+        id += alphabet[bytes[i] & mask] || ''
+        if (id.length >= size) return id
+      }
+      return tick(id, size)
+    })
+  return size => tick('', size)
+}
+let nanoid = (size = 21) =>
+  random((size |= 0)).then(bytes => {
+    let id = ''
+    while (size--) {
+      id += urlAlphabet[bytes[size] & 63]
+    }
+    return id
+  })
+export { nanoid, customAlphabet, random }
Index: node_modules/nanoid/async/index.native.js
===================================================================
--- node_modules/nanoid/async/index.native.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/async/index.native.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,26 @@
+import { getRandomBytesAsync } from 'expo-random'
+import { urlAlphabet } from '../url-alphabet/index.js'
+let random = getRandomBytesAsync
+let customAlphabet = (alphabet, defaultSize = 21) => {
+  let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+  let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+  let tick = (id, size = defaultSize) =>
+    random(step).then(bytes => {
+      let i = step
+      while (i--) {
+        id += alphabet[bytes[i] & mask] || ''
+        if (id.length >= size) return id
+      }
+      return tick(id, size)
+    })
+  return size => tick('', size)
+}
+let nanoid = (size = 21) =>
+  random((size |= 0)).then(bytes => {
+    let id = ''
+    while (size--) {
+      id += urlAlphabet[bytes[size] & 63]
+    }
+    return id
+  })
+export { nanoid, customAlphabet, random }
Index: node_modules/nanoid/async/package.json
===================================================================
--- node_modules/nanoid/async/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/async/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,12 @@
+{
+  "type": "module",
+  "main": "index.cjs",
+  "module": "index.js",
+  "react-native": {
+    "./index.js": "./index.native.js"
+  },
+  "browser": {
+    "./index.js": "./index.browser.js",
+    "./index.cjs": "./index.browser.cjs"
+  }
+}
Index: node_modules/nanoid/bin/nanoid.cjs
===================================================================
--- node_modules/nanoid/bin/nanoid.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/bin/nanoid.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,55 @@
+#!/usr/bin/env node
+
+let { nanoid, customAlphabet } = require('..')
+
+function print(msg) {
+  process.stdout.write(msg + '\n')
+}
+
+function error(msg) {
+  process.stderr.write(msg + '\n')
+  process.exit(1)
+}
+
+if (process.argv.includes('--help') || process.argv.includes('-h')) {
+  print(`
+  Usage
+    $ nanoid [options]
+
+  Options
+    -s, --size       Generated ID size
+    -a, --alphabet   Alphabet to use
+    -h, --help       Show this help
+
+  Examples
+    $ nanoid --s 15
+    S9sBF77U6sDB8Yg
+
+    $ nanoid --size 10 --alphabet abc
+    bcabababca`)
+  process.exit()
+}
+
+let alphabet, size
+for (let i = 2; i < process.argv.length; i++) {
+  let arg = process.argv[i]
+  if (arg === '--size' || arg === '-s') {
+    size = Number(process.argv[i + 1])
+    i += 1
+    if (Number.isNaN(size) || size <= 0) {
+      error('Size must be positive integer')
+    }
+  } else if (arg === '--alphabet' || arg === '-a') {
+    alphabet = process.argv[i + 1]
+    i += 1
+  } else {
+    error('Unknown argument ' + arg)
+  }
+}
+
+if (alphabet) {
+  let customNanoid = customAlphabet(alphabet, size)
+  print(customNanoid())
+} else {
+  print(nanoid(size))
+}
Index: node_modules/nanoid/index.browser.cjs
===================================================================
--- node_modules/nanoid/index.browser.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/index.browser.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,72 @@
+// This file replaces `index.js` in bundlers like webpack or Rollup,
+// according to `browser` config in `package.json`.
+
+let { urlAlphabet } = require('./url-alphabet/index.cjs')
+
+let random = bytes => crypto.getRandomValues(new Uint8Array(bytes))
+
+let customRandom = (alphabet, defaultSize, getRandom) => {
+  // First, a bitmask is necessary to generate the ID. The bitmask makes bytes
+  // values closer to the alphabet size. The bitmask calculates the closest
+  // `2^31 - 1` number, which exceeds the alphabet size.
+  // For example, the bitmask for the alphabet size 30 is 31 (00011111).
+  // `Math.clz32` is not used, because it is not available in browsers.
+  let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
+  // Though, the bitmask solution is not perfect since the bytes exceeding
+  // the alphabet size are refused. Therefore, to reliably generate the ID,
+  // the random bytes redundancy has to be satisfied.
+
+  // Note: every hardware random generator call is performance expensive,
+  // because the system call for entropy collection takes a lot of time.
+  // So, to avoid additional system calls, extra bytes are requested in advance.
+
+  // Next, a step determines how many random bytes to generate.
+  // The number of random bytes gets decided upon the ID size, mask,
+  // alphabet size, and magic number 1.6 (using 1.6 peaks at performance
+  // according to benchmarks).
+
+  // `-~f => Math.ceil(f)` if f is a float
+  // `-~i => i + 1` if i is an integer
+  let step = -~((1.6 * mask * defaultSize) / alphabet.length)
+
+  return (size = defaultSize) => {
+    let id = ''
+    while (true) {
+      let bytes = getRandom(step)
+      // A compact alternative for `for (var i = 0; i < step; i++)`.
+      let j = step | 0
+      while (j--) {
+        // Adding `|| ''` refuses a random byte that exceeds the alphabet size.
+        id += alphabet[bytes[j] & mask] || ''
+        if (id.length === size) return id
+      }
+    }
+  }
+}
+
+let customAlphabet = (alphabet, size = 21) =>
+  customRandom(alphabet, size, random)
+
+let nanoid = (size = 21) =>
+  crypto.getRandomValues(new Uint8Array(size)).reduce((id, byte) => {
+    // It is incorrect to use bytes exceeding the alphabet size.
+    // The following mask reduces the random byte in the 0-255 value
+    // range to the 0-63 value range. Therefore, adding hacks, such
+    // as empty string fallback or magic numbers, is unneccessary because
+    // the bitmask trims bytes down to the alphabet size.
+    byte &= 63
+    if (byte < 36) {
+      // `0-9a-z`
+      id += byte.toString(36)
+    } else if (byte < 62) {
+      // `A-Z`
+      id += (byte - 26).toString(36).toUpperCase()
+    } else if (byte > 62) {
+      id += '-'
+    } else {
+      id += '_'
+    }
+    return id
+  }, '')
+
+module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
Index: node_modules/nanoid/index.browser.js
===================================================================
--- node_modules/nanoid/index.browser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/index.browser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,34 @@
+import { urlAlphabet } from './url-alphabet/index.js'
+let random = bytes => crypto.getRandomValues(new Uint8Array(bytes))
+let customRandom = (alphabet, defaultSize, getRandom) => {
+  let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
+  let step = -~((1.6 * mask * defaultSize) / alphabet.length)
+  return (size = defaultSize) => {
+    let id = ''
+    while (true) {
+      let bytes = getRandom(step)
+      let j = step | 0
+      while (j--) {
+        id += alphabet[bytes[j] & mask] || ''
+        if (id.length === size) return id
+      }
+    }
+  }
+}
+let customAlphabet = (alphabet, size = 21) =>
+  customRandom(alphabet, size, random)
+let nanoid = (size = 21) =>
+  crypto.getRandomValues(new Uint8Array(size)).reduce((id, byte) => {
+    byte &= 63
+    if (byte < 36) {
+      id += byte.toString(36)
+    } else if (byte < 62) {
+      id += (byte - 26).toString(36).toUpperCase()
+    } else if (byte > 62) {
+      id += '-'
+    } else {
+      id += '_'
+    }
+    return id
+  }, '')
+export { nanoid, customAlphabet, customRandom, urlAlphabet, random }
Index: node_modules/nanoid/index.cjs
===================================================================
--- node_modules/nanoid/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,85 @@
+let crypto = require('crypto')
+
+let { urlAlphabet } = require('./url-alphabet/index.cjs')
+
+// It is best to make fewer, larger requests to the crypto module to
+// avoid system call overhead. So, random numbers are generated in a
+// pool. The pool is a Buffer that is larger than the initial random
+// request size by this multiplier. The pool is enlarged if subsequent
+// requests exceed the maximum buffer size.
+const POOL_SIZE_MULTIPLIER = 128
+let pool, poolOffset
+
+let fillPool = bytes => {
+  if (!pool || pool.length < bytes) {
+    pool = Buffer.allocUnsafe(bytes * POOL_SIZE_MULTIPLIER)
+    crypto.randomFillSync(pool)
+    poolOffset = 0
+  } else if (poolOffset + bytes > pool.length) {
+    crypto.randomFillSync(pool)
+    poolOffset = 0
+  }
+  poolOffset += bytes
+}
+
+let random = bytes => {
+  // `|=` convert `bytes` to number to prevent `valueOf` abusing and pool pollution
+  fillPool((bytes |= 0))
+  return pool.subarray(poolOffset - bytes, poolOffset)
+}
+
+let customRandom = (alphabet, defaultSize, getRandom) => {
+  // First, a bitmask is necessary to generate the ID. The bitmask makes bytes
+  // values closer to the alphabet size. The bitmask calculates the closest
+  // `2^31 - 1` number, which exceeds the alphabet size.
+  // For example, the bitmask for the alphabet size 30 is 31 (00011111).
+  let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+  // Though, the bitmask solution is not perfect since the bytes exceeding
+  // the alphabet size are refused. Therefore, to reliably generate the ID,
+  // the random bytes redundancy has to be satisfied.
+
+  // Note: every hardware random generator call is performance expensive,
+  // because the system call for entropy collection takes a lot of time.
+  // So, to avoid additional system calls, extra bytes are requested in advance.
+
+  // Next, a step determines how many random bytes to generate.
+  // The number of random bytes gets decided upon the ID size, mask,
+  // alphabet size, and magic number 1.6 (using 1.6 peaks at performance
+  // according to benchmarks).
+  let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+
+  return (size = defaultSize) => {
+    let id = ''
+    while (true) {
+      let bytes = getRandom(step)
+      // A compact alternative for `for (let i = 0; i < step; i++)`.
+      let i = step
+      while (i--) {
+        // Adding `|| ''` refuses a random byte that exceeds the alphabet size.
+        id += alphabet[bytes[i] & mask] || ''
+        if (id.length === size) return id
+      }
+    }
+  }
+}
+
+let customAlphabet = (alphabet, size = 21) =>
+  customRandom(alphabet, size, random)
+
+let nanoid = (size = 21) => {
+  // `|=` convert `size` to number to prevent `valueOf` abusing and pool pollution
+  fillPool((size |= 0))
+  let id = ''
+  // We are reading directly from the random pool to avoid creating new array
+  for (let i = poolOffset - size; i < poolOffset; i++) {
+    // It is incorrect to use bytes exceeding the alphabet size.
+    // The following mask reduces the random byte in the 0-255 value
+    // range to the 0-63 value range. Therefore, adding hacks, such
+    // as empty string fallback or magic numbers, is unneccessary because
+    // the bitmask trims bytes down to the alphabet size.
+    id += urlAlphabet[pool[i] & 63]
+  }
+  return id
+}
+
+module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
Index: node_modules/nanoid/index.d.cts
===================================================================
--- node_modules/nanoid/index.d.cts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/index.d.cts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,91 @@
+/**
+ * Generate secure URL-friendly unique ID.
+ *
+ * By default, the ID will have 21 symbols to have a collision probability
+ * similar to UUID v4.
+ *
+ * ```js
+ * import { nanoid } from 'nanoid'
+ * model.id = nanoid() //=> "Uakgb_J5m9g-0JDMbcJqL"
+ * ```
+ *
+ * @param size Size of the ID. The default size is 21.
+ * @returns A random string.
+ */
+export function nanoid(size?: number): string
+
+/**
+ * Generate secure unique ID with custom alphabet.
+ *
+ * Alphabet must contain 256 symbols or less. Otherwise, the generator
+ * will not be secure.
+ *
+ * @param alphabet Alphabet used to generate the ID.
+ * @param defaultSize Size of the ID. The default size is 21.
+ * @returns A random string generator.
+ *
+ * ```js
+ * const { customAlphabet } = require('nanoid')
+ * const nanoid = customAlphabet('0123456789абвгдеё', 5)
+ * nanoid() //=> "8ё56а"
+ * ```
+ */
+export function customAlphabet(
+  alphabet: string,
+  defaultSize?: number
+): (size?: number) => string
+
+/**
+ * Generate unique ID with custom random generator and alphabet.
+ *
+ * Alphabet must contain 256 symbols or less. Otherwise, the generator
+ * will not be secure.
+ *
+ * ```js
+ * import { customRandom } from 'nanoid/format'
+ *
+ * const nanoid = customRandom('abcdef', 5, size => {
+ *   const random = []
+ *   for (let i = 0; i < size; i++) {
+ *     random.push(randomByte())
+ *   }
+ *   return random
+ * })
+ *
+ * nanoid() //=> "fbaef"
+ * ```
+ *
+ * @param alphabet Alphabet used to generate a random string.
+ * @param size Size of the random string.
+ * @param random A random bytes generator.
+ * @returns A random string generator.
+ */
+export function customRandom(
+  alphabet: string,
+  size: number,
+  random: (bytes: number) => Uint8Array
+): () => string
+
+/**
+ * URL safe symbols.
+ *
+ * ```js
+ * import { urlAlphabet } from 'nanoid'
+ * const nanoid = customAlphabet(urlAlphabet, 10)
+ * nanoid() //=> "Uakgb_J5m9"
+ * ```
+ */
+export const urlAlphabet: string
+
+/**
+ * Generate an array of random bytes collected from hardware noise.
+ *
+ * ```js
+ * import { customRandom, random } from 'nanoid'
+ * const nanoid = customRandom("abcdef", 5, random)
+ * ```
+ *
+ * @param bytes Size of the array.
+ * @returns An array of random bytes.
+ */
+export function random(bytes: number): Uint8Array
Index: node_modules/nanoid/index.d.ts
===================================================================
--- node_modules/nanoid/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,91 @@
+/**
+ * Generate secure URL-friendly unique ID.
+ *
+ * By default, the ID will have 21 symbols to have a collision probability
+ * similar to UUID v4.
+ *
+ * ```js
+ * import { nanoid } from 'nanoid'
+ * model.id = nanoid() //=> "Uakgb_J5m9g-0JDMbcJqL"
+ * ```
+ *
+ * @param size Size of the ID. The default size is 21.
+ * @returns A random string.
+ */
+export function nanoid(size?: number): string
+
+/**
+ * Generate secure unique ID with custom alphabet.
+ *
+ * Alphabet must contain 256 symbols or less. Otherwise, the generator
+ * will not be secure.
+ *
+ * @param alphabet Alphabet used to generate the ID.
+ * @param defaultSize Size of the ID. The default size is 21.
+ * @returns A random string generator.
+ *
+ * ```js
+ * const { customAlphabet } = require('nanoid')
+ * const nanoid = customAlphabet('0123456789абвгдеё', 5)
+ * nanoid() //=> "8ё56а"
+ * ```
+ */
+export function customAlphabet(
+  alphabet: string,
+  defaultSize?: number
+): (size?: number) => string
+
+/**
+ * Generate unique ID with custom random generator and alphabet.
+ *
+ * Alphabet must contain 256 symbols or less. Otherwise, the generator
+ * will not be secure.
+ *
+ * ```js
+ * import { customRandom } from 'nanoid/format'
+ *
+ * const nanoid = customRandom('abcdef', 5, size => {
+ *   const random = []
+ *   for (let i = 0; i < size; i++) {
+ *     random.push(randomByte())
+ *   }
+ *   return random
+ * })
+ *
+ * nanoid() //=> "fbaef"
+ * ```
+ *
+ * @param alphabet Alphabet used to generate a random string.
+ * @param size Size of the random string.
+ * @param random A random bytes generator.
+ * @returns A random string generator.
+ */
+export function customRandom(
+  alphabet: string,
+  size: number,
+  random: (bytes: number) => Uint8Array
+): () => string
+
+/**
+ * URL safe symbols.
+ *
+ * ```js
+ * import { urlAlphabet } from 'nanoid'
+ * const nanoid = customAlphabet(urlAlphabet, 10)
+ * nanoid() //=> "Uakgb_J5m9"
+ * ```
+ */
+export const urlAlphabet: string
+
+/**
+ * Generate an array of random bytes collected from hardware noise.
+ *
+ * ```js
+ * import { customRandom, random } from 'nanoid'
+ * const nanoid = customRandom("abcdef", 5, random)
+ * ```
+ *
+ * @param bytes Size of the array.
+ * @returns An array of random bytes.
+ */
+export function random(bytes: number): Uint8Array
Index: node_modules/nanoid/index.js
===================================================================
--- node_modules/nanoid/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,45 @@
+import crypto from 'crypto'
+import { urlAlphabet } from './url-alphabet/index.js'
+const POOL_SIZE_MULTIPLIER = 128
+let pool, poolOffset
+let fillPool = bytes => {
+  if (!pool || pool.length < bytes) {
+    pool = Buffer.allocUnsafe(bytes * POOL_SIZE_MULTIPLIER)
+    crypto.randomFillSync(pool)
+    poolOffset = 0
+  } else if (poolOffset + bytes > pool.length) {
+    crypto.randomFillSync(pool)
+    poolOffset = 0
+  }
+  poolOffset += bytes
+}
+let random = bytes => {
+  fillPool((bytes |= 0))
+  return pool.subarray(poolOffset - bytes, poolOffset)
+}
+let customRandom = (alphabet, defaultSize, getRandom) => {
+  let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+  let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+  return (size = defaultSize) => {
+    let id = ''
+    while (true) {
+      let bytes = getRandom(step)
+      let i = step
+      while (i--) {
+        id += alphabet[bytes[i] & mask] || ''
+        if (id.length === size) return id
+      }
+    }
+  }
+}
+let customAlphabet = (alphabet, size = 21) =>
+  customRandom(alphabet, size, random)
+let nanoid = (size = 21) => {
+  fillPool((size |= 0))
+  let id = ''
+  for (let i = poolOffset - size; i < poolOffset; i++) {
+    id += urlAlphabet[pool[i] & 63]
+  }
+  return id
+}
+export { nanoid, customAlphabet, customRandom, urlAlphabet, random }
Index: node_modules/nanoid/nanoid.js
===================================================================
--- node_modules/nanoid/nanoid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/nanoid.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+export let nanoid=(t=21)=>crypto.getRandomValues(new Uint8Array(t)).reduce(((t,e)=>t+=(e&=63)<36?e.toString(36):e<62?(e-26).toString(36).toUpperCase():e<63?"_":"-"),"");
Index: node_modules/nanoid/non-secure/index.cjs
===================================================================
--- node_modules/nanoid/non-secure/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/non-secure/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,34 @@
+// This alphabet uses `A-Za-z0-9_-` symbols.
+// The order of characters is optimized for better gzip and brotli compression.
+// References to the same file (works both for gzip and brotli):
+// `'use`, `andom`, and `rict'`
+// References to the brotli default dictionary:
+// `-26T`, `1983`, `40px`, `75px`, `bush`, `jack`, `mind`, `very`, and `wolf`
+let urlAlphabet =
+  'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
+
+let customAlphabet = (alphabet, defaultSize = 21) => {
+  return (size = defaultSize) => {
+    let id = ''
+    // A compact alternative for `for (var i = 0; i < step; i++)`.
+    let i = size | 0
+    while (i--) {
+      // `| 0` is more compact and faster than `Math.floor()`.
+      id += alphabet[(Math.random() * alphabet.length) | 0]
+    }
+    return id
+  }
+}
+
+let nanoid = (size = 21) => {
+  let id = ''
+  // A compact alternative for `for (var i = 0; i < step; i++)`.
+  let i = size | 0
+  while (i--) {
+    // `| 0` is more compact and faster than `Math.floor()`.
+    id += urlAlphabet[(Math.random() * 64) | 0]
+  }
+  return id
+}
+
+module.exports = { nanoid, customAlphabet }
Index: node_modules/nanoid/non-secure/index.d.ts
===================================================================
--- node_modules/nanoid/non-secure/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/non-secure/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,33 @@
+/**
+ * Generate URL-friendly unique ID. This method uses the non-secure
+ * predictable random generator with bigger collision probability.
+ *
+ * ```js
+ * import { nanoid } from 'nanoid/non-secure'
+ * model.id = nanoid() //=> "Uakgb_J5m9g-0JDMbcJqL"
+ * ```
+ *
+ * @param size Size of the ID. The default size is 21.
+ * @returns A random string.
+ */
+export function nanoid(size?: number): string
+
+/**
+ * Generate a unique ID based on a custom alphabet.
+ * This method uses the non-secure predictable random generator
+ * with bigger collision probability.
+ *
+ * @param alphabet Alphabet used to generate the ID.
+ * @param defaultSize Size of the ID. The default size is 21.
+ * @returns A random string generator.
+ *
+ * ```js
+ * import { customAlphabet } from 'nanoid/non-secure'
+ * const nanoid = customAlphabet('0123456789абвгдеё', 5)
+ * model.id = //=> "8ё56а"
+ * ```
+ */
+export function customAlphabet(
+  alphabet: string,
+  defaultSize?: number
+): (size?: number) => string
Index: node_modules/nanoid/non-secure/index.js
===================================================================
--- node_modules/nanoid/non-secure/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/non-secure/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,21 @@
+let urlAlphabet =
+  'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
+let customAlphabet = (alphabet, defaultSize = 21) => {
+  return (size = defaultSize) => {
+    let id = ''
+    let i = size | 0
+    while (i--) {
+      id += alphabet[(Math.random() * alphabet.length) | 0]
+    }
+    return id
+  }
+}
+let nanoid = (size = 21) => {
+  let id = ''
+  let i = size | 0
+  while (i--) {
+    id += urlAlphabet[(Math.random() * 64) | 0]
+  }
+  return id
+}
+export { nanoid, customAlphabet }
Index: node_modules/nanoid/non-secure/package.json
===================================================================
--- node_modules/nanoid/non-secure/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/non-secure/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6 @@
+{
+  "type": "module",
+  "main": "index.cjs",
+  "module": "index.js",
+  "react-native": "index.js"
+}
Index: node_modules/nanoid/package.json
===================================================================
--- node_modules/nanoid/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,89 @@
+{
+  "name": "nanoid",
+  "version": "3.3.11",
+  "description": "A tiny (116 bytes), secure URL-friendly unique string ID generator",
+  "keywords": [
+    "uuid",
+    "random",
+    "id",
+    "url"
+  ],
+  "engines": {
+    "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+  },
+  "funding": [
+    {
+      "type": "github",
+      "url": "https://github.com/sponsors/ai"
+    }
+  ],
+  "author": "Andrey Sitnik <andrey@sitnik.ru>",
+  "license": "MIT",
+  "repository": "ai/nanoid",
+  "browser": {
+    "./index.js": "./index.browser.js",
+    "./async/index.js": "./async/index.browser.js",
+    "./async/index.cjs": "./async/index.browser.cjs",
+    "./index.cjs": "./index.browser.cjs"
+  },
+  "react-native": "index.js",
+  "bin": "./bin/nanoid.cjs",
+  "sideEffects": false,
+  "types": "./index.d.ts",
+  "type": "module",
+  "main": "index.cjs",
+  "module": "index.js",
+  "exports": {
+    ".": {
+      "react-native": "./index.browser.js",
+      "browser": "./index.browser.js",
+      "require": {
+        "types": "./index.d.cts",
+        "default": "./index.cjs"
+      },
+      "import": {
+        "types": "./index.d.ts",
+        "default": "./index.js"
+      },
+      "default": "./index.js"
+    },
+    "./package.json": "./package.json",
+    "./async/package.json": "./async/package.json",
+    "./async": {
+      "browser": "./async/index.browser.js",
+      "require": {
+        "types": "./index.d.cts",
+        "default": "./async/index.cjs"
+      },
+      "import": {
+        "types": "./index.d.ts",
+        "default": "./async/index.js"
+      },
+      "default": "./async/index.js"
+    },
+    "./non-secure/package.json": "./non-secure/package.json",
+    "./non-secure": {
+      "require": {
+        "types": "./index.d.cts",
+        "default": "./non-secure/index.cjs"
+      },
+      "import": {
+        "types": "./index.d.ts",
+        "default": "./non-secure/index.js"
+      },
+      "default": "./non-secure/index.js"
+    },
+    "./url-alphabet/package.json": "./url-alphabet/package.json",
+    "./url-alphabet": {
+      "require": {
+        "types": "./index.d.cts",
+        "default": "./url-alphabet/index.cjs"
+      },
+      "import": {
+        "types": "./index.d.ts",
+        "default": "./url-alphabet/index.js"
+      },
+      "default": "./url-alphabet/index.js"
+    }
+  }
+}
Index: node_modules/nanoid/url-alphabet/index.cjs
===================================================================
--- node_modules/nanoid/url-alphabet/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/url-alphabet/index.cjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,7 @@
+// This alphabet uses `A-Za-z0-9_-` symbols.
+// The order of characters is optimized for better gzip and brotli compression.
+// Same as in non-secure/index.js
+let urlAlphabet =
+  'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
+
+module.exports = { urlAlphabet }
Index: node_modules/nanoid/url-alphabet/index.js
===================================================================
--- node_modules/nanoid/url-alphabet/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/url-alphabet/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,3 @@
+let urlAlphabet =
+  'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
+export { urlAlphabet }
Index: node_modules/nanoid/url-alphabet/package.json
===================================================================
--- node_modules/nanoid/url-alphabet/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/nanoid/url-alphabet/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6 @@
+{
+  "type": "module",
+  "main": "index.cjs",
+  "module": "index.js",
+  "react-native": "index.js"
+}
Index: node_modules/node-releases/LICENSE
===================================================================
--- node_modules/node-releases/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/node-releases/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
Index: node_modules/node-releases/README.md
===================================================================
--- node_modules/node-releases/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/node-releases/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,12 @@
+# Node.js releases data
+
+All data is located in `data` directory.
+
+`data/processed` contains `envs.json` with node.js releases data preprocessed to be used by [Browserslist](https://github.com/ai/browserslist) and other projects. Each version in this file contains only necessary info: version, release date, LTS flag/name, and security flag.
+
+`data/release-schedule` contains `release-schedule.json` with node.js releases date and end of life date.
+
+## Installation
+```bash
+npm install node-releases
+```
Index: node_modules/node-releases/data/processed/envs.json
===================================================================
--- node_modules/node-releases/data/processed/envs.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/node-releases/data/processed/envs.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+[{"name":"nodejs","version":"0.2.0","date":"2011-08-26","lts":false,"security":false,"v8":"2.3.8.0"},{"name":"nodejs","version":"0.3.0","date":"2011-08-26","lts":false,"security":false,"v8":"2.5.1.0"},{"name":"nodejs","version":"0.4.0","date":"2011-08-26","lts":false,"security":false,"v8":"3.1.2.0"},{"name":"nodejs","version":"0.5.0","date":"2011-08-26","lts":false,"security":false,"v8":"3.1.8.25"},{"name":"nodejs","version":"0.6.0","date":"2011-11-04","lts":false,"security":false,"v8":"3.6.6.6"},{"name":"nodejs","version":"0.7.0","date":"2012-01-17","lts":false,"security":false,"v8":"3.8.6.0"},{"name":"nodejs","version":"0.8.0","date":"2012-06-22","lts":false,"security":false,"v8":"3.11.10.10"},{"name":"nodejs","version":"0.9.0","date":"2012-07-20","lts":false,"security":false,"v8":"3.11.10.15"},{"name":"nodejs","version":"0.10.0","date":"2013-03-11","lts":false,"security":false,"v8":"3.14.5.8"},{"name":"nodejs","version":"0.11.0","date":"2013-03-28","lts":false,"security":false,"v8":"3.17.13.0"},{"name":"nodejs","version":"0.12.0","date":"2015-02-06","lts":false,"security":false,"v8":"3.28.73.0"},{"name":"nodejs","version":"4.0.0","date":"2015-09-08","lts":false,"security":false,"v8":"4.5.103.30"},{"name":"nodejs","version":"4.1.0","date":"2015-09-17","lts":false,"security":false,"v8":"4.5.103.33"},{"name":"nodejs","version":"4.2.0","date":"2015-10-12","lts":"Argon","security":false,"v8":"4.5.103.35"},{"name":"nodejs","version":"4.3.0","date":"2016-02-09","lts":"Argon","security":false,"v8":"4.5.103.35"},{"name":"nodejs","version":"4.4.0","date":"2016-03-08","lts":"Argon","security":false,"v8":"4.5.103.35"},{"name":"nodejs","version":"4.5.0","date":"2016-08-16","lts":"Argon","security":false,"v8":"4.5.103.37"},{"name":"nodejs","version":"4.6.0","date":"2016-09-27","lts":"Argon","security":true,"v8":"4.5.103.37"},{"name":"nodejs","version":"4.7.0","date":"2016-12-06","lts":"Argon","security":false,"v8":"4.5.103.43"},{"name":"nodejs","version":"4.8.0","date":"2017-02-21","lts":"Argon","security":false,"v8":"4.5.103.45"},{"name":"nodejs","version":"4.9.0","date":"2018-03-28","lts":"Argon","security":true,"v8":"4.5.103.53"},{"name":"nodejs","version":"5.0.0","date":"2015-10-29","lts":false,"security":false,"v8":"4.6.85.28"},{"name":"nodejs","version":"5.1.0","date":"2015-11-17","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.2.0","date":"2015-12-09","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.3.0","date":"2015-12-15","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.4.0","date":"2016-01-06","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.5.0","date":"2016-01-21","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.6.0","date":"2016-02-09","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.7.0","date":"2016-02-23","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.8.0","date":"2016-03-09","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.9.0","date":"2016-03-16","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.10.0","date":"2016-04-01","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.11.0","date":"2016-04-21","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.12.0","date":"2016-06-23","lts":false,"security":false,"v8":"4.6.85.32"},{"name":"nodejs","version":"6.0.0","date":"2016-04-26","lts":false,"security":false,"v8":"5.0.71.35"},{"name":"nodejs","version":"6.1.0","date":"2016-05-05","lts":false,"security":false,"v8":"5.0.71.35"},{"name":"nodejs","version":"6.2.0","date":"2016-05-17","lts":false,"security":false,"v8":"5.0.71.47"},{"name":"nodejs","version":"6.3.0","date":"2016-07-06","lts":false,"security":false,"v8":"5.0.71.52"},{"name":"nodejs","version":"6.4.0","date":"2016-08-12","lts":false,"security":false,"v8":"5.0.71.60"},{"name":"nodejs","version":"6.5.0","date":"2016-08-26","lts":false,"security":false,"v8":"5.1.281.81"},{"name":"nodejs","version":"6.6.0","date":"2016-09-14","lts":false,"security":false,"v8":"5.1.281.83"},{"name":"nodejs","version":"6.7.0","date":"2016-09-27","lts":false,"security":true,"v8":"5.1.281.83"},{"name":"nodejs","version":"6.8.0","date":"2016-10-12","lts":false,"security":false,"v8":"5.1.281.84"},{"name":"nodejs","version":"6.9.0","date":"2016-10-18","lts":"Boron","security":false,"v8":"5.1.281.84"},{"name":"nodejs","version":"6.10.0","date":"2017-02-21","lts":"Boron","security":false,"v8":"5.1.281.93"},{"name":"nodejs","version":"6.11.0","date":"2017-06-06","lts":"Boron","security":false,"v8":"5.1.281.102"},{"name":"nodejs","version":"6.12.0","date":"2017-11-06","lts":"Boron","security":false,"v8":"5.1.281.108"},{"name":"nodejs","version":"6.13.0","date":"2018-02-10","lts":"Boron","security":false,"v8":"5.1.281.111"},{"name":"nodejs","version":"6.14.0","date":"2018-03-28","lts":"Boron","security":true,"v8":"5.1.281.111"},{"name":"nodejs","version":"6.15.0","date":"2018-11-27","lts":"Boron","security":true,"v8":"5.1.281.111"},{"name":"nodejs","version":"6.16.0","date":"2018-12-26","lts":"Boron","security":false,"v8":"5.1.281.111"},{"name":"nodejs","version":"6.17.0","date":"2019-02-28","lts":"Boron","security":true,"v8":"5.1.281.111"},{"name":"nodejs","version":"7.0.0","date":"2016-10-25","lts":false,"security":false,"v8":"5.4.500.36"},{"name":"nodejs","version":"7.1.0","date":"2016-11-08","lts":false,"security":false,"v8":"5.4.500.36"},{"name":"nodejs","version":"7.2.0","date":"2016-11-22","lts":false,"security":false,"v8":"5.4.500.43"},{"name":"nodejs","version":"7.3.0","date":"2016-12-20","lts":false,"security":false,"v8":"5.4.500.45"},{"name":"nodejs","version":"7.4.0","date":"2017-01-04","lts":false,"security":false,"v8":"5.4.500.45"},{"name":"nodejs","version":"7.5.0","date":"2017-01-31","lts":false,"security":false,"v8":"5.4.500.48"},{"name":"nodejs","version":"7.6.0","date":"2017-02-21","lts":false,"security":false,"v8":"5.5.372.40"},{"name":"nodejs","version":"7.7.0","date":"2017-02-28","lts":false,"security":false,"v8":"5.5.372.41"},{"name":"nodejs","version":"7.8.0","date":"2017-03-29","lts":false,"security":false,"v8":"5.5.372.43"},{"name":"nodejs","version":"7.9.0","date":"2017-04-11","lts":false,"security":false,"v8":"5.5.372.43"},{"name":"nodejs","version":"7.10.0","date":"2017-05-02","lts":false,"security":false,"v8":"5.5.372.43"},{"name":"nodejs","version":"8.0.0","date":"2017-05-30","lts":false,"security":false,"v8":"5.8.283.41"},{"name":"nodejs","version":"8.1.0","date":"2017-06-08","lts":false,"security":false,"v8":"5.8.283.41"},{"name":"nodejs","version":"8.2.0","date":"2017-07-19","lts":false,"security":false,"v8":"5.8.283.41"},{"name":"nodejs","version":"8.3.0","date":"2017-08-08","lts":false,"security":false,"v8":"6.0.286.52"},{"name":"nodejs","version":"8.4.0","date":"2017-08-15","lts":false,"security":false,"v8":"6.0.286.52"},{"name":"nodejs","version":"8.5.0","date":"2017-09-12","lts":false,"security":false,"v8":"6.0.287.53"},{"name":"nodejs","version":"8.6.0","date":"2017-09-26","lts":false,"security":false,"v8":"6.0.287.53"},{"name":"nodejs","version":"8.7.0","date":"2017-10-11","lts":false,"security":false,"v8":"6.1.534.42"},{"name":"nodejs","version":"8.8.0","date":"2017-10-24","lts":false,"security":false,"v8":"6.1.534.42"},{"name":"nodejs","version":"8.9.0","date":"2017-10-31","lts":"Carbon","security":false,"v8":"6.1.534.46"},{"name":"nodejs","version":"8.10.0","date":"2018-03-06","lts":"Carbon","security":false,"v8":"6.2.414.50"},{"name":"nodejs","version":"8.11.0","date":"2018-03-28","lts":"Carbon","security":true,"v8":"6.2.414.50"},{"name":"nodejs","version":"8.12.0","date":"2018-09-10","lts":"Carbon","security":false,"v8":"6.2.414.66"},{"name":"nodejs","version":"8.13.0","date":"2018-11-20","lts":"Carbon","security":false,"v8":"6.2.414.72"},{"name":"nodejs","version":"8.14.0","date":"2018-11-27","lts":"Carbon","security":true,"v8":"6.2.414.72"},{"name":"nodejs","version":"8.15.0","date":"2018-12-26","lts":"Carbon","security":false,"v8":"6.2.414.75"},{"name":"nodejs","version":"8.16.0","date":"2019-04-16","lts":"Carbon","security":false,"v8":"6.2.414.77"},{"name":"nodejs","version":"8.17.0","date":"2019-12-17","lts":"Carbon","security":true,"v8":"6.2.414.78"},{"name":"nodejs","version":"9.0.0","date":"2017-10-31","lts":false,"security":false,"v8":"6.2.414.32"},{"name":"nodejs","version":"9.1.0","date":"2017-11-07","lts":false,"security":false,"v8":"6.2.414.32"},{"name":"nodejs","version":"9.2.0","date":"2017-11-14","lts":false,"security":false,"v8":"6.2.414.44"},{"name":"nodejs","version":"9.3.0","date":"2017-12-12","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.4.0","date":"2018-01-10","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.5.0","date":"2018-01-31","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.6.0","date":"2018-02-21","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.7.0","date":"2018-03-01","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.8.0","date":"2018-03-07","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.9.0","date":"2018-03-21","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.10.0","date":"2018-03-28","lts":false,"security":true,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.11.0","date":"2018-04-04","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"10.0.0","date":"2018-04-24","lts":false,"security":false,"v8":"6.6.346.24"},{"name":"nodejs","version":"10.1.0","date":"2018-05-08","lts":false,"security":false,"v8":"6.6.346.27"},{"name":"nodejs","version":"10.2.0","date":"2018-05-23","lts":false,"security":false,"v8":"6.6.346.32"},{"name":"nodejs","version":"10.3.0","date":"2018-05-29","lts":false,"security":false,"v8":"6.6.346.32"},{"name":"nodejs","version":"10.4.0","date":"2018-06-06","lts":false,"security":false,"v8":"6.7.288.43"},{"name":"nodejs","version":"10.5.0","date":"2018-06-20","lts":false,"security":false,"v8":"6.7.288.46"},{"name":"nodejs","version":"10.6.0","date":"2018-07-04","lts":false,"security":false,"v8":"6.7.288.46"},{"name":"nodejs","version":"10.7.0","date":"2018-07-18","lts":false,"security":false,"v8":"6.7.288.49"},{"name":"nodejs","version":"10.8.0","date":"2018-08-01","lts":false,"security":false,"v8":"6.7.288.49"},{"name":"nodejs","version":"10.9.0","date":"2018-08-15","lts":false,"security":false,"v8":"6.8.275.24"},{"name":"nodejs","version":"10.10.0","date":"2018-09-06","lts":false,"security":false,"v8":"6.8.275.30"},{"name":"nodejs","version":"10.11.0","date":"2018-09-19","lts":false,"security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.12.0","date":"2018-10-10","lts":false,"security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.13.0","date":"2018-10-30","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.14.0","date":"2018-11-27","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.15.0","date":"2018-12-26","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.16.0","date":"2019-05-28","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.17.0","date":"2019-10-22","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.18.0","date":"2019-12-17","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.19.0","date":"2020-02-05","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.20.0","date":"2020-03-26","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.21.0","date":"2020-06-02","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.22.0","date":"2020-07-21","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.23.0","date":"2020-10-27","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.24.0","date":"2021-02-23","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"11.0.0","date":"2018-10-23","lts":false,"security":false,"v8":"7.0.276.28"},{"name":"nodejs","version":"11.1.0","date":"2018-10-30","lts":false,"security":false,"v8":"7.0.276.32"},{"name":"nodejs","version":"11.2.0","date":"2018-11-15","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.3.0","date":"2018-11-27","lts":false,"security":true,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.4.0","date":"2018-12-07","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.5.0","date":"2018-12-18","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.6.0","date":"2018-12-26","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.7.0","date":"2019-01-17","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.8.0","date":"2019-01-24","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.9.0","date":"2019-01-30","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.10.0","date":"2019-02-14","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.11.0","date":"2019-03-05","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.12.0","date":"2019-03-14","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.13.0","date":"2019-03-28","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.14.0","date":"2019-04-10","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.15.0","date":"2019-04-30","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"12.0.0","date":"2019-04-23","lts":false,"security":false,"v8":"7.4.288.21"},{"name":"nodejs","version":"12.1.0","date":"2019-04-29","lts":false,"security":false,"v8":"7.4.288.21"},{"name":"nodejs","version":"12.2.0","date":"2019-05-07","lts":false,"security":false,"v8":"7.4.288.21"},{"name":"nodejs","version":"12.3.0","date":"2019-05-21","lts":false,"security":false,"v8":"7.4.288.27"},{"name":"nodejs","version":"12.4.0","date":"2019-06-04","lts":false,"security":false,"v8":"7.4.288.27"},{"name":"nodejs","version":"12.5.0","date":"2019-06-26","lts":false,"security":false,"v8":"7.5.288.22"},{"name":"nodejs","version":"12.6.0","date":"2019-07-03","lts":false,"security":false,"v8":"7.5.288.22"},{"name":"nodejs","version":"12.7.0","date":"2019-07-23","lts":false,"security":false,"v8":"7.5.288.22"},{"name":"nodejs","version":"12.8.0","date":"2019-08-06","lts":false,"security":false,"v8":"7.5.288.22"},{"name":"nodejs","version":"12.9.0","date":"2019-08-20","lts":false,"security":false,"v8":"7.6.303.29"},{"name":"nodejs","version":"12.10.0","date":"2019-09-04","lts":false,"security":false,"v8":"7.6.303.29"},{"name":"nodejs","version":"12.11.0","date":"2019-09-25","lts":false,"security":false,"v8":"7.7.299.11"},{"name":"nodejs","version":"12.12.0","date":"2019-10-11","lts":false,"security":false,"v8":"7.7.299.13"},{"name":"nodejs","version":"12.13.0","date":"2019-10-21","lts":"Erbium","security":false,"v8":"7.7.299.13"},{"name":"nodejs","version":"12.14.0","date":"2019-12-17","lts":"Erbium","security":true,"v8":"7.7.299.13"},{"name":"nodejs","version":"12.15.0","date":"2020-02-05","lts":"Erbium","security":true,"v8":"7.7.299.13"},{"name":"nodejs","version":"12.16.0","date":"2020-02-11","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.17.0","date":"2020-05-26","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.18.0","date":"2020-06-02","lts":"Erbium","security":true,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.19.0","date":"2020-10-06","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.20.0","date":"2020-11-24","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.21.0","date":"2021-02-23","lts":"Erbium","security":true,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.22.0","date":"2021-03-30","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"13.0.0","date":"2019-10-22","lts":false,"security":false,"v8":"7.8.279.17"},{"name":"nodejs","version":"13.1.0","date":"2019-11-05","lts":false,"security":false,"v8":"7.8.279.17"},{"name":"nodejs","version":"13.2.0","date":"2019-11-21","lts":false,"security":false,"v8":"7.9.317.23"},{"name":"nodejs","version":"13.3.0","date":"2019-12-03","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.4.0","date":"2019-12-17","lts":false,"security":true,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.5.0","date":"2019-12-18","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.6.0","date":"2020-01-07","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.7.0","date":"2020-01-21","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.8.0","date":"2020-02-05","lts":false,"security":true,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.9.0","date":"2020-02-18","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.10.0","date":"2020-03-04","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.11.0","date":"2020-03-12","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.12.0","date":"2020-03-26","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.13.0","date":"2020-04-14","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.14.0","date":"2020-04-29","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"14.0.0","date":"2020-04-21","lts":false,"security":false,"v8":"8.1.307.30"},{"name":"nodejs","version":"14.1.0","date":"2020-04-29","lts":false,"security":false,"v8":"8.1.307.31"},{"name":"nodejs","version":"14.2.0","date":"2020-05-05","lts":false,"security":false,"v8":"8.1.307.31"},{"name":"nodejs","version":"14.3.0","date":"2020-05-19","lts":false,"security":false,"v8":"8.1.307.31"},{"name":"nodejs","version":"14.4.0","date":"2020-06-02","lts":false,"security":true,"v8":"8.1.307.31"},{"name":"nodejs","version":"14.5.0","date":"2020-06-30","lts":false,"security":false,"v8":"8.3.110.9"},{"name":"nodejs","version":"14.6.0","date":"2020-07-20","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.7.0","date":"2020-07-29","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.8.0","date":"2020-08-11","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.9.0","date":"2020-08-27","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.10.0","date":"2020-09-08","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.11.0","date":"2020-09-15","lts":false,"security":true,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.12.0","date":"2020-09-22","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.13.0","date":"2020-09-29","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.14.0","date":"2020-10-15","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.15.0","date":"2020-10-27","lts":"Fermium","security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.16.0","date":"2021-02-23","lts":"Fermium","security":true,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.17.0","date":"2021-05-11","lts":"Fermium","security":false,"v8":"8.4.371.23"},{"name":"nodejs","version":"14.18.0","date":"2021-09-28","lts":"Fermium","security":false,"v8":"8.4.371.23"},{"name":"nodejs","version":"14.19.0","date":"2022-02-01","lts":"Fermium","security":false,"v8":"8.4.371.23"},{"name":"nodejs","version":"14.20.0","date":"2022-07-07","lts":"Fermium","security":true,"v8":"8.4.371.23"},{"name":"nodejs","version":"14.21.0","date":"2022-11-01","lts":"Fermium","security":false,"v8":"8.4.371.23"},{"name":"nodejs","version":"15.0.0","date":"2020-10-20","lts":false,"security":false,"v8":"8.6.395.16"},{"name":"nodejs","version":"15.1.0","date":"2020-11-04","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.2.0","date":"2020-11-10","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.3.0","date":"2020-11-24","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.4.0","date":"2020-12-09","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.5.0","date":"2020-12-22","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.6.0","date":"2021-01-14","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.7.0","date":"2021-01-25","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.8.0","date":"2021-02-02","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.9.0","date":"2021-02-18","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.10.0","date":"2021-02-23","lts":false,"security":true,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.11.0","date":"2021-03-03","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.12.0","date":"2021-03-17","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.13.0","date":"2021-03-31","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.14.0","date":"2021-04-06","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"16.0.0","date":"2021-04-20","lts":false,"security":false,"v8":"9.0.257.17"},{"name":"nodejs","version":"16.1.0","date":"2021-05-04","lts":false,"security":false,"v8":"9.0.257.24"},{"name":"nodejs","version":"16.2.0","date":"2021-05-19","lts":false,"security":false,"v8":"9.0.257.25"},{"name":"nodejs","version":"16.3.0","date":"2021-06-03","lts":false,"security":false,"v8":"9.0.257.25"},{"name":"nodejs","version":"16.4.0","date":"2021-06-23","lts":false,"security":false,"v8":"9.1.269.36"},{"name":"nodejs","version":"16.5.0","date":"2021-07-14","lts":false,"security":false,"v8":"9.1.269.38"},{"name":"nodejs","version":"16.6.0","date":"2021-07-29","lts":false,"security":true,"v8":"9.2.230.21"},{"name":"nodejs","version":"16.7.0","date":"2021-08-18","lts":false,"security":false,"v8":"9.2.230.21"},{"name":"nodejs","version":"16.8.0","date":"2021-08-25","lts":false,"security":false,"v8":"9.2.230.21"},{"name":"nodejs","version":"16.9.0","date":"2021-09-07","lts":false,"security":false,"v8":"9.3.345.16"},{"name":"nodejs","version":"16.10.0","date":"2021-09-22","lts":false,"security":false,"v8":"9.3.345.19"},{"name":"nodejs","version":"16.11.0","date":"2021-10-08","lts":false,"security":false,"v8":"9.4.146.19"},{"name":"nodejs","version":"16.12.0","date":"2021-10-20","lts":false,"security":false,"v8":"9.4.146.19"},{"name":"nodejs","version":"16.13.0","date":"2021-10-26","lts":"Gallium","security":false,"v8":"9.4.146.19"},{"name":"nodejs","version":"16.14.0","date":"2022-02-08","lts":"Gallium","security":false,"v8":"9.4.146.24"},{"name":"nodejs","version":"16.15.0","date":"2022-04-26","lts":"Gallium","security":false,"v8":"9.4.146.24"},{"name":"nodejs","version":"16.16.0","date":"2022-07-07","lts":"Gallium","security":true,"v8":"9.4.146.24"},{"name":"nodejs","version":"16.17.0","date":"2022-08-16","lts":"Gallium","security":false,"v8":"9.4.146.26"},{"name":"nodejs","version":"16.18.0","date":"2022-10-12","lts":"Gallium","security":false,"v8":"9.4.146.26"},{"name":"nodejs","version":"16.19.0","date":"2022-12-13","lts":"Gallium","security":false,"v8":"9.4.146.26"},{"name":"nodejs","version":"16.20.0","date":"2023-03-28","lts":"Gallium","security":false,"v8":"9.4.146.26"},{"name":"nodejs","version":"17.0.0","date":"2021-10-19","lts":false,"security":false,"v8":"9.5.172.21"},{"name":"nodejs","version":"17.1.0","date":"2021-11-09","lts":false,"security":false,"v8":"9.5.172.25"},{"name":"nodejs","version":"17.2.0","date":"2021-11-30","lts":false,"security":false,"v8":"9.6.180.14"},{"name":"nodejs","version":"17.3.0","date":"2021-12-17","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.4.0","date":"2022-01-18","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.5.0","date":"2022-02-10","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.6.0","date":"2022-02-22","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.7.0","date":"2022-03-09","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.8.0","date":"2022-03-22","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.9.0","date":"2022-04-07","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"18.0.0","date":"2022-04-18","lts":false,"security":false,"v8":"10.1.124.8"},{"name":"nodejs","version":"18.1.0","date":"2022-05-03","lts":false,"security":false,"v8":"10.1.124.8"},{"name":"nodejs","version":"18.2.0","date":"2022-05-17","lts":false,"security":false,"v8":"10.1.124.8"},{"name":"nodejs","version":"18.3.0","date":"2022-06-02","lts":false,"security":false,"v8":"10.2.154.4"},{"name":"nodejs","version":"18.4.0","date":"2022-06-16","lts":false,"security":false,"v8":"10.2.154.4"},{"name":"nodejs","version":"18.5.0","date":"2022-07-06","lts":false,"security":true,"v8":"10.2.154.4"},{"name":"nodejs","version":"18.6.0","date":"2022-07-13","lts":false,"security":false,"v8":"10.2.154.13"},{"name":"nodejs","version":"18.7.0","date":"2022-07-26","lts":false,"security":false,"v8":"10.2.154.13"},{"name":"nodejs","version":"18.8.0","date":"2022-08-24","lts":false,"security":false,"v8":"10.2.154.13"},{"name":"nodejs","version":"18.9.0","date":"2022-09-07","lts":false,"security":false,"v8":"10.2.154.15"},{"name":"nodejs","version":"18.10.0","date":"2022-09-28","lts":false,"security":false,"v8":"10.2.154.15"},{"name":"nodejs","version":"18.11.0","date":"2022-10-13","lts":false,"security":false,"v8":"10.2.154.15"},{"name":"nodejs","version":"18.12.0","date":"2022-10-25","lts":"Hydrogen","security":false,"v8":"10.2.154.15"},{"name":"nodejs","version":"18.13.0","date":"2023-01-05","lts":"Hydrogen","security":false,"v8":"10.2.154.23"},{"name":"nodejs","version":"18.14.0","date":"2023-02-01","lts":"Hydrogen","security":false,"v8":"10.2.154.23"},{"name":"nodejs","version":"18.15.0","date":"2023-03-05","lts":"Hydrogen","security":false,"v8":"10.2.154.26"},{"name":"nodejs","version":"18.16.0","date":"2023-04-12","lts":"Hydrogen","security":false,"v8":"10.2.154.26"},{"name":"nodejs","version":"18.17.0","date":"2023-07-18","lts":"Hydrogen","security":false,"v8":"10.2.154.26"},{"name":"nodejs","version":"18.18.0","date":"2023-09-18","lts":"Hydrogen","security":false,"v8":"10.2.154.26"},{"name":"nodejs","version":"18.19.0","date":"2023-11-29","lts":"Hydrogen","security":false,"v8":"10.2.154.26"},{"name":"nodejs","version":"18.20.0","date":"2024-03-26","lts":"Hydrogen","security":false,"v8":"10.2.154.26"},{"name":"nodejs","version":"19.0.0","date":"2022-10-17","lts":false,"security":false,"v8":"10.7.193.13"},{"name":"nodejs","version":"19.1.0","date":"2022-11-14","lts":false,"security":false,"v8":"10.7.193.20"},{"name":"nodejs","version":"19.2.0","date":"2022-11-29","lts":false,"security":false,"v8":"10.8.168.20"},{"name":"nodejs","version":"19.3.0","date":"2022-12-14","lts":false,"security":false,"v8":"10.8.168.21"},{"name":"nodejs","version":"19.4.0","date":"2023-01-05","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.5.0","date":"2023-01-24","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.6.0","date":"2023-02-01","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.7.0","date":"2023-02-21","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.8.0","date":"2023-03-14","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.9.0","date":"2023-04-10","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"20.0.0","date":"2023-04-17","lts":false,"security":false,"v8":"11.3.244.4"},{"name":"nodejs","version":"20.1.0","date":"2023-05-03","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.2.0","date":"2023-05-16","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.3.0","date":"2023-06-08","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.4.0","date":"2023-07-04","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.5.0","date":"2023-07-19","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.6.0","date":"2023-08-23","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.7.0","date":"2023-09-18","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.8.0","date":"2023-09-28","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.9.0","date":"2023-10-24","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.10.0","date":"2023-11-22","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.11.0","date":"2024-01-09","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.12.0","date":"2024-03-26","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.13.0","date":"2024-05-07","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.14.0","date":"2024-05-28","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.15.0","date":"2024-06-20","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.16.0","date":"2024-07-24","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.17.0","date":"2024-08-21","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.18.0","date":"2024-10-03","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.19.0","date":"2025-03-13","lts":"Iron","security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"21.0.0","date":"2023-10-17","lts":false,"security":false,"v8":"11.8.172.13"},{"name":"nodejs","version":"21.1.0","date":"2023-10-24","lts":false,"security":false,"v8":"11.8.172.15"},{"name":"nodejs","version":"21.2.0","date":"2023-11-14","lts":false,"security":false,"v8":"11.8.172.17"},{"name":"nodejs","version":"21.3.0","date":"2023-11-30","lts":false,"security":false,"v8":"11.8.172.17"},{"name":"nodejs","version":"21.4.0","date":"2023-12-05","lts":false,"security":false,"v8":"11.8.172.17"},{"name":"nodejs","version":"21.5.0","date":"2023-12-19","lts":false,"security":false,"v8":"11.8.172.17"},{"name":"nodejs","version":"21.6.0","date":"2024-01-14","lts":false,"security":false,"v8":"11.8.172.17"},{"name":"nodejs","version":"21.7.0","date":"2024-03-06","lts":false,"security":false,"v8":"11.8.172.17"},{"name":"nodejs","version":"22.0.0","date":"2024-04-24","lts":false,"security":false,"v8":"12.4.254.14"},{"name":"nodejs","version":"22.1.0","date":"2024-05-02","lts":false,"security":false,"v8":"12.4.254.14"},{"name":"nodejs","version":"22.2.0","date":"2024-05-15","lts":false,"security":false,"v8":"12.4.254.14"},{"name":"nodejs","version":"22.3.0","date":"2024-06-11","lts":false,"security":false,"v8":"12.4.254.20"},{"name":"nodejs","version":"22.4.0","date":"2024-07-02","lts":false,"security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.5.0","date":"2024-07-17","lts":false,"security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.6.0","date":"2024-08-06","lts":false,"security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.7.0","date":"2024-08-21","lts":false,"security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.8.0","date":"2024-09-03","lts":false,"security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.9.0","date":"2024-09-17","lts":false,"security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.10.0","date":"2024-10-16","lts":false,"security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.11.0","date":"2024-10-29","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.12.0","date":"2024-12-02","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.13.0","date":"2025-01-06","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.14.0","date":"2025-02-11","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.15.0","date":"2025-04-22","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.16.0","date":"2025-05-20","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.17.0","date":"2025-06-24","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.18.0","date":"2025-07-31","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.19.0","date":"2025-08-28","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.20.0","date":"2025-09-24","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"22.21.0","date":"2025-10-20","lts":"Jod","security":false,"v8":"12.4.254.21"},{"name":"nodejs","version":"23.0.0","date":"2024-10-16","lts":false,"security":false,"v8":"12.9.202.26"},{"name":"nodejs","version":"23.1.0","date":"2024-10-24","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.2.0","date":"2024-11-11","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.3.0","date":"2024-11-20","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.4.0","date":"2024-12-10","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.5.0","date":"2024-12-19","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.6.0","date":"2025-01-07","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.7.0","date":"2025-01-30","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.8.0","date":"2025-02-13","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.9.0","date":"2025-02-26","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.10.0","date":"2025-03-13","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"23.11.0","date":"2025-04-01","lts":false,"security":false,"v8":"12.9.202.28"},{"name":"nodejs","version":"24.0.0","date":"2025-05-06","lts":false,"security":false,"v8":"13.6.233.8"},{"name":"nodejs","version":"24.1.0","date":"2025-05-20","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.2.0","date":"2025-06-09","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.3.0","date":"2025-06-24","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.4.0","date":"2025-07-09","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.5.0","date":"2025-07-31","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.6.0","date":"2025-08-14","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.7.0","date":"2025-08-27","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.8.0","date":"2025-09-10","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.9.0","date":"2025-09-25","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.10.0","date":"2025-10-08","lts":false,"security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"24.11.0","date":"2025-10-28","lts":"Krypton","security":false,"v8":"13.6.233.10"},{"name":"nodejs","version":"25.0.0","date":"2025-10-15","lts":false,"security":false,"v8":"14.1.146.11"},{"name":"nodejs","version":"25.1.0","date":"2025-10-28","lts":false,"security":false,"v8":"14.1.146.11"}]
Index: node_modules/node-releases/data/release-schedule/release-schedule.json
===================================================================
--- node_modules/node-releases/data/release-schedule/release-schedule.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/node-releases/data/release-schedule/release-schedule.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+{"v0.8":{"start":"2012-06-25","end":"2014-07-31"},"v0.10":{"start":"2013-03-11","end":"2016-10-31"},"v0.12":{"start":"2015-02-06","end":"2016-12-31"},"v4":{"start":"2015-09-08","lts":"2015-10-12","maintenance":"2017-04-01","end":"2018-04-30","codename":"Argon"},"v5":{"start":"2015-10-29","maintenance":"2016-04-30","end":"2016-06-30"},"v6":{"start":"2016-04-26","lts":"2016-10-18","maintenance":"2018-04-30","end":"2019-04-30","codename":"Boron"},"v7":{"start":"2016-10-25","maintenance":"2017-04-30","end":"2017-06-30"},"v8":{"start":"2017-05-30","lts":"2017-10-31","maintenance":"2019-01-01","end":"2019-12-31","codename":"Carbon"},"v9":{"start":"2017-10-01","maintenance":"2018-04-01","end":"2018-06-30"},"v10":{"start":"2018-04-24","lts":"2018-10-30","maintenance":"2020-05-19","end":"2021-04-30","codename":"Dubnium"},"v11":{"start":"2018-10-23","maintenance":"2019-04-22","end":"2019-06-01"},"v12":{"start":"2019-04-23","lts":"2019-10-21","maintenance":"2020-11-30","end":"2022-04-30","codename":"Erbium"},"v13":{"start":"2019-10-22","maintenance":"2020-04-01","end":"2020-06-01"},"v14":{"start":"2020-04-21","lts":"2020-10-27","maintenance":"2021-10-19","end":"2023-04-30","codename":"Fermium"},"v15":{"start":"2020-10-20","maintenance":"2021-04-01","end":"2021-06-01"},"v16":{"start":"2021-04-20","lts":"2021-10-26","maintenance":"2022-10-18","end":"2023-09-11","codename":"Gallium"},"v17":{"start":"2021-10-19","maintenance":"2022-04-01","end":"2022-06-01"},"v18":{"start":"2022-04-19","lts":"2022-10-25","maintenance":"2023-10-18","end":"2025-04-30","codename":"Hydrogen"},"v19":{"start":"2022-10-18","maintenance":"2023-04-01","end":"2023-06-01"},"v20":{"start":"2023-04-18","lts":"2023-10-24","maintenance":"2024-10-22","end":"2026-04-30","codename":"Iron"},"v21":{"start":"2023-10-17","maintenance":"2024-04-01","end":"2024-06-01"},"v22":{"start":"2024-04-24","lts":"2024-10-29","maintenance":"2025-10-21","end":"2027-04-30","codename":"Jod"},"v23":{"start":"2024-10-16","maintenance":"2025-04-01","end":"2025-06-01"},"v24":{"start":"2025-05-06","lts":"2025-10-28","maintenance":"2026-10-20","end":"2028-04-30","codename":"Krypton"},"v25":{"start":"2025-10-15","maintenance":"2026-04-01","end":"2026-06-01"},"v26":{"start":"2026-04-22","lts":"2026-10-28","maintenance":"2027-10-20","end":"2029-04-30","codename":""}}
Index: node_modules/node-releases/package.json
===================================================================
--- node_modules/node-releases/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/node-releases/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,22 @@
+{
+  "name": "node-releases",
+  "version": "2.0.27",
+  "description": "Node.js releases data",
+  "type": "module",
+  "scripts": {
+    "build": "node scripts/build.js"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/chicoxyzzy/node-releases.git"
+  },
+  "keywords": [
+    "nodejs",
+    "releases"
+  ],
+  "author": "Sergey Rubanov <chi187@gmail.com>",
+  "license": "MIT",
+  "devDependencies": {
+    "semver": "^7.3.5"
+  }
+}
Index: node_modules/picocolors/LICENSE
===================================================================
--- node_modules/picocolors/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/picocolors/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,15 @@
+ISC License
+
+Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Index: node_modules/picocolors/README.md
===================================================================
--- node_modules/picocolors/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/picocolors/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,21 @@
+# picocolors
+
+The tiniest and the fastest library for terminal output formatting with ANSI colors.
+
+```javascript
+import pc from "picocolors"
+
+console.log(
+  pc.green(`How are ${pc.italic(`you`)} doing?`)
+)
+```
+
+- **No dependencies.**
+- **14 times** smaller and **2 times** faster than chalk.
+- Used by popular tools like PostCSS, SVGO, Stylelint, and Browserslist.
+- Node.js v6+ & browsers support. Support for both CJS and ESM projects.
+- TypeScript type declarations included.
+- [`NO_COLOR`](https://no-color.org/) friendly.
+
+## Docs
+Read **[full docs](https://github.com/alexeyraspopov/picocolors#readme)** on GitHub.
Index: node_modules/picocolors/package.json
===================================================================
--- node_modules/picocolors/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/picocolors/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,25 @@
+{
+  "name": "picocolors",
+  "version": "1.1.1",
+  "main": "./picocolors.js",
+  "types": "./picocolors.d.ts",
+  "browser": {
+    "./picocolors.js": "./picocolors.browser.js"
+  },
+  "sideEffects": false,
+  "description": "The tiniest and the fastest library for terminal output formatting with ANSI colors",
+  "files": [
+    "picocolors.*",
+    "types.d.ts"
+  ],
+  "keywords": [
+    "terminal",
+    "colors",
+    "formatting",
+    "cli",
+    "console"
+  ],
+  "author": "Alexey Raspopov",
+  "repository": "alexeyraspopov/picocolors",
+  "license": "ISC"
+}
Index: node_modules/picocolors/picocolors.browser.js
===================================================================
--- node_modules/picocolors/picocolors.browser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/picocolors/picocolors.browser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,4 @@
+var x=String;
+var create=function() {return {isColorSupported:false,reset:x,bold:x,dim:x,italic:x,underline:x,inverse:x,hidden:x,strikethrough:x,black:x,red:x,green:x,yellow:x,blue:x,magenta:x,cyan:x,white:x,gray:x,bgBlack:x,bgRed:x,bgGreen:x,bgYellow:x,bgBlue:x,bgMagenta:x,bgCyan:x,bgWhite:x,blackBright:x,redBright:x,greenBright:x,yellowBright:x,blueBright:x,magentaBright:x,cyanBright:x,whiteBright:x,bgBlackBright:x,bgRedBright:x,bgGreenBright:x,bgYellowBright:x,bgBlueBright:x,bgMagentaBright:x,bgCyanBright:x,bgWhiteBright:x}};
+module.exports=create();
+module.exports.createColors = create;
Index: node_modules/picocolors/picocolors.d.ts
===================================================================
--- node_modules/picocolors/picocolors.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/picocolors/picocolors.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,5 @@
+import { Colors } from "./types"
+
+declare const picocolors: Colors & { createColors: (enabled?: boolean) => Colors }
+
+export = picocolors
Index: node_modules/picocolors/picocolors.js
===================================================================
--- node_modules/picocolors/picocolors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/picocolors/picocolors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,75 @@
+let p = process || {}, argv = p.argv || [], env = p.env || {}
+let isColorSupported =
+	!(!!env.NO_COLOR || argv.includes("--no-color")) &&
+	(!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || ((p.stdout || {}).isTTY && env.TERM !== "dumb") || !!env.CI)
+
+let formatter = (open, close, replace = open) =>
+	input => {
+		let string = "" + input, index = string.indexOf(close, open.length)
+		return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close
+	}
+
+let replaceClose = (string, close, replace, index) => {
+	let result = "", cursor = 0
+	do {
+		result += string.substring(cursor, index) + replace
+		cursor = index + close.length
+		index = string.indexOf(close, cursor)
+	} while (~index)
+	return result + string.substring(cursor)
+}
+
+let createColors = (enabled = isColorSupported) => {
+	let f = enabled ? formatter : () => String
+	return {
+		isColorSupported: enabled,
+		reset: f("\x1b[0m", "\x1b[0m"),
+		bold: f("\x1b[1m", "\x1b[22m", "\x1b[22m\x1b[1m"),
+		dim: f("\x1b[2m", "\x1b[22m", "\x1b[22m\x1b[2m"),
+		italic: f("\x1b[3m", "\x1b[23m"),
+		underline: f("\x1b[4m", "\x1b[24m"),
+		inverse: f("\x1b[7m", "\x1b[27m"),
+		hidden: f("\x1b[8m", "\x1b[28m"),
+		strikethrough: f("\x1b[9m", "\x1b[29m"),
+
+		black: f("\x1b[30m", "\x1b[39m"),
+		red: f("\x1b[31m", "\x1b[39m"),
+		green: f("\x1b[32m", "\x1b[39m"),
+		yellow: f("\x1b[33m", "\x1b[39m"),
+		blue: f("\x1b[34m", "\x1b[39m"),
+		magenta: f("\x1b[35m", "\x1b[39m"),
+		cyan: f("\x1b[36m", "\x1b[39m"),
+		white: f("\x1b[37m", "\x1b[39m"),
+		gray: f("\x1b[90m", "\x1b[39m"),
+
+		bgBlack: f("\x1b[40m", "\x1b[49m"),
+		bgRed: f("\x1b[41m", "\x1b[49m"),
+		bgGreen: f("\x1b[42m", "\x1b[49m"),
+		bgYellow: f("\x1b[43m", "\x1b[49m"),
+		bgBlue: f("\x1b[44m", "\x1b[49m"),
+		bgMagenta: f("\x1b[45m", "\x1b[49m"),
+		bgCyan: f("\x1b[46m", "\x1b[49m"),
+		bgWhite: f("\x1b[47m", "\x1b[49m"),
+
+		blackBright: f("\x1b[90m", "\x1b[39m"),
+		redBright: f("\x1b[91m", "\x1b[39m"),
+		greenBright: f("\x1b[92m", "\x1b[39m"),
+		yellowBright: f("\x1b[93m", "\x1b[39m"),
+		blueBright: f("\x1b[94m", "\x1b[39m"),
+		magentaBright: f("\x1b[95m", "\x1b[39m"),
+		cyanBright: f("\x1b[96m", "\x1b[39m"),
+		whiteBright: f("\x1b[97m", "\x1b[39m"),
+
+		bgBlackBright: f("\x1b[100m", "\x1b[49m"),
+		bgRedBright: f("\x1b[101m", "\x1b[49m"),
+		bgGreenBright: f("\x1b[102m", "\x1b[49m"),
+		bgYellowBright: f("\x1b[103m", "\x1b[49m"),
+		bgBlueBright: f("\x1b[104m", "\x1b[49m"),
+		bgMagentaBright: f("\x1b[105m", "\x1b[49m"),
+		bgCyanBright: f("\x1b[106m", "\x1b[49m"),
+		bgWhiteBright: f("\x1b[107m", "\x1b[49m"),
+	}
+}
+
+module.exports = createColors()
+module.exports.createColors = createColors
Index: node_modules/picocolors/types.d.ts
===================================================================
--- node_modules/picocolors/types.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/picocolors/types.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,51 @@
+export type Formatter = (input: string | number | null | undefined) => string
+
+export interface Colors {
+	isColorSupported: boolean
+
+	reset: Formatter
+	bold: Formatter
+	dim: Formatter
+	italic: Formatter
+	underline: Formatter
+	inverse: Formatter
+	hidden: Formatter
+	strikethrough: Formatter
+
+	black: Formatter
+	red: Formatter
+	green: Formatter
+	yellow: Formatter
+	blue: Formatter
+	magenta: Formatter
+	cyan: Formatter
+	white: Formatter
+	gray: Formatter
+
+	bgBlack: Formatter
+	bgRed: Formatter
+	bgGreen: Formatter
+	bgYellow: Formatter
+	bgBlue: Formatter
+	bgMagenta: Formatter
+	bgCyan: Formatter
+	bgWhite: Formatter
+
+	blackBright: Formatter
+	redBright: Formatter
+	greenBright: Formatter
+	yellowBright: Formatter
+	blueBright: Formatter
+	magentaBright: Formatter
+	cyanBright: Formatter
+	whiteBright: Formatter
+
+	bgBlackBright: Formatter
+	bgRedBright: Formatter
+	bgGreenBright: Formatter
+	bgYellowBright: Formatter
+	bgBlueBright: Formatter
+	bgMagentaBright: Formatter
+	bgCyanBright: Formatter
+	bgWhiteBright: Formatter
+}
Index: node_modules/postcss-value-parser/LICENSE
===================================================================
--- node_modules/postcss-value-parser/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,22 @@
+Copyright (c) Bogdan Chadkin <trysound@yandex.ru>
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
Index: node_modules/postcss-value-parser/README.md
===================================================================
--- node_modules/postcss-value-parser/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,263 @@
+# postcss-value-parser
+
+[![Travis CI](https://travis-ci.org/TrySound/postcss-value-parser.svg)](https://travis-ci.org/TrySound/postcss-value-parser)
+
+Transforms CSS declaration values and at-rule parameters into a tree of nodes, and provides a simple traversal API.
+
+## Usage
+
+```js
+var valueParser = require('postcss-value-parser');
+var cssBackgroundValue = 'url(foo.png) no-repeat 40px 73%';
+var parsedValue = valueParser(cssBackgroundValue);
+// parsedValue exposes an API described below,
+// e.g. parsedValue.walk(..), parsedValue.toString(), etc.
+```
+
+For example, parsing the value `rgba(233, 45, 66, .5)` will return the following:
+
+```js
+{
+  nodes: [
+    {
+      type: 'function',
+      value: 'rgba',
+      before: '',
+      after: '',
+      nodes: [
+        { type: 'word', value: '233' },
+        { type: 'div', value: ',', before: '', after: ' ' },
+        { type: 'word', value: '45' },
+        { type: 'div', value: ',', before: '', after: ' ' },
+        { type: 'word', value: '66' },
+        { type: 'div', value: ',', before: ' ', after: '' },
+        { type: 'word', value: '.5' }
+      ]
+    }
+  ]
+}
+```
+
+If you wanted to convert each `rgba()` value in `sourceCSS` to a hex value, you could do so like this:
+
+```js
+var valueParser = require('postcss-value-parser');
+
+var parsed = valueParser(sourceCSS);
+
+// walk() will visit all the of the nodes in the tree,
+// invoking the callback for each.
+parsed.walk(function (node) {
+
+  // Since we only want to transform rgba() values,
+  // we can ignore anything else.
+  if (node.type !== 'function' && node.value !== 'rgba') return;
+
+  // We can make an array of the rgba() arguments to feed to a
+  // convertToHex() function
+  var color = node.nodes.filter(function (node) {
+    return node.type === 'word';
+  }).map(function (node) {
+    return Number(node.value);
+  }); // [233, 45, 66, .5]
+
+  // Now we will transform the existing rgba() function node
+  // into a word node with the hex value
+  node.type = 'word';
+  node.value = convertToHex(color);
+})
+
+parsed.toString(); // #E92D42
+```
+
+## Nodes
+
+Each node is an object with these common properties:
+
+- **type**: The type of node (`word`, `string`, `div`, `space`, `comment`, or `function`).
+  Each type is documented below.
+- **value**: Each node has a `value` property; but what exactly `value` means
+  is specific to the node type. Details are documented for each type below.
+- **sourceIndex**: The starting index of the node within the original source
+  string. For example, given the source string `10px 20px`, the `word` node
+  whose value is `20px` will have a `sourceIndex` of `5`.
+
+### word
+
+The catch-all node type that includes keywords (e.g. `no-repeat`),
+quantities (e.g. `20px`, `75%`, `1.5`), and hex colors (e.g. `#e6e6e6`).
+
+Node-specific properties:
+
+- **value**: The "word" itself.
+
+### string
+
+A quoted string value, e.g. `"something"` in `content: "something";`.
+
+Node-specific properties:
+
+- **value**: The text content of the string.
+- **quote**: The quotation mark surrounding the string, either `"` or `'`.
+- **unclosed**: `true` if the string was not closed properly. e.g. `"unclosed string  `.
+
+### div
+
+A divider, for example
+
+- `,` in `animation-duration: 1s, 2s, 3s`
+- `/` in `border-radius: 10px / 23px`
+- `:` in `(min-width: 700px)`
+
+Node-specific properties:
+
+- **value**: The divider character. Either `,`, `/`, or `:` (see examples above).
+- **before**: Whitespace before the divider.
+- **after**: Whitespace after the divider.
+
+### space
+
+Whitespace used as a separator, e.g. ` ` occurring twice in `border: 1px solid black;`.
+
+Node-specific properties:
+
+- **value**: The whitespace itself.
+
+### comment
+
+A CSS comment starts with `/*` and ends with `*/`
+
+Node-specific properties:
+
+- **value**: The comment value without `/*` and `*/`
+- **unclosed**: `true` if the comment was not closed properly. e.g. `/* comment without an end  `.
+
+### function
+
+A CSS function, e.g. `rgb(0,0,0)` or `url(foo.bar)`.
+
+Function nodes have nodes nested within them: the function arguments.
+
+Additional properties:
+
+- **value**: The name of the function, e.g. `rgb` in `rgb(0,0,0)`.
+- **before**: Whitespace after the opening parenthesis and before the first argument,
+  e.g. `  ` in `rgb(  0,0,0)`.
+- **after**: Whitespace before the closing parenthesis and after the last argument,
+  e.g. `  ` in `rgb(0,0,0  )`.
+- **nodes**: More nodes representing the arguments to the function.
+- **unclosed**: `true` if the parentheses was not closed properly. e.g. `( unclosed-function  `.
+
+Media features surrounded by parentheses are considered functions with an
+empty value. For example, `(min-width: 700px)` parses to these nodes:
+
+```js
+[
+  {
+    type: 'function', value: '', before: '', after: '',
+    nodes: [
+      { type: 'word', value: 'min-width' },
+      { type: 'div', value: ':', before: '', after: ' ' },
+      { type: 'word', value: '700px' }
+    ]
+  }
+]
+```
+
+`url()` functions can be parsed a little bit differently depending on
+whether the first character in the argument is a quotation mark.
+
+`url( /gfx/img/bg.jpg )` parses to:
+
+```js
+{ type: 'function', sourceIndex: 0, value: 'url', before: ' ', after: ' ', nodes: [
+    { type: 'word', sourceIndex: 5, value: '/gfx/img/bg.jpg' }
+] }
+```
+
+`url( "/gfx/img/bg.jpg" )`, on the other hand, parses to:
+
+```js
+{ type: 'function', sourceIndex: 0, value: 'url', before: ' ', after: ' ', nodes: [
+     type: 'string', sourceIndex: 5, quote: '"', value: '/gfx/img/bg.jpg' },
+] }
+```
+
+### unicode-range
+
+The unicode-range CSS descriptor sets the specific range of characters to be 
+used from a font defined by @font-face and made available 
+for use on the current page (`unicode-range: U+0025-00FF`).
+
+Node-specific properties:
+
+- **value**: The "unicode-range" itself.
+
+## API
+
+```
+var valueParser = require('postcss-value-parser');
+```
+
+### valueParser.unit(quantity)
+
+Parses `quantity`, distinguishing the number from the unit. Returns an object like the following:
+
+```js
+// Given 2rem
+{
+  number: '2',
+  unit: 'rem'
+}
+```
+
+If the `quantity` argument cannot be parsed as a number, returns `false`.
+
+*This function does not parse complete values*: you cannot pass it `1px solid black` and expect `px` as
+the unit. Instead, you should pass it single quantities only. Parse `1px solid black`, then pass it
+the stringified `1px` node (a `word` node) to parse the number and unit.
+
+### valueParser.stringify(nodes[, custom])
+
+Stringifies a node or array of nodes.
+
+The `custom` function is called for each `node`; return a string to override the default behaviour.
+
+### valueParser.walk(nodes, callback[, bubble])
+
+Walks each provided node, recursively walking all descendent nodes within functions.
+
+Returning `false` in the `callback` will prevent traversal of descendent nodes (within functions).
+You can use this feature to for shallow iteration, walking over only the *immediate* children.
+*Note: This only applies if `bubble` is `false` (which is the default).*
+
+By default, the tree is walked from the outermost node inwards.
+To reverse the direction, pass `true` for the `bubble` argument.
+
+The `callback` is invoked with three arguments: `callback(node, index, nodes)`.
+
+- `node`: The current node.
+- `index`: The index of the current node.
+- `nodes`: The complete nodes array passed to `walk()`.
+
+Returns the `valueParser` instance.
+
+### var parsed = valueParser(value)
+
+Returns the parsed node tree.
+
+### parsed.nodes
+
+The array of nodes.
+
+### parsed.toString()
+
+Stringifies the node tree.
+
+### parsed.walk(callback[, bubble])
+
+Walks each node inside `parsed.nodes`. See the documentation for `valueParser.walk()` above.
+
+# License
+
+MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)
Index: node_modules/postcss-value-parser/lib/index.d.ts
===================================================================
--- node_modules/postcss-value-parser/lib/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/lib/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,177 @@
+declare namespace postcssValueParser {
+  interface BaseNode {
+    /**
+     * The offset, inclusive, inside the CSS value at which the node starts.
+     */
+    sourceIndex: number;
+
+    /**
+     * The offset, exclusive, inside the CSS value at which the node ends.
+     */
+    sourceEndIndex: number;
+
+    /**
+     * The node's characteristic value
+     */
+    value: string;
+  }
+
+  interface ClosableNode {
+    /**
+     * Whether the parsed CSS value ended before the node was properly closed
+     */
+    unclosed?: true;
+  }
+
+  interface AdjacentAwareNode {
+    /**
+     * The token at the start of the node
+     */
+    before: string;
+
+    /**
+     * The token at the end of the node
+     */
+    after: string;
+  }
+
+  interface CommentNode extends BaseNode, ClosableNode {
+    type: "comment";
+  }
+
+  interface DivNode extends BaseNode, AdjacentAwareNode {
+    type: "div";
+  }
+
+  interface FunctionNode extends BaseNode, ClosableNode, AdjacentAwareNode {
+    type: "function";
+
+    /**
+     * Nodes inside the function
+     */
+    nodes: Node[];
+  }
+
+  interface SpaceNode extends BaseNode {
+    type: "space";
+  }
+
+  interface StringNode extends BaseNode, ClosableNode {
+    type: "string";
+
+    /**
+     * The quote type delimiting the string
+     */
+    quote: '"' | "'";
+  }
+
+  interface UnicodeRangeNode extends BaseNode {
+    type: "unicode-range";
+  }
+
+  interface WordNode extends BaseNode {
+    type: "word";
+  }
+
+  /**
+   * Any node parsed from a CSS value
+   */
+  type Node =
+    | CommentNode
+    | DivNode
+    | FunctionNode
+    | SpaceNode
+    | StringNode
+    | UnicodeRangeNode
+    | WordNode;
+
+  interface CustomStringifierCallback {
+    /**
+     * @param node The node to stringify
+     * @returns The serialized CSS representation of the node
+     */
+    (nodes: Node): string | undefined;
+  }
+
+  interface WalkCallback {
+    /**
+     * @param node  The currently visited node
+     * @param index The index of the node in the series of parsed nodes
+     * @param nodes The series of parsed nodes
+     * @returns Returning `false` will prevent traversal of descendant nodes (only applies if `bubble` was set to `true` in the `walk()` call)
+     */
+    (node: Node, index: number, nodes: Node[]): void | boolean;
+  }
+
+  /**
+   * A CSS dimension, decomposed into its numeric and unit parts
+   */
+  interface Dimension {
+    number: string;
+    unit: string;
+  }
+
+  /**
+   * A wrapper around a parsed CSS value that allows for inspecting and walking nodes
+   */
+  interface ParsedValue {
+    /**
+     * The series of parsed nodes
+     */
+    nodes: Node[];
+
+    /**
+     * Walk all parsed nodes, applying a callback
+     *
+     * @param callback A visitor callback that will be executed for each node
+     * @param bubble   When set to `true`, walking will be done inside-out instead of outside-in
+     */
+    walk(callback: WalkCallback, bubble?: boolean): this;
+  }
+
+  interface ValueParser {
+    /**
+     * Decompose a CSS dimension into its numeric and unit part
+     *
+     * @param value The dimension to decompose
+     * @returns An object representing `number` and `unit` part of the dimension or `false` if the decomposing fails
+     */
+    unit(value: string): Dimension | false;
+
+    /**
+     * Serialize a series of nodes into a CSS value
+     *
+     * @param nodes  The nodes to stringify
+     * @param custom A custom stringifier callback
+     * @returns The generated CSS value
+     */
+    stringify(nodes: Node | Node[], custom?: CustomStringifierCallback): string;
+
+    /**
+     * Walk a series of nodes, applying a callback
+     *
+     * @param nodes    The nodes to walk
+     * @param callback A visitor callback that will be executed for each node
+     * @param bubble   When set to `true`, walking will be done inside-out instead of outside-in
+     */
+    walk(nodes: Node[], callback: WalkCallback, bubble?: boolean): void;
+
+    /**
+     * Parse a CSS value into a series of nodes to operate on
+     *
+     * @param value The value to parse
+     */
+    new (value: string): ParsedValue;
+
+    /**
+     * Parse a CSS value into a series of nodes to operate on
+     *
+     * @param value The value to parse
+     */
+    (value: string): ParsedValue;
+  }
+}
+
+declare const postcssValueParser: postcssValueParser.ValueParser;
+
+export = postcssValueParser;
Index: node_modules/postcss-value-parser/lib/index.js
===================================================================
--- node_modules/postcss-value-parser/lib/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/lib/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+var parse = require("./parse");
+var walk = require("./walk");
+var stringify = require("./stringify");
+
+function ValueParser(value) {
+  if (this instanceof ValueParser) {
+    this.nodes = parse(value);
+    return this;
+  }
+  return new ValueParser(value);
+}
+
+ValueParser.prototype.toString = function() {
+  return Array.isArray(this.nodes) ? stringify(this.nodes) : "";
+};
+
+ValueParser.prototype.walk = function(cb, bubble) {
+  walk(this.nodes, cb, bubble);
+  return this;
+};
+
+ValueParser.unit = require("./unit");
+
+ValueParser.walk = walk;
+
+ValueParser.stringify = stringify;
+
+module.exports = ValueParser;
Index: node_modules/postcss-value-parser/lib/parse.js
===================================================================
--- node_modules/postcss-value-parser/lib/parse.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/lib/parse.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,321 @@
+var openParentheses = "(".charCodeAt(0);
+var closeParentheses = ")".charCodeAt(0);
+var singleQuote = "'".charCodeAt(0);
+var doubleQuote = '"'.charCodeAt(0);
+var backslash = "\\".charCodeAt(0);
+var slash = "/".charCodeAt(0);
+var comma = ",".charCodeAt(0);
+var colon = ":".charCodeAt(0);
+var star = "*".charCodeAt(0);
+var uLower = "u".charCodeAt(0);
+var uUpper = "U".charCodeAt(0);
+var plus = "+".charCodeAt(0);
+var isUnicodeRange = /^[a-f0-9?-]+$/i;
+
+module.exports = function(input) {
+  var tokens = [];
+  var value = input;
+
+  var next,
+    quote,
+    prev,
+    token,
+    escape,
+    escapePos,
+    whitespacePos,
+    parenthesesOpenPos;
+  var pos = 0;
+  var code = value.charCodeAt(pos);
+  var max = value.length;
+  var stack = [{ nodes: tokens }];
+  var balanced = 0;
+  var parent;
+
+  var name = "";
+  var before = "";
+  var after = "";
+
+  while (pos < max) {
+    // Whitespaces
+    if (code <= 32) {
+      next = pos;
+      do {
+        next += 1;
+        code = value.charCodeAt(next);
+      } while (code <= 32);
+      token = value.slice(pos, next);
+
+      prev = tokens[tokens.length - 1];
+      if (code === closeParentheses && balanced) {
+        after = token;
+      } else if (prev && prev.type === "div") {
+        prev.after = token;
+        prev.sourceEndIndex += token.length;
+      } else if (
+        code === comma ||
+        code === colon ||
+        (code === slash &&
+          value.charCodeAt(next + 1) !== star &&
+          (!parent ||
+            (parent && parent.type === "function" && parent.value !== "calc")))
+      ) {
+        before = token;
+      } else {
+        tokens.push({
+          type: "space",
+          sourceIndex: pos,
+          sourceEndIndex: next,
+          value: token
+        });
+      }
+
+      pos = next;
+
+      // Quotes
+    } else if (code === singleQuote || code === doubleQuote) {
+      next = pos;
+      quote = code === singleQuote ? "'" : '"';
+      token = {
+        type: "string",
+        sourceIndex: pos,
+        quote: quote
+      };
+      do {
+        escape = false;
+        next = value.indexOf(quote, next + 1);
+        if (~next) {
+          escapePos = next;
+          while (value.charCodeAt(escapePos - 1) === backslash) {
+            escapePos -= 1;
+            escape = !escape;
+          }
+        } else {
+          value += quote;
+          next = value.length - 1;
+          token.unclosed = true;
+        }
+      } while (escape);
+      token.value = value.slice(pos + 1, next);
+      token.sourceEndIndex = token.unclosed ? next : next + 1;
+      tokens.push(token);
+      pos = next + 1;
+      code = value.charCodeAt(pos);
+
+      // Comments
+    } else if (code === slash && value.charCodeAt(pos + 1) === star) {
+      next = value.indexOf("*/", pos);
+
+      token = {
+        type: "comment",
+        sourceIndex: pos,
+        sourceEndIndex: next + 2
+      };
+
+      if (next === -1) {
+        token.unclosed = true;
+        next = value.length;
+        token.sourceEndIndex = next;
+      }
+
+      token.value = value.slice(pos + 2, next);
+      tokens.push(token);
+
+      pos = next + 2;
+      code = value.charCodeAt(pos);
+
+      // Operation within calc
+    } else if (
+      (code === slash || code === star) &&
+      parent &&
+      parent.type === "function" &&
+      parent.value === "calc"
+    ) {
+      token = value[pos];
+      tokens.push({
+        type: "word",
+        sourceIndex: pos - before.length,
+        sourceEndIndex: pos + token.length,
+        value: token
+      });
+      pos += 1;
+      code = value.charCodeAt(pos);
+
+      // Dividers
+    } else if (code === slash || code === comma || code === colon) {
+      token = value[pos];
+
+      tokens.push({
+        type: "div",
+        sourceIndex: pos - before.length,
+        sourceEndIndex: pos + token.length,
+        value: token,
+        before: before,
+        after: ""
+      });
+      before = "";
+
+      pos += 1;
+      code = value.charCodeAt(pos);
+
+      // Open parentheses
+    } else if (openParentheses === code) {
+      // Whitespaces after open parentheses
+      next = pos;
+      do {
+        next += 1;
+        code = value.charCodeAt(next);
+      } while (code <= 32);
+      parenthesesOpenPos = pos;
+      token = {
+        type: "function",
+        sourceIndex: pos - name.length,
+        value: name,
+        before: value.slice(parenthesesOpenPos + 1, next)
+      };
+      pos = next;
+
+      if (name === "url" && code !== singleQuote && code !== doubleQuote) {
+        next -= 1;
+        do {
+          escape = false;
+          next = value.indexOf(")", next + 1);
+          if (~next) {
+            escapePos = next;
+            while (value.charCodeAt(escapePos - 1) === backslash) {
+              escapePos -= 1;
+              escape = !escape;
+            }
+          } else {
+            value += ")";
+            next = value.length - 1;
+            token.unclosed = true;
+          }
+        } while (escape);
+        // Whitespaces before closed
+        whitespacePos = next;
+        do {
+          whitespacePos -= 1;
+          code = value.charCodeAt(whitespacePos);
+        } while (code <= 32);
+        if (parenthesesOpenPos < whitespacePos) {
+          if (pos !== whitespacePos + 1) {
+            token.nodes = [
+              {
+                type: "word",
+                sourceIndex: pos,
+                sourceEndIndex: whitespacePos + 1,
+                value: value.slice(pos, whitespacePos + 1)
+              }
+            ];
+          } else {
+            token.nodes = [];
+          }
+          if (token.unclosed && whitespacePos + 1 !== next) {
+            token.after = "";
+            token.nodes.push({
+              type: "space",
+              sourceIndex: whitespacePos + 1,
+              sourceEndIndex: next,
+              value: value.slice(whitespacePos + 1, next)
+            });
+          } else {
+            token.after = value.slice(whitespacePos + 1, next);
+            token.sourceEndIndex = next;
+          }
+        } else {
+          token.after = "";
+          token.nodes = [];
+        }
+        pos = next + 1;
+        token.sourceEndIndex = token.unclosed ? next : pos;
+        code = value.charCodeAt(pos);
+        tokens.push(token);
+      } else {
+        balanced += 1;
+        token.after = "";
+        token.sourceEndIndex = pos + 1;
+        tokens.push(token);
+        stack.push(token);
+        tokens = token.nodes = [];
+        parent = token;
+      }
+      name = "";
+
+      // Close parentheses
+    } else if (closeParentheses === code && balanced) {
+      pos += 1;
+      code = value.charCodeAt(pos);
+
+      parent.after = after;
+      parent.sourceEndIndex += after.length;
+      after = "";
+      balanced -= 1;
+      stack[stack.length - 1].sourceEndIndex = pos;
+      stack.pop();
+      parent = stack[balanced];
+      tokens = parent.nodes;
+
+      // Words
+    } else {
+      next = pos;
+      do {
+        if (code === backslash) {
+          next += 1;
+        }
+        next += 1;
+        code = value.charCodeAt(next);
+      } while (
+        next < max &&
+        !(
+          code <= 32 ||
+          code === singleQuote ||
+          code === doubleQuote ||
+          code === comma ||
+          code === colon ||
+          code === slash ||
+          code === openParentheses ||
+          (code === star &&
+            parent &&
+            parent.type === "function" &&
+            parent.value === "calc") ||
+          (code === slash &&
+            parent.type === "function" &&
+            parent.value === "calc") ||
+          (code === closeParentheses && balanced)
+        )
+      );
+      token = value.slice(pos, next);
+
+      if (openParentheses === code) {
+        name = token;
+      } else if (
+        (uLower === token.charCodeAt(0) || uUpper === token.charCodeAt(0)) &&
+        plus === token.charCodeAt(1) &&
+        isUnicodeRange.test(token.slice(2))
+      ) {
+        tokens.push({
+          type: "unicode-range",
+          sourceIndex: pos,
+          sourceEndIndex: next,
+          value: token
+        });
+      } else {
+        tokens.push({
+          type: "word",
+          sourceIndex: pos,
+          sourceEndIndex: next,
+          value: token
+        });
+      }
+
+      pos = next;
+    }
+  }
+
+  for (pos = stack.length - 1; pos; pos -= 1) {
+    stack[pos].unclosed = true;
+    stack[pos].sourceEndIndex = value.length;
+  }
+
+  return stack[0].nodes;
+};
Index: node_modules/postcss-value-parser/lib/stringify.js
===================================================================
--- node_modules/postcss-value-parser/lib/stringify.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/lib/stringify.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,48 @@
+function stringifyNode(node, custom) {
+  var type = node.type;
+  var value = node.value;
+  var buf;
+  var customResult;
+
+  if (custom && (customResult = custom(node)) !== undefined) {
+    return customResult;
+  } else if (type === "word" || type === "space") {
+    return value;
+  } else if (type === "string") {
+    buf = node.quote || "";
+    return buf + value + (node.unclosed ? "" : buf);
+  } else if (type === "comment") {
+    return "/*" + value + (node.unclosed ? "" : "*/");
+  } else if (type === "div") {
+    return (node.before || "") + value + (node.after || "");
+  } else if (Array.isArray(node.nodes)) {
+    buf = stringify(node.nodes, custom);
+    if (type !== "function") {
+      return buf;
+    }
+    return (
+      value +
+      "(" +
+      (node.before || "") +
+      buf +
+      (node.after || "") +
+      (node.unclosed ? "" : ")")
+    );
+  }
+  return value;
+}
+
+function stringify(nodes, custom) {
+  var result, i;
+
+  if (Array.isArray(nodes)) {
+    result = "";
+    for (i = nodes.length - 1; ~i; i -= 1) {
+      result = stringifyNode(nodes[i], custom) + result;
+    }
+    return result;
+  }
+  return stringifyNode(nodes, custom);
+}
+
+module.exports = stringify;
Index: node_modules/postcss-value-parser/lib/unit.js
===================================================================
--- node_modules/postcss-value-parser/lib/unit.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/lib/unit.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,120 @@
+var minus = "-".charCodeAt(0);
+var plus = "+".charCodeAt(0);
+var dot = ".".charCodeAt(0);
+var exp = "e".charCodeAt(0);
+var EXP = "E".charCodeAt(0);
+
+// Check if three code points would start a number
+// https://www.w3.org/TR/css-syntax-3/#starts-with-a-number
+function likeNumber(value) {
+  var code = value.charCodeAt(0);
+  var nextCode;
+
+  if (code === plus || code === minus) {
+    nextCode = value.charCodeAt(1);
+
+    if (nextCode >= 48 && nextCode <= 57) {
+      return true;
+    }
+
+    var nextNextCode = value.charCodeAt(2);
+
+    if (nextCode === dot && nextNextCode >= 48 && nextNextCode <= 57) {
+      return true;
+    }
+
+    return false;
+  }
+
+  if (code === dot) {
+    nextCode = value.charCodeAt(1);
+
+    if (nextCode >= 48 && nextCode <= 57) {
+      return true;
+    }
+
+    return false;
+  }
+
+  if (code >= 48 && code <= 57) {
+    return true;
+  }
+
+  return false;
+}
+
+// Consume a number
+// https://www.w3.org/TR/css-syntax-3/#consume-number
+module.exports = function(value) {
+  var pos = 0;
+  var length = value.length;
+  var code;
+  var nextCode;
+  var nextNextCode;
+
+  if (length === 0 || !likeNumber(value)) {
+    return false;
+  }
+
+  code = value.charCodeAt(pos);
+
+  if (code === plus || code === minus) {
+    pos++;
+  }
+
+  while (pos < length) {
+    code = value.charCodeAt(pos);
+
+    if (code < 48 || code > 57) {
+      break;
+    }
+
+    pos += 1;
+  }
+
+  code = value.charCodeAt(pos);
+  nextCode = value.charCodeAt(pos + 1);
+
+  if (code === dot && nextCode >= 48 && nextCode <= 57) {
+    pos += 2;
+
+    while (pos < length) {
+      code = value.charCodeAt(pos);
+
+      if (code < 48 || code > 57) {
+        break;
+      }
+
+      pos += 1;
+    }
+  }
+
+  code = value.charCodeAt(pos);
+  nextCode = value.charCodeAt(pos + 1);
+  nextNextCode = value.charCodeAt(pos + 2);
+
+  if (
+    (code === exp || code === EXP) &&
+    ((nextCode >= 48 && nextCode <= 57) ||
+      ((nextCode === plus || nextCode === minus) &&
+        nextNextCode >= 48 &&
+        nextNextCode <= 57))
+  ) {
+    pos += nextCode === plus || nextCode === minus ? 3 : 2;
+
+    while (pos < length) {
+      code = value.charCodeAt(pos);
+
+      if (code < 48 || code > 57) {
+        break;
+      }
+
+      pos += 1;
+    }
+  }
+
+  return {
+    number: value.slice(0, pos),
+    unit: value.slice(pos)
+  };
+};
Index: node_modules/postcss-value-parser/lib/walk.js
===================================================================
--- node_modules/postcss-value-parser/lib/walk.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/lib/walk.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,22 @@
+module.exports = function walk(nodes, cb, bubble) {
+  var i, max, node, result;
+
+  for (i = 0, max = nodes.length; i < max; i += 1) {
+    node = nodes[i];
+    if (!bubble) {
+      result = cb(node, i, nodes);
+    }
+
+    if (
+      result !== false &&
+      node.type === "function" &&
+      Array.isArray(node.nodes)
+    ) {
+      walk(node.nodes, cb, bubble);
+    }
+
+    if (bubble) {
+      cb(node, i, nodes);
+    }
+  }
+};
Index: node_modules/postcss-value-parser/package.json
===================================================================
--- node_modules/postcss-value-parser/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss-value-parser/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,58 @@
+{
+  "name": "postcss-value-parser",
+  "version": "4.2.0",
+  "description": "Transforms css values and at-rule params into the tree",
+  "main": "lib/index.js",
+  "files": [
+    "lib"
+  ],
+  "devDependencies": {
+    "eslint": "^5.16.0",
+    "husky": "^2.3.0",
+    "lint-staged": "^8.1.7",
+    "prettier": "^1.17.1",
+    "tap-spec": "^5.0.0",
+    "tape": "^4.10.2"
+  },
+  "scripts": {
+    "lint:prettier": "prettier \"**/*.js\" \"**/*.ts\" --list-different",
+    "lint:js": "eslint . --cache",
+    "lint": "yarn lint:js && yarn lint:prettier",
+    "pretest": "yarn lint",
+    "test": "tape test/*.js | tap-spec"
+  },
+  "eslintConfig": {
+    "env": {
+      "es6": true,
+      "node": true
+    },
+    "extends": "eslint:recommended"
+  },
+  "lint-staged": {
+    "*.js": [
+      "eslint",
+      "prettier --write",
+      "git add"
+    ]
+  },
+  "husky": {
+    "hooks": {
+      "pre-commit": "lint-staged"
+    }
+  },
+  "author": "Bogdan Chadkin <trysound@yandex.ru>",
+  "license": "MIT",
+  "homepage": "https://github.com/TrySound/postcss-value-parser",
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/TrySound/postcss-value-parser.git"
+  },
+  "keywords": [
+    "postcss",
+    "value",
+    "parser"
+  ],
+  "bugs": {
+    "url": "https://github.com/TrySound/postcss-value-parser/issues"
+  }
+}
Index: node_modules/postcss/LICENSE
===================================================================
--- node_modules/postcss/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Index: node_modules/postcss/README.md
===================================================================
--- node_modules/postcss/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,29 @@
+# PostCSS
+
+<img align="right" width="95" height="95"
+     alt="Philosopher’s stone, logo of PostCSS"
+     src="https://postcss.org/logo.svg">
+
+PostCSS is a tool for transforming styles with JS plugins.
+These plugins can lint your CSS, support variables and mixins,
+transpile future CSS syntax, inline images, and more.
+
+PostCSS is used by industry leaders including Wikipedia, Twitter, Alibaba,
+and JetBrains. The [Autoprefixer] and [Stylelint] PostCSS plugins are some of the most popular CSS tools.
+
+---
+
+<img src="https://cdn.evilmartians.com/badges/logo-no-label.svg" alt="" width="22" height="16" />  Built by
+ <b><a href="https://evilmartians.com/devtools?utm_source=postcss&utm_campaign=devtools-button&utm_medium=github">Evil Martians</a></b>, go-to agency for <b>developer tools</b>.
+
+---
+
+[Abstract Syntax Tree]: https://en.wikipedia.org/wiki/Abstract_syntax_tree
+[Evil Martians]:        https://evilmartians.com/?utm_source=postcss
+[Autoprefixer]:         https://github.com/postcss/autoprefixer
+[Stylelint]:            https://stylelint.io/
+[plugins]:              https://github.com/postcss/postcss#plugins
+
+
+## Docs
+Read full docs **[here](https://postcss.org/)**.
Index: node_modules/postcss/lib/at-rule.d.ts
===================================================================
--- node_modules/postcss/lib/at-rule.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/at-rule.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,140 @@
+import Container, {
+  ContainerProps,
+  ContainerWithChildren
+} from './container.js'
+
+declare namespace AtRule {
+  export interface AtRuleRaws extends Record<string, unknown> {
+    /**
+     * The space symbols after the last child of the node to the end of the node.
+     */
+    after?: string
+
+    /**
+     * The space between the at-rule name and its parameters.
+     */
+    afterName?: string
+
+    /**
+     * The space symbols before the node. It also stores `*`
+     * and `_` symbols before the declaration (IE hack).
+     */
+    before?: string
+
+    /**
+     * The symbols between the last parameter and `{` for rules.
+     */
+    between?: string
+
+    /**
+     * The rule’s selector with comments.
+     */
+    params?: {
+      raw: string
+      value: string
+    }
+
+    /**
+     * Contains `true` if the last child has an (optional) semicolon.
+     */
+    semicolon?: boolean
+  }
+
+  export interface AtRuleProps extends ContainerProps {
+    /** Name of the at-rule. */
+    name: string
+    /** Parameters following the name of the at-rule. */
+    params?: number | string
+    /** Information used to generate byte-to-byte equal node string as it was in the origin input. */
+    raws?: AtRuleRaws
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { AtRule_ as default }
+}
+
+/**
+ * Represents an at-rule.
+ *
+ * ```js
+ * Once (root, { AtRule }) {
+ *   let media = new AtRule({ name: 'media', params: 'print' })
+ *   media.append(…)
+ *   root.append(media)
+ * }
+ * ```
+ *
+ * If it’s followed in the CSS by a `{}` block, this node will have
+ * a nodes property representing its children.
+ *
+ * ```js
+ * const root = postcss.parse('@charset "UTF-8"; @media print {}')
+ *
+ * const charset = root.first
+ * charset.type  //=> 'atrule'
+ * charset.nodes //=> undefined
+ *
+ * const media = root.last
+ * media.nodes   //=> []
+ * ```
+ */
+declare class AtRule_ extends Container {
+  /**
+   * An array containing the layer’s children.
+   *
+   * ```js
+   * const root = postcss.parse('@layer example { a { color: black } }')
+   * const layer = root.first
+   * layer.nodes.length           //=> 1
+   * layer.nodes[0].selector      //=> 'a'
+   * ```
+   *
+   * Can be `undefinded` if the at-rule has no body.
+   *
+   * ```js
+   * const root = postcss.parse('@layer a, b, c;')
+   * const layer = root.first
+   * layer.nodes //=> undefined
+   * ```
+   */
+  nodes: Container['nodes'] | undefined
+  parent: ContainerWithChildren | undefined
+
+  raws: AtRule.AtRuleRaws
+  type: 'atrule'
+  /**
+   * The at-rule’s name immediately follows the `@`.
+   *
+   * ```js
+   * const root  = postcss.parse('@media print {}')
+   * const media = root.first
+   * media.name //=> 'media'
+   * ```
+   */
+  get name(): string
+  set name(value: string)
+
+  /**
+   * The at-rule’s parameters, the values that follow the at-rule’s name
+   * but precede any `{}` block.
+   *
+   * ```js
+   * const root  = postcss.parse('@media print, screen {}')
+   * const media = root.first
+   * media.params //=> 'print, screen'
+   * ```
+   */
+  get params(): string
+
+  set params(value: string)
+
+  constructor(defaults?: AtRule.AtRuleProps)
+  assign(overrides: AtRule.AtRuleProps | object): this
+  clone(overrides?: Partial<AtRule.AtRuleProps>): this
+  cloneAfter(overrides?: Partial<AtRule.AtRuleProps>): this
+  cloneBefore(overrides?: Partial<AtRule.AtRuleProps>): this
+}
+
+declare class AtRule extends AtRule_ {}
+
+export = AtRule
Index: node_modules/postcss/lib/at-rule.js
===================================================================
--- node_modules/postcss/lib/at-rule.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/at-rule.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,25 @@
+'use strict'
+
+let Container = require('./container')
+
+class AtRule extends Container {
+  constructor(defaults) {
+    super(defaults)
+    this.type = 'atrule'
+  }
+
+  append(...children) {
+    if (!this.proxyOf.nodes) this.nodes = []
+    return super.append(...children)
+  }
+
+  prepend(...children) {
+    if (!this.proxyOf.nodes) this.nodes = []
+    return super.prepend(...children)
+  }
+}
+
+module.exports = AtRule
+AtRule.default = AtRule
+
+Container.registerAtRule(AtRule)
Index: node_modules/postcss/lib/comment.d.ts
===================================================================
--- node_modules/postcss/lib/comment.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/comment.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,68 @@
+import Container from './container.js'
+import Node, { NodeProps } from './node.js'
+
+declare namespace Comment {
+  export interface CommentRaws extends Record<string, unknown> {
+    /**
+     * The space symbols before the node.
+     */
+    before?: string
+
+    /**
+     * The space symbols between `/*` and the comment’s text.
+     */
+    left?: string
+
+    /**
+     * The space symbols between the comment’s text.
+     */
+    right?: string
+  }
+
+  export interface CommentProps extends NodeProps {
+    /** Information used to generate byte-to-byte equal node string as it was in the origin input. */
+    raws?: CommentRaws
+    /** Content of the comment. */
+    text: string
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Comment_ as default }
+}
+
+/**
+ * It represents a class that handles
+ * [CSS comments](https://developer.mozilla.org/en-US/docs/Web/CSS/Comments)
+ *
+ * ```js
+ * Once (root, { Comment }) {
+ *   const note = new Comment({ text: 'Note: …' })
+ *   root.append(note)
+ * }
+ * ```
+ *
+ * Remember that CSS comments inside selectors, at-rule parameters,
+ * or declaration values will be stored in the `raws` properties
+ * explained above.
+ */
+declare class Comment_ extends Node {
+  parent: Container | undefined
+  raws: Comment.CommentRaws
+  type: 'comment'
+  /**
+   * The comment's text.
+   */
+  get text(): string
+
+  set text(value: string)
+
+  constructor(defaults?: Comment.CommentProps)
+  assign(overrides: Comment.CommentProps | object): this
+  clone(overrides?: Partial<Comment.CommentProps>): this
+  cloneAfter(overrides?: Partial<Comment.CommentProps>): this
+  cloneBefore(overrides?: Partial<Comment.CommentProps>): this
+}
+
+declare class Comment extends Comment_ {}
+
+export = Comment
Index: node_modules/postcss/lib/comment.js
===================================================================
--- node_modules/postcss/lib/comment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/comment.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,13 @@
+'use strict'
+
+let Node = require('./node')
+
+class Comment extends Node {
+  constructor(defaults) {
+    super(defaults)
+    this.type = 'comment'
+  }
+}
+
+module.exports = Comment
+Comment.default = Comment
Index: node_modules/postcss/lib/container.d.ts
===================================================================
--- node_modules/postcss/lib/container.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/container.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,483 @@
+import AtRule from './at-rule.js'
+import Comment from './comment.js'
+import Declaration from './declaration.js'
+import Node, { ChildNode, ChildProps, NodeProps } from './node.js'
+import { Root } from './postcss.js'
+import Rule from './rule.js'
+
+declare namespace Container {
+  export type ContainerWithChildren<Child extends Node = ChildNode> = {
+    nodes: Child[]
+  } & (
+    | AtRule
+    | Root
+    | Rule
+  )
+
+  export interface ValueOptions {
+    /**
+     * String that’s used to narrow down values and speed up the regexp search.
+     */
+    fast?: string
+
+    /**
+     * An array of property names.
+     */
+    props?: readonly string[]
+  }
+
+  export interface ContainerProps extends NodeProps {
+    nodes?: readonly (ChildProps | Node)[]
+  }
+
+  /**
+   * All types that can be passed into container methods to create or add a new
+   * child node.
+   */
+  export type NewChild =
+    | ChildProps
+    | Node
+    | readonly ChildProps[]
+    | readonly Node[]
+    | readonly string[]
+    | string
+    | undefined
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Container_ as default }
+}
+
+/**
+ * The `Root`, `AtRule`, and `Rule` container nodes
+ * inherit some common methods to help work with their children.
+ *
+ * Note that all containers can store any content. If you write a rule inside
+ * a rule, PostCSS will parse it.
+ */
+declare abstract class Container_<Child extends Node = ChildNode> extends Node {
+  /**
+   * An array containing the container’s children.
+   *
+   * ```js
+   * const root = postcss.parse('a { color: black }')
+   * root.nodes.length           //=> 1
+   * root.nodes[0].selector      //=> 'a'
+   * root.nodes[0].nodes[0].prop //=> 'color'
+   * ```
+   */
+  nodes: Child[] | undefined
+
+  /**
+   * The container’s first child.
+   *
+   * ```js
+   * rule.first === rules.nodes[0]
+   * ```
+   */
+  get first(): Child | undefined
+
+  /**
+   * The container’s last child.
+   *
+   * ```js
+   * rule.last === rule.nodes[rule.nodes.length - 1]
+   * ```
+   */
+  get last(): Child | undefined
+  /**
+   * Inserts new nodes to the end of the container.
+   *
+   * ```js
+   * const decl1 = new Declaration({ prop: 'color', value: 'black' })
+   * const decl2 = new Declaration({ prop: 'background-color', value: 'white' })
+   * rule.append(decl1, decl2)
+   *
+   * root.append({ name: 'charset', params: '"UTF-8"' })  // at-rule
+   * root.append({ selector: 'a' })                       // rule
+   * rule.append({ prop: 'color', value: 'black' })       // declaration
+   * rule.append({ text: 'Comment' })                     // comment
+   *
+   * root.append('a {}')
+   * root.first.append('color: black; z-index: 1')
+   * ```
+   *
+   * @param nodes New nodes.
+   * @return This node for methods chain.
+   */
+  append(...nodes: Container.NewChild[]): this
+  assign(overrides: Container.ContainerProps | object): this
+  clone(overrides?: Partial<Container.ContainerProps>): this
+
+  cloneAfter(overrides?: Partial<Container.ContainerProps>): this
+
+  cloneBefore(overrides?: Partial<Container.ContainerProps>): this
+  /**
+   * Iterates through the container’s immediate children,
+   * calling `callback` for each child.
+   *
+   * Returning `false` in the callback will break iteration.
+   *
+   * This method only iterates through the container’s immediate children.
+   * If you need to recursively iterate through all the container’s descendant
+   * nodes, use `Container#walk`.
+   *
+   * Unlike the for `{}`-cycle or `Array#forEach` this iterator is safe
+   * if you are mutating the array of child nodes during iteration.
+   * PostCSS will adjust the current index to match the mutations.
+   *
+   * ```js
+   * const root = postcss.parse('a { color: black; z-index: 1 }')
+   * const rule = root.first
+   *
+   * for (const decl of rule.nodes) {
+   *   decl.cloneBefore({ prop: '-webkit-' + decl.prop })
+   *   // Cycle will be infinite, because cloneBefore moves the current node
+   *   // to the next index
+   * }
+   *
+   * rule.each(decl => {
+   *   decl.cloneBefore({ prop: '-webkit-' + decl.prop })
+   *   // Will be executed only for color and z-index
+   * })
+   * ```
+   *
+   * @param callback Iterator receives each node and index.
+   * @return Returns `false` if iteration was broke.
+   */
+  each(
+    callback: (node: Child, index: number) => false | void
+  ): false | undefined
+
+  /**
+   * Returns `true` if callback returns `true`
+   * for all of the container’s children.
+   *
+   * ```js
+   * const noPrefixes = rule.every(i => i.prop[0] !== '-')
+   * ```
+   *
+   * @param condition Iterator returns true or false.
+   * @return Is every child pass condition.
+   */
+  every(
+    condition: (node: Child, index: number, nodes: Child[]) => boolean
+  ): boolean
+  /**
+   * Returns a `child`’s index within the `Container#nodes` array.
+   *
+   * ```js
+   * rule.index( rule.nodes[2] ) //=> 2
+   * ```
+   *
+   * @param child Child of the current container.
+   * @return Child index.
+   */
+  index(child: Child | number): number
+
+  /**
+   * Insert new node after old node within the container.
+   *
+   * @param oldNode Child or child’s index.
+   * @param newNode New node.
+   * @return This node for methods chain.
+   */
+  insertAfter(oldNode: Child | number, newNode: Container.NewChild): this
+
+  /**
+   * Traverses the container’s descendant nodes, calling callback
+   * for each comment node.
+   *
+   * Like `Container#each`, this method is safe
+   * to use if you are mutating arrays during iteration.
+   *
+   * ```js
+   * root.walkComments(comment => {
+   *   comment.remove()
+   * })
+   * ```
+   *
+   * @param callback Iterator receives each node and index.
+   * @return Returns `false` if iteration was broke.
+   */
+
+  /**
+   * Insert new node before old node within the container.
+   *
+   * ```js
+   * rule.insertBefore(decl, decl.clone({ prop: '-webkit-' + decl.prop }))
+   * ```
+   *
+   * @param oldNode Child or child’s index.
+   * @param newNode New node.
+   * @return This node for methods chain.
+   */
+  insertBefore(oldNode: Child | number, newNode: Container.NewChild): this
+  /**
+   * Inserts new nodes to the start of the container.
+   *
+   * ```js
+   * const decl1 = new Declaration({ prop: 'color', value: 'black' })
+   * const decl2 = new Declaration({ prop: 'background-color', value: 'white' })
+   * rule.prepend(decl1, decl2)
+   *
+   * root.append({ name: 'charset', params: '"UTF-8"' })  // at-rule
+   * root.append({ selector: 'a' })                       // rule
+   * rule.append({ prop: 'color', value: 'black' })       // declaration
+   * rule.append({ text: 'Comment' })                     // comment
+   *
+   * root.append('a {}')
+   * root.first.append('color: black; z-index: 1')
+   * ```
+   *
+   * @param nodes New nodes.
+   * @return This node for methods chain.
+   */
+  prepend(...nodes: Container.NewChild[]): this
+
+  /**
+   * Add child to the end of the node.
+   *
+   * ```js
+   * rule.push(new Declaration({ prop: 'color', value: 'black' }))
+   * ```
+   *
+   * @param child New node.
+   * @return This node for methods chain.
+   */
+  push(child: Child): this
+
+  /**
+   * Removes all children from the container
+   * and cleans their parent properties.
+   *
+   * ```js
+   * rule.removeAll()
+   * rule.nodes.length //=> 0
+   * ```
+   *
+   * @return This node for methods chain.
+   */
+  removeAll(): this
+
+  /**
+   * Removes node from the container and cleans the parent properties
+   * from the node and its children.
+   *
+   * ```js
+   * rule.nodes.length  //=> 5
+   * rule.removeChild(decl)
+   * rule.nodes.length  //=> 4
+   * decl.parent        //=> undefined
+   * ```
+   *
+   * @param child Child or child’s index.
+   * @return This node for methods chain.
+   */
+  removeChild(child: Child | number): this
+
+  replaceValues(
+    pattern: RegExp | string,
+    replaced: { (substring: string, ...args: any[]): string } | string
+  ): this
+  /**
+   * Passes all declaration values within the container that match pattern
+   * through callback, replacing those values with the returned result
+   * of callback.
+   *
+   * This method is useful if you are using a custom unit or function
+   * and need to iterate through all values.
+   *
+   * ```js
+   * root.replaceValues(/\d+rem/, { fast: 'rem' }, string => {
+   *   return 15 * parseInt(string) + 'px'
+   * })
+   * ```
+   *
+   * @param pattern      Replace pattern.
+   * @param {object} options             Options to speed up the search.
+   * @param replaced   String to replace pattern or callback
+   *                                     that returns a new value. The callback
+   *                                     will receive the same arguments
+   *                                     as those passed to a function parameter
+   *                                     of `String#replace`.
+   * @return This node for methods chain.
+   */
+  replaceValues(
+    pattern: RegExp | string,
+    options: Container.ValueOptions,
+    replaced: { (substring: string, ...args: any[]): string } | string
+  ): this
+
+  /**
+   * Returns `true` if callback returns `true` for (at least) one
+   * of the container’s children.
+   *
+   * ```js
+   * const hasPrefix = rule.some(i => i.prop[0] === '-')
+   * ```
+   *
+   * @param condition Iterator returns true or false.
+   * @return Is some child pass condition.
+   */
+  some(
+    condition: (node: Child, index: number, nodes: Child[]) => boolean
+  ): boolean
+
+  /**
+   * Traverses the container’s descendant nodes, calling callback
+   * for each node.
+   *
+   * Like container.each(), this method is safe to use
+   * if you are mutating arrays during iteration.
+   *
+   * If you only need to iterate through the container’s immediate children,
+   * use `Container#each`.
+   *
+   * ```js
+   * root.walk(node => {
+   *   // Traverses all descendant nodes.
+   * })
+   * ```
+   *
+   * @param callback Iterator receives each node and index.
+   * @return  Returns `false` if iteration was broke.
+   */
+  walk(
+    callback: (node: ChildNode, index: number) => false | void
+  ): false | undefined
+
+  /**
+   * Traverses the container’s descendant nodes, calling callback
+   * for each at-rule node.
+   *
+   * If you pass a filter, iteration will only happen over at-rules
+   * that have matching names.
+   *
+   * Like `Container#each`, this method is safe
+   * to use if you are mutating arrays during iteration.
+   *
+   * ```js
+   * root.walkAtRules(rule => {
+   *   if (isOld(rule.name)) rule.remove()
+   * })
+   *
+   * let first = false
+   * root.walkAtRules('charset', rule => {
+   *   if (!first) {
+   *     first = true
+   *   } else {
+   *     rule.remove()
+   *   }
+   * })
+   * ```
+   *
+   * @param name     String or regular expression to filter at-rules by name.
+   * @param callback Iterator receives each node and index.
+   * @return Returns `false` if iteration was broke.
+   */
+  walkAtRules(
+    nameFilter: RegExp | string,
+    callback: (atRule: AtRule, index: number) => false | void
+  ): false | undefined
+  walkAtRules(
+    callback: (atRule: AtRule, index: number) => false | void
+  ): false | undefined
+
+  walkComments(
+    callback: (comment: Comment, indexed: number) => false | void
+  ): false | undefined
+  walkComments(
+    callback: (comment: Comment, indexed: number) => false | void
+  ): false | undefined
+
+  /**
+   * Traverses the container’s descendant nodes, calling callback
+   * for each declaration node.
+   *
+   * If you pass a filter, iteration will only happen over declarations
+   * with matching properties.
+   *
+   * ```js
+   * root.walkDecls(decl => {
+   *   checkPropertySupport(decl.prop)
+   * })
+   *
+   * root.walkDecls('border-radius', decl => {
+   *   decl.remove()
+   * })
+   *
+   * root.walkDecls(/^background/, decl => {
+   *   decl.value = takeFirstColorFromGradient(decl.value)
+   * })
+   * ```
+   *
+   * Like `Container#each`, this method is safe
+   * to use if you are mutating arrays during iteration.
+   *
+   * @param prop     String or regular expression to filter declarations
+   *                 by property name.
+   * @param callback Iterator receives each node and index.
+   * @return Returns `false` if iteration was broke.
+   */
+  walkDecls(
+    propFilter: RegExp | string,
+    callback: (decl: Declaration, index: number) => false | void
+  ): false | undefined
+  walkDecls(
+    callback: (decl: Declaration, index: number) => false | void
+  ): false | undefined
+  /**
+   * Traverses the container’s descendant nodes, calling callback
+   * for each rule node.
+   *
+   * If you pass a filter, iteration will only happen over rules
+   * with matching selectors.
+   *
+   * Like `Container#each`, this method is safe
+   * to use if you are mutating arrays during iteration.
+   *
+   * ```js
+   * const selectors = []
+   * root.walkRules(rule => {
+   *   selectors.push(rule.selector)
+   * })
+   * console.log(`Your CSS uses ${ selectors.length } selectors`)
+   * ```
+   *
+   * @param selector String or regular expression to filter rules by selector.
+   * @param callback Iterator receives each node and index.
+   * @return Returns `false` if iteration was broke.
+   */
+  walkRules(
+    selectorFilter: RegExp | string,
+    callback: (rule: Rule, index: number) => false | void
+  ): false | undefined
+  walkRules(
+    callback: (rule: Rule, index: number) => false | void
+  ): false | undefined
+  /**
+   * An internal method that converts a {@link NewChild} into a list of actual
+   * child nodes that can then be added to this container.
+   *
+   * This ensures that the nodes' parent is set to this container, that they use
+   * the correct prototype chain, and that they're marked as dirty.
+   *
+   * @param mnodes The new node or nodes to add.
+   * @param sample A node from whose raws the new node's `before` raw should be
+   *               taken.
+   * @param type   This should be set to `'prepend'` if the new nodes will be
+   *               inserted at the beginning of the container.
+   * @hidden
+   */
+  protected normalize(
+    nodes: Container.NewChild,
+    sample: Node | undefined,
+    type?: 'prepend' | false
+  ): Child[]
+}
+
+declare class Container<
+  Child extends Node = ChildNode
+> extends Container_<Child> {}
+
+export = Container
Index: node_modules/postcss/lib/container.js
===================================================================
--- node_modules/postcss/lib/container.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/container.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,447 @@
+'use strict'
+
+let Comment = require('./comment')
+let Declaration = require('./declaration')
+let Node = require('./node')
+let { isClean, my } = require('./symbols')
+
+let AtRule, parse, Root, Rule
+
+function cleanSource(nodes) {
+  return nodes.map(i => {
+    if (i.nodes) i.nodes = cleanSource(i.nodes)
+    delete i.source
+    return i
+  })
+}
+
+function markTreeDirty(node) {
+  node[isClean] = false
+  if (node.proxyOf.nodes) {
+    for (let i of node.proxyOf.nodes) {
+      markTreeDirty(i)
+    }
+  }
+}
+
+class Container extends Node {
+  get first() {
+    if (!this.proxyOf.nodes) return undefined
+    return this.proxyOf.nodes[0]
+  }
+
+  get last() {
+    if (!this.proxyOf.nodes) return undefined
+    return this.proxyOf.nodes[this.proxyOf.nodes.length - 1]
+  }
+
+  append(...children) {
+    for (let child of children) {
+      let nodes = this.normalize(child, this.last)
+      for (let node of nodes) this.proxyOf.nodes.push(node)
+    }
+
+    this.markDirty()
+
+    return this
+  }
+
+  cleanRaws(keepBetween) {
+    super.cleanRaws(keepBetween)
+    if (this.nodes) {
+      for (let node of this.nodes) node.cleanRaws(keepBetween)
+    }
+  }
+
+  each(callback) {
+    if (!this.proxyOf.nodes) return undefined
+    let iterator = this.getIterator()
+
+    let index, result
+    while (this.indexes[iterator] < this.proxyOf.nodes.length) {
+      index = this.indexes[iterator]
+      result = callback(this.proxyOf.nodes[index], index)
+      if (result === false) break
+
+      this.indexes[iterator] += 1
+    }
+
+    delete this.indexes[iterator]
+    return result
+  }
+
+  every(condition) {
+    return this.nodes.every(condition)
+  }
+
+  getIterator() {
+    if (!this.lastEach) this.lastEach = 0
+    if (!this.indexes) this.indexes = {}
+
+    this.lastEach += 1
+    let iterator = this.lastEach
+    this.indexes[iterator] = 0
+
+    return iterator
+  }
+
+  getProxyProcessor() {
+    return {
+      get(node, prop) {
+        if (prop === 'proxyOf') {
+          return node
+        } else if (!node[prop]) {
+          return node[prop]
+        } else if (
+          prop === 'each' ||
+          (typeof prop === 'string' && prop.startsWith('walk'))
+        ) {
+          return (...args) => {
+            return node[prop](
+              ...args.map(i => {
+                if (typeof i === 'function') {
+                  return (child, index) => i(child.toProxy(), index)
+                } else {
+                  return i
+                }
+              })
+            )
+          }
+        } else if (prop === 'every' || prop === 'some') {
+          return cb => {
+            return node[prop]((child, ...other) =>
+              cb(child.toProxy(), ...other)
+            )
+          }
+        } else if (prop === 'root') {
+          return () => node.root().toProxy()
+        } else if (prop === 'nodes') {
+          return node.nodes.map(i => i.toProxy())
+        } else if (prop === 'first' || prop === 'last') {
+          return node[prop].toProxy()
+        } else {
+          return node[prop]
+        }
+      },
+
+      set(node, prop, value) {
+        if (node[prop] === value) return true
+        node[prop] = value
+        if (prop === 'name' || prop === 'params' || prop === 'selector') {
+          node.markDirty()
+        }
+        return true
+      }
+    }
+  }
+
+  index(child) {
+    if (typeof child === 'number') return child
+    if (child.proxyOf) child = child.proxyOf
+    return this.proxyOf.nodes.indexOf(child)
+  }
+
+  insertAfter(exist, add) {
+    let existIndex = this.index(exist)
+    let nodes = this.normalize(add, this.proxyOf.nodes[existIndex]).reverse()
+    existIndex = this.index(exist)
+    for (let node of nodes) this.proxyOf.nodes.splice(existIndex + 1, 0, node)
+
+    let index
+    for (let id in this.indexes) {
+      index = this.indexes[id]
+      if (existIndex < index) {
+        this.indexes[id] = index + nodes.length
+      }
+    }
+
+    this.markDirty()
+
+    return this
+  }
+
+  insertBefore(exist, add) {
+    let existIndex = this.index(exist)
+    let type = existIndex === 0 ? 'prepend' : false
+    let nodes = this.normalize(
+      add,
+      this.proxyOf.nodes[existIndex],
+      type
+    ).reverse()
+    existIndex = this.index(exist)
+    for (let node of nodes) this.proxyOf.nodes.splice(existIndex, 0, node)
+
+    let index
+    for (let id in this.indexes) {
+      index = this.indexes[id]
+      if (existIndex <= index) {
+        this.indexes[id] = index + nodes.length
+      }
+    }
+
+    this.markDirty()
+
+    return this
+  }
+
+  normalize(nodes, sample) {
+    if (typeof nodes === 'string') {
+      nodes = cleanSource(parse(nodes).nodes)
+    } else if (typeof nodes === 'undefined') {
+      nodes = []
+    } else if (Array.isArray(nodes)) {
+      nodes = nodes.slice(0)
+      for (let i of nodes) {
+        if (i.parent) i.parent.removeChild(i, 'ignore')
+      }
+    } else if (nodes.type === 'root' && this.type !== 'document') {
+      nodes = nodes.nodes.slice(0)
+      for (let i of nodes) {
+        if (i.parent) i.parent.removeChild(i, 'ignore')
+      }
+    } else if (nodes.type) {
+      nodes = [nodes]
+    } else if (nodes.prop) {
+      if (typeof nodes.value === 'undefined') {
+        throw new Error('Value field is missed in node creation')
+      } else if (typeof nodes.value !== 'string') {
+        nodes.value = String(nodes.value)
+      }
+      nodes = [new Declaration(nodes)]
+    } else if (nodes.selector || nodes.selectors) {
+      nodes = [new Rule(nodes)]
+    } else if (nodes.name) {
+      nodes = [new AtRule(nodes)]
+    } else if (nodes.text) {
+      nodes = [new Comment(nodes)]
+    } else {
+      throw new Error('Unknown node type in node creation')
+    }
+
+    let processed = nodes.map(i => {
+      /* c8 ignore next */
+      if (!i[my]) Container.rebuild(i)
+      i = i.proxyOf
+      if (i.parent) i.parent.removeChild(i)
+      if (i[isClean]) markTreeDirty(i)
+
+      if (!i.raws) i.raws = {}
+      if (typeof i.raws.before === 'undefined') {
+        if (sample && typeof sample.raws.before !== 'undefined') {
+          i.raws.before = sample.raws.before.replace(/\S/g, '')
+        }
+      }
+      i.parent = this.proxyOf
+      return i
+    })
+
+    return processed
+  }
+
+  prepend(...children) {
+    children = children.reverse()
+    for (let child of children) {
+      let nodes = this.normalize(child, this.first, 'prepend').reverse()
+      for (let node of nodes) this.proxyOf.nodes.unshift(node)
+      for (let id in this.indexes) {
+        this.indexes[id] = this.indexes[id] + nodes.length
+      }
+    }
+
+    this.markDirty()
+
+    return this
+  }
+
+  push(child) {
+    child.parent = this
+    this.proxyOf.nodes.push(child)
+    return this
+  }
+
+  removeAll() {
+    for (let node of this.proxyOf.nodes) node.parent = undefined
+    this.proxyOf.nodes = []
+
+    this.markDirty()
+
+    return this
+  }
+
+  removeChild(child) {
+    child = this.index(child)
+    this.proxyOf.nodes[child].parent = undefined
+    this.proxyOf.nodes.splice(child, 1)
+
+    let index
+    for (let id in this.indexes) {
+      index = this.indexes[id]
+      if (index >= child) {
+        this.indexes[id] = index - 1
+      }
+    }
+
+    this.markDirty()
+
+    return this
+  }
+
+  replaceValues(pattern, opts, callback) {
+    if (!callback) {
+      callback = opts
+      opts = {}
+    }
+
+    this.walkDecls(decl => {
+      if (opts.props && !opts.props.includes(decl.prop)) return
+      if (opts.fast && !decl.value.includes(opts.fast)) return
+
+      decl.value = decl.value.replace(pattern, callback)
+    })
+
+    this.markDirty()
+
+    return this
+  }
+
+  some(condition) {
+    return this.nodes.some(condition)
+  }
+
+  walk(callback) {
+    return this.each((child, i) => {
+      let result
+      try {
+        result = callback(child, i)
+      } catch (e) {
+        throw child.addToError(e)
+      }
+      if (result !== false && child.walk) {
+        result = child.walk(callback)
+      }
+
+      return result
+    })
+  }
+
+  walkAtRules(name, callback) {
+    if (!callback) {
+      callback = name
+      return this.walk((child, i) => {
+        if (child.type === 'atrule') {
+          return callback(child, i)
+        }
+      })
+    }
+    if (name instanceof RegExp) {
+      return this.walk((child, i) => {
+        if (child.type === 'atrule' && name.test(child.name)) {
+          return callback(child, i)
+        }
+      })
+    }
+    return this.walk((child, i) => {
+      if (child.type === 'atrule' && child.name === name) {
+        return callback(child, i)
+      }
+    })
+  }
+
+  walkComments(callback) {
+    return this.walk((child, i) => {
+      if (child.type === 'comment') {
+        return callback(child, i)
+      }
+    })
+  }
+
+  walkDecls(prop, callback) {
+    if (!callback) {
+      callback = prop
+      return this.walk((child, i) => {
+        if (child.type === 'decl') {
+          return callback(child, i)
+        }
+      })
+    }
+    if (prop instanceof RegExp) {
+      return this.walk((child, i) => {
+        if (child.type === 'decl' && prop.test(child.prop)) {
+          return callback(child, i)
+        }
+      })
+    }
+    return this.walk((child, i) => {
+      if (child.type === 'decl' && child.prop === prop) {
+        return callback(child, i)
+      }
+    })
+  }
+
+  walkRules(selector, callback) {
+    if (!callback) {
+      callback = selector
+
+      return this.walk((child, i) => {
+        if (child.type === 'rule') {
+          return callback(child, i)
+        }
+      })
+    }
+    if (selector instanceof RegExp) {
+      return this.walk((child, i) => {
+        if (child.type === 'rule' && selector.test(child.selector)) {
+          return callback(child, i)
+        }
+      })
+    }
+    return this.walk((child, i) => {
+      if (child.type === 'rule' && child.selector === selector) {
+        return callback(child, i)
+      }
+    })
+  }
+}
+
+Container.registerParse = dependant => {
+  parse = dependant
+}
+
+Container.registerRule = dependant => {
+  Rule = dependant
+}
+
+Container.registerAtRule = dependant => {
+  AtRule = dependant
+}
+
+Container.registerRoot = dependant => {
+  Root = dependant
+}
+
+module.exports = Container
+Container.default = Container
+
+/* c8 ignore start */
+Container.rebuild = node => {
+  if (node.type === 'atrule') {
+    Object.setPrototypeOf(node, AtRule.prototype)
+  } else if (node.type === 'rule') {
+    Object.setPrototypeOf(node, Rule.prototype)
+  } else if (node.type === 'decl') {
+    Object.setPrototypeOf(node, Declaration.prototype)
+  } else if (node.type === 'comment') {
+    Object.setPrototypeOf(node, Comment.prototype)
+  } else if (node.type === 'root') {
+    Object.setPrototypeOf(node, Root.prototype)
+  }
+
+  node[my] = true
+
+  if (node.nodes) {
+    node.nodes.forEach(child => {
+      Container.rebuild(child)
+    })
+  }
+}
+/* c8 ignore stop */
Index: node_modules/postcss/lib/css-syntax-error.d.ts
===================================================================
--- node_modules/postcss/lib/css-syntax-error.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/css-syntax-error.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,248 @@
+import { FilePosition } from './input.js'
+
+declare namespace CssSyntaxError {
+  /**
+   * A position that is part of a range.
+   */
+  export interface RangePosition {
+    /**
+     * The column number in the input.
+     */
+    column: number
+
+    /**
+     * The line number in the input.
+     */
+    line: number
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { CssSyntaxError_ as default }
+}
+
+/**
+ * The CSS parser throws this error for broken CSS.
+ *
+ * Custom parsers can throw this error for broken custom syntax using
+ * the `Node#error` method.
+ *
+ * PostCSS will use the input source map to detect the original error location.
+ * If you wrote a Sass file, compiled it to CSS and then parsed it with PostCSS,
+ * PostCSS will show the original position in the Sass file.
+ *
+ * If you need the position in the PostCSS input
+ * (e.g., to debug the previous compiler), use `error.input.file`.
+ *
+ * ```js
+ * // Raising error from plugin
+ * throw node.error('Unknown variable', { plugin: 'postcss-vars' })
+ * ```
+ *
+ * ```js
+ * // Catching and checking syntax error
+ * try {
+ *   postcss.parse('a{')
+ * } catch (error) {
+ *   if (error.name === 'CssSyntaxError') {
+ *     error //=> CssSyntaxError
+ *   }
+ * }
+ * ```
+ */
+declare class CssSyntaxError_ extends Error {
+  /**
+   * Source column of the error.
+   *
+   * ```js
+   * error.column       //=> 1
+   * error.input.column //=> 4
+   * ```
+   *
+   * PostCSS will use the input source map to detect the original location.
+   * If you need the position in the PostCSS input, use `error.input.column`.
+   */
+  column?: number
+
+  /**
+   * Source column of the error's end, exclusive. Provided if the error pertains
+   * to a range.
+   *
+   * ```js
+   * error.endColumn       //=> 1
+   * error.input.endColumn //=> 4
+   * ```
+   *
+   * PostCSS will use the input source map to detect the original location.
+   * If you need the position in the PostCSS input, use `error.input.endColumn`.
+   */
+  endColumn?: number
+
+  /**
+   * Source line of the error's end, exclusive. Provided if the error pertains
+   * to a range.
+   *
+   * ```js
+   * error.endLine       //=> 3
+   * error.input.endLine //=> 4
+   * ```
+   *
+   * PostCSS will use the input source map to detect the original location.
+   * If you need the position in the PostCSS input, use `error.input.endLine`.
+   */
+  endLine?: number
+
+  /**
+   * Absolute path to the broken file.
+   *
+   * ```js
+   * error.file       //=> 'a.sass'
+   * error.input.file //=> 'a.css'
+   * ```
+   *
+   * PostCSS will use the input source map to detect the original location.
+   * If you need the position in the PostCSS input, use `error.input.file`.
+   */
+  file?: string
+
+  /**
+   * Input object with PostCSS internal information
+   * about input file. If input has source map
+   * from previous tool, PostCSS will use origin
+   * (for example, Sass) source. You can use this
+   * object to get PostCSS input source.
+   *
+   * ```js
+   * error.input.file //=> 'a.css'
+   * error.file       //=> 'a.sass'
+   * ```
+   */
+  input?: FilePosition
+
+  /**
+   * Source line of the error.
+   *
+   * ```js
+   * error.line       //=> 2
+   * error.input.line //=> 4
+   * ```
+   *
+   * PostCSS will use the input source map to detect the original location.
+   * If you need the position in the PostCSS input, use `error.input.line`.
+   */
+  line?: number
+
+  /**
+   * Full error text in the GNU error format
+   * with plugin, file, line and column.
+   *
+   * ```js
+   * error.message //=> 'a.css:1:1: Unclosed block'
+   * ```
+   */
+  message: string
+
+  /**
+   * Always equal to `'CssSyntaxError'`. You should always check error type
+   * by `error.name === 'CssSyntaxError'`
+   * instead of `error instanceof CssSyntaxError`,
+   * because npm could have several PostCSS versions.
+   *
+   * ```js
+   * if (error.name === 'CssSyntaxError') {
+   *   error //=> CssSyntaxError
+   * }
+   * ```
+   */
+  name: 'CssSyntaxError'
+
+  /**
+   * Plugin name, if error came from plugin.
+   *
+   * ```js
+   * error.plugin //=> 'postcss-vars'
+   * ```
+   */
+  plugin?: string
+
+  /**
+   * Error message.
+   *
+   * ```js
+   * error.message //=> 'Unclosed block'
+   * ```
+   */
+  reason: string
+
+  /**
+   * Source code of the broken file.
+   *
+   * ```js
+   * error.source       //=> 'a { b {} }'
+   * error.input.source //=> 'a b { }'
+   * ```
+   */
+  source?: string
+
+  stack: string
+
+  /**
+   * Instantiates a CSS syntax error. Can be instantiated for a single position
+   * or for a range.
+   * @param message        Error message.
+   * @param lineOrStartPos If for a single position, the line number, or if for
+   *                       a range, the inclusive start position of the error.
+   * @param columnOrEndPos If for a single position, the column number, or if for
+   *                       a range, the exclusive end position of the error.
+   * @param source         Source code of the broken file.
+   * @param file           Absolute path to the broken file.
+   * @param plugin         PostCSS plugin name, if error came from plugin.
+   */
+  constructor(
+    message: string,
+    lineOrStartPos?: CssSyntaxError.RangePosition | number,
+    columnOrEndPos?: CssSyntaxError.RangePosition | number,
+    source?: string,
+    file?: string,
+    plugin?: string
+  )
+
+  /**
+   * Returns a few lines of CSS source that caused the error.
+   *
+   * If the CSS has an input source map without `sourceContent`,
+   * this method will return an empty string.
+   *
+   * ```js
+   * error.showSourceCode() //=> "  4 | }
+   *                        //      5 | a {
+   *                        //    > 6 |   bad
+   *                        //        |   ^
+   *                        //      7 | }
+   *                        //      8 | b {"
+   * ```
+   *
+   * @param color Whether arrow will be colored red by terminal
+   *              color codes. By default, PostCSS will detect
+   *              color support by `process.stdout.isTTY`
+   *              and `process.env.NODE_DISABLE_COLORS`.
+   * @return Few lines of CSS source that caused the error.
+   */
+  showSourceCode(color?: boolean): string
+
+  /**
+   * Returns error position, message and source code of the broken part.
+   *
+   * ```js
+   * error.toString() //=> "CssSyntaxError: app.css:1:1: Unclosed block
+   *                  //    > 1 | a {
+   *                  //        | ^"
+   * ```
+   *
+   * @return Error position, message and source code.
+   */
+  toString(): string
+}
+
+declare class CssSyntaxError extends CssSyntaxError_ {}
+
+export = CssSyntaxError
Index: node_modules/postcss/lib/css-syntax-error.js
===================================================================
--- node_modules/postcss/lib/css-syntax-error.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/css-syntax-error.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,133 @@
+'use strict'
+
+let pico = require('picocolors')
+
+let terminalHighlight = require('./terminal-highlight')
+
+class CssSyntaxError extends Error {
+  constructor(message, line, column, source, file, plugin) {
+    super(message)
+    this.name = 'CssSyntaxError'
+    this.reason = message
+
+    if (file) {
+      this.file = file
+    }
+    if (source) {
+      this.source = source
+    }
+    if (plugin) {
+      this.plugin = plugin
+    }
+    if (typeof line !== 'undefined' && typeof column !== 'undefined') {
+      if (typeof line === 'number') {
+        this.line = line
+        this.column = column
+      } else {
+        this.line = line.line
+        this.column = line.column
+        this.endLine = column.line
+        this.endColumn = column.column
+      }
+    }
+
+    this.setMessage()
+
+    if (Error.captureStackTrace) {
+      Error.captureStackTrace(this, CssSyntaxError)
+    }
+  }
+
+  setMessage() {
+    this.message = this.plugin ? this.plugin + ': ' : ''
+    this.message += this.file ? this.file : '<css input>'
+    if (typeof this.line !== 'undefined') {
+      this.message += ':' + this.line + ':' + this.column
+    }
+    this.message += ': ' + this.reason
+  }
+
+  showSourceCode(color) {
+    if (!this.source) return ''
+
+    let css = this.source
+    if (color == null) color = pico.isColorSupported
+
+    let aside = text => text
+    let mark = text => text
+    let highlight = text => text
+    if (color) {
+      let { bold, gray, red } = pico.createColors(true)
+      mark = text => bold(red(text))
+      aside = text => gray(text)
+      if (terminalHighlight) {
+        highlight = text => terminalHighlight(text)
+      }
+    }
+
+    let lines = css.split(/\r?\n/)
+    let start = Math.max(this.line - 3, 0)
+    let end = Math.min(this.line + 2, lines.length)
+    let maxWidth = String(end).length
+
+    return lines
+      .slice(start, end)
+      .map((line, index) => {
+        let number = start + 1 + index
+        let gutter = ' ' + (' ' + number).slice(-maxWidth) + ' | '
+        if (number === this.line) {
+          if (line.length > 160) {
+            let padding = 20
+            let subLineStart = Math.max(0, this.column - padding)
+            let subLineEnd = Math.max(
+              this.column + padding,
+              this.endColumn + padding
+            )
+            let subLine = line.slice(subLineStart, subLineEnd)
+
+            let spacing =
+              aside(gutter.replace(/\d/g, ' ')) +
+              line
+                .slice(0, Math.min(this.column - 1, padding - 1))
+                .replace(/[^\t]/g, ' ')
+
+            return (
+              mark('>') +
+              aside(gutter) +
+              highlight(subLine) +
+              '\n ' +
+              spacing +
+              mark('^')
+            )
+          }
+
+          let spacing =
+            aside(gutter.replace(/\d/g, ' ')) +
+            line.slice(0, this.column - 1).replace(/[^\t]/g, ' ')
+
+          return (
+            mark('>') +
+            aside(gutter) +
+            highlight(line) +
+            '\n ' +
+            spacing +
+            mark('^')
+          )
+        }
+
+        return ' ' + aside(gutter) + highlight(line)
+      })
+      .join('\n')
+  }
+
+  toString() {
+    let code = this.showSourceCode()
+    if (code) {
+      code = '\n\n' + code + '\n'
+    }
+    return this.name + ': ' + this.message + code
+  }
+}
+
+module.exports = CssSyntaxError
+CssSyntaxError.default = CssSyntaxError
Index: node_modules/postcss/lib/declaration.d.ts
===================================================================
--- node_modules/postcss/lib/declaration.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/declaration.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,151 @@
+import { ContainerWithChildren } from './container.js'
+import Node from './node.js'
+
+declare namespace Declaration {
+  export interface DeclarationRaws extends Record<string, unknown> {
+    /**
+     * The space symbols before the node. It also stores `*`
+     * and `_` symbols before the declaration (IE hack).
+     */
+    before?: string
+
+    /**
+     * The symbols between the property and value for declarations.
+     */
+    between?: string
+
+    /**
+     * The content of the important statement, if it is not just `!important`.
+     */
+    important?: string
+
+    /**
+     * Declaration value with comments.
+     */
+    value?: {
+      raw: string
+      value: string
+    }
+  }
+
+  export interface DeclarationProps {
+    /** Whether the declaration has an `!important` annotation. */
+    important?: boolean
+    /** Name of the declaration. */
+    prop: string
+    /** Information used to generate byte-to-byte equal node string as it was in the origin input. */
+    raws?: DeclarationRaws
+    /** Value of the declaration. */
+    value: string
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Declaration_ as default }
+}
+
+/**
+ * It represents a class that handles
+ * [CSS declarations](https://developer.mozilla.org/en-US/docs/Web/CSS/Syntax#css_declarations)
+ *
+ * ```js
+ * Once (root, { Declaration }) {
+ *   const color = new Declaration({ prop: 'color', value: 'black' })
+ *   root.append(color)
+ * }
+ * ```
+ *
+ * ```js
+ * const root = postcss.parse('a { color: black }')
+ * const decl = root.first?.first
+ *
+ * decl.type       //=> 'decl'
+ * decl.toString() //=> ' color: black'
+ * ```
+ */
+declare class Declaration_ extends Node {
+  parent: ContainerWithChildren | undefined
+  raws: Declaration.DeclarationRaws
+
+  type: 'decl'
+
+  /**
+   * It represents a specificity of the declaration.
+   *
+   * If true, the CSS declaration will have an
+   * [important](https://developer.mozilla.org/en-US/docs/Web/CSS/important)
+   * specifier.
+   *
+   * ```js
+   * const root = postcss.parse('a { color: black !important; color: red }')
+   *
+   * root.first.first.important //=> true
+   * root.first.last.important  //=> undefined
+   * ```
+   */
+  get important(): boolean
+  set important(value: boolean)
+
+  /**
+   * The property name for a CSS declaration.
+   *
+   * ```js
+   * const root = postcss.parse('a { color: black }')
+   * const decl = root.first.first
+   *
+   * decl.prop //=> 'color'
+   * ```
+   */
+  get prop(): string
+
+  set prop(value: string)
+
+  /**
+   * The property value for a CSS declaration.
+   *
+   * Any CSS comments inside the value string will be filtered out.
+   * CSS comments present in the source value will be available in
+   * the `raws` property.
+   *
+   * Assigning new `value` would ignore the comments in `raws`
+   * property while compiling node to string.
+   *
+   * ```js
+   * const root = postcss.parse('a { color: black }')
+   * const decl = root.first.first
+   *
+   * decl.value //=> 'black'
+   * ```
+   */
+  get value(): string
+  set value(value: string)
+
+  /**
+   * It represents a getter that returns `true` if a declaration starts with
+   * `--` or `$`, which are used to declare variables in CSS and SASS/SCSS.
+   *
+   * ```js
+   * const root = postcss.parse(':root { --one: 1 }')
+   * const one = root.first.first
+   *
+   * one.variable //=> true
+   * ```
+   *
+   * ```js
+   * const root = postcss.parse('$one: 1')
+   * const one = root.first
+   *
+   * one.variable //=> true
+   * ```
+   */
+  get variable(): boolean
+  constructor(defaults?: Declaration.DeclarationProps)
+
+  assign(overrides: Declaration.DeclarationProps | object): this
+  clone(overrides?: Partial<Declaration.DeclarationProps>): this
+  cloneAfter(overrides?: Partial<Declaration.DeclarationProps>): this
+  cloneBefore(overrides?: Partial<Declaration.DeclarationProps>): this
+}
+
+declare class Declaration extends Declaration_ {}
+
+export = Declaration
Index: node_modules/postcss/lib/declaration.js
===================================================================
--- node_modules/postcss/lib/declaration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/declaration.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,24 @@
+'use strict'
+
+let Node = require('./node')
+
+class Declaration extends Node {
+  get variable() {
+    return this.prop.startsWith('--') || this.prop[0] === '$'
+  }
+
+  constructor(defaults) {
+    if (
+      defaults &&
+      typeof defaults.value !== 'undefined' &&
+      typeof defaults.value !== 'string'
+    ) {
+      defaults = { ...defaults, value: String(defaults.value) }
+    }
+    super(defaults)
+    this.type = 'decl'
+  }
+}
+
+module.exports = Declaration
+Declaration.default = Declaration
Index: node_modules/postcss/lib/document.d.ts
===================================================================
--- node_modules/postcss/lib/document.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/document.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,69 @@
+import Container, { ContainerProps } from './container.js'
+import { ProcessOptions } from './postcss.js'
+import Result from './result.js'
+import Root from './root.js'
+
+declare namespace Document {
+  export interface DocumentProps extends ContainerProps {
+    nodes?: readonly Root[]
+
+    /**
+     * Information to generate byte-to-byte equal node string as it was
+     * in the origin input.
+     *
+     * Every parser saves its own properties.
+     */
+    raws?: Record<string, any>
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Document_ as default }
+}
+
+/**
+ * Represents a file and contains all its parsed nodes.
+ *
+ * **Experimental:** some aspects of this node could change within minor
+ * or patch version releases.
+ *
+ * ```js
+ * const document = htmlParser(
+ *   '<html><style>a{color:black}</style><style>b{z-index:2}</style>'
+ * )
+ * document.type         //=> 'document'
+ * document.nodes.length //=> 2
+ * ```
+ */
+declare class Document_ extends Container<Root> {
+  nodes: Root[]
+  parent: undefined
+  type: 'document'
+
+  constructor(defaults?: Document.DocumentProps)
+
+  assign(overrides: Document.DocumentProps | object): this
+  clone(overrides?: Partial<Document.DocumentProps>): this
+  cloneAfter(overrides?: Partial<Document.DocumentProps>): this
+  cloneBefore(overrides?: Partial<Document.DocumentProps>): this
+
+  /**
+   * Returns a `Result` instance representing the document’s CSS roots.
+   *
+   * ```js
+   * const root1 = postcss.parse(css1, { from: 'a.css' })
+   * const root2 = postcss.parse(css2, { from: 'b.css' })
+   * const document = postcss.document()
+   * document.append(root1)
+   * document.append(root2)
+   * const result = document.toResult({ to: 'all.css', map: true })
+   * ```
+   *
+   * @param opts Options.
+   * @return Result with current document’s CSS.
+   */
+  toResult(options?: ProcessOptions): Result
+}
+
+declare class Document extends Document_ {}
+
+export = Document
Index: node_modules/postcss/lib/document.js
===================================================================
--- node_modules/postcss/lib/document.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/document.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,33 @@
+'use strict'
+
+let Container = require('./container')
+
+let LazyResult, Processor
+
+class Document extends Container {
+  constructor(defaults) {
+    // type needs to be passed to super, otherwise child roots won't be normalized correctly
+    super({ type: 'document', ...defaults })
+
+    if (!this.nodes) {
+      this.nodes = []
+    }
+  }
+
+  toResult(opts = {}) {
+    let lazy = new LazyResult(new Processor(), this, opts)
+
+    return lazy.stringify()
+  }
+}
+
+Document.registerLazyResult = dependant => {
+  LazyResult = dependant
+}
+
+Document.registerProcessor = dependant => {
+  Processor = dependant
+}
+
+module.exports = Document
+Document.default = Document
Index: node_modules/postcss/lib/fromJSON.d.ts
===================================================================
--- node_modules/postcss/lib/fromJSON.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/fromJSON.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,9 @@
+import { JSONHydrator } from './postcss.js'
+
+interface FromJSON extends JSONHydrator {
+  default: FromJSON
+}
+
+declare const fromJSON: FromJSON
+
+export = fromJSON
Index: node_modules/postcss/lib/fromJSON.js
===================================================================
--- node_modules/postcss/lib/fromJSON.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/fromJSON.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,54 @@
+'use strict'
+
+let AtRule = require('./at-rule')
+let Comment = require('./comment')
+let Declaration = require('./declaration')
+let Input = require('./input')
+let PreviousMap = require('./previous-map')
+let Root = require('./root')
+let Rule = require('./rule')
+
+function fromJSON(json, inputs) {
+  if (Array.isArray(json)) return json.map(n => fromJSON(n))
+
+  let { inputs: ownInputs, ...defaults } = json
+  if (ownInputs) {
+    inputs = []
+    for (let input of ownInputs) {
+      let inputHydrated = { ...input, __proto__: Input.prototype }
+      if (inputHydrated.map) {
+        inputHydrated.map = {
+          ...inputHydrated.map,
+          __proto__: PreviousMap.prototype
+        }
+      }
+      inputs.push(inputHydrated)
+    }
+  }
+  if (defaults.nodes) {
+    defaults.nodes = json.nodes.map(n => fromJSON(n, inputs))
+  }
+  if (defaults.source) {
+    let { inputId, ...source } = defaults.source
+    defaults.source = source
+    if (inputId != null) {
+      defaults.source.input = inputs[inputId]
+    }
+  }
+  if (defaults.type === 'root') {
+    return new Root(defaults)
+  } else if (defaults.type === 'decl') {
+    return new Declaration(defaults)
+  } else if (defaults.type === 'rule') {
+    return new Rule(defaults)
+  } else if (defaults.type === 'comment') {
+    return new Comment(defaults)
+  } else if (defaults.type === 'atrule') {
+    return new AtRule(defaults)
+  } else {
+    throw new Error('Unknown node type: ' + json.type)
+  }
+}
+
+module.exports = fromJSON
+fromJSON.default = fromJSON
Index: node_modules/postcss/lib/input.d.ts
===================================================================
--- node_modules/postcss/lib/input.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/input.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,227 @@
+import { CssSyntaxError, ProcessOptions } from './postcss.js'
+import PreviousMap from './previous-map.js'
+
+declare namespace Input {
+  export interface FilePosition {
+    /**
+     * Column of inclusive start position in source file.
+     */
+    column: number
+
+    /**
+     * Column of exclusive end position in source file.
+     */
+    endColumn?: number
+
+    /**
+     * Line of exclusive end position in source file.
+     */
+    endLine?: number
+
+    /**
+     * Offset of exclusive end position in source file.
+     */
+    endOffset?: number
+
+    /**
+     * Absolute path to the source file.
+     */
+    file?: string
+
+    /**
+     * Line of inclusive start position in source file.
+     */
+    line: number
+
+    /**
+     * Offset of inclusive start position in source file.
+     */
+    offset: number
+
+    /**
+     * Source code.
+     */
+    source?: string
+
+    /**
+     * URL for the source file.
+     */
+    url: string
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Input_ as default }
+}
+
+/**
+ * Represents the source CSS.
+ *
+ * ```js
+ * const root  = postcss.parse(css, { from: file })
+ * const input = root.source.input
+ * ```
+ */
+declare class Input_ {
+  /**
+   * Input CSS source.
+   *
+   * ```js
+   * const input = postcss.parse('a{}', { from: file }).input
+   * input.css //=> "a{}"
+   * ```
+   */
+  css: string
+
+  /**
+   * Input source with support for non-CSS documents.
+   *
+   * ```js
+   * const input = postcss.parse('a{}', { from: file, document: '<style>a {}</style>' }).input
+   * input.document //=> "<style>a {}</style>"
+   * input.css //=> "a{}"
+   * ```
+   */
+  document: string
+
+  /**
+   * The absolute path to the CSS source file defined
+   * with the `from` option.
+   *
+   * ```js
+   * const root = postcss.parse(css, { from: 'a.css' })
+   * root.source.input.file //=> '/home/ai/a.css'
+   * ```
+   */
+  file?: string
+
+  /**
+   * The flag to indicate whether or not the source code has Unicode BOM.
+   */
+  hasBOM: boolean
+
+  /**
+   * The unique ID of the CSS source. It will be created if `from` option
+   * is not provided (because PostCSS does not know the file path).
+   *
+   * ```js
+   * const root = postcss.parse(css)
+   * root.source.input.file //=> undefined
+   * root.source.input.id   //=> "<input css 8LZeVF>"
+   * ```
+   */
+  id?: string
+
+  /**
+   * The input source map passed from a compilation step before PostCSS
+   * (for example, from Sass compiler).
+   *
+   * ```js
+   * root.source.input.map.consumer().sources //=> ['a.sass']
+   * ```
+   */
+  map: PreviousMap
+
+  /**
+   * The CSS source identifier. Contains `Input#file` if the user
+   * set the `from` option, or `Input#id` if they did not.
+   *
+   * ```js
+   * const root = postcss.parse(css, { from: 'a.css' })
+   * root.source.input.from //=> "/home/ai/a.css"
+   *
+   * const root = postcss.parse(css)
+   * root.source.input.from //=> "<input css 1>"
+   * ```
+   */
+  get from(): string
+
+  /**
+   * @param css  Input CSS source.
+   * @param opts Process options.
+   */
+  constructor(css: string, opts?: ProcessOptions)
+
+  /**
+   * Returns `CssSyntaxError` with information about the error and its position.
+   */
+  error(
+    message: string,
+    start:
+      | {
+          column: number
+          line: number
+        }
+      | {
+          offset: number
+        },
+    end:
+      | {
+          column: number
+          line: number
+        }
+      | {
+          offset: number
+        },
+    opts?: { plugin?: CssSyntaxError['plugin'] }
+  ): CssSyntaxError
+  error(
+    message: string,
+    line: number,
+    column: number,
+    opts?: { plugin?: CssSyntaxError['plugin'] }
+  ): CssSyntaxError
+  error(
+    message: string,
+    offset: number,
+    opts?: { plugin?: CssSyntaxError['plugin'] }
+  ): CssSyntaxError
+
+  /**
+   * Converts source line and column to offset.
+   *
+   * @param line   Source line.
+   * @param column Source column.
+   * @return Source offset.
+   */
+  fromLineAndColumn(line: number, column: number): number
+
+  /**
+   * Converts source offset to line and column.
+   *
+   * @param offset Source offset.
+   */
+  fromOffset(offset: number): { col: number; line: number } | null
+
+  /**
+   * Reads the input source map and returns a symbol position
+   * in the input source (e.g., in a Sass file that was compiled
+   * to CSS before being passed to PostCSS). Optionally takes an
+   * end position, exclusive.
+   *
+   * ```js
+   * root.source.input.origin(1, 1) //=> { file: 'a.css', line: 3, column: 1 }
+   * root.source.input.origin(1, 1, 1, 4)
+   * //=> { file: 'a.css', line: 3, column: 1, endLine: 3, endColumn: 4 }
+   * ```
+   *
+   * @param line      Line for inclusive start position in input CSS.
+   * @param column    Column for inclusive start position in input CSS.
+   * @param endLine   Line for exclusive end position in input CSS.
+   * @param endColumn Column for exclusive end position in input CSS.
+   *
+   * @return Position in input source.
+   */
+  origin(
+    line: number,
+    column: number,
+    endLine?: number,
+    endColumn?: number
+  ): false | Input.FilePosition
+
+  /** Converts this to a JSON-friendly object representation. */
+  toJSON(): object
+}
+
+declare class Input extends Input_ {}
+
+export = Input
Index: node_modules/postcss/lib/input.js
===================================================================
--- node_modules/postcss/lib/input.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/input.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,265 @@
+'use strict'
+
+let { nanoid } = require('nanoid/non-secure')
+let { isAbsolute, resolve } = require('path')
+let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js')
+let { fileURLToPath, pathToFileURL } = require('url')
+
+let CssSyntaxError = require('./css-syntax-error')
+let PreviousMap = require('./previous-map')
+let terminalHighlight = require('./terminal-highlight')
+
+let lineToIndexCache = Symbol('lineToIndexCache')
+
+let sourceMapAvailable = Boolean(SourceMapConsumer && SourceMapGenerator)
+let pathAvailable = Boolean(resolve && isAbsolute)
+
+function getLineToIndex(input) {
+  if (input[lineToIndexCache]) return input[lineToIndexCache]
+  let lines = input.css.split('\n')
+  let lineToIndex = new Array(lines.length)
+  let prevIndex = 0
+
+  for (let i = 0, l = lines.length; i < l; i++) {
+    lineToIndex[i] = prevIndex
+    prevIndex += lines[i].length + 1
+  }
+
+  input[lineToIndexCache] = lineToIndex
+  return lineToIndex
+}
+
+class Input {
+  get from() {
+    return this.file || this.id
+  }
+
+  constructor(css, opts = {}) {
+    if (
+      css === null ||
+      typeof css === 'undefined' ||
+      (typeof css === 'object' && !css.toString)
+    ) {
+      throw new Error(`PostCSS received ${css} instead of CSS string`)
+    }
+
+    this.css = css.toString()
+
+    if (this.css[0] === '\uFEFF' || this.css[0] === '\uFFFE') {
+      this.hasBOM = true
+      this.css = this.css.slice(1)
+    } else {
+      this.hasBOM = false
+    }
+
+    this.document = this.css
+    if (opts.document) this.document = opts.document.toString()
+
+    if (opts.from) {
+      if (
+        !pathAvailable ||
+        /^\w+:\/\//.test(opts.from) ||
+        isAbsolute(opts.from)
+      ) {
+        this.file = opts.from
+      } else {
+        this.file = resolve(opts.from)
+      }
+    }
+
+    if (pathAvailable && sourceMapAvailable) {
+      let map = new PreviousMap(this.css, opts)
+      if (map.text) {
+        this.map = map
+        let file = map.consumer().file
+        if (!this.file && file) this.file = this.mapResolve(file)
+      }
+    }
+
+    if (!this.file) {
+      this.id = '<input css ' + nanoid(6) + '>'
+    }
+    if (this.map) this.map.file = this.from
+  }
+
+  error(message, line, column, opts = {}) {
+    let endColumn, endLine, endOffset, offset, result
+
+    if (line && typeof line === 'object') {
+      let start = line
+      let end = column
+      if (typeof start.offset === 'number') {
+        offset = start.offset
+        let pos = this.fromOffset(offset)
+        line = pos.line
+        column = pos.col
+      } else {
+        line = start.line
+        column = start.column
+        offset = this.fromLineAndColumn(line, column)
+      }
+      if (typeof end.offset === 'number') {
+        endOffset = end.offset
+        let pos = this.fromOffset(endOffset)
+        endLine = pos.line
+        endColumn = pos.col
+      } else {
+        endLine = end.line
+        endColumn = end.column
+        endOffset = this.fromLineAndColumn(end.line, end.column)
+      }
+    } else if (!column) {
+      offset = line
+      let pos = this.fromOffset(offset)
+      line = pos.line
+      column = pos.col
+    } else {
+      offset = this.fromLineAndColumn(line, column)
+    }
+
+    let origin = this.origin(line, column, endLine, endColumn)
+    if (origin) {
+      result = new CssSyntaxError(
+        message,
+        origin.endLine === undefined
+          ? origin.line
+          : { column: origin.column, line: origin.line },
+        origin.endLine === undefined
+          ? origin.column
+          : { column: origin.endColumn, line: origin.endLine },
+        origin.source,
+        origin.file,
+        opts.plugin
+      )
+    } else {
+      result = new CssSyntaxError(
+        message,
+        endLine === undefined ? line : { column, line },
+        endLine === undefined ? column : { column: endColumn, line: endLine },
+        this.css,
+        this.file,
+        opts.plugin
+      )
+    }
+
+    result.input = { column, endColumn, endLine, endOffset, line, offset, source: this.css }
+    if (this.file) {
+      if (pathToFileURL) {
+        result.input.url = pathToFileURL(this.file).toString()
+      }
+      result.input.file = this.file
+    }
+
+    return result
+  }
+
+  fromLineAndColumn(line, column) {
+    let lineToIndex = getLineToIndex(this)
+    let index = lineToIndex[line - 1]
+    return index + column - 1
+  }
+
+  fromOffset(offset) {
+    let lineToIndex = getLineToIndex(this)
+    let lastLine = lineToIndex[lineToIndex.length - 1]
+
+    let min = 0
+    if (offset >= lastLine) {
+      min = lineToIndex.length - 1
+    } else {
+      let max = lineToIndex.length - 2
+      let mid
+      while (min < max) {
+        mid = min + ((max - min) >> 1)
+        if (offset < lineToIndex[mid]) {
+          max = mid - 1
+        } else if (offset >= lineToIndex[mid + 1]) {
+          min = mid + 1
+        } else {
+          min = mid
+          break
+        }
+      }
+    }
+    return {
+      col: offset - lineToIndex[min] + 1,
+      line: min + 1
+    }
+  }
+
+  mapResolve(file) {
+    if (/^\w+:\/\//.test(file)) {
+      return file
+    }
+    return resolve(this.map.consumer().sourceRoot || this.map.root || '.', file)
+  }
+
+  origin(line, column, endLine, endColumn) {
+    if (!this.map) return false
+    let consumer = this.map.consumer()
+
+    let from = consumer.originalPositionFor({ column, line })
+    if (!from.source) return false
+
+    let to
+    if (typeof endLine === 'number') {
+      to = consumer.originalPositionFor({ column: endColumn, line: endLine })
+    }
+
+    let fromUrl
+
+    if (isAbsolute(from.source)) {
+      fromUrl = pathToFileURL(from.source)
+    } else {
+      fromUrl = new URL(
+        from.source,
+        this.map.consumer().sourceRoot || pathToFileURL(this.map.mapFile)
+      )
+    }
+
+    let result = {
+      column: from.column,
+      endColumn: to && to.column,
+      endLine: to && to.line,
+      line: from.line,
+      url: fromUrl.toString()
+    }
+
+    if (fromUrl.protocol === 'file:') {
+      if (fileURLToPath) {
+        result.file = fileURLToPath(fromUrl)
+      } else {
+        /* c8 ignore next 2 */
+        throw new Error(`file: protocol is not available in this PostCSS build`)
+      }
+    }
+
+    let source = consumer.sourceContentFor(from.source)
+    if (source) result.source = source
+
+    return result
+  }
+
+  toJSON() {
+    let json = {}
+    for (let name of ['hasBOM', 'css', 'file', 'id']) {
+      if (this[name] != null) {
+        json[name] = this[name]
+      }
+    }
+    if (this.map) {
+      json.map = { ...this.map }
+      if (json.map.consumerCache) {
+        json.map.consumerCache = undefined
+      }
+    }
+    return json
+  }
+}
+
+module.exports = Input
+Input.default = Input
+
+if (terminalHighlight && terminalHighlight.registerInput) {
+  terminalHighlight.registerInput(Input)
+}
Index: node_modules/postcss/lib/lazy-result.d.ts
===================================================================
--- node_modules/postcss/lib/lazy-result.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/lazy-result.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,190 @@
+import Document from './document.js'
+import { SourceMap } from './postcss.js'
+import Processor from './processor.js'
+import Result, { Message, ResultOptions } from './result.js'
+import Root from './root.js'
+import Warning from './warning.js'
+
+declare namespace LazyResult {
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { LazyResult_ as default }
+}
+
+/**
+ * A Promise proxy for the result of PostCSS transformations.
+ *
+ * A `LazyResult` instance is returned by `Processor#process`.
+ *
+ * ```js
+ * const lazy = postcss([autoprefixer]).process(css)
+ * ```
+ */
+declare class LazyResult_<RootNode = Document | Root>
+  implements PromiseLike<Result<RootNode>>
+{
+  /**
+   * Processes input CSS through synchronous and asynchronous plugins
+   * and calls onRejected for each error thrown in any plugin.
+   *
+   * It implements standard Promise API.
+   *
+   * ```js
+   * postcss([autoprefixer]).process(css).then(result => {
+   *   console.log(result.css)
+   * }).catch(error => {
+   *   console.error(error)
+   * })
+   * ```
+   */
+  catch: Promise<Result<RootNode>>['catch']
+
+  /**
+   * Processes input CSS through synchronous and asynchronous plugins
+   * and calls onFinally on any error or when all plugins will finish work.
+   *
+   * It implements standard Promise API.
+   *
+   * ```js
+   * postcss([autoprefixer]).process(css).finally(() => {
+   *   console.log('processing ended')
+   * })
+   * ```
+   */
+  finally: Promise<Result<RootNode>>['finally']
+
+  /**
+   * Processes input CSS through synchronous and asynchronous plugins
+   * and calls `onFulfilled` with a Result instance. If a plugin throws
+   * an error, the `onRejected` callback will be executed.
+   *
+   * It implements standard Promise API.
+   *
+   * ```js
+   * postcss([autoprefixer]).process(css, { from: cssPath }).then(result => {
+   *   console.log(result.css)
+   * })
+   * ```
+   */
+  then: Promise<Result<RootNode>>['then']
+
+  /**
+   * An alias for the `css` property. Use it with syntaxes
+   * that generate non-CSS output.
+   *
+   * This property will only work with synchronous plugins.
+   * If the processor contains any asynchronous plugins
+   * it will throw an error.
+   *
+   * PostCSS runners should always use `LazyResult#then`.
+   */
+  get content(): string
+
+  /**
+   * Processes input CSS through synchronous plugins, converts `Root`
+   * to a CSS string and returns `Result#css`.
+   *
+   * This property will only work with synchronous plugins.
+   * If the processor contains any asynchronous plugins
+   * it will throw an error.
+   *
+   * PostCSS runners should always use `LazyResult#then`.
+   */
+  get css(): string
+
+  /**
+   * Processes input CSS through synchronous plugins
+   * and returns `Result#map`.
+   *
+   * This property will only work with synchronous plugins.
+   * If the processor contains any asynchronous plugins
+   * it will throw an error.
+   *
+   * PostCSS runners should always use `LazyResult#then`.
+   */
+  get map(): SourceMap
+
+  /**
+   * Processes input CSS through synchronous plugins
+   * and returns `Result#messages`.
+   *
+   * This property will only work with synchronous plugins. If the processor
+   * contains any asynchronous plugins it will throw an error.
+   *
+   * PostCSS runners should always use `LazyResult#then`.
+   */
+  get messages(): Message[]
+
+  /**
+   * Options from the `Processor#process` call.
+   */
+  get opts(): ResultOptions
+
+  /**
+   * Returns a `Processor` instance, which will be used
+   * for CSS transformations.
+   */
+  get processor(): Processor
+
+  /**
+   * Processes input CSS through synchronous plugins
+   * and returns `Result#root`.
+   *
+   * This property will only work with synchronous plugins. If the processor
+   * contains any asynchronous plugins it will throw an error.
+   *
+   * PostCSS runners should always use `LazyResult#then`.
+   */
+  get root(): RootNode
+
+  /**
+   * Returns the default string description of an object.
+   * Required to implement the Promise interface.
+   */
+  get [Symbol.toStringTag](): string
+
+  /**
+   * @param processor Processor used for this transformation.
+   * @param css       CSS to parse and transform.
+   * @param opts      Options from the `Processor#process` or `Root#toResult`.
+   */
+  constructor(processor: Processor, css: string, opts: ResultOptions)
+
+  /**
+   * Run plugin in async way and return `Result`.
+   *
+   * @return Result with output content.
+   */
+  async(): Promise<Result<RootNode>>
+
+  /**
+   * Run plugin in sync way and return `Result`.
+   *
+   * @return Result with output content.
+   */
+  sync(): Result<RootNode>
+
+  /**
+   * Alias for the `LazyResult#css` property.
+   *
+   * ```js
+   * lazy + '' === lazy.css
+   * ```
+   *
+   * @return Output CSS.
+   */
+  toString(): string
+
+  /**
+   * Processes input CSS through synchronous plugins
+   * and calls `Result#warnings`.
+   *
+   * @return Warnings from plugins.
+   */
+  warnings(): Warning[]
+}
+
+declare class LazyResult<
+  RootNode = Document | Root
+> extends LazyResult_<RootNode> {}
+
+export = LazyResult
Index: node_modules/postcss/lib/lazy-result.js
===================================================================
--- node_modules/postcss/lib/lazy-result.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/lazy-result.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,550 @@
+'use strict'
+
+let Container = require('./container')
+let Document = require('./document')
+let MapGenerator = require('./map-generator')
+let parse = require('./parse')
+let Result = require('./result')
+let Root = require('./root')
+let stringify = require('./stringify')
+let { isClean, my } = require('./symbols')
+let warnOnce = require('./warn-once')
+
+const TYPE_TO_CLASS_NAME = {
+  atrule: 'AtRule',
+  comment: 'Comment',
+  decl: 'Declaration',
+  document: 'Document',
+  root: 'Root',
+  rule: 'Rule'
+}
+
+const PLUGIN_PROPS = {
+  AtRule: true,
+  AtRuleExit: true,
+  Comment: true,
+  CommentExit: true,
+  Declaration: true,
+  DeclarationExit: true,
+  Document: true,
+  DocumentExit: true,
+  Once: true,
+  OnceExit: true,
+  postcssPlugin: true,
+  prepare: true,
+  Root: true,
+  RootExit: true,
+  Rule: true,
+  RuleExit: true
+}
+
+const NOT_VISITORS = {
+  Once: true,
+  postcssPlugin: true,
+  prepare: true
+}
+
+const CHILDREN = 0
+
+function isPromise(obj) {
+  return typeof obj === 'object' && typeof obj.then === 'function'
+}
+
+function getEvents(node) {
+  let key = false
+  let type = TYPE_TO_CLASS_NAME[node.type]
+  if (node.type === 'decl') {
+    key = node.prop.toLowerCase()
+  } else if (node.type === 'atrule') {
+    key = node.name.toLowerCase()
+  }
+
+  if (key && node.append) {
+    return [
+      type,
+      type + '-' + key,
+      CHILDREN,
+      type + 'Exit',
+      type + 'Exit-' + key
+    ]
+  } else if (key) {
+    return [type, type + '-' + key, type + 'Exit', type + 'Exit-' + key]
+  } else if (node.append) {
+    return [type, CHILDREN, type + 'Exit']
+  } else {
+    return [type, type + 'Exit']
+  }
+}
+
+function toStack(node) {
+  let events
+  if (node.type === 'document') {
+    events = ['Document', CHILDREN, 'DocumentExit']
+  } else if (node.type === 'root') {
+    events = ['Root', CHILDREN, 'RootExit']
+  } else {
+    events = getEvents(node)
+  }
+
+  return {
+    eventIndex: 0,
+    events,
+    iterator: 0,
+    node,
+    visitorIndex: 0,
+    visitors: []
+  }
+}
+
+function cleanMarks(node) {
+  node[isClean] = false
+  if (node.nodes) node.nodes.forEach(i => cleanMarks(i))
+  return node
+}
+
+let postcss = {}
+
+class LazyResult {
+  get content() {
+    return this.stringify().content
+  }
+
+  get css() {
+    return this.stringify().css
+  }
+
+  get map() {
+    return this.stringify().map
+  }
+
+  get messages() {
+    return this.sync().messages
+  }
+
+  get opts() {
+    return this.result.opts
+  }
+
+  get processor() {
+    return this.result.processor
+  }
+
+  get root() {
+    return this.sync().root
+  }
+
+  get [Symbol.toStringTag]() {
+    return 'LazyResult'
+  }
+
+  constructor(processor, css, opts) {
+    this.stringified = false
+    this.processed = false
+
+    let root
+    if (
+      typeof css === 'object' &&
+      css !== null &&
+      (css.type === 'root' || css.type === 'document')
+    ) {
+      root = cleanMarks(css)
+    } else if (css instanceof LazyResult || css instanceof Result) {
+      root = cleanMarks(css.root)
+      if (css.map) {
+        if (typeof opts.map === 'undefined') opts.map = {}
+        if (!opts.map.inline) opts.map.inline = false
+        opts.map.prev = css.map
+      }
+    } else {
+      let parser = parse
+      if (opts.syntax) parser = opts.syntax.parse
+      if (opts.parser) parser = opts.parser
+      if (parser.parse) parser = parser.parse
+
+      try {
+        root = parser(css, opts)
+      } catch (error) {
+        this.processed = true
+        this.error = error
+      }
+
+      if (root && !root[my]) {
+        /* c8 ignore next 2 */
+        Container.rebuild(root)
+      }
+    }
+
+    this.result = new Result(processor, root, opts)
+    this.helpers = { ...postcss, postcss, result: this.result }
+    this.plugins = this.processor.plugins.map(plugin => {
+      if (typeof plugin === 'object' && plugin.prepare) {
+        return { ...plugin, ...plugin.prepare(this.result) }
+      } else {
+        return plugin
+      }
+    })
+  }
+
+  async() {
+    if (this.error) return Promise.reject(this.error)
+    if (this.processed) return Promise.resolve(this.result)
+    if (!this.processing) {
+      this.processing = this.runAsync()
+    }
+    return this.processing
+  }
+
+  catch(onRejected) {
+    return this.async().catch(onRejected)
+  }
+
+  finally(onFinally) {
+    return this.async().then(onFinally, onFinally)
+  }
+
+  getAsyncError() {
+    throw new Error('Use process(css).then(cb) to work with async plugins')
+  }
+
+  handleError(error, node) {
+    let plugin = this.result.lastPlugin
+    try {
+      if (node) node.addToError(error)
+      this.error = error
+      if (error.name === 'CssSyntaxError' && !error.plugin) {
+        error.plugin = plugin.postcssPlugin
+        error.setMessage()
+      } else if (plugin.postcssVersion) {
+        if (process.env.NODE_ENV !== 'production') {
+          let pluginName = plugin.postcssPlugin
+          let pluginVer = plugin.postcssVersion
+          let runtimeVer = this.result.processor.version
+          let a = pluginVer.split('.')
+          let b = runtimeVer.split('.')
+
+          if (a[0] !== b[0] || parseInt(a[1]) > parseInt(b[1])) {
+            // eslint-disable-next-line no-console
+            console.error(
+              'Unknown error from PostCSS plugin. Your current PostCSS ' +
+                'version is ' +
+                runtimeVer +
+                ', but ' +
+                pluginName +
+                ' uses ' +
+                pluginVer +
+                '. Perhaps this is the source of the error below.'
+            )
+          }
+        }
+      }
+    } catch (err) {
+      /* c8 ignore next 3 */
+      // eslint-disable-next-line no-console
+      if (console && console.error) console.error(err)
+    }
+    return error
+  }
+
+  prepareVisitors() {
+    this.listeners = {}
+    let add = (plugin, type, cb) => {
+      if (!this.listeners[type]) this.listeners[type] = []
+      this.listeners[type].push([plugin, cb])
+    }
+    for (let plugin of this.plugins) {
+      if (typeof plugin === 'object') {
+        for (let event in plugin) {
+          if (!PLUGIN_PROPS[event] && /^[A-Z]/.test(event)) {
+            throw new Error(
+              `Unknown event ${event} in ${plugin.postcssPlugin}. ` +
+                `Try to update PostCSS (${this.processor.version} now).`
+            )
+          }
+          if (!NOT_VISITORS[event]) {
+            if (typeof plugin[event] === 'object') {
+              for (let filter in plugin[event]) {
+                if (filter === '*') {
+                  add(plugin, event, plugin[event][filter])
+                } else {
+                  add(
+                    plugin,
+                    event + '-' + filter.toLowerCase(),
+                    plugin[event][filter]
+                  )
+                }
+              }
+            } else if (typeof plugin[event] === 'function') {
+              add(plugin, event, plugin[event])
+            }
+          }
+        }
+      }
+    }
+    this.hasListener = Object.keys(this.listeners).length > 0
+  }
+
+  async runAsync() {
+    this.plugin = 0
+    for (let i = 0; i < this.plugins.length; i++) {
+      let plugin = this.plugins[i]
+      let promise = this.runOnRoot(plugin)
+      if (isPromise(promise)) {
+        try {
+          await promise
+        } catch (error) {
+          throw this.handleError(error)
+        }
+      }
+    }
+
+    this.prepareVisitors()
+    if (this.hasListener) {
+      let root = this.result.root
+      while (!root[isClean]) {
+        root[isClean] = true
+        let stack = [toStack(root)]
+        while (stack.length > 0) {
+          let promise = this.visitTick(stack)
+          if (isPromise(promise)) {
+            try {
+              await promise
+            } catch (e) {
+              let node = stack[stack.length - 1].node
+              throw this.handleError(e, node)
+            }
+          }
+        }
+      }
+
+      if (this.listeners.OnceExit) {
+        for (let [plugin, visitor] of this.listeners.OnceExit) {
+          this.result.lastPlugin = plugin
+          try {
+            if (root.type === 'document') {
+              let roots = root.nodes.map(subRoot =>
+                visitor(subRoot, this.helpers)
+              )
+
+              await Promise.all(roots)
+            } else {
+              await visitor(root, this.helpers)
+            }
+          } catch (e) {
+            throw this.handleError(e)
+          }
+        }
+      }
+    }
+
+    this.processed = true
+    return this.stringify()
+  }
+
+  runOnRoot(plugin) {
+    this.result.lastPlugin = plugin
+    try {
+      if (typeof plugin === 'object' && plugin.Once) {
+        if (this.result.root.type === 'document') {
+          let roots = this.result.root.nodes.map(root =>
+            plugin.Once(root, this.helpers)
+          )
+
+          if (isPromise(roots[0])) {
+            return Promise.all(roots)
+          }
+
+          return roots
+        }
+
+        return plugin.Once(this.result.root, this.helpers)
+      } else if (typeof plugin === 'function') {
+        return plugin(this.result.root, this.result)
+      }
+    } catch (error) {
+      throw this.handleError(error)
+    }
+  }
+
+  stringify() {
+    if (this.error) throw this.error
+    if (this.stringified) return this.result
+    this.stringified = true
+
+    this.sync()
+
+    let opts = this.result.opts
+    let str = stringify
+    if (opts.syntax) str = opts.syntax.stringify
+    if (opts.stringifier) str = opts.stringifier
+    if (str.stringify) str = str.stringify
+
+    let map = new MapGenerator(str, this.result.root, this.result.opts)
+    let data = map.generate()
+    this.result.css = data[0]
+    this.result.map = data[1]
+
+    return this.result
+  }
+
+  sync() {
+    if (this.error) throw this.error
+    if (this.processed) return this.result
+    this.processed = true
+
+    if (this.processing) {
+      throw this.getAsyncError()
+    }
+
+    for (let plugin of this.plugins) {
+      let promise = this.runOnRoot(plugin)
+      if (isPromise(promise)) {
+        throw this.getAsyncError()
+      }
+    }
+
+    this.prepareVisitors()
+    if (this.hasListener) {
+      let root = this.result.root
+      while (!root[isClean]) {
+        root[isClean] = true
+        this.walkSync(root)
+      }
+      if (this.listeners.OnceExit) {
+        if (root.type === 'document') {
+          for (let subRoot of root.nodes) {
+            this.visitSync(this.listeners.OnceExit, subRoot)
+          }
+        } else {
+          this.visitSync(this.listeners.OnceExit, root)
+        }
+      }
+    }
+
+    return this.result
+  }
+
+  then(onFulfilled, onRejected) {
+    if (process.env.NODE_ENV !== 'production') {
+      if (!('from' in this.opts)) {
+        warnOnce(
+          'Without `from` option PostCSS could generate wrong source map ' +
+            'and will not find Browserslist config. Set it to CSS file path ' +
+            'or to `undefined` to prevent this warning.'
+        )
+      }
+    }
+    return this.async().then(onFulfilled, onRejected)
+  }
+
+  toString() {
+    return this.css
+  }
+
+  visitSync(visitors, node) {
+    for (let [plugin, visitor] of visitors) {
+      this.result.lastPlugin = plugin
+      let promise
+      try {
+        promise = visitor(node, this.helpers)
+      } catch (e) {
+        throw this.handleError(e, node.proxyOf)
+      }
+      if (node.type !== 'root' && node.type !== 'document' && !node.parent) {
+        return true
+      }
+      if (isPromise(promise)) {
+        throw this.getAsyncError()
+      }
+    }
+  }
+
+  visitTick(stack) {
+    let visit = stack[stack.length - 1]
+    let { node, visitors } = visit
+
+    if (node.type !== 'root' && node.type !== 'document' && !node.parent) {
+      stack.pop()
+      return
+    }
+
+    if (visitors.length > 0 && visit.visitorIndex < visitors.length) {
+      let [plugin, visitor] = visitors[visit.visitorIndex]
+      visit.visitorIndex += 1
+      if (visit.visitorIndex === visitors.length) {
+        visit.visitors = []
+        visit.visitorIndex = 0
+      }
+      this.result.lastPlugin = plugin
+      try {
+        return visitor(node.toProxy(), this.helpers)
+      } catch (e) {
+        throw this.handleError(e, node)
+      }
+    }
+
+    if (visit.iterator !== 0) {
+      let iterator = visit.iterator
+      let child
+      while ((child = node.nodes[node.indexes[iterator]])) {
+        node.indexes[iterator] += 1
+        if (!child[isClean]) {
+          child[isClean] = true
+          stack.push(toStack(child))
+          return
+        }
+      }
+      visit.iterator = 0
+      delete node.indexes[iterator]
+    }
+
+    let events = visit.events
+    while (visit.eventIndex < events.length) {
+      let event = events[visit.eventIndex]
+      visit.eventIndex += 1
+      if (event === CHILDREN) {
+        if (node.nodes && node.nodes.length) {
+          node[isClean] = true
+          visit.iterator = node.getIterator()
+        }
+        return
+      } else if (this.listeners[event]) {
+        visit.visitors = this.listeners[event]
+        return
+      }
+    }
+    stack.pop()
+  }
+
+  walkSync(node) {
+    node[isClean] = true
+    let events = getEvents(node)
+    for (let event of events) {
+      if (event === CHILDREN) {
+        if (node.nodes) {
+          node.each(child => {
+            if (!child[isClean]) this.walkSync(child)
+          })
+        }
+      } else {
+        let visitors = this.listeners[event]
+        if (visitors) {
+          if (this.visitSync(visitors, node.toProxy())) return
+        }
+      }
+    }
+  }
+
+  warnings() {
+    return this.sync().warnings()
+  }
+}
+
+LazyResult.registerPostcss = dependant => {
+  postcss = dependant
+}
+
+module.exports = LazyResult
+LazyResult.default = LazyResult
+
+Root.registerLazyResult(LazyResult)
+Document.registerLazyResult(LazyResult)
Index: node_modules/postcss/lib/list.d.ts
===================================================================
--- node_modules/postcss/lib/list.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/list.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,60 @@
+declare namespace list {
+  type List = {
+    /**
+     * Safely splits comma-separated values (such as those for `transition-*`
+     * and `background` properties).
+     *
+     * ```js
+     * Once (root, { list }) {
+     *   list.comma('black, linear-gradient(white, black)')
+     *   //=> ['black', 'linear-gradient(white, black)']
+     * }
+     * ```
+     *
+     * @param str Comma-separated values.
+     * @return Split values.
+     */
+    comma(str: string): string[]
+
+    default: List
+
+    /**
+     * Safely splits space-separated values (such as those for `background`,
+     * `border-radius`, and other shorthand properties).
+     *
+     * ```js
+     * Once (root, { list }) {
+     *   list.space('1px calc(10% + 1px)') //=> ['1px', 'calc(10% + 1px)']
+     * }
+     * ```
+     *
+     * @param str Space-separated values.
+     * @return Split values.
+     */
+    space(str: string): string[]
+
+    /**
+     * Safely splits values.
+     *
+     * ```js
+     * Once (root, { list }) {
+     *   list.split('1px calc(10% + 1px)', [' ', '\n', '\t']) //=> ['1px', 'calc(10% + 1px)']
+     * }
+     * ```
+     *
+     * @param string separated values.
+     * @param separators array of separators.
+     * @param last boolean indicator.
+     * @return Split values.
+     */
+    split(
+      string: string,
+      separators: readonly string[],
+      last: boolean
+    ): string[]
+  }
+}
+
+declare const list: list.List
+
+export = list
Index: node_modules/postcss/lib/list.js
===================================================================
--- node_modules/postcss/lib/list.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/list.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,58 @@
+'use strict'
+
+let list = {
+  comma(string) {
+    return list.split(string, [','], true)
+  },
+
+  space(string) {
+    let spaces = [' ', '\n', '\t']
+    return list.split(string, spaces)
+  },
+
+  split(string, separators, last) {
+    let array = []
+    let current = ''
+    let split = false
+
+    let func = 0
+    let inQuote = false
+    let prevQuote = ''
+    let escape = false
+
+    for (let letter of string) {
+      if (escape) {
+        escape = false
+      } else if (letter === '\\') {
+        escape = true
+      } else if (inQuote) {
+        if (letter === prevQuote) {
+          inQuote = false
+        }
+      } else if (letter === '"' || letter === "'") {
+        inQuote = true
+        prevQuote = letter
+      } else if (letter === '(') {
+        func += 1
+      } else if (letter === ')') {
+        if (func > 0) func -= 1
+      } else if (func === 0) {
+        if (separators.includes(letter)) split = true
+      }
+
+      if (split) {
+        if (current !== '') array.push(current.trim())
+        current = ''
+        split = false
+      } else {
+        current += letter
+      }
+    }
+
+    if (last || current !== '') array.push(current.trim())
+    return array
+  }
+}
+
+module.exports = list
+list.default = list
Index: node_modules/postcss/lib/map-generator.js
===================================================================
--- node_modules/postcss/lib/map-generator.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/map-generator.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,368 @@
+'use strict'
+
+let { dirname, relative, resolve, sep } = require('path')
+let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js')
+let { pathToFileURL } = require('url')
+
+let Input = require('./input')
+
+let sourceMapAvailable = Boolean(SourceMapConsumer && SourceMapGenerator)
+let pathAvailable = Boolean(dirname && resolve && relative && sep)
+
+class MapGenerator {
+  constructor(stringify, root, opts, cssString) {
+    this.stringify = stringify
+    this.mapOpts = opts.map || {}
+    this.root = root
+    this.opts = opts
+    this.css = cssString
+    this.originalCSS = cssString
+    this.usesFileUrls = !this.mapOpts.from && this.mapOpts.absolute
+
+    this.memoizedFileURLs = new Map()
+    this.memoizedPaths = new Map()
+    this.memoizedURLs = new Map()
+  }
+
+  addAnnotation() {
+    let content
+
+    if (this.isInline()) {
+      content =
+        'data:application/json;base64,' + this.toBase64(this.map.toString())
+    } else if (typeof this.mapOpts.annotation === 'string') {
+      content = this.mapOpts.annotation
+    } else if (typeof this.mapOpts.annotation === 'function') {
+      content = this.mapOpts.annotation(this.opts.to, this.root)
+    } else {
+      content = this.outputFile() + '.map'
+    }
+    let eol = '\n'
+    if (this.css.includes('\r\n')) eol = '\r\n'
+
+    this.css += eol + '/*# sourceMappingURL=' + content + ' */'
+  }
+
+  applyPrevMaps() {
+    for (let prev of this.previous()) {
+      let from = this.toUrl(this.path(prev.file))
+      let root = prev.root || dirname(prev.file)
+      let map
+
+      if (this.mapOpts.sourcesContent === false) {
+        map = new SourceMapConsumer(prev.text)
+        if (map.sourcesContent) {
+          map.sourcesContent = null
+        }
+      } else {
+        map = prev.consumer()
+      }
+
+      this.map.applySourceMap(map, from, this.toUrl(this.path(root)))
+    }
+  }
+
+  clearAnnotation() {
+    if (this.mapOpts.annotation === false) return
+
+    if (this.root) {
+      let node
+      for (let i = this.root.nodes.length - 1; i >= 0; i--) {
+        node = this.root.nodes[i]
+        if (node.type !== 'comment') continue
+        if (node.text.startsWith('# sourceMappingURL=')) {
+          this.root.removeChild(i)
+        }
+      }
+    } else if (this.css) {
+      this.css = this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm, '')
+    }
+  }
+
+  generate() {
+    this.clearAnnotation()
+    if (pathAvailable && sourceMapAvailable && this.isMap()) {
+      return this.generateMap()
+    } else {
+      let result = ''
+      this.stringify(this.root, i => {
+        result += i
+      })
+      return [result]
+    }
+  }
+
+  generateMap() {
+    if (this.root) {
+      this.generateString()
+    } else if (this.previous().length === 1) {
+      let prev = this.previous()[0].consumer()
+      prev.file = this.outputFile()
+      this.map = SourceMapGenerator.fromSourceMap(prev, {
+        ignoreInvalidMapping: true
+      })
+    } else {
+      this.map = new SourceMapGenerator({
+        file: this.outputFile(),
+        ignoreInvalidMapping: true
+      })
+      this.map.addMapping({
+        generated: { column: 0, line: 1 },
+        original: { column: 0, line: 1 },
+        source: this.opts.from
+          ? this.toUrl(this.path(this.opts.from))
+          : '<no source>'
+      })
+    }
+
+    if (this.isSourcesContent()) this.setSourcesContent()
+    if (this.root && this.previous().length > 0) this.applyPrevMaps()
+    if (this.isAnnotation()) this.addAnnotation()
+
+    if (this.isInline()) {
+      return [this.css]
+    } else {
+      return [this.css, this.map]
+    }
+  }
+
+  generateString() {
+    this.css = ''
+    this.map = new SourceMapGenerator({
+      file: this.outputFile(),
+      ignoreInvalidMapping: true
+    })
+
+    let line = 1
+    let column = 1
+
+    let noSource = '<no source>'
+    let mapping = {
+      generated: { column: 0, line: 0 },
+      original: { column: 0, line: 0 },
+      source: ''
+    }
+
+    let last, lines
+    this.stringify(this.root, (str, node, type) => {
+      this.css += str
+
+      if (node && type !== 'end') {
+        mapping.generated.line = line
+        mapping.generated.column = column - 1
+        if (node.source && node.source.start) {
+          mapping.source = this.sourcePath(node)
+          mapping.original.line = node.source.start.line
+          mapping.original.column = node.source.start.column - 1
+          this.map.addMapping(mapping)
+        } else {
+          mapping.source = noSource
+          mapping.original.line = 1
+          mapping.original.column = 0
+          this.map.addMapping(mapping)
+        }
+      }
+
+      lines = str.match(/\n/g)
+      if (lines) {
+        line += lines.length
+        last = str.lastIndexOf('\n')
+        column = str.length - last
+      } else {
+        column += str.length
+      }
+
+      if (node && type !== 'start') {
+        let p = node.parent || { raws: {} }
+        let childless =
+          node.type === 'decl' || (node.type === 'atrule' && !node.nodes)
+        if (!childless || node !== p.last || p.raws.semicolon) {
+          if (node.source && node.source.end) {
+            mapping.source = this.sourcePath(node)
+            mapping.original.line = node.source.end.line
+            mapping.original.column = node.source.end.column - 1
+            mapping.generated.line = line
+            mapping.generated.column = column - 2
+            this.map.addMapping(mapping)
+          } else {
+            mapping.source = noSource
+            mapping.original.line = 1
+            mapping.original.column = 0
+            mapping.generated.line = line
+            mapping.generated.column = column - 1
+            this.map.addMapping(mapping)
+          }
+        }
+      }
+    })
+  }
+
+  isAnnotation() {
+    if (this.isInline()) {
+      return true
+    }
+    if (typeof this.mapOpts.annotation !== 'undefined') {
+      return this.mapOpts.annotation
+    }
+    if (this.previous().length) {
+      return this.previous().some(i => i.annotation)
+    }
+    return true
+  }
+
+  isInline() {
+    if (typeof this.mapOpts.inline !== 'undefined') {
+      return this.mapOpts.inline
+    }
+
+    let annotation = this.mapOpts.annotation
+    if (typeof annotation !== 'undefined' && annotation !== true) {
+      return false
+    }
+
+    if (this.previous().length) {
+      return this.previous().some(i => i.inline)
+    }
+    return true
+  }
+
+  isMap() {
+    if (typeof this.opts.map !== 'undefined') {
+      return !!this.opts.map
+    }
+    return this.previous().length > 0
+  }
+
+  isSourcesContent() {
+    if (typeof this.mapOpts.sourcesContent !== 'undefined') {
+      return this.mapOpts.sourcesContent
+    }
+    if (this.previous().length) {
+      return this.previous().some(i => i.withContent())
+    }
+    return true
+  }
+
+  outputFile() {
+    if (this.opts.to) {
+      return this.path(this.opts.to)
+    } else if (this.opts.from) {
+      return this.path(this.opts.from)
+    } else {
+      return 'to.css'
+    }
+  }
+
+  path(file) {
+    if (this.mapOpts.absolute) return file
+    if (file.charCodeAt(0) === 60 /* `<` */) return file
+    if (/^\w+:\/\//.test(file)) return file
+    let cached = this.memoizedPaths.get(file)
+    if (cached) return cached
+
+    let from = this.opts.to ? dirname(this.opts.to) : '.'
+
+    if (typeof this.mapOpts.annotation === 'string') {
+      from = dirname(resolve(from, this.mapOpts.annotation))
+    }
+
+    let path = relative(from, file)
+    this.memoizedPaths.set(file, path)
+
+    return path
+  }
+
+  previous() {
+    if (!this.previousMaps) {
+      this.previousMaps = []
+      if (this.root) {
+        this.root.walk(node => {
+          if (node.source && node.source.input.map) {
+            let map = node.source.input.map
+            if (!this.previousMaps.includes(map)) {
+              this.previousMaps.push(map)
+            }
+          }
+        })
+      } else {
+        let input = new Input(this.originalCSS, this.opts)
+        if (input.map) this.previousMaps.push(input.map)
+      }
+    }
+
+    return this.previousMaps
+  }
+
+  setSourcesContent() {
+    let already = {}
+    if (this.root) {
+      this.root.walk(node => {
+        if (node.source) {
+          let from = node.source.input.from
+          if (from && !already[from]) {
+            already[from] = true
+            let fromUrl = this.usesFileUrls
+              ? this.toFileUrl(from)
+              : this.toUrl(this.path(from))
+            this.map.setSourceContent(fromUrl, node.source.input.css)
+          }
+        }
+      })
+    } else if (this.css) {
+      let from = this.opts.from
+        ? this.toUrl(this.path(this.opts.from))
+        : '<no source>'
+      this.map.setSourceContent(from, this.css)
+    }
+  }
+
+  sourcePath(node) {
+    if (this.mapOpts.from) {
+      return this.toUrl(this.mapOpts.from)
+    } else if (this.usesFileUrls) {
+      return this.toFileUrl(node.source.input.from)
+    } else {
+      return this.toUrl(this.path(node.source.input.from))
+    }
+  }
+
+  toBase64(str) {
+    if (Buffer) {
+      return Buffer.from(str).toString('base64')
+    } else {
+      return window.btoa(unescape(encodeURIComponent(str)))
+    }
+  }
+
+  toFileUrl(path) {
+    let cached = this.memoizedFileURLs.get(path)
+    if (cached) return cached
+
+    if (pathToFileURL) {
+      let fileURL = pathToFileURL(path).toString()
+      this.memoizedFileURLs.set(path, fileURL)
+
+      return fileURL
+    } else {
+      throw new Error(
+        '`map.absolute` option is not available in this PostCSS build'
+      )
+    }
+  }
+
+  toUrl(path) {
+    let cached = this.memoizedURLs.get(path)
+    if (cached) return cached
+
+    if (sep === '\\') {
+      path = path.replace(/\\/g, '/')
+    }
+
+    let url = encodeURI(path).replace(/[#?]/g, encodeURIComponent)
+    this.memoizedURLs.set(path, url)
+
+    return url
+  }
+}
+
+module.exports = MapGenerator
Index: node_modules/postcss/lib/no-work-result.d.ts
===================================================================
--- node_modules/postcss/lib/no-work-result.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/no-work-result.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,46 @@
+import LazyResult from './lazy-result.js'
+import { SourceMap } from './postcss.js'
+import Processor from './processor.js'
+import Result, { Message, ResultOptions } from './result.js'
+import Root from './root.js'
+import Warning from './warning.js'
+
+declare namespace NoWorkResult {
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { NoWorkResult_ as default }
+}
+
+/**
+ * A Promise proxy for the result of PostCSS transformations.
+ * This lazy result instance doesn't parse css unless `NoWorkResult#root` or `Result#root`
+ * are accessed. See the example below for details.
+ * A `NoWork` instance is returned by `Processor#process` ONLY when no plugins defined.
+ *
+ * ```js
+ * const noWorkResult = postcss().process(css) // No plugins are defined.
+ *                                             // CSS is not parsed
+ * let root = noWorkResult.root // now css is parsed because we accessed the root
+ * ```
+ */
+declare class NoWorkResult_ implements LazyResult<Root> {
+  catch: Promise<Result<Root>>['catch']
+  finally: Promise<Result<Root>>['finally']
+  then: Promise<Result<Root>>['then']
+  get content(): string
+  get css(): string
+  get map(): SourceMap
+  get messages(): Message[]
+  get opts(): ResultOptions
+  get processor(): Processor
+  get root(): Root
+  get [Symbol.toStringTag](): string
+  constructor(processor: Processor, css: string, opts: ResultOptions)
+  async(): Promise<Result<Root>>
+  sync(): Result<Root>
+  toString(): string
+  warnings(): Warning[]
+}
+
+declare class NoWorkResult extends NoWorkResult_ {}
+
+export = NoWorkResult
Index: node_modules/postcss/lib/no-work-result.js
===================================================================
--- node_modules/postcss/lib/no-work-result.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/no-work-result.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,138 @@
+'use strict'
+
+let MapGenerator = require('./map-generator')
+let parse = require('./parse')
+const Result = require('./result')
+let stringify = require('./stringify')
+let warnOnce = require('./warn-once')
+
+class NoWorkResult {
+  get content() {
+    return this.result.css
+  }
+
+  get css() {
+    return this.result.css
+  }
+
+  get map() {
+    return this.result.map
+  }
+
+  get messages() {
+    return []
+  }
+
+  get opts() {
+    return this.result.opts
+  }
+
+  get processor() {
+    return this.result.processor
+  }
+
+  get root() {
+    if (this._root) {
+      return this._root
+    }
+
+    let root
+    let parser = parse
+
+    try {
+      root = parser(this._css, this._opts)
+    } catch (error) {
+      this.error = error
+    }
+
+    if (this.error) {
+      throw this.error
+    } else {
+      this._root = root
+      return root
+    }
+  }
+
+  get [Symbol.toStringTag]() {
+    return 'NoWorkResult'
+  }
+
+  constructor(processor, css, opts) {
+    css = css.toString()
+    this.stringified = false
+
+    this._processor = processor
+    this._css = css
+    this._opts = opts
+    this._map = undefined
+    let root
+
+    let str = stringify
+    this.result = new Result(this._processor, root, this._opts)
+    this.result.css = css
+
+    let self = this
+    Object.defineProperty(this.result, 'root', {
+      get() {
+        return self.root
+      }
+    })
+
+    let map = new MapGenerator(str, root, this._opts, css)
+    if (map.isMap()) {
+      let [generatedCSS, generatedMap] = map.generate()
+      if (generatedCSS) {
+        this.result.css = generatedCSS
+      }
+      if (generatedMap) {
+        this.result.map = generatedMap
+      }
+    } else {
+      map.clearAnnotation()
+      this.result.css = map.css
+    }
+  }
+
+  async() {
+    if (this.error) return Promise.reject(this.error)
+    return Promise.resolve(this.result)
+  }
+
+  catch(onRejected) {
+    return this.async().catch(onRejected)
+  }
+
+  finally(onFinally) {
+    return this.async().then(onFinally, onFinally)
+  }
+
+  sync() {
+    if (this.error) throw this.error
+    return this.result
+  }
+
+  then(onFulfilled, onRejected) {
+    if (process.env.NODE_ENV !== 'production') {
+      if (!('from' in this._opts)) {
+        warnOnce(
+          'Without `from` option PostCSS could generate wrong source map ' +
+            'and will not find Browserslist config. Set it to CSS file path ' +
+            'or to `undefined` to prevent this warning.'
+        )
+      }
+    }
+
+    return this.async().then(onFulfilled, onRejected)
+  }
+
+  toString() {
+    return this._css
+  }
+
+  warnings() {
+    return []
+  }
+}
+
+module.exports = NoWorkResult
+NoWorkResult.default = NoWorkResult
Index: node_modules/postcss/lib/node.d.ts
===================================================================
--- node_modules/postcss/lib/node.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/node.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,556 @@
+import AtRule = require('./at-rule.js')
+import { AtRuleProps } from './at-rule.js'
+import Comment, { CommentProps } from './comment.js'
+import Container, { NewChild } from './container.js'
+import CssSyntaxError from './css-syntax-error.js'
+import Declaration, { DeclarationProps } from './declaration.js'
+import Document from './document.js'
+import Input from './input.js'
+import { Stringifier, Syntax } from './postcss.js'
+import Result from './result.js'
+import Root from './root.js'
+import Rule, { RuleProps } from './rule.js'
+import Warning, { WarningOptions } from './warning.js'
+
+declare namespace Node {
+  export type ChildNode = AtRule.default | Comment | Declaration | Rule
+
+  export type AnyNode =
+    | AtRule.default
+    | Comment
+    | Declaration
+    | Document
+    | Root
+    | Rule
+
+  export type ChildProps =
+    | AtRuleProps
+    | CommentProps
+    | DeclarationProps
+    | RuleProps
+
+  export interface Position {
+    /**
+     * Source line in file. In contrast to `offset` it starts from 1.
+     */
+    column: number
+
+    /**
+     * Source column in file.
+     */
+    line: number
+
+    /**
+     * Source offset in file. It starts from 0.
+     */
+    offset: number
+  }
+
+  export interface Range {
+    /**
+     * End position, exclusive.
+     */
+    end: Position
+
+    /**
+     * Start position, inclusive.
+     */
+    start: Position
+  }
+
+  /**
+   * Source represents an interface for the {@link Node.source} property.
+   */
+  export interface Source {
+    /**
+     * The inclusive ending position for the source
+     * code of a node.
+     *
+     * However, `end.offset` of a non `Root` node is the exclusive position.
+     * See https://github.com/postcss/postcss/pull/1879 for details.
+     *
+     * ```js
+     * const root = postcss.parse('a { color: black }')
+     * const a = root.first
+     * const color = a.first
+     *
+     * // The offset of `Root` node is the inclusive position
+     * css.source.end   // { line: 1, column: 19, offset: 18 }
+     *
+     * // The offset of non `Root` node is the exclusive position
+     * a.source.end     // { line: 1, column: 18, offset: 18 }
+     * color.source.end // { line: 1, column: 16, offset: 16 }
+     * ```
+     */
+    end?: Position
+
+    /**
+     * The source file from where a node has originated.
+     */
+    input: Input
+
+    /**
+     * The inclusive starting position for the source
+     * code of a node.
+     */
+    start?: Position
+  }
+
+  /**
+   * Interface represents an interface for an object received
+   * as parameter by Node class constructor.
+   */
+  export interface NodeProps {
+    source?: Source
+  }
+
+  export interface NodeErrorOptions {
+    /**
+     * An ending index inside a node's string that should be highlighted as
+     * source of error.
+     */
+    endIndex?: number
+    /**
+     * An index inside a node's string that should be highlighted as source
+     * of error.
+     */
+    index?: number
+    /**
+     * Plugin name that created this error. PostCSS will set it automatically.
+     */
+    plugin?: string
+    /**
+     * A word inside a node's string, that should be highlighted as source
+     * of error.
+     */
+    word?: string
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-shadow
+  class Node extends Node_ {}
+  export { Node as default }
+}
+
+/**
+ * It represents an abstract class that handles common
+ * methods for other CSS abstract syntax tree nodes.
+ *
+ * Any node that represents CSS selector or value should
+ * not extend the `Node` class.
+ */
+declare abstract class Node_ {
+  /**
+   * It represents parent of the current node.
+   *
+   * ```js
+   * root.nodes[0].parent === root //=> true
+   * ```
+   */
+  parent: Container | Document | undefined
+
+  /**
+   * It represents unnecessary whitespace and characters present
+   * in the css source code.
+   *
+   * Information to generate byte-to-byte equal node string as it was
+   * in the origin input.
+   *
+   * The properties of the raws object are decided by parser,
+   * the default parser uses the following properties:
+   *
+   * * `before`: the space symbols before the node. It also stores `*`
+   *   and `_` symbols before the declaration (IE hack).
+   * * `after`: the space symbols after the last child of the node
+   *   to the end of the node.
+   * * `between`: the symbols between the property and value
+   *   for declarations, selector and `{` for rules, or last parameter
+   *   and `{` for at-rules.
+   * * `semicolon`: contains true if the last child has
+   *   an (optional) semicolon.
+   * * `afterName`: the space between the at-rule name and its parameters.
+   * * `left`: the space symbols between `/*` and the comment’s text.
+   * * `right`: the space symbols between the comment’s text
+   *   and <code>*&#47;</code>.
+   * - `important`: the content of the important statement,
+   *   if it is not just `!important`.
+   *
+   * PostCSS filters out the comments inside selectors, declaration values
+   * and at-rule parameters but it stores the origin content in raws.
+   *
+   * ```js
+   * const root = postcss.parse('a {\n  color:black\n}')
+   * root.first.first.raws //=> { before: '\n  ', between: ':' }
+   * ```
+   */
+  raws: any
+
+  /**
+   * It represents information related to origin of a node and is required
+   * for generating source maps.
+   *
+   * The nodes that are created manually using the public APIs
+   * provided by PostCSS will have `source` undefined and
+   * will be absent in the source map.
+   *
+   * For this reason, the plugin developer should consider
+   * duplicating nodes as the duplicate node will have the
+   * same source as the original node by default or assign
+   * source to a node created manually.
+   *
+   * ```js
+   * decl.source.input.from //=> '/home/ai/source.css'
+   * decl.source.start      //=> { line: 10, column: 2 }
+   * decl.source.end        //=> { line: 10, column: 12 }
+   * ```
+   *
+   * ```js
+   * // Incorrect method, source not specified!
+   * const prefixed = postcss.decl({
+   *   prop: '-moz-' + decl.prop,
+   *   value: decl.value
+   * })
+   *
+   * // Correct method, source is inherited when duplicating.
+   * const prefixed = decl.clone({
+   *   prop: '-moz-' + decl.prop
+   * })
+   * ```
+   *
+   * ```js
+   * if (atrule.name === 'add-link') {
+   *   const rule = postcss.rule({
+   *     selector: 'a',
+   *     source: atrule.source
+   *   })
+   *
+   *  atrule.parent.insertBefore(atrule, rule)
+   * }
+   * ```
+   */
+  source?: Node.Source
+
+  /**
+   * It represents type of a node in
+   * an abstract syntax tree.
+   *
+   * A type of node helps in identification of a node
+   * and perform operation based on it's type.
+   *
+   * ```js
+   * const declaration = new Declaration({
+   *   prop: 'color',
+   *   value: 'black'
+   * })
+   *
+   * declaration.type //=> 'decl'
+   * ```
+   */
+  type: string
+
+  constructor(defaults?: object)
+
+  /**
+   * Insert new node after current node to current node’s parent.
+   *
+   * Just alias for `node.parent.insertAfter(node, add)`.
+   *
+   * ```js
+   * decl.after('color: black')
+   * ```
+   *
+   * @param newNode New node.
+   * @return This node for methods chain.
+   */
+  after(
+    newNode: Node | Node.ChildProps | readonly Node[] | string | undefined
+  ): this
+
+  /**
+   * It assigns properties to an existing node instance.
+   *
+   * ```js
+   * decl.assign({ prop: 'word-wrap', value: 'break-word' })
+   * ```
+   *
+   * @param overrides New properties to override the node.
+   *
+   * @return `this` for method chaining.
+   */
+  assign(overrides: object): this
+
+  /**
+   * Insert new node before current node to current node’s parent.
+   *
+   * Just alias for `node.parent.insertBefore(node, add)`.
+   *
+   * ```js
+   * decl.before('content: ""')
+   * ```
+   *
+   * @param newNode New node.
+   * @return This node for methods chain.
+   */
+  before(
+    newNode: Node | Node.ChildProps | readonly Node[] | string | undefined
+  ): this
+
+  /**
+   * Clear the code style properties for the node and its children.
+   *
+   * ```js
+   * node.raws.before  //=> ' '
+   * node.cleanRaws()
+   * node.raws.before  //=> undefined
+   * ```
+   *
+   * @param keepBetween Keep the `raws.between` symbols.
+   */
+  cleanRaws(keepBetween?: boolean): void
+
+  /**
+   * It creates clone of an existing node, which includes all the properties
+   * and their values, that includes `raws` but not `type`.
+   *
+   * ```js
+   * decl.raws.before    //=> "\n  "
+   * const cloned = decl.clone({ prop: '-moz-' + decl.prop })
+   * cloned.raws.before  //=> "\n  "
+   * cloned.toString()   //=> -moz-transform: scale(0)
+   * ```
+   *
+   * @param overrides New properties to override in the clone.
+   *
+   * @return Duplicate of the node instance.
+   */
+  clone(overrides?: object): this
+
+  /**
+   * Shortcut to clone the node and insert the resulting cloned node
+   * after the current node.
+   *
+   * @param overrides New properties to override in the clone.
+   * @return New node.
+   */
+  cloneAfter(overrides?: object): this
+
+  /**
+   * Shortcut to clone the node and insert the resulting cloned node
+   * before the current node.
+   *
+   * ```js
+   * decl.cloneBefore({ prop: '-moz-' + decl.prop })
+   * ```
+   *
+   * @param overrides Mew properties to override in the clone.
+   *
+   * @return New node
+   */
+  cloneBefore(overrides?: object): this
+
+  /**
+   * It creates an instance of the class `CssSyntaxError` and parameters passed
+   * to this method are assigned to the error instance.
+   *
+   * The error instance will have description for the
+   * error, original position of the node in the
+   * source, showing line and column number.
+   *
+   * If any previous map is present, it would be used
+   * to get original position of the source.
+   *
+   * The Previous Map here is referred to the source map
+   * generated by previous compilation, example: Less,
+   * Stylus and Sass.
+   *
+   * This method returns the error instance instead of
+   * throwing it.
+   *
+   * ```js
+   * if (!variables[name]) {
+   *   throw decl.error(`Unknown variable ${name}`, { word: name })
+   *   // CssSyntaxError: postcss-vars:a.sass:4:3: Unknown variable $black
+   *   //   color: $black
+   *   // a
+   *   //          ^
+   *   //   background: white
+   * }
+   * ```
+   *
+   * @param message Description for the error instance.
+   * @param options Options for the error instance.
+   *
+   * @return Error instance is returned.
+   */
+  error(message: string, options?: Node.NodeErrorOptions): CssSyntaxError
+
+  /**
+   * Returns the next child of the node’s parent.
+   * Returns `undefined` if the current node is the last child.
+   *
+   * ```js
+   * if (comment.text === 'delete next') {
+   *   const next = comment.next()
+   *   if (next) {
+   *     next.remove()
+   *   }
+   * }
+   * ```
+   *
+   * @return Next node.
+   */
+  next(): Node.ChildNode | undefined
+
+  /**
+   * Get the position for a word or an index inside the node.
+   *
+   * @param opts Options.
+   * @return Position.
+   */
+  positionBy(opts?: Pick<WarningOptions, 'index' | 'word'>): Node.Position
+
+  /**
+   * Convert string index to line/column.
+   *
+   * @param index The symbol number in the node’s string.
+   * @return Symbol position in file.
+   */
+  positionInside(index: number): Node.Position
+
+  /**
+   * Returns the previous child of the node’s parent.
+   * Returns `undefined` if the current node is the first child.
+   *
+   * ```js
+   * const annotation = decl.prev()
+   * if (annotation.type === 'comment') {
+   *   readAnnotation(annotation.text)
+   * }
+   * ```
+   *
+   * @return Previous node.
+   */
+  prev(): Node.ChildNode | undefined
+
+  /**
+   * Get the range for a word or start and end index inside the node.
+   * The start index is inclusive; the end index is exclusive.
+   *
+   * @param opts Options.
+   * @return Range.
+   */
+  rangeBy(
+    opts?: Pick<WarningOptions, 'end' | 'endIndex' | 'index' | 'start' | 'word'>
+  ): Node.Range
+
+  /**
+   * Returns a `raws` value. If the node is missing
+   * the code style property (because the node was manually built or cloned),
+   * PostCSS will try to autodetect the code style property by looking
+   * at other nodes in the tree.
+   *
+   * ```js
+   * const root = postcss.parse('a { background: white }')
+   * root.nodes[0].append({ prop: 'color', value: 'black' })
+   * root.nodes[0].nodes[1].raws.before   //=> undefined
+   * root.nodes[0].nodes[1].raw('before') //=> ' '
+   * ```
+   *
+   * @param prop        Name of code style property.
+   * @param defaultType Name of default value, it can be missed
+   *                    if the value is the same as prop.
+   * @return {string} Code style value.
+   */
+  raw(prop: string, defaultType?: string): string
+
+  /**
+   * It removes the node from its parent and deletes its parent property.
+   *
+   * ```js
+   * if (decl.prop.match(/^-webkit-/)) {
+   *   decl.remove()
+   * }
+   * ```
+   *
+   * @return `this` for method chaining.
+   */
+  remove(): this
+
+  /**
+   * Inserts node(s) before the current node and removes the current node.
+   *
+   * ```js
+   * AtRule: {
+   *   mixin: atrule => {
+   *     atrule.replaceWith(mixinRules[atrule.params])
+   *   }
+   * }
+   * ```
+   *
+   * @param nodes Mode(s) to replace current one.
+   * @return Current node to methods chain.
+   */
+  replaceWith(...nodes: NewChild[]): this
+
+  /**
+   * Finds the Root instance of the node’s tree.
+   *
+   * ```js
+   * root.nodes[0].nodes[0].root() === root
+   * ```
+   *
+   * @return Root parent.
+   */
+  root(): Root
+
+  /**
+   * Fix circular links on `JSON.stringify()`.
+   *
+   * @return Cleaned object.
+   */
+  toJSON(): object
+
+  /**
+   * It compiles the node to browser readable cascading style sheets string
+   * depending on it's type.
+   *
+   * ```js
+   * new Rule({ selector: 'a' }).toString() //=> "a {}"
+   * ```
+   *
+   * @param stringifier A syntax to use in string generation.
+   * @return CSS string of this node.
+   */
+  toString(stringifier?: Stringifier | Syntax): string
+
+  /**
+   * It is a wrapper for {@link Result#warn}, providing convenient
+   * way of generating warnings.
+   *
+   * ```js
+   *   Declaration: {
+   *     bad: (decl, { result }) => {
+   *       decl.warn(result, 'Deprecated property: bad')
+   *     }
+   *   }
+   * ```
+   *
+   * @param result The `Result` instance that will receive the warning.
+   * @param message Description for the warning.
+   * @param options Options for the warning.
+   *
+   * @return `Warning` instance is returned
+   */
+  warn(result: Result, message: string, options?: WarningOptions): Warning
+
+  /**
+   * If this node isn't already dirty, marks it and its ancestors as such. This
+   * indicates to the LazyResult processor that the {@link Root} has been
+   * modified by the current plugin and may need to be processed again by other
+   * plugins.
+   */
+  protected markDirty(): void
+}
+
+declare class Node extends Node_ {}
+
+export = Node
Index: node_modules/postcss/lib/node.js
===================================================================
--- node_modules/postcss/lib/node.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/node.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,449 @@
+'use strict'
+
+let CssSyntaxError = require('./css-syntax-error')
+let Stringifier = require('./stringifier')
+let stringify = require('./stringify')
+let { isClean, my } = require('./symbols')
+
+function cloneNode(obj, parent) {
+  let cloned = new obj.constructor()
+
+  for (let i in obj) {
+    if (!Object.prototype.hasOwnProperty.call(obj, i)) {
+      /* c8 ignore next 2 */
+      continue
+    }
+    if (i === 'proxyCache') continue
+    let value = obj[i]
+    let type = typeof value
+
+    if (i === 'parent' && type === 'object') {
+      if (parent) cloned[i] = parent
+    } else if (i === 'source') {
+      cloned[i] = value
+    } else if (Array.isArray(value)) {
+      cloned[i] = value.map(j => cloneNode(j, cloned))
+    } else {
+      if (type === 'object' && value !== null) value = cloneNode(value)
+      cloned[i] = value
+    }
+  }
+
+  return cloned
+}
+
+function sourceOffset(inputCSS, position) {
+  // Not all custom syntaxes support `offset` in `source.start` and `source.end`
+  if (position && typeof position.offset !== 'undefined') {
+    return position.offset
+  }
+
+  let column = 1
+  let line = 1
+  let offset = 0
+
+  for (let i = 0; i < inputCSS.length; i++) {
+    if (line === position.line && column === position.column) {
+      offset = i
+      break
+    }
+
+    if (inputCSS[i] === '\n') {
+      column = 1
+      line += 1
+    } else {
+      column += 1
+    }
+  }
+
+  return offset
+}
+
+class Node {
+  get proxyOf() {
+    return this
+  }
+
+  constructor(defaults = {}) {
+    this.raws = {}
+    this[isClean] = false
+    this[my] = true
+
+    for (let name in defaults) {
+      if (name === 'nodes') {
+        this.nodes = []
+        for (let node of defaults[name]) {
+          if (typeof node.clone === 'function') {
+            this.append(node.clone())
+          } else {
+            this.append(node)
+          }
+        }
+      } else {
+        this[name] = defaults[name]
+      }
+    }
+  }
+
+  addToError(error) {
+    error.postcssNode = this
+    if (error.stack && this.source && /\n\s{4}at /.test(error.stack)) {
+      let s = this.source
+      error.stack = error.stack.replace(
+        /\n\s{4}at /,
+        `$&${s.input.from}:${s.start.line}:${s.start.column}$&`
+      )
+    }
+    return error
+  }
+
+  after(add) {
+    this.parent.insertAfter(this, add)
+    return this
+  }
+
+  assign(overrides = {}) {
+    for (let name in overrides) {
+      this[name] = overrides[name]
+    }
+    return this
+  }
+
+  before(add) {
+    this.parent.insertBefore(this, add)
+    return this
+  }
+
+  cleanRaws(keepBetween) {
+    delete this.raws.before
+    delete this.raws.after
+    if (!keepBetween) delete this.raws.between
+  }
+
+  clone(overrides = {}) {
+    let cloned = cloneNode(this)
+    for (let name in overrides) {
+      cloned[name] = overrides[name]
+    }
+    return cloned
+  }
+
+  cloneAfter(overrides = {}) {
+    let cloned = this.clone(overrides)
+    this.parent.insertAfter(this, cloned)
+    return cloned
+  }
+
+  cloneBefore(overrides = {}) {
+    let cloned = this.clone(overrides)
+    this.parent.insertBefore(this, cloned)
+    return cloned
+  }
+
+  error(message, opts = {}) {
+    if (this.source) {
+      let { end, start } = this.rangeBy(opts)
+      return this.source.input.error(
+        message,
+        { column: start.column, line: start.line },
+        { column: end.column, line: end.line },
+        opts
+      )
+    }
+    return new CssSyntaxError(message)
+  }
+
+  getProxyProcessor() {
+    return {
+      get(node, prop) {
+        if (prop === 'proxyOf') {
+          return node
+        } else if (prop === 'root') {
+          return () => node.root().toProxy()
+        } else {
+          return node[prop]
+        }
+      },
+
+      set(node, prop, value) {
+        if (node[prop] === value) return true
+        node[prop] = value
+        if (
+          prop === 'prop' ||
+          prop === 'value' ||
+          prop === 'name' ||
+          prop === 'params' ||
+          prop === 'important' ||
+          /* c8 ignore next */
+          prop === 'text'
+        ) {
+          node.markDirty()
+        }
+        return true
+      }
+    }
+  }
+
+  /* c8 ignore next 3 */
+  markClean() {
+    this[isClean] = true
+  }
+
+  markDirty() {
+    if (this[isClean]) {
+      this[isClean] = false
+      let next = this
+      while ((next = next.parent)) {
+        next[isClean] = false
+      }
+    }
+  }
+
+  next() {
+    if (!this.parent) return undefined
+    let index = this.parent.index(this)
+    return this.parent.nodes[index + 1]
+  }
+
+  positionBy(opts = {}) {
+    let pos = this.source.start
+    if (opts.index) {
+      pos = this.positionInside(opts.index)
+    } else if (opts.word) {
+      let inputString =
+        'document' in this.source.input
+          ? this.source.input.document
+          : this.source.input.css
+      let stringRepresentation = inputString.slice(
+        sourceOffset(inputString, this.source.start),
+        sourceOffset(inputString, this.source.end)
+      )
+      let index = stringRepresentation.indexOf(opts.word)
+      if (index !== -1) pos = this.positionInside(index)
+    }
+    return pos
+  }
+
+  positionInside(index) {
+    let column = this.source.start.column
+    let line = this.source.start.line
+    let inputString =
+      'document' in this.source.input
+        ? this.source.input.document
+        : this.source.input.css
+    let offset = sourceOffset(inputString, this.source.start)
+    let end = offset + index
+
+    for (let i = offset; i < end; i++) {
+      if (inputString[i] === '\n') {
+        column = 1
+        line += 1
+      } else {
+        column += 1
+      }
+    }
+
+    return { column, line, offset: end }
+  }
+
+  prev() {
+    if (!this.parent) return undefined
+    let index = this.parent.index(this)
+    return this.parent.nodes[index - 1]
+  }
+
+  rangeBy(opts = {}) {
+    let inputString =
+      'document' in this.source.input
+        ? this.source.input.document
+        : this.source.input.css
+    let start = {
+      column: this.source.start.column,
+      line: this.source.start.line,
+      offset: sourceOffset(inputString, this.source.start)
+    }
+    let end = this.source.end
+      ? {
+          column: this.source.end.column + 1,
+          line: this.source.end.line,
+          offset:
+            typeof this.source.end.offset === 'number'
+              ? // `source.end.offset` is exclusive, so we don't need to add 1
+                this.source.end.offset
+              : // Since line/column in this.source.end is inclusive,
+                // the `sourceOffset(... , this.source.end)` returns an inclusive offset.
+                // So, we add 1 to convert it to exclusive.
+                sourceOffset(inputString, this.source.end) + 1
+        }
+      : {
+          column: start.column + 1,
+          line: start.line,
+          offset: start.offset + 1
+        }
+
+    if (opts.word) {
+      let stringRepresentation = inputString.slice(
+        sourceOffset(inputString, this.source.start),
+        sourceOffset(inputString, this.source.end)
+      )
+      let index = stringRepresentation.indexOf(opts.word)
+      if (index !== -1) {
+        start = this.positionInside(index)
+        end = this.positionInside(index + opts.word.length)
+      }
+    } else {
+      if (opts.start) {
+        start = {
+          column: opts.start.column,
+          line: opts.start.line,
+          offset: sourceOffset(inputString, opts.start)
+        }
+      } else if (opts.index) {
+        start = this.positionInside(opts.index)
+      }
+
+      if (opts.end) {
+        end = {
+          column: opts.end.column,
+          line: opts.end.line,
+          offset: sourceOffset(inputString, opts.end)
+        }
+      } else if (typeof opts.endIndex === 'number') {
+        end = this.positionInside(opts.endIndex)
+      } else if (opts.index) {
+        end = this.positionInside(opts.index + 1)
+      }
+    }
+
+    if (
+      end.line < start.line ||
+      (end.line === start.line && end.column <= start.column)
+    ) {
+      end = {
+        column: start.column + 1,
+        line: start.line,
+        offset: start.offset + 1
+      }
+    }
+
+    return { end, start }
+  }
+
+  raw(prop, defaultType) {
+    let str = new Stringifier()
+    return str.raw(this, prop, defaultType)
+  }
+
+  remove() {
+    if (this.parent) {
+      this.parent.removeChild(this)
+    }
+    this.parent = undefined
+    return this
+  }
+
+  replaceWith(...nodes) {
+    if (this.parent) {
+      let bookmark = this
+      let foundSelf = false
+      for (let node of nodes) {
+        if (node === this) {
+          foundSelf = true
+        } else if (foundSelf) {
+          this.parent.insertAfter(bookmark, node)
+          bookmark = node
+        } else {
+          this.parent.insertBefore(bookmark, node)
+        }
+      }
+
+      if (!foundSelf) {
+        this.remove()
+      }
+    }
+
+    return this
+  }
+
+  root() {
+    let result = this
+    while (result.parent && result.parent.type !== 'document') {
+      result = result.parent
+    }
+    return result
+  }
+
+  toJSON(_, inputs) {
+    let fixed = {}
+    let emitInputs = inputs == null
+    inputs = inputs || new Map()
+    let inputsNextIndex = 0
+
+    for (let name in this) {
+      if (!Object.prototype.hasOwnProperty.call(this, name)) {
+        /* c8 ignore next 2 */
+        continue
+      }
+      if (name === 'parent' || name === 'proxyCache') continue
+      let value = this[name]
+
+      if (Array.isArray(value)) {
+        fixed[name] = value.map(i => {
+          if (typeof i === 'object' && i.toJSON) {
+            return i.toJSON(null, inputs)
+          } else {
+            return i
+          }
+        })
+      } else if (typeof value === 'object' && value.toJSON) {
+        fixed[name] = value.toJSON(null, inputs)
+      } else if (name === 'source') {
+        if (value == null) continue
+        let inputId = inputs.get(value.input)
+        if (inputId == null) {
+          inputId = inputsNextIndex
+          inputs.set(value.input, inputsNextIndex)
+          inputsNextIndex++
+        }
+        fixed[name] = {
+          end: value.end,
+          inputId,
+          start: value.start
+        }
+      } else {
+        fixed[name] = value
+      }
+    }
+
+    if (emitInputs) {
+      fixed.inputs = [...inputs.keys()].map(input => input.toJSON())
+    }
+
+    return fixed
+  }
+
+  toProxy() {
+    if (!this.proxyCache) {
+      this.proxyCache = new Proxy(this, this.getProxyProcessor())
+    }
+    return this.proxyCache
+  }
+
+  toString(stringifier = stringify) {
+    if (stringifier.stringify) stringifier = stringifier.stringify
+    let result = ''
+    stringifier(this, i => {
+      result += i
+    })
+    return result
+  }
+
+  warn(result, text, opts = {}) {
+    let data = { node: this }
+    for (let i in opts) data[i] = opts[i]
+    return result.warn(text, data)
+  }
+}
+
+module.exports = Node
+Node.default = Node
Index: node_modules/postcss/lib/parse.d.ts
===================================================================
--- node_modules/postcss/lib/parse.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/parse.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,9 @@
+import { Parser } from './postcss.js'
+
+interface Parse extends Parser {
+  default: Parse
+}
+
+declare const parse: Parse
+
+export = parse
Index: node_modules/postcss/lib/parse.js
===================================================================
--- node_modules/postcss/lib/parse.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/parse.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,42 @@
+'use strict'
+
+let Container = require('./container')
+let Input = require('./input')
+let Parser = require('./parser')
+
+function parse(css, opts) {
+  let input = new Input(css, opts)
+  let parser = new Parser(input)
+  try {
+    parser.parse()
+  } catch (e) {
+    if (process.env.NODE_ENV !== 'production') {
+      if (e.name === 'CssSyntaxError' && opts && opts.from) {
+        if (/\.scss$/i.test(opts.from)) {
+          e.message +=
+            '\nYou tried to parse SCSS with ' +
+            'the standard CSS parser; ' +
+            'try again with the postcss-scss parser'
+        } else if (/\.sass/i.test(opts.from)) {
+          e.message +=
+            '\nYou tried to parse Sass with ' +
+            'the standard CSS parser; ' +
+            'try again with the postcss-sass parser'
+        } else if (/\.less$/i.test(opts.from)) {
+          e.message +=
+            '\nYou tried to parse Less with ' +
+            'the standard CSS parser; ' +
+            'try again with the postcss-less parser'
+        }
+      }
+    }
+    throw e
+  }
+
+  return parser.root
+}
+
+module.exports = parse
+parse.default = parse
+
+Container.registerParse(parse)
Index: node_modules/postcss/lib/parser.js
===================================================================
--- node_modules/postcss/lib/parser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/parser.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,611 @@
+'use strict'
+
+let AtRule = require('./at-rule')
+let Comment = require('./comment')
+let Declaration = require('./declaration')
+let Root = require('./root')
+let Rule = require('./rule')
+let tokenizer = require('./tokenize')
+
+const SAFE_COMMENT_NEIGHBOR = {
+  empty: true,
+  space: true
+}
+
+function findLastWithPosition(tokens) {
+  for (let i = tokens.length - 1; i >= 0; i--) {
+    let token = tokens[i]
+    let pos = token[3] || token[2]
+    if (pos) return pos
+  }
+}
+
+class Parser {
+  constructor(input) {
+    this.input = input
+
+    this.root = new Root()
+    this.current = this.root
+    this.spaces = ''
+    this.semicolon = false
+
+    this.createTokenizer()
+    this.root.source = { input, start: { column: 1, line: 1, offset: 0 } }
+  }
+
+  atrule(token) {
+    let node = new AtRule()
+    node.name = token[1].slice(1)
+    if (node.name === '') {
+      this.unnamedAtrule(node, token)
+    }
+    this.init(node, token[2])
+
+    let type
+    let prev
+    let shift
+    let last = false
+    let open = false
+    let params = []
+    let brackets = []
+
+    while (!this.tokenizer.endOfFile()) {
+      token = this.tokenizer.nextToken()
+      type = token[0]
+
+      if (type === '(' || type === '[') {
+        brackets.push(type === '(' ? ')' : ']')
+      } else if (type === '{' && brackets.length > 0) {
+        brackets.push('}')
+      } else if (type === brackets[brackets.length - 1]) {
+        brackets.pop()
+      }
+
+      if (brackets.length === 0) {
+        if (type === ';') {
+          node.source.end = this.getPosition(token[2])
+          node.source.end.offset++
+          this.semicolon = true
+          break
+        } else if (type === '{') {
+          open = true
+          break
+        } else if (type === '}') {
+          if (params.length > 0) {
+            shift = params.length - 1
+            prev = params[shift]
+            while (prev && prev[0] === 'space') {
+              prev = params[--shift]
+            }
+            if (prev) {
+              node.source.end = this.getPosition(prev[3] || prev[2])
+              node.source.end.offset++
+            }
+          }
+          this.end(token)
+          break
+        } else {
+          params.push(token)
+        }
+      } else {
+        params.push(token)
+      }
+
+      if (this.tokenizer.endOfFile()) {
+        last = true
+        break
+      }
+    }
+
+    node.raws.between = this.spacesAndCommentsFromEnd(params)
+    if (params.length) {
+      node.raws.afterName = this.spacesAndCommentsFromStart(params)
+      this.raw(node, 'params', params)
+      if (last) {
+        token = params[params.length - 1]
+        node.source.end = this.getPosition(token[3] || token[2])
+        node.source.end.offset++
+        this.spaces = node.raws.between
+        node.raws.between = ''
+      }
+    } else {
+      node.raws.afterName = ''
+      node.params = ''
+    }
+
+    if (open) {
+      node.nodes = []
+      this.current = node
+    }
+  }
+
+  checkMissedSemicolon(tokens) {
+    let colon = this.colon(tokens)
+    if (colon === false) return
+
+    let founded = 0
+    let token
+    for (let j = colon - 1; j >= 0; j--) {
+      token = tokens[j]
+      if (token[0] !== 'space') {
+        founded += 1
+        if (founded === 2) break
+      }
+    }
+    // If the token is a word, e.g. `!important`, `red` or any other valid property's value.
+    // Then we need to return the colon after that word token. [3] is the "end" colon of that word.
+    // And because we need it after that one we do +1 to get the next one.
+    throw this.input.error(
+      'Missed semicolon',
+      token[0] === 'word' ? token[3] + 1 : token[2]
+    )
+  }
+
+  colon(tokens) {
+    let brackets = 0
+    let prev, token, type
+    for (let [i, element] of tokens.entries()) {
+      token = element
+      type = token[0]
+
+      if (type === '(') {
+        brackets += 1
+      }
+      if (type === ')') {
+        brackets -= 1
+      }
+      if (brackets === 0 && type === ':') {
+        if (!prev) {
+          this.doubleColon(token)
+        } else if (prev[0] === 'word' && prev[1] === 'progid') {
+          continue
+        } else {
+          return i
+        }
+      }
+
+      prev = token
+    }
+    return false
+  }
+
+  comment(token) {
+    let node = new Comment()
+    this.init(node, token[2])
+    node.source.end = this.getPosition(token[3] || token[2])
+    node.source.end.offset++
+
+    let text = token[1].slice(2, -2)
+    if (/^\s*$/.test(text)) {
+      node.text = ''
+      node.raws.left = text
+      node.raws.right = ''
+    } else {
+      let match = text.match(/^(\s*)([^]*\S)(\s*)$/)
+      node.text = match[2]
+      node.raws.left = match[1]
+      node.raws.right = match[3]
+    }
+  }
+
+  createTokenizer() {
+    this.tokenizer = tokenizer(this.input)
+  }
+
+  decl(tokens, customProperty) {
+    let node = new Declaration()
+    this.init(node, tokens[0][2])
+
+    let last = tokens[tokens.length - 1]
+    if (last[0] === ';') {
+      this.semicolon = true
+      tokens.pop()
+    }
+
+    node.source.end = this.getPosition(
+      last[3] || last[2] || findLastWithPosition(tokens)
+    )
+    node.source.end.offset++
+
+    while (tokens[0][0] !== 'word') {
+      if (tokens.length === 1) this.unknownWord(tokens)
+      node.raws.before += tokens.shift()[1]
+    }
+    node.source.start = this.getPosition(tokens[0][2])
+
+    node.prop = ''
+    while (tokens.length) {
+      let type = tokens[0][0]
+      if (type === ':' || type === 'space' || type === 'comment') {
+        break
+      }
+      node.prop += tokens.shift()[1]
+    }
+
+    node.raws.between = ''
+
+    let token
+    while (tokens.length) {
+      token = tokens.shift()
+
+      if (token[0] === ':') {
+        node.raws.between += token[1]
+        break
+      } else {
+        if (token[0] === 'word' && /\w/.test(token[1])) {
+          this.unknownWord([token])
+        }
+        node.raws.between += token[1]
+      }
+    }
+
+    if (node.prop[0] === '_' || node.prop[0] === '*') {
+      node.raws.before += node.prop[0]
+      node.prop = node.prop.slice(1)
+    }
+
+    let firstSpaces = []
+    let next
+    while (tokens.length) {
+      next = tokens[0][0]
+      if (next !== 'space' && next !== 'comment') break
+      firstSpaces.push(tokens.shift())
+    }
+
+    this.precheckMissedSemicolon(tokens)
+
+    for (let i = tokens.length - 1; i >= 0; i--) {
+      token = tokens[i]
+      if (token[1].toLowerCase() === '!important') {
+        node.important = true
+        let string = this.stringFrom(tokens, i)
+        string = this.spacesFromEnd(tokens) + string
+        if (string !== ' !important') node.raws.important = string
+        break
+      } else if (token[1].toLowerCase() === 'important') {
+        let cache = tokens.slice(0)
+        let str = ''
+        for (let j = i; j > 0; j--) {
+          let type = cache[j][0]
+          if (str.trim().startsWith('!') && type !== 'space') {
+            break
+          }
+          str = cache.pop()[1] + str
+        }
+        if (str.trim().startsWith('!')) {
+          node.important = true
+          node.raws.important = str
+          tokens = cache
+        }
+      }
+
+      if (token[0] !== 'space' && token[0] !== 'comment') {
+        break
+      }
+    }
+
+    let hasWord = tokens.some(i => i[0] !== 'space' && i[0] !== 'comment')
+
+    if (hasWord) {
+      node.raws.between += firstSpaces.map(i => i[1]).join('')
+      firstSpaces = []
+    }
+    this.raw(node, 'value', firstSpaces.concat(tokens), customProperty)
+
+    if (node.value.includes(':') && !customProperty) {
+      this.checkMissedSemicolon(tokens)
+    }
+  }
+
+  doubleColon(token) {
+    throw this.input.error(
+      'Double colon',
+      { offset: token[2] },
+      { offset: token[2] + token[1].length }
+    )
+  }
+
+  emptyRule(token) {
+    let node = new Rule()
+    this.init(node, token[2])
+    node.selector = ''
+    node.raws.between = ''
+    this.current = node
+  }
+
+  end(token) {
+    if (this.current.nodes && this.current.nodes.length) {
+      this.current.raws.semicolon = this.semicolon
+    }
+    this.semicolon = false
+
+    this.current.raws.after = (this.current.raws.after || '') + this.spaces
+    this.spaces = ''
+
+    if (this.current.parent) {
+      this.current.source.end = this.getPosition(token[2])
+      this.current.source.end.offset++
+      this.current = this.current.parent
+    } else {
+      this.unexpectedClose(token)
+    }
+  }
+
+  endFile() {
+    if (this.current.parent) this.unclosedBlock()
+    if (this.current.nodes && this.current.nodes.length) {
+      this.current.raws.semicolon = this.semicolon
+    }
+    this.current.raws.after = (this.current.raws.after || '') + this.spaces
+    this.root.source.end = this.getPosition(this.tokenizer.position())
+  }
+
+  freeSemicolon(token) {
+    this.spaces += token[1]
+    if (this.current.nodes) {
+      let prev = this.current.nodes[this.current.nodes.length - 1]
+      if (prev && prev.type === 'rule' && !prev.raws.ownSemicolon) {
+        prev.raws.ownSemicolon = this.spaces
+        this.spaces = ''
+        prev.source.end = this.getPosition(token[2])
+        prev.source.end.offset += prev.raws.ownSemicolon.length
+      }
+    }
+  }
+
+  // Helpers
+
+  getPosition(offset) {
+    let pos = this.input.fromOffset(offset)
+    return {
+      column: pos.col,
+      line: pos.line,
+      offset
+    }
+  }
+
+  init(node, offset) {
+    this.current.push(node)
+    node.source = {
+      input: this.input,
+      start: this.getPosition(offset)
+    }
+    node.raws.before = this.spaces
+    this.spaces = ''
+    if (node.type !== 'comment') this.semicolon = false
+  }
+
+  other(start) {
+    let end = false
+    let type = null
+    let colon = false
+    let bracket = null
+    let brackets = []
+    let customProperty = start[1].startsWith('--')
+
+    let tokens = []
+    let token = start
+    while (token) {
+      type = token[0]
+      tokens.push(token)
+
+      if (type === '(' || type === '[') {
+        if (!bracket) bracket = token
+        brackets.push(type === '(' ? ')' : ']')
+      } else if (customProperty && colon && type === '{') {
+        if (!bracket) bracket = token
+        brackets.push('}')
+      } else if (brackets.length === 0) {
+        if (type === ';') {
+          if (colon) {
+            this.decl(tokens, customProperty)
+            return
+          } else {
+            break
+          }
+        } else if (type === '{') {
+          this.rule(tokens)
+          return
+        } else if (type === '}') {
+          this.tokenizer.back(tokens.pop())
+          end = true
+          break
+        } else if (type === ':') {
+          colon = true
+        }
+      } else if (type === brackets[brackets.length - 1]) {
+        brackets.pop()
+        if (brackets.length === 0) bracket = null
+      }
+
+      token = this.tokenizer.nextToken()
+    }
+
+    if (this.tokenizer.endOfFile()) end = true
+    if (brackets.length > 0) this.unclosedBracket(bracket)
+
+    if (end && colon) {
+      if (!customProperty) {
+        while (tokens.length) {
+          token = tokens[tokens.length - 1][0]
+          if (token !== 'space' && token !== 'comment') break
+          this.tokenizer.back(tokens.pop())
+        }
+      }
+      this.decl(tokens, customProperty)
+    } else {
+      this.unknownWord(tokens)
+    }
+  }
+
+  parse() {
+    let token
+    while (!this.tokenizer.endOfFile()) {
+      token = this.tokenizer.nextToken()
+
+      switch (token[0]) {
+        case 'space':
+          this.spaces += token[1]
+          break
+
+        case ';':
+          this.freeSemicolon(token)
+          break
+
+        case '}':
+          this.end(token)
+          break
+
+        case 'comment':
+          this.comment(token)
+          break
+
+        case 'at-word':
+          this.atrule(token)
+          break
+
+        case '{':
+          this.emptyRule(token)
+          break
+
+        default:
+          this.other(token)
+          break
+      }
+    }
+    this.endFile()
+  }
+
+  precheckMissedSemicolon(/* tokens */) {
+    // Hook for Safe Parser
+  }
+
+  raw(node, prop, tokens, customProperty) {
+    let token, type
+    let length = tokens.length
+    let value = ''
+    let clean = true
+    let next, prev
+
+    for (let i = 0; i < length; i += 1) {
+      token = tokens[i]
+      type = token[0]
+      if (type === 'space' && i === length - 1 && !customProperty) {
+        clean = false
+      } else if (type === 'comment') {
+        prev = tokens[i - 1] ? tokens[i - 1][0] : 'empty'
+        next = tokens[i + 1] ? tokens[i + 1][0] : 'empty'
+        if (!SAFE_COMMENT_NEIGHBOR[prev] && !SAFE_COMMENT_NEIGHBOR[next]) {
+          if (value.slice(-1) === ',') {
+            clean = false
+          } else {
+            value += token[1]
+          }
+        } else {
+          clean = false
+        }
+      } else {
+        value += token[1]
+      }
+    }
+    if (!clean) {
+      let raw = tokens.reduce((all, i) => all + i[1], '')
+      node.raws[prop] = { raw, value }
+    }
+    node[prop] = value
+  }
+
+  rule(tokens) {
+    tokens.pop()
+
+    let node = new Rule()
+    this.init(node, tokens[0][2])
+
+    node.raws.between = this.spacesAndCommentsFromEnd(tokens)
+    this.raw(node, 'selector', tokens)
+    this.current = node
+  }
+
+  spacesAndCommentsFromEnd(tokens) {
+    let lastTokenType
+    let spaces = ''
+    while (tokens.length) {
+      lastTokenType = tokens[tokens.length - 1][0]
+      if (lastTokenType !== 'space' && lastTokenType !== 'comment') break
+      spaces = tokens.pop()[1] + spaces
+    }
+    return spaces
+  }
+
+  // Errors
+
+  spacesAndCommentsFromStart(tokens) {
+    let next
+    let spaces = ''
+    while (tokens.length) {
+      next = tokens[0][0]
+      if (next !== 'space' && next !== 'comment') break
+      spaces += tokens.shift()[1]
+    }
+    return spaces
+  }
+
+  spacesFromEnd(tokens) {
+    let lastTokenType
+    let spaces = ''
+    while (tokens.length) {
+      lastTokenType = tokens[tokens.length - 1][0]
+      if (lastTokenType !== 'space') break
+      spaces = tokens.pop()[1] + spaces
+    }
+    return spaces
+  }
+
+  stringFrom(tokens, from) {
+    let result = ''
+    for (let i = from; i < tokens.length; i++) {
+      result += tokens[i][1]
+    }
+    tokens.splice(from, tokens.length - from)
+    return result
+  }
+
+  unclosedBlock() {
+    let pos = this.current.source.start
+    throw this.input.error('Unclosed block', pos.line, pos.column)
+  }
+
+  unclosedBracket(bracket) {
+    throw this.input.error(
+      'Unclosed bracket',
+      { offset: bracket[2] },
+      { offset: bracket[2] + 1 }
+    )
+  }
+
+  unexpectedClose(token) {
+    throw this.input.error(
+      'Unexpected }',
+      { offset: token[2] },
+      { offset: token[2] + 1 }
+    )
+  }
+
+  unknownWord(tokens) {
+    throw this.input.error(
+      'Unknown word ' + tokens[0][1],
+      { offset: tokens[0][2] },
+      { offset: tokens[0][2] + tokens[0][1].length }
+    )
+  }
+
+  unnamedAtrule(node, token) {
+    throw this.input.error(
+      'At-rule without name',
+      { offset: token[2] },
+      { offset: token[2] + token[1].length }
+    )
+  }
+}
+
+module.exports = Parser
Index: node_modules/postcss/lib/postcss.d.mts
===================================================================
--- node_modules/postcss/lib/postcss.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/postcss.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,69 @@
+export {
+  // Type-only exports
+  AcceptedPlugin,
+
+  AnyNode,
+  atRule,
+  AtRule,
+  AtRuleProps,
+  Builder,
+  ChildNode,
+  ChildProps,
+  comment,
+  Comment,
+  CommentProps,
+  Container,
+  ContainerProps,
+  CssSyntaxError,
+  decl,
+  Declaration,
+  DeclarationProps,
+  // postcss function / namespace
+  default,
+  document,
+  Document,
+  DocumentProps,
+  FilePosition,
+  fromJSON,
+  Helpers,
+  Input,
+
+  JSONHydrator,
+  // This is a class, but it’s not re-exported. That’s why it’s exported as type-only here.
+  type LazyResult,
+  list,
+  Message,
+  Node,
+  NodeErrorOptions,
+  NodeProps,
+  OldPlugin,
+  parse,
+  Parser,
+  // @ts-expect-error This value exists, but it’s untyped.
+  plugin,
+  Plugin,
+  PluginCreator,
+  Position,
+  Postcss,
+  ProcessOptions,
+  Processor,
+  Result,
+  root,
+  Root,
+  RootProps,
+  rule,
+  Rule,
+  RuleProps,
+  Source,
+  SourceMap,
+  SourceMapOptions,
+  Stringifier,
+  // Value exports from postcss.mjs
+  stringify,
+  Syntax,
+  TransformCallback,
+  Transformer,
+  Warning,
+
+  WarningOptions
+} from './postcss.js'
Index: node_modules/postcss/lib/postcss.d.ts
===================================================================
--- node_modules/postcss/lib/postcss.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/postcss.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,458 @@
+import { RawSourceMap, SourceMapGenerator } from 'source-map-js'
+
+import AtRule, { AtRuleProps } from './at-rule.js'
+import Comment, { CommentProps } from './comment.js'
+import Container, { ContainerProps, NewChild } from './container.js'
+import CssSyntaxError from './css-syntax-error.js'
+import Declaration, { DeclarationProps } from './declaration.js'
+import Document, { DocumentProps } from './document.js'
+import Input, { FilePosition } from './input.js'
+import LazyResult from './lazy-result.js'
+import list from './list.js'
+import Node, {
+  AnyNode,
+  ChildNode,
+  ChildProps,
+  NodeErrorOptions,
+  NodeProps,
+  Position,
+  Source
+} from './node.js'
+import Processor from './processor.js'
+import Result, { Message } from './result.js'
+import Root, { RootProps } from './root.js'
+import Rule, { RuleProps } from './rule.js'
+import Warning, { WarningOptions } from './warning.js'
+
+type DocumentProcessor = (
+  document: Document,
+  helper: postcss.Helpers
+) => Promise<void> | void
+type RootProcessor = (
+  root: Root,
+  helper: postcss.Helpers
+) => Promise<void> | void
+type DeclarationProcessor = (
+  decl: Declaration,
+  helper: postcss.Helpers
+) => Promise<void> | void
+type RuleProcessor = (
+  rule: Rule,
+  helper: postcss.Helpers
+) => Promise<void> | void
+type AtRuleProcessor = (
+  atRule: AtRule,
+  helper: postcss.Helpers
+) => Promise<void> | void
+type CommentProcessor = (
+  comment: Comment,
+  helper: postcss.Helpers
+) => Promise<void> | void
+
+interface Processors {
+  /**
+   * Will be called on all`AtRule` nodes.
+   *
+   * Will be called again on node or children changes.
+   */
+  AtRule?: { [name: string]: AtRuleProcessor } | AtRuleProcessor
+
+  /**
+   * Will be called on all `AtRule` nodes, when all children will be processed.
+   *
+   * Will be called again on node or children changes.
+   */
+  AtRuleExit?: { [name: string]: AtRuleProcessor } | AtRuleProcessor
+
+  /**
+   * Will be called on all `Comment` nodes.
+   *
+   * Will be called again on node or children changes.
+   */
+  Comment?: CommentProcessor
+
+  /**
+   * Will be called on all `Comment` nodes after listeners
+   * for `Comment` event.
+   *
+   * Will be called again on node or children changes.
+   */
+  CommentExit?: CommentProcessor
+
+  /**
+   * Will be called on all `Declaration` nodes after listeners
+   * for `Declaration` event.
+   *
+   * Will be called again on node or children changes.
+   */
+  Declaration?: { [prop: string]: DeclarationProcessor } | DeclarationProcessor
+
+  /**
+   * Will be called on all `Declaration` nodes.
+   *
+   * Will be called again on node or children changes.
+   */
+  DeclarationExit?:
+    | { [prop: string]: DeclarationProcessor }
+    | DeclarationProcessor
+
+  /**
+   * Will be called on `Document` node.
+   *
+   * Will be called again on children changes.
+   */
+  Document?: DocumentProcessor
+
+  /**
+   * Will be called on `Document` node, when all children will be processed.
+   *
+   * Will be called again on children changes.
+   */
+  DocumentExit?: DocumentProcessor
+
+  /**
+   * Will be called on `Root` node once.
+   */
+  Once?: RootProcessor
+
+  /**
+   * Will be called on `Root` node once, when all children will be processed.
+   */
+  OnceExit?: RootProcessor
+
+  /**
+   * Will be called on `Root` node.
+   *
+   * Will be called again on children changes.
+   */
+  Root?: RootProcessor
+
+  /**
+   * Will be called on `Root` node, when all children will be processed.
+   *
+   * Will be called again on children changes.
+   */
+  RootExit?: RootProcessor
+
+  /**
+   * Will be called on all `Rule` nodes.
+   *
+   * Will be called again on node or children changes.
+   */
+  Rule?: RuleProcessor
+
+  /**
+   * Will be called on all `Rule` nodes, when all children will be processed.
+   *
+   * Will be called again on node or children changes.
+   */
+  RuleExit?: RuleProcessor
+}
+
+declare namespace postcss {
+  export {
+    AnyNode,
+    AtRule,
+    AtRuleProps,
+    ChildNode,
+    ChildProps,
+    Comment,
+    CommentProps,
+    Container,
+    ContainerProps,
+    CssSyntaxError,
+    Declaration,
+    DeclarationProps,
+    Document,
+    DocumentProps,
+    FilePosition,
+    Input,
+    LazyResult,
+    list,
+    Message,
+    NewChild,
+    Node,
+    NodeErrorOptions,
+    NodeProps,
+    Position,
+    Processor,
+    Result,
+    Root,
+    RootProps,
+    Rule,
+    RuleProps,
+    Source,
+    Warning,
+    WarningOptions
+  }
+
+  export type SourceMap = {
+    toJSON(): RawSourceMap
+  } & SourceMapGenerator
+
+  export type Helpers = { postcss: Postcss; result: Result } & Postcss
+
+  export interface Plugin extends Processors {
+    postcssPlugin: string
+    prepare?: (result: Result) => Processors
+  }
+
+  export interface PluginCreator<PluginOptions> {
+    (opts?: PluginOptions): Plugin | Processor
+    postcss: true
+  }
+
+  export interface Transformer extends TransformCallback {
+    postcssPlugin: string
+    postcssVersion: string
+  }
+
+  export interface TransformCallback {
+    (root: Root, result: Result): Promise<void> | void
+  }
+
+  export interface OldPlugin<T> extends Transformer {
+    (opts?: T): Transformer
+    postcss: Transformer
+  }
+
+  export type AcceptedPlugin =
+    | {
+        postcss: Processor | TransformCallback
+      }
+    | OldPlugin<any>
+    | Plugin
+    | PluginCreator<any>
+    | Processor
+    | TransformCallback
+
+  export interface Parser<RootNode = Document | Root> {
+    (
+      css: { toString(): string } | string,
+      opts?: Pick<ProcessOptions, 'document' | 'from' | 'map'>
+    ): RootNode
+  }
+
+  export interface Builder {
+    (part: string, node?: AnyNode, type?: 'end' | 'start'): void
+  }
+
+  export interface Stringifier {
+    (node: AnyNode, builder: Builder): void
+  }
+
+  export interface JSONHydrator {
+    (data: object): Node
+    (data: object[]): Node[]
+  }
+
+  export interface Syntax<RootNode = Document | Root> {
+    /**
+     * Function to generate AST by string.
+     */
+    parse?: Parser<RootNode>
+
+    /**
+     * Class to generate string by AST.
+     */
+    stringify?: Stringifier
+  }
+
+  export interface SourceMapOptions {
+    /**
+     * Use absolute path in generated source map.
+     */
+    absolute?: boolean
+
+    /**
+     * Indicates that PostCSS should add annotation comments to the CSS.
+     * By default, PostCSS will always add a comment with a path
+     * to the source map. PostCSS will not add annotations to CSS files
+     * that do not contain any comments.
+     *
+     * By default, PostCSS presumes that you want to save the source map as
+     * `opts.to + '.map'` and will use this path in the annotation comment.
+     * A different path can be set by providing a string value for annotation.
+     *
+     * If you have set `inline: true`, annotation cannot be disabled.
+     */
+    annotation?: ((file: string, root: Root) => string) | boolean | string
+
+    /**
+     * Override `from` in map’s sources.
+     */
+    from?: string
+
+    /**
+     * Indicates that the source map should be embedded in the output CSS
+     * as a Base64-encoded comment. By default, it is `true`.
+     * But if all previous maps are external, not inline, PostCSS will not embed
+     * the map even if you do not set this option.
+     *
+     * If you have an inline source map, the result.map property will be empty,
+     * as the source map will be contained within the text of `result.css`.
+     */
+    inline?: boolean
+
+    /**
+     * Source map content from a previous processing step (e.g., Sass).
+     *
+     * PostCSS will try to read the previous source map
+     * automatically (based on comments within the source CSS), but you can use
+     * this option to identify it manually.
+     *
+     * If desired, you can omit the previous map with prev: `false`.
+     */
+    prev?: ((file: string) => string) | boolean | object | string
+
+    /**
+     * Indicates that PostCSS should set the origin content (e.g., Sass source)
+     * of the source map. By default, it is true. But if all previous maps do not
+     * contain sources content, PostCSS will also leave it out even if you
+     * do not set this option.
+     */
+    sourcesContent?: boolean
+  }
+
+  export interface ProcessOptions<RootNode = Document | Root> {
+    /**
+     * Input file if it is not simple CSS file, but HTML with <style> or JS with CSS-in-JS blocks.
+     */
+    document?: string
+
+    /**
+     * The path of the CSS source file. You should always set `from`,
+     * because it is used in source map generation and syntax error messages.
+     */
+    from?: string | undefined
+
+    /**
+     * Source map options
+     */
+    map?: boolean | SourceMapOptions
+
+    /**
+     * Function to generate AST by string.
+     */
+    parser?: Parser<RootNode> | Syntax<RootNode>
+
+    /**
+     * Class to generate string by AST.
+     */
+    stringifier?: Stringifier | Syntax<RootNode>
+
+    /**
+     * Object with parse and stringify.
+     */
+    syntax?: Syntax<RootNode>
+
+    /**
+     * The path where you'll put the output CSS file. You should always set `to`
+     * to generate correct source maps.
+     */
+    to?: string
+  }
+
+  export type Postcss = typeof postcss
+
+  /**
+   * Default function to convert a node tree into a CSS string.
+   */
+  export let stringify: Stringifier
+
+  /**
+   * Parses source css and returns a new `Root` or `Document` node,
+   * which contains the source CSS nodes.
+   *
+   * ```js
+   * // Simple CSS concatenation with source map support
+   * const root1 = postcss.parse(css1, { from: file1 })
+   * const root2 = postcss.parse(css2, { from: file2 })
+   * root1.append(root2).toResult().css
+   * ```
+   */
+  export let parse: Parser<Root>
+
+  /**
+   * Rehydrate a JSON AST (from `Node#toJSON`) back into the AST classes.
+   *
+   * ```js
+   * const json = root.toJSON()
+   * // save to file, send by network, etc
+   * const root2  = postcss.fromJSON(json)
+   * ```
+   */
+  export let fromJSON: JSONHydrator
+
+  /**
+   * Creates a new `Comment` node.
+   *
+   * @param defaults Properties for the new node.
+   * @return New comment node
+   */
+  export function comment(defaults?: CommentProps): Comment
+
+  /**
+   * Creates a new `AtRule` node.
+   *
+   * @param defaults Properties for the new node.
+   * @return New at-rule node.
+   */
+  export function atRule(defaults?: AtRuleProps): AtRule
+
+  /**
+   * Creates a new `Declaration` node.
+   *
+   * @param defaults Properties for the new node.
+   * @return New declaration node.
+   */
+  export function decl(defaults?: DeclarationProps): Declaration
+
+  /**
+   * Creates a new `Rule` node.
+   *
+   * @param default Properties for the new node.
+   * @return New rule node.
+   */
+  export function rule(defaults?: RuleProps): Rule
+
+  /**
+   * Creates a new `Root` node.
+   *
+   * @param defaults Properties for the new node.
+   * @return New root node.
+   */
+  export function root(defaults?: RootProps): Root
+
+  /**
+   * Creates a new `Document` node.
+   *
+   * @param defaults Properties for the new node.
+   * @return New document node.
+   */
+  export function document(defaults?: DocumentProps): Document
+
+  export { postcss as default }
+}
+
+/**
+ * Create a new `Processor` instance that will apply `plugins`
+ * as CSS processors.
+ *
+ * ```js
+ * let postcss = require('postcss')
+ *
+ * postcss(plugins).process(css, { from, to }).then(result => {
+ *   console.log(result.css)
+ * })
+ * ```
+ *
+ * @param plugins PostCSS plugins.
+ * @return Processor to process multiple CSS.
+ */
+declare function postcss(
+  plugins?: readonly postcss.AcceptedPlugin[]
+): Processor
+declare function postcss(...plugins: postcss.AcceptedPlugin[]): Processor
+
+export = postcss
Index: node_modules/postcss/lib/postcss.js
===================================================================
--- node_modules/postcss/lib/postcss.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/postcss.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,101 @@
+'use strict'
+
+let AtRule = require('./at-rule')
+let Comment = require('./comment')
+let Container = require('./container')
+let CssSyntaxError = require('./css-syntax-error')
+let Declaration = require('./declaration')
+let Document = require('./document')
+let fromJSON = require('./fromJSON')
+let Input = require('./input')
+let LazyResult = require('./lazy-result')
+let list = require('./list')
+let Node = require('./node')
+let parse = require('./parse')
+let Processor = require('./processor')
+let Result = require('./result.js')
+let Root = require('./root')
+let Rule = require('./rule')
+let stringify = require('./stringify')
+let Warning = require('./warning')
+
+function postcss(...plugins) {
+  if (plugins.length === 1 && Array.isArray(plugins[0])) {
+    plugins = plugins[0]
+  }
+  return new Processor(plugins)
+}
+
+postcss.plugin = function plugin(name, initializer) {
+  let warningPrinted = false
+  function creator(...args) {
+    // eslint-disable-next-line no-console
+    if (console && console.warn && !warningPrinted) {
+      warningPrinted = true
+      // eslint-disable-next-line no-console
+      console.warn(
+        name +
+          ': postcss.plugin was deprecated. Migration guide:\n' +
+          'https://evilmartians.com/chronicles/postcss-8-plugin-migration'
+      )
+      if (process.env.LANG && process.env.LANG.startsWith('cn')) {
+        /* c8 ignore next 7 */
+        // eslint-disable-next-line no-console
+        console.warn(
+          name +
+            ': 里面 postcss.plugin 被弃用. 迁移指南:\n' +
+            'https://www.w3ctech.com/topic/2226'
+        )
+      }
+    }
+    let transformer = initializer(...args)
+    transformer.postcssPlugin = name
+    transformer.postcssVersion = new Processor().version
+    return transformer
+  }
+
+  let cache
+  Object.defineProperty(creator, 'postcss', {
+    get() {
+      if (!cache) cache = creator()
+      return cache
+    }
+  })
+
+  creator.process = function (css, processOpts, pluginOpts) {
+    return postcss([creator(pluginOpts)]).process(css, processOpts)
+  }
+
+  return creator
+}
+
+postcss.stringify = stringify
+postcss.parse = parse
+postcss.fromJSON = fromJSON
+postcss.list = list
+
+postcss.comment = defaults => new Comment(defaults)
+postcss.atRule = defaults => new AtRule(defaults)
+postcss.decl = defaults => new Declaration(defaults)
+postcss.rule = defaults => new Rule(defaults)
+postcss.root = defaults => new Root(defaults)
+postcss.document = defaults => new Document(defaults)
+
+postcss.CssSyntaxError = CssSyntaxError
+postcss.Declaration = Declaration
+postcss.Container = Container
+postcss.Processor = Processor
+postcss.Document = Document
+postcss.Comment = Comment
+postcss.Warning = Warning
+postcss.AtRule = AtRule
+postcss.Result = Result
+postcss.Input = Input
+postcss.Rule = Rule
+postcss.Root = Root
+postcss.Node = Node
+
+LazyResult.registerPostcss(postcss)
+
+module.exports = postcss
+postcss.default = postcss
Index: node_modules/postcss/lib/postcss.mjs
===================================================================
--- node_modules/postcss/lib/postcss.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/postcss.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,30 @@
+import postcss from './postcss.js'
+
+export default postcss
+
+export const stringify = postcss.stringify
+export const fromJSON = postcss.fromJSON
+export const plugin = postcss.plugin
+export const parse = postcss.parse
+export const list = postcss.list
+
+export const document = postcss.document
+export const comment = postcss.comment
+export const atRule = postcss.atRule
+export const rule = postcss.rule
+export const decl = postcss.decl
+export const root = postcss.root
+
+export const CssSyntaxError = postcss.CssSyntaxError
+export const Declaration = postcss.Declaration
+export const Container = postcss.Container
+export const Processor = postcss.Processor
+export const Document = postcss.Document
+export const Comment = postcss.Comment
+export const Warning = postcss.Warning
+export const AtRule = postcss.AtRule
+export const Result = postcss.Result
+export const Input = postcss.Input
+export const Rule = postcss.Rule
+export const Root = postcss.Root
+export const Node = postcss.Node
Index: node_modules/postcss/lib/previous-map.d.ts
===================================================================
--- node_modules/postcss/lib/previous-map.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/previous-map.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,81 @@
+import { SourceMapConsumer } from 'source-map-js'
+
+import { ProcessOptions } from './postcss.js'
+
+declare namespace PreviousMap {
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { PreviousMap_ as default }
+}
+
+/**
+ * Source map information from input CSS.
+ * For example, source map after Sass compiler.
+ *
+ * This class will automatically find source map in input CSS or in file system
+ * near input file (according `from` option).
+ *
+ * ```js
+ * const root = parse(css, { from: 'a.sass.css' })
+ * root.input.map //=> PreviousMap
+ * ```
+ */
+declare class PreviousMap_ {
+  /**
+   * `sourceMappingURL` content.
+   */
+  annotation?: string
+
+  /**
+   * The CSS source identifier. Contains `Input#file` if the user
+   * set the `from` option, or `Input#id` if they did not.
+   */
+  file?: string
+
+  /**
+   * Was source map inlined by data-uri to input CSS.
+   */
+  inline: boolean
+
+  /**
+   * Path to source map file.
+   */
+  mapFile?: string
+
+  /**
+   * The directory with source map file, if source map is in separated file.
+   */
+  root?: string
+
+  /**
+   * Source map file content.
+   */
+  text?: string
+
+  /**
+   * @param css  Input CSS source.
+   * @param opts Process options.
+   */
+  constructor(css: string, opts?: ProcessOptions)
+
+  /**
+   * Create a instance of `SourceMapGenerator` class
+   * from the `source-map` library to work with source map information.
+   *
+   * It is lazy method, so it will create object only on first call
+   * and then it will use cache.
+   *
+   * @return Object with source map information.
+   */
+  consumer(): SourceMapConsumer
+
+  /**
+   * Does source map contains `sourcesContent` with input source text.
+   *
+   * @return Is `sourcesContent` present.
+   */
+  withContent(): boolean
+}
+
+declare class PreviousMap extends PreviousMap_ {}
+
+export = PreviousMap
Index: node_modules/postcss/lib/previous-map.js
===================================================================
--- node_modules/postcss/lib/previous-map.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/previous-map.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,144 @@
+'use strict'
+
+let { existsSync, readFileSync } = require('fs')
+let { dirname, join } = require('path')
+let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js')
+
+function fromBase64(str) {
+  if (Buffer) {
+    return Buffer.from(str, 'base64').toString()
+  } else {
+    /* c8 ignore next 2 */
+    return window.atob(str)
+  }
+}
+
+class PreviousMap {
+  constructor(css, opts) {
+    if (opts.map === false) return
+    this.loadAnnotation(css)
+    this.inline = this.startWith(this.annotation, 'data:')
+
+    let prev = opts.map ? opts.map.prev : undefined
+    let text = this.loadMap(opts.from, prev)
+    if (!this.mapFile && opts.from) {
+      this.mapFile = opts.from
+    }
+    if (this.mapFile) this.root = dirname(this.mapFile)
+    if (text) this.text = text
+  }
+
+  consumer() {
+    if (!this.consumerCache) {
+      this.consumerCache = new SourceMapConsumer(this.text)
+    }
+    return this.consumerCache
+  }
+
+  decodeInline(text) {
+    let baseCharsetUri = /^data:application\/json;charset=utf-?8;base64,/
+    let baseUri = /^data:application\/json;base64,/
+    let charsetUri = /^data:application\/json;charset=utf-?8,/
+    let uri = /^data:application\/json,/
+
+    let uriMatch = text.match(charsetUri) || text.match(uri)
+    if (uriMatch) {
+      return decodeURIComponent(text.substr(uriMatch[0].length))
+    }
+
+    let baseUriMatch = text.match(baseCharsetUri) || text.match(baseUri)
+    if (baseUriMatch) {
+      return fromBase64(text.substr(baseUriMatch[0].length))
+    }
+
+    let encoding = text.match(/data:application\/json;([^,]+),/)[1]
+    throw new Error('Unsupported source map encoding ' + encoding)
+  }
+
+  getAnnotationURL(sourceMapString) {
+    return sourceMapString.replace(/^\/\*\s*# sourceMappingURL=/, '').trim()
+  }
+
+  isMap(map) {
+    if (typeof map !== 'object') return false
+    return (
+      typeof map.mappings === 'string' ||
+      typeof map._mappings === 'string' ||
+      Array.isArray(map.sections)
+    )
+  }
+
+  loadAnnotation(css) {
+    let comments = css.match(/\/\*\s*# sourceMappingURL=/g)
+    if (!comments) return
+
+    // sourceMappingURLs from comments, strings, etc.
+    let start = css.lastIndexOf(comments.pop())
+    let end = css.indexOf('*/', start)
+
+    if (start > -1 && end > -1) {
+      // Locate the last sourceMappingURL to avoid pickin
+      this.annotation = this.getAnnotationURL(css.substring(start, end))
+    }
+  }
+
+  loadFile(path) {
+    this.root = dirname(path)
+    if (existsSync(path)) {
+      this.mapFile = path
+      return readFileSync(path, 'utf-8').toString().trim()
+    }
+  }
+
+  loadMap(file, prev) {
+    if (prev === false) return false
+
+    if (prev) {
+      if (typeof prev === 'string') {
+        return prev
+      } else if (typeof prev === 'function') {
+        let prevPath = prev(file)
+        if (prevPath) {
+          let map = this.loadFile(prevPath)
+          if (!map) {
+            throw new Error(
+              'Unable to load previous source map: ' + prevPath.toString()
+            )
+          }
+          return map
+        }
+      } else if (prev instanceof SourceMapConsumer) {
+        return SourceMapGenerator.fromSourceMap(prev).toString()
+      } else if (prev instanceof SourceMapGenerator) {
+        return prev.toString()
+      } else if (this.isMap(prev)) {
+        return JSON.stringify(prev)
+      } else {
+        throw new Error(
+          'Unsupported previous source map format: ' + prev.toString()
+        )
+      }
+    } else if (this.inline) {
+      return this.decodeInline(this.annotation)
+    } else if (this.annotation) {
+      let map = this.annotation
+      if (file) map = join(dirname(file), map)
+      return this.loadFile(map)
+    }
+  }
+
+  startWith(string, start) {
+    if (!string) return false
+    return string.substr(0, start.length) === start
+  }
+
+  withContent() {
+    return !!(
+      this.consumer().sourcesContent &&
+      this.consumer().sourcesContent.length > 0
+    )
+  }
+}
+
+module.exports = PreviousMap
+PreviousMap.default = PreviousMap
Index: node_modules/postcss/lib/processor.d.ts
===================================================================
--- node_modules/postcss/lib/processor.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/processor.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,115 @@
+import Document from './document.js'
+import LazyResult from './lazy-result.js'
+import NoWorkResult from './no-work-result.js'
+import {
+  AcceptedPlugin,
+  Plugin,
+  ProcessOptions,
+  TransformCallback,
+  Transformer
+} from './postcss.js'
+import Result from './result.js'
+import Root from './root.js'
+
+declare namespace Processor {
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Processor_ as default }
+}
+
+/**
+ * Contains plugins to process CSS. Create one `Processor` instance,
+ * initialize its plugins, and then use that instance on numerous CSS files.
+ *
+ * ```js
+ * const processor = postcss([autoprefixer, postcssNested])
+ * processor.process(css1).then(result => console.log(result.css))
+ * processor.process(css2).then(result => console.log(result.css))
+ * ```
+ */
+declare class Processor_ {
+  /**
+   * Plugins added to this processor.
+   *
+   * ```js
+   * const processor = postcss([autoprefixer, postcssNested])
+   * processor.plugins.length //=> 2
+   * ```
+   */
+  plugins: (Plugin | TransformCallback | Transformer)[]
+
+  /**
+   * Current PostCSS version.
+   *
+   * ```js
+   * if (result.processor.version.split('.')[0] !== '6') {
+   *   throw new Error('This plugin works only with PostCSS 6')
+   * }
+   * ```
+   */
+  version: string
+
+  /**
+   * @param plugins PostCSS plugins
+   */
+  constructor(plugins?: readonly AcceptedPlugin[])
+
+  /**
+   * Parses source CSS and returns a `LazyResult` Promise proxy.
+   * Because some plugins can be asynchronous it doesn’t make
+   * any transformations. Transformations will be applied
+   * in the `LazyResult` methods.
+   *
+   * ```js
+   * processor.process(css, { from: 'a.css', to: 'a.out.css' })
+   *   .then(result => {
+   *      console.log(result.css)
+   *   })
+   * ```
+   *
+   * @param css String with input CSS or any object with a `toString()` method,
+   *            like a Buffer. Optionally, send a `Result` instance
+   *            and the processor will take the `Root` from it.
+   * @param opts Options.
+   * @return Promise proxy.
+   */
+  process(
+    css: { toString(): string } | LazyResult | Result | Root | string
+  ): LazyResult | NoWorkResult
+  process<RootNode extends Document | Root = Root>(
+    css: { toString(): string } | LazyResult | Result | Root | string,
+    options: ProcessOptions<RootNode>
+  ): LazyResult<RootNode>
+
+  /**
+   * Adds a plugin to be used as a CSS processor.
+   *
+   * PostCSS plugin can be in 4 formats:
+   * * A plugin in `Plugin` format.
+   * * A plugin creator function with `pluginCreator.postcss = true`.
+   *   PostCSS will call this function without argument to get plugin.
+   * * A function. PostCSS will pass the function a {@link Root}
+   *   as the first argument and current `Result` instance
+   *   as the second.
+   * * Another `Processor` instance. PostCSS will copy plugins
+   *   from that instance into this one.
+   *
+   * Plugins can also be added by passing them as arguments when creating
+   * a `postcss` instance (see [`postcss(plugins)`]).
+   *
+   * Asynchronous plugins should return a `Promise` instance.
+   *
+   * ```js
+   * const processor = postcss()
+   *   .use(autoprefixer)
+   *   .use(postcssNested)
+   * ```
+   *
+   * @param plugin PostCSS plugin or `Processor` with plugins.
+   * @return Current processor to make methods chain.
+   */
+  use(plugin: AcceptedPlugin): this
+}
+
+declare class Processor extends Processor_ {}
+
+export = Processor
Index: node_modules/postcss/lib/processor.js
===================================================================
--- node_modules/postcss/lib/processor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/processor.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,67 @@
+'use strict'
+
+let Document = require('./document')
+let LazyResult = require('./lazy-result')
+let NoWorkResult = require('./no-work-result')
+let Root = require('./root')
+
+class Processor {
+  constructor(plugins = []) {
+    this.version = '8.5.6'
+    this.plugins = this.normalize(plugins)
+  }
+
+  normalize(plugins) {
+    let normalized = []
+    for (let i of plugins) {
+      if (i.postcss === true) {
+        i = i()
+      } else if (i.postcss) {
+        i = i.postcss
+      }
+
+      if (typeof i === 'object' && Array.isArray(i.plugins)) {
+        normalized = normalized.concat(i.plugins)
+      } else if (typeof i === 'object' && i.postcssPlugin) {
+        normalized.push(i)
+      } else if (typeof i === 'function') {
+        normalized.push(i)
+      } else if (typeof i === 'object' && (i.parse || i.stringify)) {
+        if (process.env.NODE_ENV !== 'production') {
+          throw new Error(
+            'PostCSS syntaxes cannot be used as plugins. Instead, please use ' +
+              'one of the syntax/parser/stringifier options as outlined ' +
+              'in your PostCSS runner documentation.'
+          )
+        }
+      } else {
+        throw new Error(i + ' is not a PostCSS plugin')
+      }
+    }
+    return normalized
+  }
+
+  process(css, opts = {}) {
+    if (
+      !this.plugins.length &&
+      !opts.parser &&
+      !opts.stringifier &&
+      !opts.syntax
+    ) {
+      return new NoWorkResult(this, css, opts)
+    } else {
+      return new LazyResult(this, css, opts)
+    }
+  }
+
+  use(plugin) {
+    this.plugins = this.plugins.concat(this.normalize([plugin]))
+    return this
+  }
+}
+
+module.exports = Processor
+Processor.default = Processor
+
+Root.registerProcessor(Processor)
+Document.registerProcessor(Processor)
Index: node_modules/postcss/lib/result.d.ts
===================================================================
--- node_modules/postcss/lib/result.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/result.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,205 @@
+import {
+  Document,
+  Node,
+  Plugin,
+  ProcessOptions,
+  Root,
+  SourceMap,
+  TransformCallback,
+  Warning,
+  WarningOptions
+} from './postcss.js'
+import Processor from './processor.js'
+
+declare namespace Result {
+  export interface Message {
+    [others: string]: any
+
+    /**
+     * Source PostCSS plugin name.
+     */
+    plugin?: string
+
+    /**
+     * Message type.
+     */
+    type: string
+  }
+
+  export interface ResultOptions extends ProcessOptions {
+    /**
+     * The CSS node that was the source of the warning.
+     */
+    node?: Node
+
+    /**
+     * Name of plugin that created this warning. `Result#warn` will fill it
+     * automatically with `Plugin#postcssPlugin` value.
+     */
+    plugin?: string
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Result_ as default }
+}
+
+/**
+ * Provides the result of the PostCSS transformations.
+ *
+ * A Result instance is returned by `LazyResult#then`
+ * or `Root#toResult` methods.
+ *
+ * ```js
+ * postcss([autoprefixer]).process(css).then(result => {
+ *  console.log(result.css)
+ * })
+ * ```
+ *
+ * ```js
+ * const result2 = postcss.parse(css).toResult()
+ * ```
+ */
+declare class Result_<RootNode = Document | Root> {
+  /**
+   * A CSS string representing of `Result#root`.
+   *
+   * ```js
+   * postcss.parse('a{}').toResult().css //=> "a{}"
+   * ```
+   */
+  css: string
+
+  /**
+   * Last runned PostCSS plugin.
+   */
+  lastPlugin: Plugin | TransformCallback
+
+  /**
+   * An instance of `SourceMapGenerator` class from the `source-map` library,
+   * representing changes to the `Result#root` instance.
+   *
+   * ```js
+   * result.map.toJSON() //=> { version: 3, file: 'a.css', … }
+   * ```
+   *
+   * ```js
+   * if (result.map) {
+   *   fs.writeFileSync(result.opts.to + '.map', result.map.toString())
+   * }
+   * ```
+   */
+  map: SourceMap
+
+  /**
+   * Contains messages from plugins (e.g., warnings or custom messages).
+   * Each message should have type and plugin properties.
+   *
+   * ```js
+   * AtRule: {
+   *   import: (atRule, { result }) {
+   *     const importedFile = parseImport(atRule)
+   *     result.messages.push({
+   *       type: 'dependency',
+   *       plugin: 'postcss-import',
+   *       file: importedFile,
+   *       parent: result.opts.from
+   *     })
+   *   }
+   * }
+   * ```
+   */
+  messages: Result.Message[]
+
+  /**
+   * Options from the `Processor#process` or `Root#toResult` call
+   * that produced this Result instance.]
+   *
+   * ```js
+   * root.toResult(opts).opts === opts
+   * ```
+   */
+  opts: Result.ResultOptions
+
+  /**
+   * The Processor instance used for this transformation.
+   *
+   * ```js
+   * for (const plugin of result.processor.plugins) {
+   *   if (plugin.postcssPlugin === 'postcss-bad') {
+   *     throw 'postcss-good is incompatible with postcss-bad'
+   *   }
+   * })
+   * ```
+   */
+  processor: Processor
+
+  /**
+   * Root node after all transformations.
+   *
+   * ```js
+   * root.toResult().root === root
+   * ```
+   */
+  root: RootNode
+
+  /**
+   * An alias for the `Result#css` property.
+   * Use it with syntaxes that generate non-CSS output.
+   *
+   * ```js
+   * result.css === result.content
+   * ```
+   */
+  get content(): string
+
+  /**
+   * @param processor Processor used for this transformation.
+   * @param root      Root node after all transformations.
+   * @param opts      Options from the `Processor#process` or `Root#toResult`.
+   */
+  constructor(processor: Processor, root: RootNode, opts: Result.ResultOptions)
+
+  /**
+   * Returns for `Result#css` content.
+   *
+   * ```js
+   * result + '' === result.css
+   * ```
+   *
+   * @return String representing of `Result#root`.
+   */
+  toString(): string
+
+  /**
+   * Creates an instance of `Warning` and adds it to `Result#messages`.
+   *
+   * ```js
+   * if (decl.important) {
+   *   result.warn('Avoid !important', { node: decl, word: '!important' })
+   * }
+   * ```
+   *
+   * @param text Warning message.
+   * @param opts Warning options.
+   * @return Created warning.
+   */
+  warn(message: string, options?: WarningOptions): Warning
+
+  /**
+   * Returns warnings from plugins. Filters `Warning` instances
+   * from `Result#messages`.
+   *
+   * ```js
+   * result.warnings().forEach(warn => {
+   *   console.warn(warn.toString())
+   * })
+   * ```
+   *
+   * @return Warnings from plugins.
+   */
+  warnings(): Warning[]
+}
+
+declare class Result<RootNode = Document | Root> extends Result_<RootNode> {}
+
+export = Result
Index: node_modules/postcss/lib/result.js
===================================================================
--- node_modules/postcss/lib/result.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/result.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,42 @@
+'use strict'
+
+let Warning = require('./warning')
+
+class Result {
+  get content() {
+    return this.css
+  }
+
+  constructor(processor, root, opts) {
+    this.processor = processor
+    this.messages = []
+    this.root = root
+    this.opts = opts
+    this.css = ''
+    this.map = undefined
+  }
+
+  toString() {
+    return this.css
+  }
+
+  warn(text, opts = {}) {
+    if (!opts.plugin) {
+      if (this.lastPlugin && this.lastPlugin.postcssPlugin) {
+        opts.plugin = this.lastPlugin.postcssPlugin
+      }
+    }
+
+    let warning = new Warning(text, opts)
+    this.messages.push(warning)
+
+    return warning
+  }
+
+  warnings() {
+    return this.messages.filter(i => i.type === 'warning')
+  }
+}
+
+module.exports = Result
+Result.default = Result
Index: node_modules/postcss/lib/root.d.ts
===================================================================
--- node_modules/postcss/lib/root.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/root.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,87 @@
+import Container, { ContainerProps } from './container.js'
+import Document from './document.js'
+import { ProcessOptions } from './postcss.js'
+import Result from './result.js'
+
+declare namespace Root {
+  export interface RootRaws extends Record<string, any> {
+    /**
+     * The space symbols after the last child to the end of file.
+     */
+    after?: string
+
+    /**
+     * Non-CSS code after `Root`, when `Root` is inside `Document`.
+     *
+     * **Experimental:** some aspects of this node could change within minor
+     * or patch version releases.
+     */
+    codeAfter?: string
+
+    /**
+     * Non-CSS code before `Root`, when `Root` is inside `Document`.
+     *
+     * **Experimental:** some aspects of this node could change within minor
+     * or patch version releases.
+     */
+    codeBefore?: string
+
+    /**
+     * Is the last child has an (optional) semicolon.
+     */
+    semicolon?: boolean
+  }
+
+  export interface RootProps extends ContainerProps {
+    /**
+     * Information used to generate byte-to-byte equal node string
+     * as it was in the origin input.
+     * */
+    raws?: RootRaws
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Root_ as default }
+}
+
+/**
+ * Represents a CSS file and contains all its parsed nodes.
+ *
+ * ```js
+ * const root = postcss.parse('a{color:black} b{z-index:2}')
+ * root.type         //=> 'root'
+ * root.nodes.length //=> 2
+ * ```
+ */
+declare class Root_ extends Container {
+  nodes: NonNullable<Container['nodes']>
+  parent: Document | undefined
+  raws: Root.RootRaws
+  type: 'root'
+
+  constructor(defaults?: Root.RootProps)
+
+  assign(overrides: object | Root.RootProps): this
+  clone(overrides?: Partial<Root.RootProps>): this
+  cloneAfter(overrides?: Partial<Root.RootProps>): this
+  cloneBefore(overrides?: Partial<Root.RootProps>): this
+
+  /**
+   * Returns a `Result` instance representing the root’s CSS.
+   *
+   * ```js
+   * const root1 = postcss.parse(css1, { from: 'a.css' })
+   * const root2 = postcss.parse(css2, { from: 'b.css' })
+   * root1.append(root2)
+   * const result = root1.toResult({ to: 'all.css', map: true })
+   * ```
+   *
+   * @param options Options.
+   * @return Result with current root’s CSS.
+   */
+  toResult(options?: ProcessOptions): Result
+}
+
+declare class Root extends Root_ {}
+
+export = Root
Index: node_modules/postcss/lib/root.js
===================================================================
--- node_modules/postcss/lib/root.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/root.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,61 @@
+'use strict'
+
+let Container = require('./container')
+
+let LazyResult, Processor
+
+class Root extends Container {
+  constructor(defaults) {
+    super(defaults)
+    this.type = 'root'
+    if (!this.nodes) this.nodes = []
+  }
+
+  normalize(child, sample, type) {
+    let nodes = super.normalize(child)
+
+    if (sample) {
+      if (type === 'prepend') {
+        if (this.nodes.length > 1) {
+          sample.raws.before = this.nodes[1].raws.before
+        } else {
+          delete sample.raws.before
+        }
+      } else if (this.first !== sample) {
+        for (let node of nodes) {
+          node.raws.before = sample.raws.before
+        }
+      }
+    }
+
+    return nodes
+  }
+
+  removeChild(child, ignore) {
+    let index = this.index(child)
+
+    if (!ignore && index === 0 && this.nodes.length > 1) {
+      this.nodes[1].raws.before = this.nodes[index].raws.before
+    }
+
+    return super.removeChild(child)
+  }
+
+  toResult(opts = {}) {
+    let lazy = new LazyResult(new Processor(), this, opts)
+    return lazy.stringify()
+  }
+}
+
+Root.registerLazyResult = dependant => {
+  LazyResult = dependant
+}
+
+Root.registerProcessor = dependant => {
+  Processor = dependant
+}
+
+module.exports = Root
+Root.default = Root
+
+Container.registerRoot(Root)
Index: node_modules/postcss/lib/rule.d.ts
===================================================================
--- node_modules/postcss/lib/rule.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/rule.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,126 @@
+import Container, {
+  ContainerProps,
+  ContainerWithChildren
+} from './container.js'
+
+declare namespace Rule {
+  export interface RuleRaws extends Record<string, unknown> {
+    /**
+     * The space symbols after the last child of the node to the end of the node.
+     */
+    after?: string
+
+    /**
+     * The space symbols before the node. It also stores `*`
+     * and `_` symbols before the declaration (IE hack).
+     */
+    before?: string
+
+    /**
+     * The symbols between the selector and `{` for rules.
+     */
+    between?: string
+
+    /**
+     * Contains the text of the semicolon after this rule.
+     */
+    ownSemicolon?: string
+
+    /**
+     * The rule’s selector with comments.
+     */
+    selector?: {
+      raw: string
+      value: string
+    }
+
+    /**
+     * Contains `true` if the last child has an (optional) semicolon.
+     */
+    semicolon?: boolean
+  }
+
+  export type RuleProps = {
+    /** Information used to generate byte-to-byte equal node string as it was in the origin input. */
+    raws?: RuleRaws
+  } & (
+      | {
+          /** Selector or selectors of the rule. */
+          selector: string
+          selectors?: never
+        }
+      | {
+          selector?: never
+          /** Selectors of the rule represented as an array of strings. */
+          selectors: readonly string[]
+        }
+    ) & ContainerProps
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Rule_ as default }
+}
+
+/**
+ * Represents a CSS rule: a selector followed by a declaration block.
+ *
+ * ```js
+ * Once (root, { Rule }) {
+ *   let a = new Rule({ selector: 'a' })
+ *   a.append(…)
+ *   root.append(a)
+ * }
+ * ```
+ *
+ * ```js
+ * const root = postcss.parse('a{}')
+ * const rule = root.first
+ * rule.type       //=> 'rule'
+ * rule.toString() //=> 'a{}'
+ * ```
+ */
+declare class Rule_ extends Container {
+  nodes: NonNullable<Container['nodes']>
+  parent: ContainerWithChildren | undefined
+  raws: Rule.RuleRaws
+  type: 'rule'
+  /**
+   * The rule’s full selector represented as a string.
+   *
+   * ```js
+   * const root = postcss.parse('a, b { }')
+   * const rule = root.first
+   * rule.selector //=> 'a, b'
+   * ```
+   */
+  get selector(): string
+
+  set selector(value: string)
+  /**
+   * An array containing the rule’s individual selectors.
+   * Groups of selectors are split at commas.
+   *
+   * ```js
+   * const root = postcss.parse('a, b { }')
+   * const rule = root.first
+   *
+   * rule.selector  //=> 'a, b'
+   * rule.selectors //=> ['a', 'b']
+   *
+   * rule.selectors = ['a', 'strong']
+   * rule.selector //=> 'a, strong'
+   * ```
+   */
+  get selectors(): string[]
+
+  set selectors(values: string[])
+
+  constructor(defaults?: Rule.RuleProps)
+  assign(overrides: object | Rule.RuleProps): this
+  clone(overrides?: Partial<Rule.RuleProps>): this
+  cloneAfter(overrides?: Partial<Rule.RuleProps>): this
+  cloneBefore(overrides?: Partial<Rule.RuleProps>): this
+}
+
+declare class Rule extends Rule_ {}
+
+export = Rule
Index: node_modules/postcss/lib/rule.js
===================================================================
--- node_modules/postcss/lib/rule.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/rule.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,27 @@
+'use strict'
+
+let Container = require('./container')
+let list = require('./list')
+
+class Rule extends Container {
+  get selectors() {
+    return list.comma(this.selector)
+  }
+
+  set selectors(values) {
+    let match = this.selector ? this.selector.match(/,\s*/) : null
+    let sep = match ? match[0] : ',' + this.raw('between', 'beforeOpen')
+    this.selector = values.join(sep)
+  }
+
+  constructor(defaults) {
+    super(defaults)
+    this.type = 'rule'
+    if (!this.nodes) this.nodes = []
+  }
+}
+
+module.exports = Rule
+Rule.default = Rule
+
+Container.registerRule(Rule)
Index: node_modules/postcss/lib/stringifier.d.ts
===================================================================
--- node_modules/postcss/lib/stringifier.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/stringifier.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,46 @@
+import {
+  AnyNode,
+  AtRule,
+  Builder,
+  Comment,
+  Container,
+  Declaration,
+  Document,
+  Root,
+  Rule
+} from './postcss.js'
+
+declare namespace Stringifier {
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Stringifier_ as default }
+}
+
+declare class Stringifier_ {
+  builder: Builder
+  constructor(builder: Builder)
+  atrule(node: AtRule, semicolon?: boolean): void
+  beforeAfter(node: AnyNode, detect: 'after' | 'before'): string
+  block(node: AnyNode, start: string): void
+  body(node: Container): void
+  comment(node: Comment): void
+  decl(node: Declaration, semicolon?: boolean): void
+  document(node: Document): void
+  raw(node: AnyNode, own: null | string, detect?: string): boolean | string
+  rawBeforeClose(root: Root): string | undefined
+  rawBeforeComment(root: Root, node: Comment): string | undefined
+  rawBeforeDecl(root: Root, node: Declaration): string | undefined
+  rawBeforeOpen(root: Root): string | undefined
+  rawBeforeRule(root: Root): string | undefined
+  rawColon(root: Root): string | undefined
+  rawEmptyBody(root: Root): string | undefined
+  rawIndent(root: Root): string | undefined
+  rawSemicolon(root: Root): boolean | undefined
+  rawValue(node: AnyNode, prop: string): number | string
+  root(node: Root): void
+  rule(node: Rule): void
+  stringify(node: AnyNode, semicolon?: boolean): void
+}
+
+declare class Stringifier extends Stringifier_ {}
+
+export = Stringifier
Index: node_modules/postcss/lib/stringifier.js
===================================================================
--- node_modules/postcss/lib/stringifier.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/stringifier.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,353 @@
+'use strict'
+
+const DEFAULT_RAW = {
+  after: '\n',
+  beforeClose: '\n',
+  beforeComment: '\n',
+  beforeDecl: '\n',
+  beforeOpen: ' ',
+  beforeRule: '\n',
+  colon: ': ',
+  commentLeft: ' ',
+  commentRight: ' ',
+  emptyBody: '',
+  indent: '    ',
+  semicolon: false
+}
+
+function capitalize(str) {
+  return str[0].toUpperCase() + str.slice(1)
+}
+
+class Stringifier {
+  constructor(builder) {
+    this.builder = builder
+  }
+
+  atrule(node, semicolon) {
+    let name = '@' + node.name
+    let params = node.params ? this.rawValue(node, 'params') : ''
+
+    if (typeof node.raws.afterName !== 'undefined') {
+      name += node.raws.afterName
+    } else if (params) {
+      name += ' '
+    }
+
+    if (node.nodes) {
+      this.block(node, name + params)
+    } else {
+      let end = (node.raws.between || '') + (semicolon ? ';' : '')
+      this.builder(name + params + end, node)
+    }
+  }
+
+  beforeAfter(node, detect) {
+    let value
+    if (node.type === 'decl') {
+      value = this.raw(node, null, 'beforeDecl')
+    } else if (node.type === 'comment') {
+      value = this.raw(node, null, 'beforeComment')
+    } else if (detect === 'before') {
+      value = this.raw(node, null, 'beforeRule')
+    } else {
+      value = this.raw(node, null, 'beforeClose')
+    }
+
+    let buf = node.parent
+    let depth = 0
+    while (buf && buf.type !== 'root') {
+      depth += 1
+      buf = buf.parent
+    }
+
+    if (value.includes('\n')) {
+      let indent = this.raw(node, null, 'indent')
+      if (indent.length) {
+        for (let step = 0; step < depth; step++) value += indent
+      }
+    }
+
+    return value
+  }
+
+  block(node, start) {
+    let between = this.raw(node, 'between', 'beforeOpen')
+    this.builder(start + between + '{', node, 'start')
+
+    let after
+    if (node.nodes && node.nodes.length) {
+      this.body(node)
+      after = this.raw(node, 'after')
+    } else {
+      after = this.raw(node, 'after', 'emptyBody')
+    }
+
+    if (after) this.builder(after)
+    this.builder('}', node, 'end')
+  }
+
+  body(node) {
+    let last = node.nodes.length - 1
+    while (last > 0) {
+      if (node.nodes[last].type !== 'comment') break
+      last -= 1
+    }
+
+    let semicolon = this.raw(node, 'semicolon')
+    for (let i = 0; i < node.nodes.length; i++) {
+      let child = node.nodes[i]
+      let before = this.raw(child, 'before')
+      if (before) this.builder(before)
+      this.stringify(child, last !== i || semicolon)
+    }
+  }
+
+  comment(node) {
+    let left = this.raw(node, 'left', 'commentLeft')
+    let right = this.raw(node, 'right', 'commentRight')
+    this.builder('/*' + left + node.text + right + '*/', node)
+  }
+
+  decl(node, semicolon) {
+    let between = this.raw(node, 'between', 'colon')
+    let string = node.prop + between + this.rawValue(node, 'value')
+
+    if (node.important) {
+      string += node.raws.important || ' !important'
+    }
+
+    if (semicolon) string += ';'
+    this.builder(string, node)
+  }
+
+  document(node) {
+    this.body(node)
+  }
+
+  raw(node, own, detect) {
+    let value
+    if (!detect) detect = own
+
+    // Already had
+    if (own) {
+      value = node.raws[own]
+      if (typeof value !== 'undefined') return value
+    }
+
+    let parent = node.parent
+
+    if (detect === 'before') {
+      // Hack for first rule in CSS
+      if (!parent || (parent.type === 'root' && parent.first === node)) {
+        return ''
+      }
+
+      // `root` nodes in `document` should use only their own raws
+      if (parent && parent.type === 'document') {
+        return ''
+      }
+    }
+
+    // Floating child without parent
+    if (!parent) return DEFAULT_RAW[detect]
+
+    // Detect style by other nodes
+    let root = node.root()
+    if (!root.rawCache) root.rawCache = {}
+    if (typeof root.rawCache[detect] !== 'undefined') {
+      return root.rawCache[detect]
+    }
+
+    if (detect === 'before' || detect === 'after') {
+      return this.beforeAfter(node, detect)
+    } else {
+      let method = 'raw' + capitalize(detect)
+      if (this[method]) {
+        value = this[method](root, node)
+      } else {
+        root.walk(i => {
+          value = i.raws[own]
+          if (typeof value !== 'undefined') return false
+        })
+      }
+    }
+
+    if (typeof value === 'undefined') value = DEFAULT_RAW[detect]
+
+    root.rawCache[detect] = value
+    return value
+  }
+
+  rawBeforeClose(root) {
+    let value
+    root.walk(i => {
+      if (i.nodes && i.nodes.length > 0) {
+        if (typeof i.raws.after !== 'undefined') {
+          value = i.raws.after
+          if (value.includes('\n')) {
+            value = value.replace(/[^\n]+$/, '')
+          }
+          return false
+        }
+      }
+    })
+    if (value) value = value.replace(/\S/g, '')
+    return value
+  }
+
+  rawBeforeComment(root, node) {
+    let value
+    root.walkComments(i => {
+      if (typeof i.raws.before !== 'undefined') {
+        value = i.raws.before
+        if (value.includes('\n')) {
+          value = value.replace(/[^\n]+$/, '')
+        }
+        return false
+      }
+    })
+    if (typeof value === 'undefined') {
+      value = this.raw(node, null, 'beforeDecl')
+    } else if (value) {
+      value = value.replace(/\S/g, '')
+    }
+    return value
+  }
+
+  rawBeforeDecl(root, node) {
+    let value
+    root.walkDecls(i => {
+      if (typeof i.raws.before !== 'undefined') {
+        value = i.raws.before
+        if (value.includes('\n')) {
+          value = value.replace(/[^\n]+$/, '')
+        }
+        return false
+      }
+    })
+    if (typeof value === 'undefined') {
+      value = this.raw(node, null, 'beforeRule')
+    } else if (value) {
+      value = value.replace(/\S/g, '')
+    }
+    return value
+  }
+
+  rawBeforeOpen(root) {
+    let value
+    root.walk(i => {
+      if (i.type !== 'decl') {
+        value = i.raws.between
+        if (typeof value !== 'undefined') return false
+      }
+    })
+    return value
+  }
+
+  rawBeforeRule(root) {
+    let value
+    root.walk(i => {
+      if (i.nodes && (i.parent !== root || root.first !== i)) {
+        if (typeof i.raws.before !== 'undefined') {
+          value = i.raws.before
+          if (value.includes('\n')) {
+            value = value.replace(/[^\n]+$/, '')
+          }
+          return false
+        }
+      }
+    })
+    if (value) value = value.replace(/\S/g, '')
+    return value
+  }
+
+  rawColon(root) {
+    let value
+    root.walkDecls(i => {
+      if (typeof i.raws.between !== 'undefined') {
+        value = i.raws.between.replace(/[^\s:]/g, '')
+        return false
+      }
+    })
+    return value
+  }
+
+  rawEmptyBody(root) {
+    let value
+    root.walk(i => {
+      if (i.nodes && i.nodes.length === 0) {
+        value = i.raws.after
+        if (typeof value !== 'undefined') return false
+      }
+    })
+    return value
+  }
+
+  rawIndent(root) {
+    if (root.raws.indent) return root.raws.indent
+    let value
+    root.walk(i => {
+      let p = i.parent
+      if (p && p !== root && p.parent && p.parent === root) {
+        if (typeof i.raws.before !== 'undefined') {
+          let parts = i.raws.before.split('\n')
+          value = parts[parts.length - 1]
+          value = value.replace(/\S/g, '')
+          return false
+        }
+      }
+    })
+    return value
+  }
+
+  rawSemicolon(root) {
+    let value
+    root.walk(i => {
+      if (i.nodes && i.nodes.length && i.last.type === 'decl') {
+        value = i.raws.semicolon
+        if (typeof value !== 'undefined') return false
+      }
+    })
+    return value
+  }
+
+  rawValue(node, prop) {
+    let value = node[prop]
+    let raw = node.raws[prop]
+    if (raw && raw.value === value) {
+      return raw.raw
+    }
+
+    return value
+  }
+
+  root(node) {
+    this.body(node)
+    if (node.raws.after) this.builder(node.raws.after)
+  }
+
+  rule(node) {
+    this.block(node, this.rawValue(node, 'selector'))
+    if (node.raws.ownSemicolon) {
+      this.builder(node.raws.ownSemicolon, node, 'end')
+    }
+  }
+
+  stringify(node, semicolon) {
+    /* c8 ignore start */
+    if (!this[node.type]) {
+      throw new Error(
+        'Unknown AST node type ' +
+          node.type +
+          '. ' +
+          'Maybe you need to change PostCSS stringifier.'
+      )
+    }
+    /* c8 ignore stop */
+    this[node.type](node, semicolon)
+  }
+}
+
+module.exports = Stringifier
+Stringifier.default = Stringifier
Index: node_modules/postcss/lib/stringify.d.ts
===================================================================
--- node_modules/postcss/lib/stringify.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/stringify.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,9 @@
+import { Stringifier } from './postcss.js'
+
+interface Stringify extends Stringifier {
+  default: Stringify
+}
+
+declare const stringify: Stringify
+
+export = stringify
Index: node_modules/postcss/lib/stringify.js
===================================================================
--- node_modules/postcss/lib/stringify.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/stringify.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,11 @@
+'use strict'
+
+let Stringifier = require('./stringifier')
+
+function stringify(node, builder) {
+  let str = new Stringifier(builder)
+  str.stringify(node)
+}
+
+module.exports = stringify
+stringify.default = stringify
Index: node_modules/postcss/lib/symbols.js
===================================================================
--- node_modules/postcss/lib/symbols.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/symbols.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,5 @@
+'use strict'
+
+module.exports.isClean = Symbol('isClean')
+
+module.exports.my = Symbol('my')
Index: node_modules/postcss/lib/terminal-highlight.js
===================================================================
--- node_modules/postcss/lib/terminal-highlight.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/terminal-highlight.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,70 @@
+'use strict'
+
+let pico = require('picocolors')
+
+let tokenizer = require('./tokenize')
+
+let Input
+
+function registerInput(dependant) {
+  Input = dependant
+}
+
+const HIGHLIGHT_THEME = {
+  ';': pico.yellow,
+  ':': pico.yellow,
+  '(': pico.cyan,
+  ')': pico.cyan,
+  '[': pico.yellow,
+  ']': pico.yellow,
+  '{': pico.yellow,
+  '}': pico.yellow,
+  'at-word': pico.cyan,
+  'brackets': pico.cyan,
+  'call': pico.cyan,
+  'class': pico.yellow,
+  'comment': pico.gray,
+  'hash': pico.magenta,
+  'string': pico.green
+}
+
+function getTokenType([type, value], processor) {
+  if (type === 'word') {
+    if (value[0] === '.') {
+      return 'class'
+    }
+    if (value[0] === '#') {
+      return 'hash'
+    }
+  }
+
+  if (!processor.endOfFile()) {
+    let next = processor.nextToken()
+    processor.back(next)
+    if (next[0] === 'brackets' || next[0] === '(') return 'call'
+  }
+
+  return type
+}
+
+function terminalHighlight(css) {
+  let processor = tokenizer(new Input(css), { ignoreErrors: true })
+  let result = ''
+  while (!processor.endOfFile()) {
+    let token = processor.nextToken()
+    let color = HIGHLIGHT_THEME[getTokenType(token, processor)]
+    if (color) {
+      result += token[1]
+        .split(/\r?\n/)
+        .map(i => color(i))
+        .join('\n')
+    } else {
+      result += token[1]
+    }
+  }
+  return result
+}
+
+terminalHighlight.registerInput = registerInput
+
+module.exports = terminalHighlight
Index: node_modules/postcss/lib/tokenize.js
===================================================================
--- node_modules/postcss/lib/tokenize.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/tokenize.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,266 @@
+'use strict'
+
+const SINGLE_QUOTE = "'".charCodeAt(0)
+const DOUBLE_QUOTE = '"'.charCodeAt(0)
+const BACKSLASH = '\\'.charCodeAt(0)
+const SLASH = '/'.charCodeAt(0)
+const NEWLINE = '\n'.charCodeAt(0)
+const SPACE = ' '.charCodeAt(0)
+const FEED = '\f'.charCodeAt(0)
+const TAB = '\t'.charCodeAt(0)
+const CR = '\r'.charCodeAt(0)
+const OPEN_SQUARE = '['.charCodeAt(0)
+const CLOSE_SQUARE = ']'.charCodeAt(0)
+const OPEN_PARENTHESES = '('.charCodeAt(0)
+const CLOSE_PARENTHESES = ')'.charCodeAt(0)
+const OPEN_CURLY = '{'.charCodeAt(0)
+const CLOSE_CURLY = '}'.charCodeAt(0)
+const SEMICOLON = ';'.charCodeAt(0)
+const ASTERISK = '*'.charCodeAt(0)
+const COLON = ':'.charCodeAt(0)
+const AT = '@'.charCodeAt(0)
+
+const RE_AT_END = /[\t\n\f\r "#'()/;[\\\]{}]/g
+const RE_WORD_END = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g
+const RE_BAD_BRACKET = /.[\r\n"'(/\\]/
+const RE_HEX_ESCAPE = /[\da-f]/i
+
+module.exports = function tokenizer(input, options = {}) {
+  let css = input.css.valueOf()
+  let ignore = options.ignoreErrors
+
+  let code, content, escape, next, quote
+  let currentToken, escaped, escapePos, n, prev
+
+  let length = css.length
+  let pos = 0
+  let buffer = []
+  let returned = []
+
+  function position() {
+    return pos
+  }
+
+  function unclosed(what) {
+    throw input.error('Unclosed ' + what, pos)
+  }
+
+  function endOfFile() {
+    return returned.length === 0 && pos >= length
+  }
+
+  function nextToken(opts) {
+    if (returned.length) return returned.pop()
+    if (pos >= length) return
+
+    let ignoreUnclosed = opts ? opts.ignoreUnclosed : false
+
+    code = css.charCodeAt(pos)
+
+    switch (code) {
+      case NEWLINE:
+      case SPACE:
+      case TAB:
+      case CR:
+      case FEED: {
+        next = pos
+        do {
+          next += 1
+          code = css.charCodeAt(next)
+        } while (
+          code === SPACE ||
+          code === NEWLINE ||
+          code === TAB ||
+          code === CR ||
+          code === FEED
+        )
+
+        currentToken = ['space', css.slice(pos, next)]
+        pos = next - 1
+        break
+      }
+
+      case OPEN_SQUARE:
+      case CLOSE_SQUARE:
+      case OPEN_CURLY:
+      case CLOSE_CURLY:
+      case COLON:
+      case SEMICOLON:
+      case CLOSE_PARENTHESES: {
+        let controlChar = String.fromCharCode(code)
+        currentToken = [controlChar, controlChar, pos]
+        break
+      }
+
+      case OPEN_PARENTHESES: {
+        prev = buffer.length ? buffer.pop()[1] : ''
+        n = css.charCodeAt(pos + 1)
+        if (
+          prev === 'url' &&
+          n !== SINGLE_QUOTE &&
+          n !== DOUBLE_QUOTE &&
+          n !== SPACE &&
+          n !== NEWLINE &&
+          n !== TAB &&
+          n !== FEED &&
+          n !== CR
+        ) {
+          next = pos
+          do {
+            escaped = false
+            next = css.indexOf(')', next + 1)
+            if (next === -1) {
+              if (ignore || ignoreUnclosed) {
+                next = pos
+                break
+              } else {
+                unclosed('bracket')
+              }
+            }
+            escapePos = next
+            while (css.charCodeAt(escapePos - 1) === BACKSLASH) {
+              escapePos -= 1
+              escaped = !escaped
+            }
+          } while (escaped)
+
+          currentToken = ['brackets', css.slice(pos, next + 1), pos, next]
+
+          pos = next
+        } else {
+          next = css.indexOf(')', pos + 1)
+          content = css.slice(pos, next + 1)
+
+          if (next === -1 || RE_BAD_BRACKET.test(content)) {
+            currentToken = ['(', '(', pos]
+          } else {
+            currentToken = ['brackets', content, pos, next]
+            pos = next
+          }
+        }
+
+        break
+      }
+
+      case SINGLE_QUOTE:
+      case DOUBLE_QUOTE: {
+        quote = code === SINGLE_QUOTE ? "'" : '"'
+        next = pos
+        do {
+          escaped = false
+          next = css.indexOf(quote, next + 1)
+          if (next === -1) {
+            if (ignore || ignoreUnclosed) {
+              next = pos + 1
+              break
+            } else {
+              unclosed('string')
+            }
+          }
+          escapePos = next
+          while (css.charCodeAt(escapePos - 1) === BACKSLASH) {
+            escapePos -= 1
+            escaped = !escaped
+          }
+        } while (escaped)
+
+        currentToken = ['string', css.slice(pos, next + 1), pos, next]
+        pos = next
+        break
+      }
+
+      case AT: {
+        RE_AT_END.lastIndex = pos + 1
+        RE_AT_END.test(css)
+        if (RE_AT_END.lastIndex === 0) {
+          next = css.length - 1
+        } else {
+          next = RE_AT_END.lastIndex - 2
+        }
+
+        currentToken = ['at-word', css.slice(pos, next + 1), pos, next]
+
+        pos = next
+        break
+      }
+
+      case BACKSLASH: {
+        next = pos
+        escape = true
+        while (css.charCodeAt(next + 1) === BACKSLASH) {
+          next += 1
+          escape = !escape
+        }
+        code = css.charCodeAt(next + 1)
+        if (
+          escape &&
+          code !== SLASH &&
+          code !== SPACE &&
+          code !== NEWLINE &&
+          code !== TAB &&
+          code !== CR &&
+          code !== FEED
+        ) {
+          next += 1
+          if (RE_HEX_ESCAPE.test(css.charAt(next))) {
+            while (RE_HEX_ESCAPE.test(css.charAt(next + 1))) {
+              next += 1
+            }
+            if (css.charCodeAt(next + 1) === SPACE) {
+              next += 1
+            }
+          }
+        }
+
+        currentToken = ['word', css.slice(pos, next + 1), pos, next]
+
+        pos = next
+        break
+      }
+
+      default: {
+        if (code === SLASH && css.charCodeAt(pos + 1) === ASTERISK) {
+          next = css.indexOf('*/', pos + 2) + 1
+          if (next === 0) {
+            if (ignore || ignoreUnclosed) {
+              next = css.length
+            } else {
+              unclosed('comment')
+            }
+          }
+
+          currentToken = ['comment', css.slice(pos, next + 1), pos, next]
+          pos = next
+        } else {
+          RE_WORD_END.lastIndex = pos + 1
+          RE_WORD_END.test(css)
+          if (RE_WORD_END.lastIndex === 0) {
+            next = css.length - 1
+          } else {
+            next = RE_WORD_END.lastIndex - 2
+          }
+
+          currentToken = ['word', css.slice(pos, next + 1), pos, next]
+          buffer.push(currentToken)
+          pos = next
+        }
+
+        break
+      }
+    }
+
+    pos++
+    return currentToken
+  }
+
+  function back(token) {
+    returned.push(token)
+  }
+
+  return {
+    back,
+    endOfFile,
+    nextToken,
+    position
+  }
+}
Index: node_modules/postcss/lib/warn-once.js
===================================================================
--- node_modules/postcss/lib/warn-once.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/warn-once.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,13 @@
+/* eslint-disable no-console */
+'use strict'
+
+let printed = {}
+
+module.exports = function warnOnce(message) {
+  if (printed[message]) return
+  printed[message] = true
+
+  if (typeof console !== 'undefined' && console.warn) {
+    console.warn(message)
+  }
+}
Index: node_modules/postcss/lib/warning.d.ts
===================================================================
--- node_modules/postcss/lib/warning.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/warning.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,147 @@
+import { RangePosition } from './css-syntax-error.js'
+import Node from './node.js'
+
+declare namespace Warning {
+  export interface WarningOptions {
+    /**
+     * End position, exclusive, in CSS node string that caused the warning.
+     */
+    end?: RangePosition
+
+    /**
+     * End index, exclusive, in CSS node string that caused the warning.
+     */
+    endIndex?: number
+
+    /**
+     * Start index, inclusive, in CSS node string that caused the warning.
+     */
+    index?: number
+
+    /**
+     * CSS node that caused the warning.
+     */
+    node?: Node
+
+    /**
+     * Name of the plugin that created this warning. `Result#warn` fills
+     * this property automatically.
+     */
+    plugin?: string
+
+    /**
+     * Start position, inclusive, in CSS node string that caused the warning.
+     */
+    start?: RangePosition
+
+    /**
+     * Word in CSS source that caused the warning.
+     */
+    word?: string
+  }
+
+  // eslint-disable-next-line @typescript-eslint/no-use-before-define
+  export { Warning_ as default }
+}
+
+/**
+ * Represents a plugin’s warning. It can be created using `Node#warn`.
+ *
+ * ```js
+ * if (decl.important) {
+ *   decl.warn(result, 'Avoid !important', { word: '!important' })
+ * }
+ * ```
+ */
+declare class Warning_ {
+  /**
+   * Column for inclusive start position in the input file with this warning’s source.
+   *
+   * ```js
+   * warning.column //=> 6
+   * ```
+   */
+  column: number
+
+  /**
+   * Column for exclusive end position in the input file with this warning’s source.
+   *
+   * ```js
+   * warning.endColumn //=> 4
+   * ```
+   */
+  endColumn?: number
+
+  /**
+   * Line for exclusive end position in the input file with this warning’s source.
+   *
+   * ```js
+   * warning.endLine //=> 6
+   * ```
+   */
+  endLine?: number
+
+  /**
+   * Line for inclusive start position in the input file with this warning’s source.
+   *
+   * ```js
+   * warning.line //=> 5
+   * ```
+   */
+  line: number
+
+  /**
+   * Contains the CSS node that caused the warning.
+   *
+   * ```js
+   * warning.node.toString() //=> 'color: white !important'
+   * ```
+   */
+  node: Node
+
+  /**
+   * The name of the plugin that created this warning.
+   * When you call `Node#warn` it will fill this property automatically.
+   *
+   * ```js
+   * warning.plugin //=> 'postcss-important'
+   * ```
+   */
+  plugin: string
+
+  /**
+   * The warning message.
+   *
+   * ```js
+   * warning.text //=> 'Try to avoid !important'
+   * ```
+   */
+  text: string
+
+  /**
+   * Type to filter warnings from `Result#messages`.
+   * Always equal to `"warning"`.
+   */
+  type: 'warning'
+
+  /**
+   * @param text Warning message.
+   * @param opts Warning options.
+   */
+  constructor(text: string, opts?: Warning.WarningOptions)
+
+  /**
+   * Returns a warning position and message.
+   *
+   * ```js
+   * warning.toString() //=> 'postcss-lint:a.css:10:14: Avoid !important'
+   * ```
+   *
+   * @return Warning position and message.
+   */
+  toString(): string
+}
+
+declare class Warning extends Warning_ {}
+
+export = Warning
Index: node_modules/postcss/lib/warning.js
===================================================================
--- node_modules/postcss/lib/warning.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/lib/warning.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,37 @@
+'use strict'
+
+class Warning {
+  constructor(text, opts = {}) {
+    this.type = 'warning'
+    this.text = text
+
+    if (opts.node && opts.node.source) {
+      let range = opts.node.rangeBy(opts)
+      this.line = range.start.line
+      this.column = range.start.column
+      this.endLine = range.end.line
+      this.endColumn = range.end.column
+    }
+
+    for (let opt in opts) this[opt] = opts[opt]
+  }
+
+  toString() {
+    if (this.node) {
+      return this.node.error(this.text, {
+        index: this.index,
+        plugin: this.plugin,
+        word: this.word
+      }).message
+    }
+
+    if (this.plugin) {
+      return this.plugin + ': ' + this.text
+    }
+
+    return this.text
+  }
+}
+
+module.exports = Warning
+Warning.default = Warning
Index: node_modules/postcss/package.json
===================================================================
--- node_modules/postcss/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/postcss/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,88 @@
+{
+  "name": "postcss",
+  "version": "8.5.6",
+  "description": "Tool for transforming styles with JS plugins",
+  "engines": {
+    "node": "^10 || ^12 || >=14"
+  },
+  "exports": {
+    ".": {
+      "import": "./lib/postcss.mjs",
+      "require": "./lib/postcss.js"
+    },
+    "./lib/at-rule": "./lib/at-rule.js",
+    "./lib/comment": "./lib/comment.js",
+    "./lib/container": "./lib/container.js",
+    "./lib/css-syntax-error": "./lib/css-syntax-error.js",
+    "./lib/declaration": "./lib/declaration.js",
+    "./lib/fromJSON": "./lib/fromJSON.js",
+    "./lib/input": "./lib/input.js",
+    "./lib/lazy-result": "./lib/lazy-result.js",
+    "./lib/no-work-result": "./lib/no-work-result.js",
+    "./lib/list": "./lib/list.js",
+    "./lib/map-generator": "./lib/map-generator.js",
+    "./lib/node": "./lib/node.js",
+    "./lib/parse": "./lib/parse.js",
+    "./lib/parser": "./lib/parser.js",
+    "./lib/postcss": "./lib/postcss.js",
+    "./lib/previous-map": "./lib/previous-map.js",
+    "./lib/processor": "./lib/processor.js",
+    "./lib/result": "./lib/result.js",
+    "./lib/root": "./lib/root.js",
+    "./lib/rule": "./lib/rule.js",
+    "./lib/stringifier": "./lib/stringifier.js",
+    "./lib/stringify": "./lib/stringify.js",
+    "./lib/symbols": "./lib/symbols.js",
+    "./lib/terminal-highlight": "./lib/terminal-highlight.js",
+    "./lib/tokenize": "./lib/tokenize.js",
+    "./lib/warn-once": "./lib/warn-once.js",
+    "./lib/warning": "./lib/warning.js",
+    "./package.json": "./package.json"
+  },
+  "main": "./lib/postcss.js",
+  "types": "./lib/postcss.d.ts",
+  "keywords": [
+    "css",
+    "postcss",
+    "rework",
+    "preprocessor",
+    "parser",
+    "source map",
+    "transform",
+    "manipulation",
+    "transpiler"
+  ],
+  "funding": [
+    {
+      "type": "opencollective",
+      "url": "https://opencollective.com/postcss/"
+    },
+    {
+      "type": "tidelift",
+      "url": "https://tidelift.com/funding/github/npm/postcss"
+    },
+    {
+      "type": "github",
+      "url": "https://github.com/sponsors/ai"
+    }
+  ],
+  "author": "Andrey Sitnik <andrey@sitnik.ru>",
+  "license": "MIT",
+  "homepage": "https://postcss.org/",
+  "repository": "postcss/postcss",
+  "bugs": {
+    "url": "https://github.com/postcss/postcss/issues"
+  },
+  "dependencies": {
+    "nanoid": "^3.3.11",
+    "picocolors": "^1.1.1",
+    "source-map-js": "^1.2.1"
+  },
+  "browser": {
+    "./lib/terminal-highlight": false,
+    "source-map-js": false,
+    "path": false,
+    "url": false,
+    "fs": false
+  }
+}
Index: node_modules/source-map-js/LICENSE
===================================================================
--- node_modules/source-map-js/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,28 @@
+
+Copyright (c) 2009-2011, Mozilla Foundation and contributors
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this
+  list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+
+* Neither the names of the Mozilla Foundation nor the names of project
+  contributors may be used to endorse or promote products derived from this
+  software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Index: node_modules/source-map-js/README.md
===================================================================
--- node_modules/source-map-js/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,765 @@
+# Source Map JS
+
+[![NPM](https://nodei.co/npm/source-map-js.png?downloads=true&downloadRank=true)](https://www.npmjs.com/package/source-map-js)
+
+Difference between original [source-map](https://github.com/mozilla/source-map):
+
+> TL,DR: it's fork of original source-map@0.6, but with perfomance optimizations.
+
+This journey starts from [source-map@0.7.0](https://github.com/mozilla/source-map/blob/master/CHANGELOG.md#070). Some part of it was rewritten to Rust and WASM and API became async.
+
+It's still a major block for many libraries like PostCSS or Sass for example because they need to migrate the whole API to the async way. This is the reason why 0.6.1 has 2x more downloads than 0.7.3 while it's faster several times.
+
+![Downloads count](media/downloads.png)
+
+More important that WASM version has some optimizations in JS code too. This is why [community asked to create branch for 0.6 version](https://github.com/mozilla/source-map/issues/324) and port these optimizations but, sadly, the answer was «no». A bit later I discovered [the issue](https://github.com/mozilla/source-map/issues/370) created by [Ben Rothman (@benthemonkey)](https://github.com/benthemonkey) with no response at all.
+
+[Roman Dvornov (@lahmatiy)](https://github.com/lahmatiy) wrote a [serveral posts](https://t.me/gorshochekvarit/76) (russian, only, sorry) about source-map library in his own Telegram channel. He mentioned the article [«Maybe you don't need Rust and WASM to speed up your JS»](https://mrale.ph/blog/2018/02/03/maybe-you-dont-need-rust-to-speed-up-your-js.html) written by [Vyacheslav Egorov (@mraleph)](https://github.com/mraleph). This article contains optimizations and hacks that lead to almost the same performance compare to WASM implementation.
+
+I decided to fork the original source-map and port these optimizations from the article and several others PR from the original source-map.
+
+---------
+
+This is a library to generate and consume the source map format
+[described here][format].
+
+[format]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit
+
+## Use with Node
+
+    $ npm install source-map-js
+
+<!-- ## Use on the Web
+
+    <script src="https://raw.githubusercontent.com/mozilla/source-map/master/dist/source-map.min.js" defer></script> -->
+
+--------------------------------------------------------------------------------
+
+<!-- `npm run toc` to regenerate the Table of Contents -->
+
+<!-- START doctoc generated TOC please keep comment here to allow auto update -->
+<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
+## Table of Contents
+
+- [Examples](#examples)
+  - [Consuming a source map](#consuming-a-source-map)
+  - [Generating a source map](#generating-a-source-map)
+    - [With SourceNode (high level API)](#with-sourcenode-high-level-api)
+    - [With SourceMapGenerator (low level API)](#with-sourcemapgenerator-low-level-api)
+- [API](#api)
+  - [SourceMapConsumer](#sourcemapconsumer)
+    - [new SourceMapConsumer(rawSourceMap)](#new-sourcemapconsumerrawsourcemap)
+    - [SourceMapConsumer.prototype.computeColumnSpans()](#sourcemapconsumerprototypecomputecolumnspans)
+    - [SourceMapConsumer.prototype.originalPositionFor(generatedPosition)](#sourcemapconsumerprototypeoriginalpositionforgeneratedposition)
+    - [SourceMapConsumer.prototype.generatedPositionFor(originalPosition)](#sourcemapconsumerprototypegeneratedpositionfororiginalposition)
+    - [SourceMapConsumer.prototype.allGeneratedPositionsFor(originalPosition)](#sourcemapconsumerprototypeallgeneratedpositionsfororiginalposition)
+    - [SourceMapConsumer.prototype.hasContentsOfAllSources()](#sourcemapconsumerprototypehascontentsofallsources)
+    - [SourceMapConsumer.prototype.sourceContentFor(source[, returnNullOnMissing])](#sourcemapconsumerprototypesourcecontentforsource-returnnullonmissing)
+    - [SourceMapConsumer.prototype.eachMapping(callback, context, order)](#sourcemapconsumerprototypeeachmappingcallback-context-order)
+  - [SourceMapGenerator](#sourcemapgenerator)
+    - [new SourceMapGenerator([startOfSourceMap])](#new-sourcemapgeneratorstartofsourcemap)
+    - [SourceMapGenerator.fromSourceMap(sourceMapConsumer)](#sourcemapgeneratorfromsourcemapsourcemapconsumer)
+    - [SourceMapGenerator.prototype.addMapping(mapping)](#sourcemapgeneratorprototypeaddmappingmapping)
+    - [SourceMapGenerator.prototype.setSourceContent(sourceFile, sourceContent)](#sourcemapgeneratorprototypesetsourcecontentsourcefile-sourcecontent)
+    - [SourceMapGenerator.prototype.applySourceMap(sourceMapConsumer[, sourceFile[, sourceMapPath]])](#sourcemapgeneratorprototypeapplysourcemapsourcemapconsumer-sourcefile-sourcemappath)
+    - [SourceMapGenerator.prototype.toString()](#sourcemapgeneratorprototypetostring)
+  - [SourceNode](#sourcenode)
+    - [new SourceNode([line, column, source[, chunk[, name]]])](#new-sourcenodeline-column-source-chunk-name)
+    - [SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])](#sourcenodefromstringwithsourcemapcode-sourcemapconsumer-relativepath)
+    - [SourceNode.prototype.add(chunk)](#sourcenodeprototypeaddchunk)
+    - [SourceNode.prototype.prepend(chunk)](#sourcenodeprototypeprependchunk)
+    - [SourceNode.prototype.setSourceContent(sourceFile, sourceContent)](#sourcenodeprototypesetsourcecontentsourcefile-sourcecontent)
+    - [SourceNode.prototype.walk(fn)](#sourcenodeprototypewalkfn)
+    - [SourceNode.prototype.walkSourceContents(fn)](#sourcenodeprototypewalksourcecontentsfn)
+    - [SourceNode.prototype.join(sep)](#sourcenodeprototypejoinsep)
+    - [SourceNode.prototype.replaceRight(pattern, replacement)](#sourcenodeprototypereplacerightpattern-replacement)
+    - [SourceNode.prototype.toString()](#sourcenodeprototypetostring)
+    - [SourceNode.prototype.toStringWithSourceMap([startOfSourceMap])](#sourcenodeprototypetostringwithsourcemapstartofsourcemap)
+
+<!-- END doctoc generated TOC please keep comment here to allow auto update -->
+
+## Examples
+
+### Consuming a source map
+
+```js
+var rawSourceMap = {
+  version: 3,
+  file: 'min.js',
+  names: ['bar', 'baz', 'n'],
+  sources: ['one.js', 'two.js'],
+  sourceRoot: 'http://example.com/www/js/',
+  mappings: 'CAAC,IAAI,IAAM,SAAUA,GAClB,OAAOC,IAAID;CCDb,IAAI,IAAM,SAAUE,GAClB,OAAOA'
+};
+
+var smc = new SourceMapConsumer(rawSourceMap);
+
+console.log(smc.sources);
+// [ 'http://example.com/www/js/one.js',
+//   'http://example.com/www/js/two.js' ]
+
+console.log(smc.originalPositionFor({
+  line: 2,
+  column: 28
+}));
+// { source: 'http://example.com/www/js/two.js',
+//   line: 2,
+//   column: 10,
+//   name: 'n' }
+
+console.log(smc.generatedPositionFor({
+  source: 'http://example.com/www/js/two.js',
+  line: 2,
+  column: 10
+}));
+// { line: 2, column: 28 }
+
+smc.eachMapping(function (m) {
+  // ...
+});
+```
+
+### Generating a source map
+
+In depth guide:
+[**Compiling to JavaScript, and Debugging with Source Maps**](https://hacks.mozilla.org/2013/05/compiling-to-javascript-and-debugging-with-source-maps/)
+
+#### With SourceNode (high level API)
+
+```js
+function compile(ast) {
+  switch (ast.type) {
+  case 'BinaryExpression':
+    return new SourceNode(
+      ast.location.line,
+      ast.location.column,
+      ast.location.source,
+      [compile(ast.left), " + ", compile(ast.right)]
+    );
+  case 'Literal':
+    return new SourceNode(
+      ast.location.line,
+      ast.location.column,
+      ast.location.source,
+      String(ast.value)
+    );
+  // ...
+  default:
+    throw new Error("Bad AST");
+  }
+}
+
+var ast = parse("40 + 2", "add.js");
+console.log(compile(ast).toStringWithSourceMap({
+  file: 'add.js'
+}));
+// { code: '40 + 2',
+//   map: [object SourceMapGenerator] }
+```
+
+#### With SourceMapGenerator (low level API)
+
+```js
+var map = new SourceMapGenerator({
+  file: "source-mapped.js"
+});
+
+map.addMapping({
+  generated: {
+    line: 10,
+    column: 35
+  },
+  source: "foo.js",
+  original: {
+    line: 33,
+    column: 2
+  },
+  name: "christopher"
+});
+
+console.log(map.toString());
+// '{"version":3,"file":"source-mapped.js","sources":["foo.js"],"names":["christopher"],"mappings":";;;;;;;;;mCAgCEA"}'
+```
+
+## API
+
+Get a reference to the module:
+
+```js
+// Node.js
+var sourceMap = require('source-map');
+
+// Browser builds
+var sourceMap = window.sourceMap;
+
+// Inside Firefox
+const sourceMap = require("devtools/toolkit/sourcemap/source-map.js");
+```
+
+### SourceMapConsumer
+
+A SourceMapConsumer instance represents a parsed source map which we can query
+for information about the original file positions by giving it a file position
+in the generated source.
+
+#### new SourceMapConsumer(rawSourceMap)
+
+The only parameter is the raw source map (either as a string which can be
+`JSON.parse`'d, or an object). According to the spec, source maps have the
+following attributes:
+
+* `version`: Which version of the source map spec this map is following.
+
+* `sources`: An array of URLs to the original source files.
+
+* `names`: An array of identifiers which can be referenced by individual
+  mappings.
+
+* `sourceRoot`: Optional. The URL root from which all sources are relative.
+
+* `sourcesContent`: Optional. An array of contents of the original source files.
+
+* `mappings`: A string of base64 VLQs which contain the actual mappings.
+
+* `file`: Optional. The generated filename this source map is associated with.
+
+```js
+var consumer = new sourceMap.SourceMapConsumer(rawSourceMapJsonData);
+```
+
+#### SourceMapConsumer.prototype.computeColumnSpans()
+
+Compute the last column for each generated mapping. The last column is
+inclusive.
+
+```js
+// Before:
+consumer.allGeneratedPositionsFor({ line: 2, source: "foo.coffee" })
+// [ { line: 2,
+//     column: 1 },
+//   { line: 2,
+//     column: 10 },
+//   { line: 2,
+//     column: 20 } ]
+
+consumer.computeColumnSpans();
+
+// After:
+consumer.allGeneratedPositionsFor({ line: 2, source: "foo.coffee" })
+// [ { line: 2,
+//     column: 1,
+//     lastColumn: 9 },
+//   { line: 2,
+//     column: 10,
+//     lastColumn: 19 },
+//   { line: 2,
+//     column: 20,
+//     lastColumn: Infinity } ]
+
+```
+
+#### SourceMapConsumer.prototype.originalPositionFor(generatedPosition)
+
+Returns the original source, line, and column information for the generated
+source's line and column positions provided. The only argument is an object with
+the following properties:
+
+* `line`: The line number in the generated source.  Line numbers in
+  this library are 1-based (note that the underlying source map
+  specification uses 0-based line numbers -- this library handles the
+  translation).
+
+* `column`: The column number in the generated source.  Column numbers
+  in this library are 0-based.
+
+* `bias`: Either `SourceMapConsumer.GREATEST_LOWER_BOUND` or
+  `SourceMapConsumer.LEAST_UPPER_BOUND`. Specifies whether to return the closest
+  element that is smaller than or greater than the one we are searching for,
+  respectively, if the exact element cannot be found.  Defaults to
+  `SourceMapConsumer.GREATEST_LOWER_BOUND`.
+
+and an object is returned with the following properties:
+
+* `source`: The original source file, or null if this information is not
+  available.
+
+* `line`: The line number in the original source, or null if this information is
+  not available.  The line number is 1-based.
+
+* `column`: The column number in the original source, or null if this
+  information is not available.  The column number is 0-based.
+
+* `name`: The original identifier, or null if this information is not available.
+
+```js
+consumer.originalPositionFor({ line: 2, column: 10 })
+// { source: 'foo.coffee',
+//   line: 2,
+//   column: 2,
+//   name: null }
+
+consumer.originalPositionFor({ line: 99999999999999999, column: 999999999999999 })
+// { source: null,
+//   line: null,
+//   column: null,
+//   name: null }
+```
+
+#### SourceMapConsumer.prototype.generatedPositionFor(originalPosition)
+
+Returns the generated line and column information for the original source,
+line, and column positions provided. The only argument is an object with
+the following properties:
+
+* `source`: The filename of the original source.
+
+* `line`: The line number in the original source.  The line number is
+  1-based.
+
+* `column`: The column number in the original source.  The column
+  number is 0-based.
+
+and an object is returned with the following properties:
+
+* `line`: The line number in the generated source, or null.  The line
+  number is 1-based.
+
+* `column`: The column number in the generated source, or null.  The
+  column number is 0-based.
+
+```js
+consumer.generatedPositionFor({ source: "example.js", line: 2, column: 10 })
+// { line: 1,
+//   column: 56 }
+```
+
+#### SourceMapConsumer.prototype.allGeneratedPositionsFor(originalPosition)
+
+Returns all generated line and column information for the original source, line,
+and column provided. If no column is provided, returns all mappings
+corresponding to a either the line we are searching for or the next closest line
+that has any mappings. Otherwise, returns all mappings corresponding to the
+given line and either the column we are searching for or the next closest column
+that has any offsets.
+
+The only argument is an object with the following properties:
+
+* `source`: The filename of the original source.
+
+* `line`: The line number in the original source.  The line number is
+  1-based.
+
+* `column`: Optional. The column number in the original source.  The
+  column number is 0-based.
+
+and an array of objects is returned, each with the following properties:
+
+* `line`: The line number in the generated source, or null.  The line
+  number is 1-based.
+
+* `column`: The column number in the generated source, or null.  The
+  column number is 0-based.
+
+```js
+consumer.allGeneratedpositionsfor({ line: 2, source: "foo.coffee" })
+// [ { line: 2,
+//     column: 1 },
+//   { line: 2,
+//     column: 10 },
+//   { line: 2,
+//     column: 20 } ]
+```
+
+#### SourceMapConsumer.prototype.hasContentsOfAllSources()
+
+Return true if we have the embedded source content for every source listed in
+the source map, false otherwise.
+
+In other words, if this method returns `true`, then
+`consumer.sourceContentFor(s)` will succeed for every source `s` in
+`consumer.sources`.
+
+```js
+// ...
+if (consumer.hasContentsOfAllSources()) {
+  consumerReadyCallback(consumer);
+} else {
+  fetchSources(consumer, consumerReadyCallback);
+}
+// ...
+```
+
+#### SourceMapConsumer.prototype.sourceContentFor(source[, returnNullOnMissing])
+
+Returns the original source content for the source provided. The only
+argument is the URL of the original source file.
+
+If the source content for the given source is not found, then an error is
+thrown. Optionally, pass `true` as the second param to have `null` returned
+instead.
+
+```js
+consumer.sources
+// [ "my-cool-lib.clj" ]
+
+consumer.sourceContentFor("my-cool-lib.clj")
+// "..."
+
+consumer.sourceContentFor("this is not in the source map");
+// Error: "this is not in the source map" is not in the source map
+
+consumer.sourceContentFor("this is not in the source map", true);
+// null
+```
+
+#### SourceMapConsumer.prototype.eachMapping(callback, context, order)
+
+Iterate over each mapping between an original source/line/column and a
+generated line/column in this source map.
+
+* `callback`: The function that is called with each mapping. Mappings have the
+  form `{ source, generatedLine, generatedColumn, originalLine, originalColumn,
+  name }`
+
+* `context`: Optional. If specified, this object will be the value of `this`
+  every time that `callback` is called.
+
+* `order`: Either `SourceMapConsumer.GENERATED_ORDER` or
+  `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to iterate over
+  the mappings sorted by the generated file's line/column order or the
+  original's source/line/column order, respectively. Defaults to
+  `SourceMapConsumer.GENERATED_ORDER`.
+
+```js
+consumer.eachMapping(function (m) { console.log(m); })
+// ...
+// { source: 'illmatic.js',
+//   generatedLine: 1,
+//   generatedColumn: 0,
+//   originalLine: 1,
+//   originalColumn: 0,
+//   name: null }
+// { source: 'illmatic.js',
+//   generatedLine: 2,
+//   generatedColumn: 0,
+//   originalLine: 2,
+//   originalColumn: 0,
+//   name: null }
+// ...
+```
+### SourceMapGenerator
+
+An instance of the SourceMapGenerator represents a source map which is being
+built incrementally.
+
+#### new SourceMapGenerator([startOfSourceMap])
+
+You may pass an object with the following properties:
+
+* `file`: The filename of the generated source that this source map is
+  associated with.
+
+* `sourceRoot`: A root for all relative URLs in this source map.
+
+* `skipValidation`: Optional. When `true`, disables validation of mappings as
+  they are added. This can improve performance but should be used with
+  discretion, as a last resort. Even then, one should avoid using this flag when
+  running tests, if possible.
+
+* `ignoreInvalidMapping`: Optional. When `true`, instead of throwing error on
+  invalid mapping, it will be ignored.
+
+```js
+var generator = new sourceMap.SourceMapGenerator({
+  file: "my-generated-javascript-file.js",
+  sourceRoot: "http://example.com/app/js/"
+});
+```
+
+#### SourceMapGenerator.fromSourceMap(sourceMapConsumer, sourceMapGeneratorOptions)
+
+Creates a new `SourceMapGenerator` from an existing `SourceMapConsumer` instance.
+
+* `sourceMapConsumer` The SourceMap.
+
+* `sourceMapGeneratorOptions` options that will be passed to the SourceMapGenerator constructor which used under the hood.
+
+```js
+var generator = sourceMap.SourceMapGenerator.fromSourceMap(consumer, {
+  ignoreInvalidMapping: true,
+});
+```
+
+#### SourceMapGenerator.prototype.addMapping(mapping)
+
+Add a single mapping from original source line and column to the generated
+source's line and column for this source map being created. The mapping object
+should have the following properties:
+
+* `generated`: An object with the generated line and column positions.
+
+* `original`: An object with the original line and column positions.
+
+* `source`: The original source file (relative to the sourceRoot).
+
+* `name`: An optional original token name for this mapping.
+
+```js
+generator.addMapping({
+  source: "module-one.scm",
+  original: { line: 128, column: 0 },
+  generated: { line: 3, column: 456 }
+})
+```
+
+#### SourceMapGenerator.prototype.setSourceContent(sourceFile, sourceContent)
+
+Set the source content for an original source file.
+
+* `sourceFile` the URL of the original source file.
+
+* `sourceContent` the content of the source file.
+
+```js
+generator.setSourceContent("module-one.scm",
+                           fs.readFileSync("path/to/module-one.scm"))
+```
+
+#### SourceMapGenerator.prototype.applySourceMap(sourceMapConsumer[, sourceFile[, sourceMapPath]])
+
+Applies a SourceMap for a source file to the SourceMap.
+Each mapping to the supplied source file is rewritten using the
+supplied SourceMap. Note: The resolution for the resulting mappings
+is the minimum of this map and the supplied map.
+
+* `sourceMapConsumer`: The SourceMap to be applied.
+
+* `sourceFile`: Optional. The filename of the source file.
+  If omitted, sourceMapConsumer.file will be used, if it exists.
+  Otherwise an error will be thrown.
+
+* `sourceMapPath`: Optional. The dirname of the path to the SourceMap
+  to be applied. If relative, it is relative to the SourceMap.
+
+  This parameter is needed when the two SourceMaps aren't in the same
+  directory, and the SourceMap to be applied contains relative source
+  paths. If so, those relative source paths need to be rewritten
+  relative to the SourceMap.
+
+  If omitted, it is assumed that both SourceMaps are in the same directory,
+  thus not needing any rewriting. (Supplying `'.'` has the same effect.)
+
+#### SourceMapGenerator.prototype.toString()
+
+Renders the source map being generated to a string.
+
+```js
+generator.toString()
+// '{"version":3,"sources":["module-one.scm"],"names":[],"mappings":"...snip...","file":"my-generated-javascript-file.js","sourceRoot":"http://example.com/app/js/"}'
+```
+
+### SourceNode
+
+SourceNodes provide a way to abstract over interpolating and/or concatenating
+snippets of generated JavaScript source code, while maintaining the line and
+column information associated between those snippets and the original source
+code. This is useful as the final intermediate representation a compiler might
+use before outputting the generated JS and source map.
+
+#### new SourceNode([line, column, source[, chunk[, name]]])
+
+* `line`: The original line number associated with this source node, or null if
+  it isn't associated with an original line.  The line number is 1-based.
+
+* `column`: The original column number associated with this source node, or null
+  if it isn't associated with an original column.  The column number
+  is 0-based.
+
+* `source`: The original source's filename; null if no filename is provided.
+
+* `chunk`: Optional. Is immediately passed to `SourceNode.prototype.add`, see
+  below.
+
+* `name`: Optional. The original identifier.
+
+```js
+var node = new SourceNode(1, 2, "a.cpp", [
+  new SourceNode(3, 4, "b.cpp", "extern int status;\n"),
+  new SourceNode(5, 6, "c.cpp", "std::string* make_string(size_t n);\n"),
+  new SourceNode(7, 8, "d.cpp", "int main(int argc, char** argv) {}\n"),
+]);
+```
+
+#### SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])
+
+Creates a SourceNode from generated code and a SourceMapConsumer.
+
+* `code`: The generated code
+
+* `sourceMapConsumer` The SourceMap for the generated code
+
+* `relativePath` The optional path that relative sources in `sourceMapConsumer`
+  should be relative to.
+
+```js
+var consumer = new SourceMapConsumer(fs.readFileSync("path/to/my-file.js.map", "utf8"));
+var node = SourceNode.fromStringWithSourceMap(fs.readFileSync("path/to/my-file.js"),
+                                              consumer);
+```
+
+#### SourceNode.prototype.add(chunk)
+
+Add a chunk of generated JS to this source node.
+
+* `chunk`: A string snippet of generated JS code, another instance of
+   `SourceNode`, or an array where each member is one of those things.
+
+```js
+node.add(" + ");
+node.add(otherNode);
+node.add([leftHandOperandNode, " + ", rightHandOperandNode]);
+```
+
+#### SourceNode.prototype.prepend(chunk)
+
+Prepend a chunk of generated JS to this source node.
+
+* `chunk`: A string snippet of generated JS code, another instance of
+   `SourceNode`, or an array where each member is one of those things.
+
+```js
+node.prepend("/** Build Id: f783haef86324gf **/\n\n");
+```
+
+#### SourceNode.prototype.setSourceContent(sourceFile, sourceContent)
+
+Set the source content for a source file. This will be added to the
+`SourceMap` in the `sourcesContent` field.
+
+* `sourceFile`: The filename of the source file
+
+* `sourceContent`: The content of the source file
+
+```js
+node.setSourceContent("module-one.scm",
+                      fs.readFileSync("path/to/module-one.scm"))
+```
+
+#### SourceNode.prototype.walk(fn)
+
+Walk over the tree of JS snippets in this node and its children. The walking
+function is called once for each snippet of JS and is passed that snippet and
+the its original associated source's line/column location.
+
+* `fn`: The traversal function.
+
+```js
+var node = new SourceNode(1, 2, "a.js", [
+  new SourceNode(3, 4, "b.js", "uno"),
+  "dos",
+  [
+    "tres",
+    new SourceNode(5, 6, "c.js", "quatro")
+  ]
+]);
+
+node.walk(function (code, loc) { console.log("WALK:", code, loc); })
+// WALK: uno { source: 'b.js', line: 3, column: 4, name: null }
+// WALK: dos { source: 'a.js', line: 1, column: 2, name: null }
+// WALK: tres { source: 'a.js', line: 1, column: 2, name: null }
+// WALK: quatro { source: 'c.js', line: 5, column: 6, name: null }
+```
+
+#### SourceNode.prototype.walkSourceContents(fn)
+
+Walk over the tree of SourceNodes. The walking function is called for each
+source file content and is passed the filename and source content.
+
+* `fn`: The traversal function.
+
+```js
+var a = new SourceNode(1, 2, "a.js", "generated from a");
+a.setSourceContent("a.js", "original a");
+var b = new SourceNode(1, 2, "b.js", "generated from b");
+b.setSourceContent("b.js", "original b");
+var c = new SourceNode(1, 2, "c.js", "generated from c");
+c.setSourceContent("c.js", "original c");
+
+var node = new SourceNode(null, null, null, [a, b, c]);
+node.walkSourceContents(function (source, contents) { console.log("WALK:", source, ":", contents); })
+// WALK: a.js : original a
+// WALK: b.js : original b
+// WALK: c.js : original c
+```
+
+#### SourceNode.prototype.join(sep)
+
+Like `Array.prototype.join` except for SourceNodes. Inserts the separator
+between each of this source node's children.
+
+* `sep`: The separator.
+
+```js
+var lhs = new SourceNode(1, 2, "a.rs", "my_copy");
+var operand = new SourceNode(3, 4, "a.rs", "=");
+var rhs = new SourceNode(5, 6, "a.rs", "orig.clone()");
+
+var node = new SourceNode(null, null, null, [ lhs, operand, rhs ]);
+var joinedNode = node.join(" ");
+```
+
+#### SourceNode.prototype.replaceRight(pattern, replacement)
+
+Call `String.prototype.replace` on the very right-most source snippet. Useful
+for trimming white space from the end of a source node, etc.
+
+* `pattern`: The pattern to replace.
+
+* `replacement`: The thing to replace the pattern with.
+
+```js
+// Trim trailing white space.
+node.replaceRight(/\s*$/, "");
+```
+
+#### SourceNode.prototype.toString()
+
+Return the string representation of this source node. Walks over the tree and
+concatenates all the various snippets together to one string.
+
+```js
+var node = new SourceNode(1, 2, "a.js", [
+  new SourceNode(3, 4, "b.js", "uno"),
+  "dos",
+  [
+    "tres",
+    new SourceNode(5, 6, "c.js", "quatro")
+  ]
+]);
+
+node.toString()
+// 'unodostresquatro'
+```
+
+#### SourceNode.prototype.toStringWithSourceMap([startOfSourceMap])
+
+Returns the string representation of this tree of source nodes, plus a
+SourceMapGenerator which contains all the mappings between the generated and
+original sources.
+
+The arguments are the same as those to `new SourceMapGenerator`.
+
+```js
+var node = new SourceNode(1, 2, "a.js", [
+  new SourceNode(3, 4, "b.js", "uno"),
+  "dos",
+  [
+    "tres",
+    new SourceNode(5, 6, "c.js", "quatro")
+  ]
+]);
+
+node.toStringWithSourceMap({ file: "my-output-file.js" })
+// { code: 'unodostresquatro',
+//   map: [object SourceMapGenerator] }
+```
Index: node_modules/source-map-js/lib/array-set.js
===================================================================
--- node_modules/source-map-js/lib/array-set.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/array-set.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,121 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+var util = require('./util');
+var has = Object.prototype.hasOwnProperty;
+var hasNativeMap = typeof Map !== "undefined";
+
+/**
+ * A data structure which is a combination of an array and a set. Adding a new
+ * member is O(1), testing for membership is O(1), and finding the index of an
+ * element is O(1). Removing elements from the set is not supported. Only
+ * strings are supported for membership.
+ */
+function ArraySet() {
+  this._array = [];
+  this._set = hasNativeMap ? new Map() : Object.create(null);
+}
+
+/**
+ * Static method for creating ArraySet instances from an existing array.
+ */
+ArraySet.fromArray = function ArraySet_fromArray(aArray, aAllowDuplicates) {
+  var set = new ArraySet();
+  for (var i = 0, len = aArray.length; i < len; i++) {
+    set.add(aArray[i], aAllowDuplicates);
+  }
+  return set;
+};
+
+/**
+ * Return how many unique items are in this ArraySet. If duplicates have been
+ * added, than those do not count towards the size.
+ *
+ * @returns Number
+ */
+ArraySet.prototype.size = function ArraySet_size() {
+  return hasNativeMap ? this._set.size : Object.getOwnPropertyNames(this._set).length;
+};
+
+/**
+ * Add the given string to this set.
+ *
+ * @param String aStr
+ */
+ArraySet.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) {
+  var sStr = hasNativeMap ? aStr : util.toSetString(aStr);
+  var isDuplicate = hasNativeMap ? this.has(aStr) : has.call(this._set, sStr);
+  var idx = this._array.length;
+  if (!isDuplicate || aAllowDuplicates) {
+    this._array.push(aStr);
+  }
+  if (!isDuplicate) {
+    if (hasNativeMap) {
+      this._set.set(aStr, idx);
+    } else {
+      this._set[sStr] = idx;
+    }
+  }
+};
+
+/**
+ * Is the given string a member of this set?
+ *
+ * @param String aStr
+ */
+ArraySet.prototype.has = function ArraySet_has(aStr) {
+  if (hasNativeMap) {
+    return this._set.has(aStr);
+  } else {
+    var sStr = util.toSetString(aStr);
+    return has.call(this._set, sStr);
+  }
+};
+
+/**
+ * What is the index of the given string in the array?
+ *
+ * @param String aStr
+ */
+ArraySet.prototype.indexOf = function ArraySet_indexOf(aStr) {
+  if (hasNativeMap) {
+    var idx = this._set.get(aStr);
+    if (idx >= 0) {
+        return idx;
+    }
+  } else {
+    var sStr = util.toSetString(aStr);
+    if (has.call(this._set, sStr)) {
+      return this._set[sStr];
+    }
+  }
+
+  throw new Error('"' + aStr + '" is not in the set.');
+};
+
+/**
+ * What is the element at the given index?
+ *
+ * @param Number aIdx
+ */
+ArraySet.prototype.at = function ArraySet_at(aIdx) {
+  if (aIdx >= 0 && aIdx < this._array.length) {
+    return this._array[aIdx];
+  }
+  throw new Error('No element indexed by ' + aIdx);
+};
+
+/**
+ * Returns the array representation of this set (which has the proper indices
+ * indicated by indexOf). Note that this is a copy of the internal array used
+ * for storing the members so that no one can mess with internal state.
+ */
+ArraySet.prototype.toArray = function ArraySet_toArray() {
+  return this._array.slice();
+};
+
+exports.ArraySet = ArraySet;
Index: node_modules/source-map-js/lib/base64-vlq.js
===================================================================
--- node_modules/source-map-js/lib/base64-vlq.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/base64-vlq.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,140 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ *
+ * Based on the Base 64 VLQ implementation in Closure Compiler:
+ * https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java
+ *
+ * Copyright 2011 The Closure Compiler Authors. All rights reserved.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ *  * Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ *  * Redistributions in binary form must reproduce the above
+ *    copyright notice, this list of conditions and the following
+ *    disclaimer in the documentation and/or other materials provided
+ *    with the distribution.
+ *  * Neither the name of Google Inc. nor the names of its
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+var base64 = require('./base64');
+
+// A single base 64 digit can contain 6 bits of data. For the base 64 variable
+// length quantities we use in the source map spec, the first bit is the sign,
+// the next four bits are the actual value, and the 6th bit is the
+// continuation bit. The continuation bit tells us whether there are more
+// digits in this value following this digit.
+//
+//   Continuation
+//   |    Sign
+//   |    |
+//   V    V
+//   101011
+
+var VLQ_BASE_SHIFT = 5;
+
+// binary: 100000
+var VLQ_BASE = 1 << VLQ_BASE_SHIFT;
+
+// binary: 011111
+var VLQ_BASE_MASK = VLQ_BASE - 1;
+
+// binary: 100000
+var VLQ_CONTINUATION_BIT = VLQ_BASE;
+
+/**
+ * Converts from a two-complement value to a value where the sign bit is
+ * placed in the least significant bit.  For example, as decimals:
+ *   1 becomes 2 (10 binary), -1 becomes 3 (11 binary)
+ *   2 becomes 4 (100 binary), -2 becomes 5 (101 binary)
+ */
+function toVLQSigned(aValue) {
+  return aValue < 0
+    ? ((-aValue) << 1) + 1
+    : (aValue << 1) + 0;
+}
+
+/**
+ * Converts to a two-complement value from a value where the sign bit is
+ * placed in the least significant bit.  For example, as decimals:
+ *   2 (10 binary) becomes 1, 3 (11 binary) becomes -1
+ *   4 (100 binary) becomes 2, 5 (101 binary) becomes -2
+ */
+function fromVLQSigned(aValue) {
+  var isNegative = (aValue & 1) === 1;
+  var shifted = aValue >> 1;
+  return isNegative
+    ? -shifted
+    : shifted;
+}
+
+/**
+ * Returns the base 64 VLQ encoded value.
+ */
+exports.encode = function base64VLQ_encode(aValue) {
+  var encoded = "";
+  var digit;
+
+  var vlq = toVLQSigned(aValue);
+
+  do {
+    digit = vlq & VLQ_BASE_MASK;
+    vlq >>>= VLQ_BASE_SHIFT;
+    if (vlq > 0) {
+      // There are still more digits in this value, so we must make sure the
+      // continuation bit is marked.
+      digit |= VLQ_CONTINUATION_BIT;
+    }
+    encoded += base64.encode(digit);
+  } while (vlq > 0);
+
+  return encoded;
+};
+
+/**
+ * Decodes the next base 64 VLQ value from the given string and returns the
+ * value and the rest of the string via the out parameter.
+ */
+exports.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {
+  var strLen = aStr.length;
+  var result = 0;
+  var shift = 0;
+  var continuation, digit;
+
+  do {
+    if (aIndex >= strLen) {
+      throw new Error("Expected more digits in base 64 VLQ value.");
+    }
+
+    digit = base64.decode(aStr.charCodeAt(aIndex++));
+    if (digit === -1) {
+      throw new Error("Invalid base64 digit: " + aStr.charAt(aIndex - 1));
+    }
+
+    continuation = !!(digit & VLQ_CONTINUATION_BIT);
+    digit &= VLQ_BASE_MASK;
+    result = result + (digit << shift);
+    shift += VLQ_BASE_SHIFT;
+  } while (continuation);
+
+  aOutParam.value = fromVLQSigned(result);
+  aOutParam.rest = aIndex;
+};
Index: node_modules/source-map-js/lib/base64.js
===================================================================
--- node_modules/source-map-js/lib/base64.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/base64.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,67 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+var intToCharMap = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split('');
+
+/**
+ * Encode an integer in the range of 0 to 63 to a single base 64 digit.
+ */
+exports.encode = function (number) {
+  if (0 <= number && number < intToCharMap.length) {
+    return intToCharMap[number];
+  }
+  throw new TypeError("Must be between 0 and 63: " + number);
+};
+
+/**
+ * Decode a single base 64 character code digit to an integer. Returns -1 on
+ * failure.
+ */
+exports.decode = function (charCode) {
+  var bigA = 65;     // 'A'
+  var bigZ = 90;     // 'Z'
+
+  var littleA = 97;  // 'a'
+  var littleZ = 122; // 'z'
+
+  var zero = 48;     // '0'
+  var nine = 57;     // '9'
+
+  var plus = 43;     // '+'
+  var slash = 47;    // '/'
+
+  var littleOffset = 26;
+  var numberOffset = 52;
+
+  // 0 - 25: ABCDEFGHIJKLMNOPQRSTUVWXYZ
+  if (bigA <= charCode && charCode <= bigZ) {
+    return (charCode - bigA);
+  }
+
+  // 26 - 51: abcdefghijklmnopqrstuvwxyz
+  if (littleA <= charCode && charCode <= littleZ) {
+    return (charCode - littleA + littleOffset);
+  }
+
+  // 52 - 61: 0123456789
+  if (zero <= charCode && charCode <= nine) {
+    return (charCode - zero + numberOffset);
+  }
+
+  // 62: +
+  if (charCode == plus) {
+    return 62;
+  }
+
+  // 63: /
+  if (charCode == slash) {
+    return 63;
+  }
+
+  // Invalid base64 digit.
+  return -1;
+};
Index: node_modules/source-map-js/lib/binary-search.js
===================================================================
--- node_modules/source-map-js/lib/binary-search.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/binary-search.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,111 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+exports.GREATEST_LOWER_BOUND = 1;
+exports.LEAST_UPPER_BOUND = 2;
+
+/**
+ * Recursive implementation of binary search.
+ *
+ * @param aLow Indices here and lower do not contain the needle.
+ * @param aHigh Indices here and higher do not contain the needle.
+ * @param aNeedle The element being searched for.
+ * @param aHaystack The non-empty array being searched.
+ * @param aCompare Function which takes two elements and returns -1, 0, or 1.
+ * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or
+ *     'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the
+ *     closest element that is smaller than or greater than the one we are
+ *     searching for, respectively, if the exact element cannot be found.
+ */
+function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {
+  // This function terminates when one of the following is true:
+  //
+  //   1. We find the exact element we are looking for.
+  //
+  //   2. We did not find the exact element, but we can return the index of
+  //      the next-closest element.
+  //
+  //   3. We did not find the exact element, and there is no next-closest
+  //      element than the one we are searching for, so we return -1.
+  var mid = Math.floor((aHigh - aLow) / 2) + aLow;
+  var cmp = aCompare(aNeedle, aHaystack[mid], true);
+  if (cmp === 0) {
+    // Found the element we are looking for.
+    return mid;
+  }
+  else if (cmp > 0) {
+    // Our needle is greater than aHaystack[mid].
+    if (aHigh - mid > 1) {
+      // The element is in the upper half.
+      return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);
+    }
+
+    // The exact needle element was not found in this haystack. Determine if
+    // we are in termination case (3) or (2) and return the appropriate thing.
+    if (aBias == exports.LEAST_UPPER_BOUND) {
+      return aHigh < aHaystack.length ? aHigh : -1;
+    } else {
+      return mid;
+    }
+  }
+  else {
+    // Our needle is less than aHaystack[mid].
+    if (mid - aLow > 1) {
+      // The element is in the lower half.
+      return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);
+    }
+
+    // we are in termination case (3) or (2) and return the appropriate thing.
+    if (aBias == exports.LEAST_UPPER_BOUND) {
+      return mid;
+    } else {
+      return aLow < 0 ? -1 : aLow;
+    }
+  }
+}
+
+/**
+ * This is an implementation of binary search which will always try and return
+ * the index of the closest element if there is no exact hit. This is because
+ * mappings between original and generated line/col pairs are single points,
+ * and there is an implicit region between each of them, so a miss just means
+ * that you aren't on the very start of a region.
+ *
+ * @param aNeedle The element you are looking for.
+ * @param aHaystack The array that is being searched.
+ * @param aCompare A function which takes the needle and an element in the
+ *     array and returns -1, 0, or 1 depending on whether the needle is less
+ *     than, equal to, or greater than the element, respectively.
+ * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or
+ *     'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the
+ *     closest element that is smaller than or greater than the one we are
+ *     searching for, respectively, if the exact element cannot be found.
+ *     Defaults to 'binarySearch.GREATEST_LOWER_BOUND'.
+ */
+exports.search = function search(aNeedle, aHaystack, aCompare, aBias) {
+  if (aHaystack.length === 0) {
+    return -1;
+  }
+
+  var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack,
+                              aCompare, aBias || exports.GREATEST_LOWER_BOUND);
+  if (index < 0) {
+    return -1;
+  }
+
+  // We have found either the exact element, or the next-closest element than
+  // the one we are searching for. However, there may be more than one such
+  // element. Make sure we always return the smallest of these.
+  while (index - 1 >= 0) {
+    if (aCompare(aHaystack[index], aHaystack[index - 1], true) !== 0) {
+      break;
+    }
+    --index;
+  }
+
+  return index;
+};
Index: node_modules/source-map-js/lib/mapping-list.js
===================================================================
--- node_modules/source-map-js/lib/mapping-list.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/mapping-list.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,79 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2014 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+var util = require('./util');
+
+/**
+ * Determine whether mappingB is after mappingA with respect to generated
+ * position.
+ */
+function generatedPositionAfter(mappingA, mappingB) {
+  // Optimized for most common case
+  var lineA = mappingA.generatedLine;
+  var lineB = mappingB.generatedLine;
+  var columnA = mappingA.generatedColumn;
+  var columnB = mappingB.generatedColumn;
+  return lineB > lineA || lineB == lineA && columnB >= columnA ||
+         util.compareByGeneratedPositionsInflated(mappingA, mappingB) <= 0;
+}
+
+/**
+ * A data structure to provide a sorted view of accumulated mappings in a
+ * performance conscious manner. It trades a neglibable overhead in general
+ * case for a large speedup in case of mappings being added in order.
+ */
+function MappingList() {
+  this._array = [];
+  this._sorted = true;
+  // Serves as infimum
+  this._last = {generatedLine: -1, generatedColumn: 0};
+}
+
+/**
+ * Iterate through internal items. This method takes the same arguments that
+ * `Array.prototype.forEach` takes.
+ *
+ * NOTE: The order of the mappings is NOT guaranteed.
+ */
+MappingList.prototype.unsortedForEach =
+  function MappingList_forEach(aCallback, aThisArg) {
+    this._array.forEach(aCallback, aThisArg);
+  };
+
+/**
+ * Add the given source mapping.
+ *
+ * @param Object aMapping
+ */
+MappingList.prototype.add = function MappingList_add(aMapping) {
+  if (generatedPositionAfter(this._last, aMapping)) {
+    this._last = aMapping;
+    this._array.push(aMapping);
+  } else {
+    this._sorted = false;
+    this._array.push(aMapping);
+  }
+};
+
+/**
+ * Returns the flat, sorted array of mappings. The mappings are sorted by
+ * generated position.
+ *
+ * WARNING: This method returns internal data without copying, for
+ * performance. The return value must NOT be mutated, and should be treated as
+ * an immutable borrow. If you want to take ownership, you must make your own
+ * copy.
+ */
+MappingList.prototype.toArray = function MappingList_toArray() {
+  if (!this._sorted) {
+    this._array.sort(util.compareByGeneratedPositionsInflated);
+    this._sorted = true;
+  }
+  return this._array;
+};
+
+exports.MappingList = MappingList;
Index: node_modules/source-map-js/lib/quick-sort.js
===================================================================
--- node_modules/source-map-js/lib/quick-sort.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/quick-sort.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,132 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+// It turns out that some (most?) JavaScript engines don't self-host
+// `Array.prototype.sort`. This makes sense because C++ will likely remain
+// faster than JS when doing raw CPU-intensive sorting. However, when using a
+// custom comparator function, calling back and forth between the VM's C++ and
+// JIT'd JS is rather slow *and* loses JIT type information, resulting in
+// worse generated code for the comparator function than would be optimal. In
+// fact, when sorting with a comparator, these costs outweigh the benefits of
+// sorting in C++. By using our own JS-implemented Quick Sort (below), we get
+// a ~3500ms mean speed-up in `bench/bench.html`.
+
+function SortTemplate(comparator) {
+
+/**
+ * Swap the elements indexed by `x` and `y` in the array `ary`.
+ *
+ * @param {Array} ary
+ *        The array.
+ * @param {Number} x
+ *        The index of the first item.
+ * @param {Number} y
+ *        The index of the second item.
+ */
+function swap(ary, x, y) {
+  var temp = ary[x];
+  ary[x] = ary[y];
+  ary[y] = temp;
+}
+
+/**
+ * Returns a random integer within the range `low .. high` inclusive.
+ *
+ * @param {Number} low
+ *        The lower bound on the range.
+ * @param {Number} high
+ *        The upper bound on the range.
+ */
+function randomIntInRange(low, high) {
+  return Math.round(low + (Math.random() * (high - low)));
+}
+
+/**
+ * The Quick Sort algorithm.
+ *
+ * @param {Array} ary
+ *        An array to sort.
+ * @param {function} comparator
+ *        Function to use to compare two items.
+ * @param {Number} p
+ *        Start index of the array
+ * @param {Number} r
+ *        End index of the array
+ */
+function doQuickSort(ary, comparator, p, r) {
+  // If our lower bound is less than our upper bound, we (1) partition the
+  // array into two pieces and (2) recurse on each half. If it is not, this is
+  // the empty array and our base case.
+
+  if (p < r) {
+    // (1) Partitioning.
+    //
+    // The partitioning chooses a pivot between `p` and `r` and moves all
+    // elements that are less than or equal to the pivot to the before it, and
+    // all the elements that are greater than it after it. The effect is that
+    // once partition is done, the pivot is in the exact place it will be when
+    // the array is put in sorted order, and it will not need to be moved
+    // again. This runs in O(n) time.
+
+    // Always choose a random pivot so that an input array which is reverse
+    // sorted does not cause O(n^2) running time.
+    var pivotIndex = randomIntInRange(p, r);
+    var i = p - 1;
+
+    swap(ary, pivotIndex, r);
+    var pivot = ary[r];
+
+    // Immediately after `j` is incremented in this loop, the following hold
+    // true:
+    //
+    //   * Every element in `ary[p .. i]` is less than or equal to the pivot.
+    //
+    //   * Every element in `ary[i+1 .. j-1]` is greater than the pivot.
+    for (var j = p; j < r; j++) {
+      if (comparator(ary[j], pivot, false) <= 0) {
+        i += 1;
+        swap(ary, i, j);
+      }
+    }
+
+    swap(ary, i + 1, j);
+    var q = i + 1;
+
+    // (2) Recurse on each half.
+
+    doQuickSort(ary, comparator, p, q - 1);
+    doQuickSort(ary, comparator, q + 1, r);
+  }
+}
+
+  return doQuickSort;
+}
+
+function cloneSort(comparator) {
+  let template = SortTemplate.toString();
+  let templateFn = new Function(`return ${template}`)();
+  return templateFn(comparator);
+}
+
+/**
+ * Sort the given array in-place with the given comparator function.
+ *
+ * @param {Array} ary
+ *        An array to sort.
+ * @param {function} comparator
+ *        Function to use to compare two items.
+ */
+
+let sortCache = new WeakMap();
+exports.quickSort = function (ary, comparator, start = 0) {
+  let doQuickSort = sortCache.get(comparator);
+  if (doQuickSort === void 0) {
+    doQuickSort = cloneSort(comparator);
+    sortCache.set(comparator, doQuickSort);
+  }
+  doQuickSort(ary, comparator, start, ary.length - 1);
+};
Index: node_modules/source-map-js/lib/source-map-consumer.d.ts
===================================================================
--- node_modules/source-map-js/lib/source-map-consumer.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/source-map-consumer.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+export { SourceMapConsumer } from '..';
Index: node_modules/source-map-js/lib/source-map-consumer.js
===================================================================
--- node_modules/source-map-js/lib/source-map-consumer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/source-map-consumer.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1188 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+var util = require('./util');
+var binarySearch = require('./binary-search');
+var ArraySet = require('./array-set').ArraySet;
+var base64VLQ = require('./base64-vlq');
+var quickSort = require('./quick-sort').quickSort;
+
+function SourceMapConsumer(aSourceMap, aSourceMapURL) {
+  var sourceMap = aSourceMap;
+  if (typeof aSourceMap === 'string') {
+    sourceMap = util.parseSourceMapInput(aSourceMap);
+  }
+
+  return sourceMap.sections != null
+    ? new IndexedSourceMapConsumer(sourceMap, aSourceMapURL)
+    : new BasicSourceMapConsumer(sourceMap, aSourceMapURL);
+}
+
+SourceMapConsumer.fromSourceMap = function(aSourceMap, aSourceMapURL) {
+  return BasicSourceMapConsumer.fromSourceMap(aSourceMap, aSourceMapURL);
+}
+
+/**
+ * The version of the source mapping spec that we are consuming.
+ */
+SourceMapConsumer.prototype._version = 3;
+
+// `__generatedMappings` and `__originalMappings` are arrays that hold the
+// parsed mapping coordinates from the source map's "mappings" attribute. They
+// are lazily instantiated, accessed via the `_generatedMappings` and
+// `_originalMappings` getters respectively, and we only parse the mappings
+// and create these arrays once queried for a source location. We jump through
+// these hoops because there can be many thousands of mappings, and parsing
+// them is expensive, so we only want to do it if we must.
+//
+// Each object in the arrays is of the form:
+//
+//     {
+//       generatedLine: The line number in the generated code,
+//       generatedColumn: The column number in the generated code,
+//       source: The path to the original source file that generated this
+//               chunk of code,
+//       originalLine: The line number in the original source that
+//                     corresponds to this chunk of generated code,
+//       originalColumn: The column number in the original source that
+//                       corresponds to this chunk of generated code,
+//       name: The name of the original symbol which generated this chunk of
+//             code.
+//     }
+//
+// All properties except for `generatedLine` and `generatedColumn` can be
+// `null`.
+//
+// `_generatedMappings` is ordered by the generated positions.
+//
+// `_originalMappings` is ordered by the original positions.
+
+SourceMapConsumer.prototype.__generatedMappings = null;
+Object.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {
+  configurable: true,
+  enumerable: true,
+  get: function () {
+    if (!this.__generatedMappings) {
+      this._parseMappings(this._mappings, this.sourceRoot);
+    }
+
+    return this.__generatedMappings;
+  }
+});
+
+SourceMapConsumer.prototype.__originalMappings = null;
+Object.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {
+  configurable: true,
+  enumerable: true,
+  get: function () {
+    if (!this.__originalMappings) {
+      this._parseMappings(this._mappings, this.sourceRoot);
+    }
+
+    return this.__originalMappings;
+  }
+});
+
+SourceMapConsumer.prototype._charIsMappingSeparator =
+  function SourceMapConsumer_charIsMappingSeparator(aStr, index) {
+    var c = aStr.charAt(index);
+    return c === ";" || c === ",";
+  };
+
+/**
+ * Parse the mappings in a string in to a data structure which we can easily
+ * query (the ordered arrays in the `this.__generatedMappings` and
+ * `this.__originalMappings` properties).
+ */
+SourceMapConsumer.prototype._parseMappings =
+  function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {
+    throw new Error("Subclasses must implement _parseMappings");
+  };
+
+SourceMapConsumer.GENERATED_ORDER = 1;
+SourceMapConsumer.ORIGINAL_ORDER = 2;
+
+SourceMapConsumer.GREATEST_LOWER_BOUND = 1;
+SourceMapConsumer.LEAST_UPPER_BOUND = 2;
+
+/**
+ * Iterate over each mapping between an original source/line/column and a
+ * generated line/column in this source map.
+ *
+ * @param Function aCallback
+ *        The function that is called with each mapping.
+ * @param Object aContext
+ *        Optional. If specified, this object will be the value of `this` every
+ *        time that `aCallback` is called.
+ * @param aOrder
+ *        Either `SourceMapConsumer.GENERATED_ORDER` or
+ *        `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to
+ *        iterate over the mappings sorted by the generated file's line/column
+ *        order or the original's source/line/column order, respectively. Defaults to
+ *        `SourceMapConsumer.GENERATED_ORDER`.
+ */
+SourceMapConsumer.prototype.eachMapping =
+  function SourceMapConsumer_eachMapping(aCallback, aContext, aOrder) {
+    var context = aContext || null;
+    var order = aOrder || SourceMapConsumer.GENERATED_ORDER;
+
+    var mappings;
+    switch (order) {
+    case SourceMapConsumer.GENERATED_ORDER:
+      mappings = this._generatedMappings;
+      break;
+    case SourceMapConsumer.ORIGINAL_ORDER:
+      mappings = this._originalMappings;
+      break;
+    default:
+      throw new Error("Unknown order of iteration.");
+    }
+
+    var sourceRoot = this.sourceRoot;
+    var boundCallback = aCallback.bind(context);
+    var names = this._names;
+    var sources = this._sources;
+    var sourceMapURL = this._sourceMapURL;
+
+    for (var i = 0, n = mappings.length; i < n; i++) {
+      var mapping = mappings[i];
+      var source = mapping.source === null ? null : sources.at(mapping.source);
+      if(source !== null) {
+        source = util.computeSourceURL(sourceRoot, source, sourceMapURL);
+      }
+      boundCallback({
+        source: source,
+        generatedLine: mapping.generatedLine,
+        generatedColumn: mapping.generatedColumn,
+        originalLine: mapping.originalLine,
+        originalColumn: mapping.originalColumn,
+        name: mapping.name === null ? null : names.at(mapping.name)
+      });
+    }
+  };
+
+/**
+ * Returns all generated line and column information for the original source,
+ * line, and column provided. If no column is provided, returns all mappings
+ * corresponding to a either the line we are searching for or the next
+ * closest line that has any mappings. Otherwise, returns all mappings
+ * corresponding to the given line and either the column we are searching for
+ * or the next closest column that has any offsets.
+ *
+ * The only argument is an object with the following properties:
+ *
+ *   - source: The filename of the original source.
+ *   - line: The line number in the original source.  The line number is 1-based.
+ *   - column: Optional. the column number in the original source.
+ *    The column number is 0-based.
+ *
+ * and an array of objects is returned, each with the following properties:
+ *
+ *   - line: The line number in the generated source, or null.  The
+ *    line number is 1-based.
+ *   - column: The column number in the generated source, or null.
+ *    The column number is 0-based.
+ */
+SourceMapConsumer.prototype.allGeneratedPositionsFor =
+  function SourceMapConsumer_allGeneratedPositionsFor(aArgs) {
+    var line = util.getArg(aArgs, 'line');
+
+    // When there is no exact match, BasicSourceMapConsumer.prototype._findMapping
+    // returns the index of the closest mapping less than the needle. By
+    // setting needle.originalColumn to 0, we thus find the last mapping for
+    // the given line, provided such a mapping exists.
+    var needle = {
+      source: util.getArg(aArgs, 'source'),
+      originalLine: line,
+      originalColumn: util.getArg(aArgs, 'column', 0)
+    };
+
+    needle.source = this._findSourceIndex(needle.source);
+    if (needle.source < 0) {
+      return [];
+    }
+
+    var mappings = [];
+
+    var index = this._findMapping(needle,
+                                  this._originalMappings,
+                                  "originalLine",
+                                  "originalColumn",
+                                  util.compareByOriginalPositions,
+                                  binarySearch.LEAST_UPPER_BOUND);
+    if (index >= 0) {
+      var mapping = this._originalMappings[index];
+
+      if (aArgs.column === undefined) {
+        var originalLine = mapping.originalLine;
+
+        // Iterate until either we run out of mappings, or we run into
+        // a mapping for a different line than the one we found. Since
+        // mappings are sorted, this is guaranteed to find all mappings for
+        // the line we found.
+        while (mapping && mapping.originalLine === originalLine) {
+          mappings.push({
+            line: util.getArg(mapping, 'generatedLine', null),
+            column: util.getArg(mapping, 'generatedColumn', null),
+            lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
+          });
+
+          mapping = this._originalMappings[++index];
+        }
+      } else {
+        var originalColumn = mapping.originalColumn;
+
+        // Iterate until either we run out of mappings, or we run into
+        // a mapping for a different line than the one we were searching for.
+        // Since mappings are sorted, this is guaranteed to find all mappings for
+        // the line we are searching for.
+        while (mapping &&
+               mapping.originalLine === line &&
+               mapping.originalColumn == originalColumn) {
+          mappings.push({
+            line: util.getArg(mapping, 'generatedLine', null),
+            column: util.getArg(mapping, 'generatedColumn', null),
+            lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
+          });
+
+          mapping = this._originalMappings[++index];
+        }
+      }
+    }
+
+    return mappings;
+  };
+
+exports.SourceMapConsumer = SourceMapConsumer;
+
+/**
+ * A BasicSourceMapConsumer instance represents a parsed source map which we can
+ * query for information about the original file positions by giving it a file
+ * position in the generated source.
+ *
+ * The first parameter is the raw source map (either as a JSON string, or
+ * already parsed to an object). According to the spec, source maps have the
+ * following attributes:
+ *
+ *   - version: Which version of the source map spec this map is following.
+ *   - sources: An array of URLs to the original source files.
+ *   - names: An array of identifiers which can be referrenced by individual mappings.
+ *   - sourceRoot: Optional. The URL root from which all sources are relative.
+ *   - sourcesContent: Optional. An array of contents of the original source files.
+ *   - mappings: A string of base64 VLQs which contain the actual mappings.
+ *   - file: Optional. The generated file this source map is associated with.
+ *
+ * Here is an example source map, taken from the source map spec[0]:
+ *
+ *     {
+ *       version : 3,
+ *       file: "out.js",
+ *       sourceRoot : "",
+ *       sources: ["foo.js", "bar.js"],
+ *       names: ["src", "maps", "are", "fun"],
+ *       mappings: "AA,AB;;ABCDE;"
+ *     }
+ *
+ * The second parameter, if given, is a string whose value is the URL
+ * at which the source map was found.  This URL is used to compute the
+ * sources array.
+ *
+ * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1#
+ */
+function BasicSourceMapConsumer(aSourceMap, aSourceMapURL) {
+  var sourceMap = aSourceMap;
+  if (typeof aSourceMap === 'string') {
+    sourceMap = util.parseSourceMapInput(aSourceMap);
+  }
+
+  var version = util.getArg(sourceMap, 'version');
+  var sources = util.getArg(sourceMap, 'sources');
+  // Sass 3.3 leaves out the 'names' array, so we deviate from the spec (which
+  // requires the array) to play nice here.
+  var names = util.getArg(sourceMap, 'names', []);
+  var sourceRoot = util.getArg(sourceMap, 'sourceRoot', null);
+  var sourcesContent = util.getArg(sourceMap, 'sourcesContent', null);
+  var mappings = util.getArg(sourceMap, 'mappings');
+  var file = util.getArg(sourceMap, 'file', null);
+
+  // Once again, Sass deviates from the spec and supplies the version as a
+  // string rather than a number, so we use loose equality checking here.
+  if (version != this._version) {
+    throw new Error('Unsupported version: ' + version);
+  }
+
+  if (sourceRoot) {
+    sourceRoot = util.normalize(sourceRoot);
+  }
+
+  sources = sources
+    .map(String)
+    // Some source maps produce relative source paths like "./foo.js" instead of
+    // "foo.js".  Normalize these first so that future comparisons will succeed.
+    // See bugzil.la/1090768.
+    .map(util.normalize)
+    // Always ensure that absolute sources are internally stored relative to
+    // the source root, if the source root is absolute. Not doing this would
+    // be particularly problematic when the source root is a prefix of the
+    // source (valid, but why??). See github issue #199 and bugzil.la/1188982.
+    .map(function (source) {
+      return sourceRoot && util.isAbsolute(sourceRoot) && util.isAbsolute(source)
+        ? util.relative(sourceRoot, source)
+        : source;
+    });
+
+  // Pass `true` below to allow duplicate names and sources. While source maps
+  // are intended to be compressed and deduplicated, the TypeScript compiler
+  // sometimes generates source maps with duplicates in them. See Github issue
+  // #72 and bugzil.la/889492.
+  this._names = ArraySet.fromArray(names.map(String), true);
+  this._sources = ArraySet.fromArray(sources, true);
+
+  this._absoluteSources = this._sources.toArray().map(function (s) {
+    return util.computeSourceURL(sourceRoot, s, aSourceMapURL);
+  });
+
+  this.sourceRoot = sourceRoot;
+  this.sourcesContent = sourcesContent;
+  this._mappings = mappings;
+  this._sourceMapURL = aSourceMapURL;
+  this.file = file;
+}
+
+BasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
+BasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;
+
+/**
+ * Utility function to find the index of a source.  Returns -1 if not
+ * found.
+ */
+BasicSourceMapConsumer.prototype._findSourceIndex = function(aSource) {
+  var relativeSource = aSource;
+  if (this.sourceRoot != null) {
+    relativeSource = util.relative(this.sourceRoot, relativeSource);
+  }
+
+  if (this._sources.has(relativeSource)) {
+    return this._sources.indexOf(relativeSource);
+  }
+
+  // Maybe aSource is an absolute URL as returned by |sources|.  In
+  // this case we can't simply undo the transform.
+  var i;
+  for (i = 0; i < this._absoluteSources.length; ++i) {
+    if (this._absoluteSources[i] == aSource) {
+      return i;
+    }
+  }
+
+  return -1;
+};
+
+/**
+ * Create a BasicSourceMapConsumer from a SourceMapGenerator.
+ *
+ * @param SourceMapGenerator aSourceMap
+ *        The source map that will be consumed.
+ * @param String aSourceMapURL
+ *        The URL at which the source map can be found (optional)
+ * @returns BasicSourceMapConsumer
+ */
+BasicSourceMapConsumer.fromSourceMap =
+  function SourceMapConsumer_fromSourceMap(aSourceMap, aSourceMapURL) {
+    var smc = Object.create(BasicSourceMapConsumer.prototype);
+
+    var names = smc._names = ArraySet.fromArray(aSourceMap._names.toArray(), true);
+    var sources = smc._sources = ArraySet.fromArray(aSourceMap._sources.toArray(), true);
+    smc.sourceRoot = aSourceMap._sourceRoot;
+    smc.sourcesContent = aSourceMap._generateSourcesContent(smc._sources.toArray(),
+                                                            smc.sourceRoot);
+    smc.file = aSourceMap._file;
+    smc._sourceMapURL = aSourceMapURL;
+    smc._absoluteSources = smc._sources.toArray().map(function (s) {
+      return util.computeSourceURL(smc.sourceRoot, s, aSourceMapURL);
+    });
+
+    // Because we are modifying the entries (by converting string sources and
+    // names to indices into the sources and names ArraySets), we have to make
+    // a copy of the entry or else bad things happen. Shared mutable state
+    // strikes again! See github issue #191.
+
+    var generatedMappings = aSourceMap._mappings.toArray().slice();
+    var destGeneratedMappings = smc.__generatedMappings = [];
+    var destOriginalMappings = smc.__originalMappings = [];
+
+    for (var i = 0, length = generatedMappings.length; i < length; i++) {
+      var srcMapping = generatedMappings[i];
+      var destMapping = new Mapping;
+      destMapping.generatedLine = srcMapping.generatedLine;
+      destMapping.generatedColumn = srcMapping.generatedColumn;
+
+      if (srcMapping.source) {
+        destMapping.source = sources.indexOf(srcMapping.source);
+        destMapping.originalLine = srcMapping.originalLine;
+        destMapping.originalColumn = srcMapping.originalColumn;
+
+        if (srcMapping.name) {
+          destMapping.name = names.indexOf(srcMapping.name);
+        }
+
+        destOriginalMappings.push(destMapping);
+      }
+
+      destGeneratedMappings.push(destMapping);
+    }
+
+    quickSort(smc.__originalMappings, util.compareByOriginalPositions);
+
+    return smc;
+  };
+
+/**
+ * The version of the source mapping spec that we are consuming.
+ */
+BasicSourceMapConsumer.prototype._version = 3;
+
+/**
+ * The list of original sources.
+ */
+Object.defineProperty(BasicSourceMapConsumer.prototype, 'sources', {
+  get: function () {
+    return this._absoluteSources.slice();
+  }
+});
+
+/**
+ * Provide the JIT with a nice shape / hidden class.
+ */
+function Mapping() {
+  this.generatedLine = 0;
+  this.generatedColumn = 0;
+  this.source = null;
+  this.originalLine = null;
+  this.originalColumn = null;
+  this.name = null;
+}
+
+/**
+ * Parse the mappings in a string in to a data structure which we can easily
+ * query (the ordered arrays in the `this.__generatedMappings` and
+ * `this.__originalMappings` properties).
+ */
+
+const compareGenerated = util.compareByGeneratedPositionsDeflatedNoLine;
+function sortGenerated(array, start) {
+  let l = array.length;
+  let n = array.length - start;
+  if (n <= 1) {
+    return;
+  } else if (n == 2) {
+    let a = array[start];
+    let b = array[start + 1];
+    if (compareGenerated(a, b) > 0) {
+      array[start] = b;
+      array[start + 1] = a;
+    }
+  } else if (n < 20) {
+    for (let i = start; i < l; i++) {
+      for (let j = i; j > start; j--) {
+        let a = array[j - 1];
+        let b = array[j];
+        if (compareGenerated(a, b) <= 0) {
+          break;
+        }
+        array[j - 1] = b;
+        array[j] = a;
+      }
+    }
+  } else {
+    quickSort(array, compareGenerated, start);
+  }
+}
+BasicSourceMapConsumer.prototype._parseMappings =
+  function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {
+    var generatedLine = 1;
+    var previousGeneratedColumn = 0;
+    var previousOriginalLine = 0;
+    var previousOriginalColumn = 0;
+    var previousSource = 0;
+    var previousName = 0;
+    var length = aStr.length;
+    var index = 0;
+    var cachedSegments = {};
+    var temp = {};
+    var originalMappings = [];
+    var generatedMappings = [];
+    var mapping, str, segment, end, value;
+
+    let subarrayStart = 0;
+    while (index < length) {
+      if (aStr.charAt(index) === ';') {
+        generatedLine++;
+        index++;
+        previousGeneratedColumn = 0;
+
+        sortGenerated(generatedMappings, subarrayStart);
+        subarrayStart = generatedMappings.length;
+      }
+      else if (aStr.charAt(index) === ',') {
+        index++;
+      }
+      else {
+        mapping = new Mapping();
+        mapping.generatedLine = generatedLine;
+
+        for (end = index; end < length; end++) {
+          if (this._charIsMappingSeparator(aStr, end)) {
+            break;
+          }
+        }
+        str = aStr.slice(index, end);
+
+        segment = [];
+        while (index < end) {
+          base64VLQ.decode(aStr, index, temp);
+          value = temp.value;
+          index = temp.rest;
+          segment.push(value);
+        }
+
+        if (segment.length === 2) {
+          throw new Error('Found a source, but no line and column');
+        }
+
+        if (segment.length === 3) {
+          throw new Error('Found a source and line, but no column');
+        }
+
+        // Generated column.
+        mapping.generatedColumn = previousGeneratedColumn + segment[0];
+        previousGeneratedColumn = mapping.generatedColumn;
+
+        if (segment.length > 1) {
+          // Original source.
+          mapping.source = previousSource + segment[1];
+          previousSource += segment[1];
+
+          // Original line.
+          mapping.originalLine = previousOriginalLine + segment[2];
+          previousOriginalLine = mapping.originalLine;
+          // Lines are stored 0-based
+          mapping.originalLine += 1;
+
+          // Original column.
+          mapping.originalColumn = previousOriginalColumn + segment[3];
+          previousOriginalColumn = mapping.originalColumn;
+
+          if (segment.length > 4) {
+            // Original name.
+            mapping.name = previousName + segment[4];
+            previousName += segment[4];
+          }
+        }
+
+        generatedMappings.push(mapping);
+        if (typeof mapping.originalLine === 'number') {
+          let currentSource = mapping.source;
+          while (originalMappings.length <= currentSource) {
+            originalMappings.push(null);
+          }
+          if (originalMappings[currentSource] === null) {
+            originalMappings[currentSource] = [];
+          }
+          originalMappings[currentSource].push(mapping);
+        }
+      }
+    }
+
+    sortGenerated(generatedMappings, subarrayStart);
+    this.__generatedMappings = generatedMappings;
+
+    for (var i = 0; i < originalMappings.length; i++) {
+      if (originalMappings[i] != null) {
+        quickSort(originalMappings[i], util.compareByOriginalPositionsNoSource);
+      }
+    }
+    this.__originalMappings = [].concat(...originalMappings);
+  };
+
+/**
+ * Find the mapping that best matches the hypothetical "needle" mapping that
+ * we are searching for in the given "haystack" of mappings.
+ */
+BasicSourceMapConsumer.prototype._findMapping =
+  function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName,
+                                         aColumnName, aComparator, aBias) {
+    // To return the position we are searching for, we must first find the
+    // mapping for the given position and then return the opposite position it
+    // points to. Because the mappings are sorted, we can use binary search to
+    // find the best mapping.
+
+    if (aNeedle[aLineName] <= 0) {
+      throw new TypeError('Line must be greater than or equal to 1, got '
+                          + aNeedle[aLineName]);
+    }
+    if (aNeedle[aColumnName] < 0) {
+      throw new TypeError('Column must be greater than or equal to 0, got '
+                          + aNeedle[aColumnName]);
+    }
+
+    return binarySearch.search(aNeedle, aMappings, aComparator, aBias);
+  };
+
+/**
+ * Compute the last column for each generated mapping. The last column is
+ * inclusive.
+ */
+BasicSourceMapConsumer.prototype.computeColumnSpans =
+  function SourceMapConsumer_computeColumnSpans() {
+    for (var index = 0; index < this._generatedMappings.length; ++index) {
+      var mapping = this._generatedMappings[index];
+
+      // Mappings do not contain a field for the last generated columnt. We
+      // can come up with an optimistic estimate, however, by assuming that
+      // mappings are contiguous (i.e. given two consecutive mappings, the
+      // first mapping ends where the second one starts).
+      if (index + 1 < this._generatedMappings.length) {
+        var nextMapping = this._generatedMappings[index + 1];
+
+        if (mapping.generatedLine === nextMapping.generatedLine) {
+          mapping.lastGeneratedColumn = nextMapping.generatedColumn - 1;
+          continue;
+        }
+      }
+
+      // The last mapping for each line spans the entire line.
+      mapping.lastGeneratedColumn = Infinity;
+    }
+  };
+
+/**
+ * Returns the original source, line, and column information for the generated
+ * source's line and column positions provided. The only argument is an object
+ * with the following properties:
+ *
+ *   - line: The line number in the generated source.  The line number
+ *     is 1-based.
+ *   - column: The column number in the generated source.  The column
+ *     number is 0-based.
+ *   - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or
+ *     'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the
+ *     closest element that is smaller than or greater than the one we are
+ *     searching for, respectively, if the exact element cannot be found.
+ *     Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.
+ *
+ * and an object is returned with the following properties:
+ *
+ *   - source: The original source file, or null.
+ *   - line: The line number in the original source, or null.  The
+ *     line number is 1-based.
+ *   - column: The column number in the original source, or null.  The
+ *     column number is 0-based.
+ *   - name: The original identifier, or null.
+ */
+BasicSourceMapConsumer.prototype.originalPositionFor =
+  function SourceMapConsumer_originalPositionFor(aArgs) {
+    var needle = {
+      generatedLine: util.getArg(aArgs, 'line'),
+      generatedColumn: util.getArg(aArgs, 'column')
+    };
+
+    var index = this._findMapping(
+      needle,
+      this._generatedMappings,
+      "generatedLine",
+      "generatedColumn",
+      util.compareByGeneratedPositionsDeflated,
+      util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
+    );
+
+    if (index >= 0) {
+      var mapping = this._generatedMappings[index];
+
+      if (mapping.generatedLine === needle.generatedLine) {
+        var source = util.getArg(mapping, 'source', null);
+        if (source !== null) {
+          source = this._sources.at(source);
+          source = util.computeSourceURL(this.sourceRoot, source, this._sourceMapURL);
+        }
+        var name = util.getArg(mapping, 'name', null);
+        if (name !== null) {
+          name = this._names.at(name);
+        }
+        return {
+          source: source,
+          line: util.getArg(mapping, 'originalLine', null),
+          column: util.getArg(mapping, 'originalColumn', null),
+          name: name
+        };
+      }
+    }
+
+    return {
+      source: null,
+      line: null,
+      column: null,
+      name: null
+    };
+  };
+
+/**
+ * Return true if we have the source content for every source in the source
+ * map, false otherwise.
+ */
+BasicSourceMapConsumer.prototype.hasContentsOfAllSources =
+  function BasicSourceMapConsumer_hasContentsOfAllSources() {
+    if (!this.sourcesContent) {
+      return false;
+    }
+    return this.sourcesContent.length >= this._sources.size() &&
+      !this.sourcesContent.some(function (sc) { return sc == null; });
+  };
+
+/**
+ * Returns the original source content. The only argument is the url of the
+ * original source file. Returns null if no original source content is
+ * available.
+ */
+BasicSourceMapConsumer.prototype.sourceContentFor =
+  function SourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {
+    if (!this.sourcesContent) {
+      return null;
+    }
+
+    var index = this._findSourceIndex(aSource);
+    if (index >= 0) {
+      return this.sourcesContent[index];
+    }
+
+    var relativeSource = aSource;
+    if (this.sourceRoot != null) {
+      relativeSource = util.relative(this.sourceRoot, relativeSource);
+    }
+
+    var url;
+    if (this.sourceRoot != null
+        && (url = util.urlParse(this.sourceRoot))) {
+      // XXX: file:// URIs and absolute paths lead to unexpected behavior for
+      // many users. We can help them out when they expect file:// URIs to
+      // behave like it would if they were running a local HTTP server. See
+      // https://bugzilla.mozilla.org/show_bug.cgi?id=885597.
+      var fileUriAbsPath = relativeSource.replace(/^file:\/\//, "");
+      if (url.scheme == "file"
+          && this._sources.has(fileUriAbsPath)) {
+        return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)]
+      }
+
+      if ((!url.path || url.path == "/")
+          && this._sources.has("/" + relativeSource)) {
+        return this.sourcesContent[this._sources.indexOf("/" + relativeSource)];
+      }
+    }
+
+    // This function is used recursively from
+    // IndexedSourceMapConsumer.prototype.sourceContentFor. In that case, we
+    // don't want to throw if we can't find the source - we just want to
+    // return null, so we provide a flag to exit gracefully.
+    if (nullOnMissing) {
+      return null;
+    }
+    else {
+      throw new Error('"' + relativeSource + '" is not in the SourceMap.');
+    }
+  };
+
+/**
+ * Returns the generated line and column information for the original source,
+ * line, and column positions provided. The only argument is an object with
+ * the following properties:
+ *
+ *   - source: The filename of the original source.
+ *   - line: The line number in the original source.  The line number
+ *     is 1-based.
+ *   - column: The column number in the original source.  The column
+ *     number is 0-based.
+ *   - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or
+ *     'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the
+ *     closest element that is smaller than or greater than the one we are
+ *     searching for, respectively, if the exact element cannot be found.
+ *     Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.
+ *
+ * and an object is returned with the following properties:
+ *
+ *   - line: The line number in the generated source, or null.  The
+ *     line number is 1-based.
+ *   - column: The column number in the generated source, or null.
+ *     The column number is 0-based.
+ */
+BasicSourceMapConsumer.prototype.generatedPositionFor =
+  function SourceMapConsumer_generatedPositionFor(aArgs) {
+    var source = util.getArg(aArgs, 'source');
+    source = this._findSourceIndex(source);
+    if (source < 0) {
+      return {
+        line: null,
+        column: null,
+        lastColumn: null
+      };
+    }
+
+    var needle = {
+      source: source,
+      originalLine: util.getArg(aArgs, 'line'),
+      originalColumn: util.getArg(aArgs, 'column')
+    };
+
+    var index = this._findMapping(
+      needle,
+      this._originalMappings,
+      "originalLine",
+      "originalColumn",
+      util.compareByOriginalPositions,
+      util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
+    );
+
+    if (index >= 0) {
+      var mapping = this._originalMappings[index];
+
+      if (mapping.source === needle.source) {
+        return {
+          line: util.getArg(mapping, 'generatedLine', null),
+          column: util.getArg(mapping, 'generatedColumn', null),
+          lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
+        };
+      }
+    }
+
+    return {
+      line: null,
+      column: null,
+      lastColumn: null
+    };
+  };
+
+exports.BasicSourceMapConsumer = BasicSourceMapConsumer;
+
+/**
+ * An IndexedSourceMapConsumer instance represents a parsed source map which
+ * we can query for information. It differs from BasicSourceMapConsumer in
+ * that it takes "indexed" source maps (i.e. ones with a "sections" field) as
+ * input.
+ *
+ * The first parameter is a raw source map (either as a JSON string, or already
+ * parsed to an object). According to the spec for indexed source maps, they
+ * have the following attributes:
+ *
+ *   - version: Which version of the source map spec this map is following.
+ *   - file: Optional. The generated file this source map is associated with.
+ *   - sections: A list of section definitions.
+ *
+ * Each value under the "sections" field has two fields:
+ *   - offset: The offset into the original specified at which this section
+ *       begins to apply, defined as an object with a "line" and "column"
+ *       field.
+ *   - map: A source map definition. This source map could also be indexed,
+ *       but doesn't have to be.
+ *
+ * Instead of the "map" field, it's also possible to have a "url" field
+ * specifying a URL to retrieve a source map from, but that's currently
+ * unsupported.
+ *
+ * Here's an example source map, taken from the source map spec[0], but
+ * modified to omit a section which uses the "url" field.
+ *
+ *  {
+ *    version : 3,
+ *    file: "app.js",
+ *    sections: [{
+ *      offset: {line:100, column:10},
+ *      map: {
+ *        version : 3,
+ *        file: "section.js",
+ *        sources: ["foo.js", "bar.js"],
+ *        names: ["src", "maps", "are", "fun"],
+ *        mappings: "AAAA,E;;ABCDE;"
+ *      }
+ *    }],
+ *  }
+ *
+ * The second parameter, if given, is a string whose value is the URL
+ * at which the source map was found.  This URL is used to compute the
+ * sources array.
+ *
+ * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit#heading=h.535es3xeprgt
+ */
+function IndexedSourceMapConsumer(aSourceMap, aSourceMapURL) {
+  var sourceMap = aSourceMap;
+  if (typeof aSourceMap === 'string') {
+    sourceMap = util.parseSourceMapInput(aSourceMap);
+  }
+
+  var version = util.getArg(sourceMap, 'version');
+  var sections = util.getArg(sourceMap, 'sections');
+
+  if (version != this._version) {
+    throw new Error('Unsupported version: ' + version);
+  }
+
+  this._sources = new ArraySet();
+  this._names = new ArraySet();
+
+  var lastOffset = {
+    line: -1,
+    column: 0
+  };
+  this._sections = sections.map(function (s) {
+    if (s.url) {
+      // The url field will require support for asynchronicity.
+      // See https://github.com/mozilla/source-map/issues/16
+      throw new Error('Support for url field in sections not implemented.');
+    }
+    var offset = util.getArg(s, 'offset');
+    var offsetLine = util.getArg(offset, 'line');
+    var offsetColumn = util.getArg(offset, 'column');
+
+    if (offsetLine < lastOffset.line ||
+        (offsetLine === lastOffset.line && offsetColumn < lastOffset.column)) {
+      throw new Error('Section offsets must be ordered and non-overlapping.');
+    }
+    lastOffset = offset;
+
+    return {
+      generatedOffset: {
+        // The offset fields are 0-based, but we use 1-based indices when
+        // encoding/decoding from VLQ.
+        generatedLine: offsetLine + 1,
+        generatedColumn: offsetColumn + 1
+      },
+      consumer: new SourceMapConsumer(util.getArg(s, 'map'), aSourceMapURL)
+    }
+  });
+}
+
+IndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
+IndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;
+
+/**
+ * The version of the source mapping spec that we are consuming.
+ */
+IndexedSourceMapConsumer.prototype._version = 3;
+
+/**
+ * The list of original sources.
+ */
+Object.defineProperty(IndexedSourceMapConsumer.prototype, 'sources', {
+  get: function () {
+    var sources = [];
+    for (var i = 0; i < this._sections.length; i++) {
+      for (var j = 0; j < this._sections[i].consumer.sources.length; j++) {
+        sources.push(this._sections[i].consumer.sources[j]);
+      }
+    }
+    return sources;
+  }
+});
+
+/**
+ * Returns the original source, line, and column information for the generated
+ * source's line and column positions provided. The only argument is an object
+ * with the following properties:
+ *
+ *   - line: The line number in the generated source.  The line number
+ *     is 1-based.
+ *   - column: The column number in the generated source.  The column
+ *     number is 0-based.
+ *
+ * and an object is returned with the following properties:
+ *
+ *   - source: The original source file, or null.
+ *   - line: The line number in the original source, or null.  The
+ *     line number is 1-based.
+ *   - column: The column number in the original source, or null.  The
+ *     column number is 0-based.
+ *   - name: The original identifier, or null.
+ */
+IndexedSourceMapConsumer.prototype.originalPositionFor =
+  function IndexedSourceMapConsumer_originalPositionFor(aArgs) {
+    var needle = {
+      generatedLine: util.getArg(aArgs, 'line'),
+      generatedColumn: util.getArg(aArgs, 'column')
+    };
+
+    // Find the section containing the generated position we're trying to map
+    // to an original position.
+    var sectionIndex = binarySearch.search(needle, this._sections,
+      function(needle, section) {
+        var cmp = needle.generatedLine - section.generatedOffset.generatedLine;
+        if (cmp) {
+          return cmp;
+        }
+
+        return (needle.generatedColumn -
+                section.generatedOffset.generatedColumn);
+      });
+    var section = this._sections[sectionIndex];
+
+    if (!section) {
+      return {
+        source: null,
+        line: null,
+        column: null,
+        name: null
+      };
+    }
+
+    return section.consumer.originalPositionFor({
+      line: needle.generatedLine -
+        (section.generatedOffset.generatedLine - 1),
+      column: needle.generatedColumn -
+        (section.generatedOffset.generatedLine === needle.generatedLine
+         ? section.generatedOffset.generatedColumn - 1
+         : 0),
+      bias: aArgs.bias
+    });
+  };
+
+/**
+ * Return true if we have the source content for every source in the source
+ * map, false otherwise.
+ */
+IndexedSourceMapConsumer.prototype.hasContentsOfAllSources =
+  function IndexedSourceMapConsumer_hasContentsOfAllSources() {
+    return this._sections.every(function (s) {
+      return s.consumer.hasContentsOfAllSources();
+    });
+  };
+
+/**
+ * Returns the original source content. The only argument is the url of the
+ * original source file. Returns null if no original source content is
+ * available.
+ */
+IndexedSourceMapConsumer.prototype.sourceContentFor =
+  function IndexedSourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {
+    for (var i = 0; i < this._sections.length; i++) {
+      var section = this._sections[i];
+
+      var content = section.consumer.sourceContentFor(aSource, true);
+      if (content || content === '') {
+        return content;
+      }
+    }
+    if (nullOnMissing) {
+      return null;
+    }
+    else {
+      throw new Error('"' + aSource + '" is not in the SourceMap.');
+    }
+  };
+
+/**
+ * Returns the generated line and column information for the original source,
+ * line, and column positions provided. The only argument is an object with
+ * the following properties:
+ *
+ *   - source: The filename of the original source.
+ *   - line: The line number in the original source.  The line number
+ *     is 1-based.
+ *   - column: The column number in the original source.  The column
+ *     number is 0-based.
+ *
+ * and an object is returned with the following properties:
+ *
+ *   - line: The line number in the generated source, or null.  The
+ *     line number is 1-based. 
+ *   - column: The column number in the generated source, or null.
+ *     The column number is 0-based.
+ */
+IndexedSourceMapConsumer.prototype.generatedPositionFor =
+  function IndexedSourceMapConsumer_generatedPositionFor(aArgs) {
+    for (var i = 0; i < this._sections.length; i++) {
+      var section = this._sections[i];
+
+      // Only consider this section if the requested source is in the list of
+      // sources of the consumer.
+      if (section.consumer._findSourceIndex(util.getArg(aArgs, 'source')) === -1) {
+        continue;
+      }
+      var generatedPosition = section.consumer.generatedPositionFor(aArgs);
+      if (generatedPosition) {
+        var ret = {
+          line: generatedPosition.line +
+            (section.generatedOffset.generatedLine - 1),
+          column: generatedPosition.column +
+            (section.generatedOffset.generatedLine === generatedPosition.line
+             ? section.generatedOffset.generatedColumn - 1
+             : 0)
+        };
+        return ret;
+      }
+    }
+
+    return {
+      line: null,
+      column: null
+    };
+  };
+
+/**
+ * Parse the mappings in a string in to a data structure which we can easily
+ * query (the ordered arrays in the `this.__generatedMappings` and
+ * `this.__originalMappings` properties).
+ */
+IndexedSourceMapConsumer.prototype._parseMappings =
+  function IndexedSourceMapConsumer_parseMappings(aStr, aSourceRoot) {
+    this.__generatedMappings = [];
+    this.__originalMappings = [];
+    for (var i = 0; i < this._sections.length; i++) {
+      var section = this._sections[i];
+      var sectionMappings = section.consumer._generatedMappings;
+      for (var j = 0; j < sectionMappings.length; j++) {
+        var mapping = sectionMappings[j];
+
+        var source = section.consumer._sources.at(mapping.source);
+        if(source !== null) {
+          source = util.computeSourceURL(section.consumer.sourceRoot, source, this._sourceMapURL);
+        }
+        this._sources.add(source);
+        source = this._sources.indexOf(source);
+
+        var name = null;
+        if (mapping.name) {
+          name = section.consumer._names.at(mapping.name);
+          this._names.add(name);
+          name = this._names.indexOf(name);
+        }
+
+        // The mappings coming from the consumer for the section have
+        // generated positions relative to the start of the section, so we
+        // need to offset them to be relative to the start of the concatenated
+        // generated file.
+        var adjustedMapping = {
+          source: source,
+          generatedLine: mapping.generatedLine +
+            (section.generatedOffset.generatedLine - 1),
+          generatedColumn: mapping.generatedColumn +
+            (section.generatedOffset.generatedLine === mapping.generatedLine
+            ? section.generatedOffset.generatedColumn - 1
+            : 0),
+          originalLine: mapping.originalLine,
+          originalColumn: mapping.originalColumn,
+          name: name
+        };
+
+        this.__generatedMappings.push(adjustedMapping);
+        if (typeof adjustedMapping.originalLine === 'number') {
+          this.__originalMappings.push(adjustedMapping);
+        }
+      }
+    }
+
+    quickSort(this.__generatedMappings, util.compareByGeneratedPositionsDeflated);
+    quickSort(this.__originalMappings, util.compareByOriginalPositions);
+  };
+
+exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
Index: node_modules/source-map-js/lib/source-map-generator.d.ts
===================================================================
--- node_modules/source-map-js/lib/source-map-generator.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/source-map-generator.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+export { SourceMapGenerator } from '..';
Index: node_modules/source-map-js/lib/source-map-generator.js
===================================================================
--- node_modules/source-map-js/lib/source-map-generator.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/source-map-generator.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,444 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+var base64VLQ = require('./base64-vlq');
+var util = require('./util');
+var ArraySet = require('./array-set').ArraySet;
+var MappingList = require('./mapping-list').MappingList;
+
+/**
+ * An instance of the SourceMapGenerator represents a source map which is
+ * being built incrementally. You may pass an object with the following
+ * properties:
+ *
+ *   - file: The filename of the generated source.
+ *   - sourceRoot: A root for all relative URLs in this source map.
+ */
+function SourceMapGenerator(aArgs) {
+  if (!aArgs) {
+    aArgs = {};
+  }
+  this._file = util.getArg(aArgs, 'file', null);
+  this._sourceRoot = util.getArg(aArgs, 'sourceRoot', null);
+  this._skipValidation = util.getArg(aArgs, 'skipValidation', false);
+  this._ignoreInvalidMapping = util.getArg(aArgs, 'ignoreInvalidMapping', false);
+  this._sources = new ArraySet();
+  this._names = new ArraySet();
+  this._mappings = new MappingList();
+  this._sourcesContents = null;
+}
+
+SourceMapGenerator.prototype._version = 3;
+
+/**
+ * Creates a new SourceMapGenerator based on a SourceMapConsumer
+ *
+ * @param aSourceMapConsumer The SourceMap.
+ */
+SourceMapGenerator.fromSourceMap =
+  function SourceMapGenerator_fromSourceMap(aSourceMapConsumer, generatorOps) {
+    var sourceRoot = aSourceMapConsumer.sourceRoot;
+    var generator = new SourceMapGenerator(Object.assign(generatorOps || {}, {
+      file: aSourceMapConsumer.file,
+      sourceRoot: sourceRoot
+    }));
+    aSourceMapConsumer.eachMapping(function (mapping) {
+      var newMapping = {
+        generated: {
+          line: mapping.generatedLine,
+          column: mapping.generatedColumn
+        }
+      };
+
+      if (mapping.source != null) {
+        newMapping.source = mapping.source;
+        if (sourceRoot != null) {
+          newMapping.source = util.relative(sourceRoot, newMapping.source);
+        }
+
+        newMapping.original = {
+          line: mapping.originalLine,
+          column: mapping.originalColumn
+        };
+
+        if (mapping.name != null) {
+          newMapping.name = mapping.name;
+        }
+      }
+
+      generator.addMapping(newMapping);
+    });
+    aSourceMapConsumer.sources.forEach(function (sourceFile) {
+      var sourceRelative = sourceFile;
+      if (sourceRoot !== null) {
+        sourceRelative = util.relative(sourceRoot, sourceFile);
+      }
+
+      if (!generator._sources.has(sourceRelative)) {
+        generator._sources.add(sourceRelative);
+      }
+
+      var content = aSourceMapConsumer.sourceContentFor(sourceFile);
+      if (content != null) {
+        generator.setSourceContent(sourceFile, content);
+      }
+    });
+    return generator;
+  };
+
+/**
+ * Add a single mapping from original source line and column to the generated
+ * source's line and column for this source map being created. The mapping
+ * object should have the following properties:
+ *
+ *   - generated: An object with the generated line and column positions.
+ *   - original: An object with the original line and column positions.
+ *   - source: The original source file (relative to the sourceRoot).
+ *   - name: An optional original token name for this mapping.
+ */
+SourceMapGenerator.prototype.addMapping =
+  function SourceMapGenerator_addMapping(aArgs) {
+    var generated = util.getArg(aArgs, 'generated');
+    var original = util.getArg(aArgs, 'original', null);
+    var source = util.getArg(aArgs, 'source', null);
+    var name = util.getArg(aArgs, 'name', null);
+
+    if (!this._skipValidation) {
+      if (this._validateMapping(generated, original, source, name) === false) {
+        return;
+      }
+    }
+
+    if (source != null) {
+      source = String(source);
+      if (!this._sources.has(source)) {
+        this._sources.add(source);
+      }
+    }
+
+    if (name != null) {
+      name = String(name);
+      if (!this._names.has(name)) {
+        this._names.add(name);
+      }
+    }
+
+    this._mappings.add({
+      generatedLine: generated.line,
+      generatedColumn: generated.column,
+      originalLine: original != null && original.line,
+      originalColumn: original != null && original.column,
+      source: source,
+      name: name
+    });
+  };
+
+/**
+ * Set the source content for a source file.
+ */
+SourceMapGenerator.prototype.setSourceContent =
+  function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) {
+    var source = aSourceFile;
+    if (this._sourceRoot != null) {
+      source = util.relative(this._sourceRoot, source);
+    }
+
+    if (aSourceContent != null) {
+      // Add the source content to the _sourcesContents map.
+      // Create a new _sourcesContents map if the property is null.
+      if (!this._sourcesContents) {
+        this._sourcesContents = Object.create(null);
+      }
+      this._sourcesContents[util.toSetString(source)] = aSourceContent;
+    } else if (this._sourcesContents) {
+      // Remove the source file from the _sourcesContents map.
+      // If the _sourcesContents map is empty, set the property to null.
+      delete this._sourcesContents[util.toSetString(source)];
+      if (Object.keys(this._sourcesContents).length === 0) {
+        this._sourcesContents = null;
+      }
+    }
+  };
+
+/**
+ * Applies the mappings of a sub-source-map for a specific source file to the
+ * source map being generated. Each mapping to the supplied source file is
+ * rewritten using the supplied source map. Note: The resolution for the
+ * resulting mappings is the minimium of this map and the supplied map.
+ *
+ * @param aSourceMapConsumer The source map to be applied.
+ * @param aSourceFile Optional. The filename of the source file.
+ *        If omitted, SourceMapConsumer's file property will be used.
+ * @param aSourceMapPath Optional. The dirname of the path to the source map
+ *        to be applied. If relative, it is relative to the SourceMapConsumer.
+ *        This parameter is needed when the two source maps aren't in the same
+ *        directory, and the source map to be applied contains relative source
+ *        paths. If so, those relative source paths need to be rewritten
+ *        relative to the SourceMapGenerator.
+ */
+SourceMapGenerator.prototype.applySourceMap =
+  function SourceMapGenerator_applySourceMap(aSourceMapConsumer, aSourceFile, aSourceMapPath) {
+    var sourceFile = aSourceFile;
+    // If aSourceFile is omitted, we will use the file property of the SourceMap
+    if (aSourceFile == null) {
+      if (aSourceMapConsumer.file == null) {
+        throw new Error(
+          'SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, ' +
+          'or the source map\'s "file" property. Both were omitted.'
+        );
+      }
+      sourceFile = aSourceMapConsumer.file;
+    }
+    var sourceRoot = this._sourceRoot;
+    // Make "sourceFile" relative if an absolute Url is passed.
+    if (sourceRoot != null) {
+      sourceFile = util.relative(sourceRoot, sourceFile);
+    }
+    // Applying the SourceMap can add and remove items from the sources and
+    // the names array.
+    var newSources = new ArraySet();
+    var newNames = new ArraySet();
+
+    // Find mappings for the "sourceFile"
+    this._mappings.unsortedForEach(function (mapping) {
+      if (mapping.source === sourceFile && mapping.originalLine != null) {
+        // Check if it can be mapped by the source map, then update the mapping.
+        var original = aSourceMapConsumer.originalPositionFor({
+          line: mapping.originalLine,
+          column: mapping.originalColumn
+        });
+        if (original.source != null) {
+          // Copy mapping
+          mapping.source = original.source;
+          if (aSourceMapPath != null) {
+            mapping.source = util.join(aSourceMapPath, mapping.source)
+          }
+          if (sourceRoot != null) {
+            mapping.source = util.relative(sourceRoot, mapping.source);
+          }
+          mapping.originalLine = original.line;
+          mapping.originalColumn = original.column;
+          if (original.name != null) {
+            mapping.name = original.name;
+          }
+        }
+      }
+
+      var source = mapping.source;
+      if (source != null && !newSources.has(source)) {
+        newSources.add(source);
+      }
+
+      var name = mapping.name;
+      if (name != null && !newNames.has(name)) {
+        newNames.add(name);
+      }
+
+    }, this);
+    this._sources = newSources;
+    this._names = newNames;
+
+    // Copy sourcesContents of applied map.
+    aSourceMapConsumer.sources.forEach(function (sourceFile) {
+      var content = aSourceMapConsumer.sourceContentFor(sourceFile);
+      if (content != null) {
+        if (aSourceMapPath != null) {
+          sourceFile = util.join(aSourceMapPath, sourceFile);
+        }
+        if (sourceRoot != null) {
+          sourceFile = util.relative(sourceRoot, sourceFile);
+        }
+        this.setSourceContent(sourceFile, content);
+      }
+    }, this);
+  };
+
+/**
+ * A mapping can have one of the three levels of data:
+ *
+ *   1. Just the generated position.
+ *   2. The Generated position, original position, and original source.
+ *   3. Generated and original position, original source, as well as a name
+ *      token.
+ *
+ * To maintain consistency, we validate that any new mapping being added falls
+ * in to one of these categories.
+ */
+SourceMapGenerator.prototype._validateMapping =
+  function SourceMapGenerator_validateMapping(aGenerated, aOriginal, aSource,
+                                              aName) {
+    // When aOriginal is truthy but has empty values for .line and .column,
+    // it is most likely a programmer error. In this case we throw a very
+    // specific error message to try to guide them the right way.
+    // For example: https://github.com/Polymer/polymer-bundler/pull/519
+    if (aOriginal && typeof aOriginal.line !== 'number' && typeof aOriginal.column !== 'number') {
+      var message = 'original.line and original.column are not numbers -- you probably meant to omit ' +
+      'the original mapping entirely and only map the generated position. If so, pass ' +
+      'null for the original mapping instead of an object with empty or null values.'
+
+      if (this._ignoreInvalidMapping) {
+        if (typeof console !== 'undefined' && console.warn) {
+          console.warn(message);
+        }
+        return false;
+      } else {
+        throw new Error(message);
+      }
+    }
+
+    if (aGenerated && 'line' in aGenerated && 'column' in aGenerated
+        && aGenerated.line > 0 && aGenerated.column >= 0
+        && !aOriginal && !aSource && !aName) {
+      // Case 1.
+      return;
+    }
+    else if (aGenerated && 'line' in aGenerated && 'column' in aGenerated
+             && aOriginal && 'line' in aOriginal && 'column' in aOriginal
+             && aGenerated.line > 0 && aGenerated.column >= 0
+             && aOriginal.line > 0 && aOriginal.column >= 0
+             && aSource) {
+      // Cases 2 and 3.
+      return;
+    }
+    else {
+      var message = 'Invalid mapping: ' + JSON.stringify({
+        generated: aGenerated,
+        source: aSource,
+        original: aOriginal,
+        name: aName
+      });
+
+      if (this._ignoreInvalidMapping) {
+        if (typeof console !== 'undefined' && console.warn) {
+          console.warn(message);
+        }
+        return false;
+      } else {
+        throw new Error(message)
+      }
+    }
+  };
+
+/**
+ * Serialize the accumulated mappings in to the stream of base 64 VLQs
+ * specified by the source map format.
+ */
+SourceMapGenerator.prototype._serializeMappings =
+  function SourceMapGenerator_serializeMappings() {
+    var previousGeneratedColumn = 0;
+    var previousGeneratedLine = 1;
+    var previousOriginalColumn = 0;
+    var previousOriginalLine = 0;
+    var previousName = 0;
+    var previousSource = 0;
+    var result = '';
+    var next;
+    var mapping;
+    var nameIdx;
+    var sourceIdx;
+
+    var mappings = this._mappings.toArray();
+    for (var i = 0, len = mappings.length; i < len; i++) {
+      mapping = mappings[i];
+      next = ''
+
+      if (mapping.generatedLine !== previousGeneratedLine) {
+        previousGeneratedColumn = 0;
+        while (mapping.generatedLine !== previousGeneratedLine) {
+          next += ';';
+          previousGeneratedLine++;
+        }
+      }
+      else {
+        if (i > 0) {
+          if (!util.compareByGeneratedPositionsInflated(mapping, mappings[i - 1])) {
+            continue;
+          }
+          next += ',';
+        }
+      }
+
+      next += base64VLQ.encode(mapping.generatedColumn
+                                 - previousGeneratedColumn);
+      previousGeneratedColumn = mapping.generatedColumn;
+
+      if (mapping.source != null) {
+        sourceIdx = this._sources.indexOf(mapping.source);
+        next += base64VLQ.encode(sourceIdx - previousSource);
+        previousSource = sourceIdx;
+
+        // lines are stored 0-based in SourceMap spec version 3
+        next += base64VLQ.encode(mapping.originalLine - 1
+                                   - previousOriginalLine);
+        previousOriginalLine = mapping.originalLine - 1;
+
+        next += base64VLQ.encode(mapping.originalColumn
+                                   - previousOriginalColumn);
+        previousOriginalColumn = mapping.originalColumn;
+
+        if (mapping.name != null) {
+          nameIdx = this._names.indexOf(mapping.name);
+          next += base64VLQ.encode(nameIdx - previousName);
+          previousName = nameIdx;
+        }
+      }
+
+      result += next;
+    }
+
+    return result;
+  };
+
+SourceMapGenerator.prototype._generateSourcesContent =
+  function SourceMapGenerator_generateSourcesContent(aSources, aSourceRoot) {
+    return aSources.map(function (source) {
+      if (!this._sourcesContents) {
+        return null;
+      }
+      if (aSourceRoot != null) {
+        source = util.relative(aSourceRoot, source);
+      }
+      var key = util.toSetString(source);
+      return Object.prototype.hasOwnProperty.call(this._sourcesContents, key)
+        ? this._sourcesContents[key]
+        : null;
+    }, this);
+  };
+
+/**
+ * Externalize the source map.
+ */
+SourceMapGenerator.prototype.toJSON =
+  function SourceMapGenerator_toJSON() {
+    var map = {
+      version: this._version,
+      sources: this._sources.toArray(),
+      names: this._names.toArray(),
+      mappings: this._serializeMappings()
+    };
+    if (this._file != null) {
+      map.file = this._file;
+    }
+    if (this._sourceRoot != null) {
+      map.sourceRoot = this._sourceRoot;
+    }
+    if (this._sourcesContents) {
+      map.sourcesContent = this._generateSourcesContent(map.sources, map.sourceRoot);
+    }
+
+    return map;
+  };
+
+/**
+ * Render the source map being generated to a string.
+ */
+SourceMapGenerator.prototype.toString =
+  function SourceMapGenerator_toString() {
+    return JSON.stringify(this.toJSON());
+  };
+
+exports.SourceMapGenerator = SourceMapGenerator;
Index: node_modules/source-map-js/lib/source-node.d.ts
===================================================================
--- node_modules/source-map-js/lib/source-node.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/source-node.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+export { SourceNode } from '..';
Index: node_modules/source-map-js/lib/source-node.js
===================================================================
--- node_modules/source-map-js/lib/source-node.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/source-node.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,413 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+var SourceMapGenerator = require('./source-map-generator').SourceMapGenerator;
+var util = require('./util');
+
+// Matches a Windows-style `\r\n` newline or a `\n` newline used by all other
+// operating systems these days (capturing the result).
+var REGEX_NEWLINE = /(\r?\n)/;
+
+// Newline character code for charCodeAt() comparisons
+var NEWLINE_CODE = 10;
+
+// Private symbol for identifying `SourceNode`s when multiple versions of
+// the source-map library are loaded. This MUST NOT CHANGE across
+// versions!
+var isSourceNode = "$$$isSourceNode$$$";
+
+/**
+ * SourceNodes provide a way to abstract over interpolating/concatenating
+ * snippets of generated JavaScript source code while maintaining the line and
+ * column information associated with the original source code.
+ *
+ * @param aLine The original line number.
+ * @param aColumn The original column number.
+ * @param aSource The original source's filename.
+ * @param aChunks Optional. An array of strings which are snippets of
+ *        generated JS, or other SourceNodes.
+ * @param aName The original identifier.
+ */
+function SourceNode(aLine, aColumn, aSource, aChunks, aName) {
+  this.children = [];
+  this.sourceContents = {};
+  this.line = aLine == null ? null : aLine;
+  this.column = aColumn == null ? null : aColumn;
+  this.source = aSource == null ? null : aSource;
+  this.name = aName == null ? null : aName;
+  this[isSourceNode] = true;
+  if (aChunks != null) this.add(aChunks);
+}
+
+/**
+ * Creates a SourceNode from generated code and a SourceMapConsumer.
+ *
+ * @param aGeneratedCode The generated code
+ * @param aSourceMapConsumer The SourceMap for the generated code
+ * @param aRelativePath Optional. The path that relative sources in the
+ *        SourceMapConsumer should be relative to.
+ */
+SourceNode.fromStringWithSourceMap =
+  function SourceNode_fromStringWithSourceMap(aGeneratedCode, aSourceMapConsumer, aRelativePath) {
+    // The SourceNode we want to fill with the generated code
+    // and the SourceMap
+    var node = new SourceNode();
+
+    // All even indices of this array are one line of the generated code,
+    // while all odd indices are the newlines between two adjacent lines
+    // (since `REGEX_NEWLINE` captures its match).
+    // Processed fragments are accessed by calling `shiftNextLine`.
+    var remainingLines = aGeneratedCode.split(REGEX_NEWLINE);
+    var remainingLinesIndex = 0;
+    var shiftNextLine = function() {
+      var lineContents = getNextLine();
+      // The last line of a file might not have a newline.
+      var newLine = getNextLine() || "";
+      return lineContents + newLine;
+
+      function getNextLine() {
+        return remainingLinesIndex < remainingLines.length ?
+            remainingLines[remainingLinesIndex++] : undefined;
+      }
+    };
+
+    // We need to remember the position of "remainingLines"
+    var lastGeneratedLine = 1, lastGeneratedColumn = 0;
+
+    // The generate SourceNodes we need a code range.
+    // To extract it current and last mapping is used.
+    // Here we store the last mapping.
+    var lastMapping = null;
+
+    aSourceMapConsumer.eachMapping(function (mapping) {
+      if (lastMapping !== null) {
+        // We add the code from "lastMapping" to "mapping":
+        // First check if there is a new line in between.
+        if (lastGeneratedLine < mapping.generatedLine) {
+          // Associate first line with "lastMapping"
+          addMappingWithCode(lastMapping, shiftNextLine());
+          lastGeneratedLine++;
+          lastGeneratedColumn = 0;
+          // The remaining code is added without mapping
+        } else {
+          // There is no new line in between.
+          // Associate the code between "lastGeneratedColumn" and
+          // "mapping.generatedColumn" with "lastMapping"
+          var nextLine = remainingLines[remainingLinesIndex] || '';
+          var code = nextLine.substr(0, mapping.generatedColumn -
+                                        lastGeneratedColumn);
+          remainingLines[remainingLinesIndex] = nextLine.substr(mapping.generatedColumn -
+                                              lastGeneratedColumn);
+          lastGeneratedColumn = mapping.generatedColumn;
+          addMappingWithCode(lastMapping, code);
+          // No more remaining code, continue
+          lastMapping = mapping;
+          return;
+        }
+      }
+      // We add the generated code until the first mapping
+      // to the SourceNode without any mapping.
+      // Each line is added as separate string.
+      while (lastGeneratedLine < mapping.generatedLine) {
+        node.add(shiftNextLine());
+        lastGeneratedLine++;
+      }
+      if (lastGeneratedColumn < mapping.generatedColumn) {
+        var nextLine = remainingLines[remainingLinesIndex] || '';
+        node.add(nextLine.substr(0, mapping.generatedColumn));
+        remainingLines[remainingLinesIndex] = nextLine.substr(mapping.generatedColumn);
+        lastGeneratedColumn = mapping.generatedColumn;
+      }
+      lastMapping = mapping;
+    }, this);
+    // We have processed all mappings.
+    if (remainingLinesIndex < remainingLines.length) {
+      if (lastMapping) {
+        // Associate the remaining code in the current line with "lastMapping"
+        addMappingWithCode(lastMapping, shiftNextLine());
+      }
+      // and add the remaining lines without any mapping
+      node.add(remainingLines.splice(remainingLinesIndex).join(""));
+    }
+
+    // Copy sourcesContent into SourceNode
+    aSourceMapConsumer.sources.forEach(function (sourceFile) {
+      var content = aSourceMapConsumer.sourceContentFor(sourceFile);
+      if (content != null) {
+        if (aRelativePath != null) {
+          sourceFile = util.join(aRelativePath, sourceFile);
+        }
+        node.setSourceContent(sourceFile, content);
+      }
+    });
+
+    return node;
+
+    function addMappingWithCode(mapping, code) {
+      if (mapping === null || mapping.source === undefined) {
+        node.add(code);
+      } else {
+        var source = aRelativePath
+          ? util.join(aRelativePath, mapping.source)
+          : mapping.source;
+        node.add(new SourceNode(mapping.originalLine,
+                                mapping.originalColumn,
+                                source,
+                                code,
+                                mapping.name));
+      }
+    }
+  };
+
+/**
+ * Add a chunk of generated JS to this source node.
+ *
+ * @param aChunk A string snippet of generated JS code, another instance of
+ *        SourceNode, or an array where each member is one of those things.
+ */
+SourceNode.prototype.add = function SourceNode_add(aChunk) {
+  if (Array.isArray(aChunk)) {
+    aChunk.forEach(function (chunk) {
+      this.add(chunk);
+    }, this);
+  }
+  else if (aChunk[isSourceNode] || typeof aChunk === "string") {
+    if (aChunk) {
+      this.children.push(aChunk);
+    }
+  }
+  else {
+    throw new TypeError(
+      "Expected a SourceNode, string, or an array of SourceNodes and strings. Got " + aChunk
+    );
+  }
+  return this;
+};
+
+/**
+ * Add a chunk of generated JS to the beginning of this source node.
+ *
+ * @param aChunk A string snippet of generated JS code, another instance of
+ *        SourceNode, or an array where each member is one of those things.
+ */
+SourceNode.prototype.prepend = function SourceNode_prepend(aChunk) {
+  if (Array.isArray(aChunk)) {
+    for (var i = aChunk.length-1; i >= 0; i--) {
+      this.prepend(aChunk[i]);
+    }
+  }
+  else if (aChunk[isSourceNode] || typeof aChunk === "string") {
+    this.children.unshift(aChunk);
+  }
+  else {
+    throw new TypeError(
+      "Expected a SourceNode, string, or an array of SourceNodes and strings. Got " + aChunk
+    );
+  }
+  return this;
+};
+
+/**
+ * Walk over the tree of JS snippets in this node and its children. The
+ * walking function is called once for each snippet of JS and is passed that
+ * snippet and the its original associated source's line/column location.
+ *
+ * @param aFn The traversal function.
+ */
+SourceNode.prototype.walk = function SourceNode_walk(aFn) {
+  var chunk;
+  for (var i = 0, len = this.children.length; i < len; i++) {
+    chunk = this.children[i];
+    if (chunk[isSourceNode]) {
+      chunk.walk(aFn);
+    }
+    else {
+      if (chunk !== '') {
+        aFn(chunk, { source: this.source,
+                     line: this.line,
+                     column: this.column,
+                     name: this.name });
+      }
+    }
+  }
+};
+
+/**
+ * Like `String.prototype.join` except for SourceNodes. Inserts `aStr` between
+ * each of `this.children`.
+ *
+ * @param aSep The separator.
+ */
+SourceNode.prototype.join = function SourceNode_join(aSep) {
+  var newChildren;
+  var i;
+  var len = this.children.length;
+  if (len > 0) {
+    newChildren = [];
+    for (i = 0; i < len-1; i++) {
+      newChildren.push(this.children[i]);
+      newChildren.push(aSep);
+    }
+    newChildren.push(this.children[i]);
+    this.children = newChildren;
+  }
+  return this;
+};
+
+/**
+ * Call String.prototype.replace on the very right-most source snippet. Useful
+ * for trimming whitespace from the end of a source node, etc.
+ *
+ * @param aPattern The pattern to replace.
+ * @param aReplacement The thing to replace the pattern with.
+ */
+SourceNode.prototype.replaceRight = function SourceNode_replaceRight(aPattern, aReplacement) {
+  var lastChild = this.children[this.children.length - 1];
+  if (lastChild[isSourceNode]) {
+    lastChild.replaceRight(aPattern, aReplacement);
+  }
+  else if (typeof lastChild === 'string') {
+    this.children[this.children.length - 1] = lastChild.replace(aPattern, aReplacement);
+  }
+  else {
+    this.children.push(''.replace(aPattern, aReplacement));
+  }
+  return this;
+};
+
+/**
+ * Set the source content for a source file. This will be added to the SourceMapGenerator
+ * in the sourcesContent field.
+ *
+ * @param aSourceFile The filename of the source file
+ * @param aSourceContent The content of the source file
+ */
+SourceNode.prototype.setSourceContent =
+  function SourceNode_setSourceContent(aSourceFile, aSourceContent) {
+    this.sourceContents[util.toSetString(aSourceFile)] = aSourceContent;
+  };
+
+/**
+ * Walk over the tree of SourceNodes. The walking function is called for each
+ * source file content and is passed the filename and source content.
+ *
+ * @param aFn The traversal function.
+ */
+SourceNode.prototype.walkSourceContents =
+  function SourceNode_walkSourceContents(aFn) {
+    for (var i = 0, len = this.children.length; i < len; i++) {
+      if (this.children[i][isSourceNode]) {
+        this.children[i].walkSourceContents(aFn);
+      }
+    }
+
+    var sources = Object.keys(this.sourceContents);
+    for (var i = 0, len = sources.length; i < len; i++) {
+      aFn(util.fromSetString(sources[i]), this.sourceContents[sources[i]]);
+    }
+  };
+
+/**
+ * Return the string representation of this source node. Walks over the tree
+ * and concatenates all the various snippets together to one string.
+ */
+SourceNode.prototype.toString = function SourceNode_toString() {
+  var str = "";
+  this.walk(function (chunk) {
+    str += chunk;
+  });
+  return str;
+};
+
+/**
+ * Returns the string representation of this source node along with a source
+ * map.
+ */
+SourceNode.prototype.toStringWithSourceMap = function SourceNode_toStringWithSourceMap(aArgs) {
+  var generated = {
+    code: "",
+    line: 1,
+    column: 0
+  };
+  var map = new SourceMapGenerator(aArgs);
+  var sourceMappingActive = false;
+  var lastOriginalSource = null;
+  var lastOriginalLine = null;
+  var lastOriginalColumn = null;
+  var lastOriginalName = null;
+  this.walk(function (chunk, original) {
+    generated.code += chunk;
+    if (original.source !== null
+        && original.line !== null
+        && original.column !== null) {
+      if(lastOriginalSource !== original.source
+         || lastOriginalLine !== original.line
+         || lastOriginalColumn !== original.column
+         || lastOriginalName !== original.name) {
+        map.addMapping({
+          source: original.source,
+          original: {
+            line: original.line,
+            column: original.column
+          },
+          generated: {
+            line: generated.line,
+            column: generated.column
+          },
+          name: original.name
+        });
+      }
+      lastOriginalSource = original.source;
+      lastOriginalLine = original.line;
+      lastOriginalColumn = original.column;
+      lastOriginalName = original.name;
+      sourceMappingActive = true;
+    } else if (sourceMappingActive) {
+      map.addMapping({
+        generated: {
+          line: generated.line,
+          column: generated.column
+        }
+      });
+      lastOriginalSource = null;
+      sourceMappingActive = false;
+    }
+    for (var idx = 0, length = chunk.length; idx < length; idx++) {
+      if (chunk.charCodeAt(idx) === NEWLINE_CODE) {
+        generated.line++;
+        generated.column = 0;
+        // Mappings end at eol
+        if (idx + 1 === length) {
+          lastOriginalSource = null;
+          sourceMappingActive = false;
+        } else if (sourceMappingActive) {
+          map.addMapping({
+            source: original.source,
+            original: {
+              line: original.line,
+              column: original.column
+            },
+            generated: {
+              line: generated.line,
+              column: generated.column
+            },
+            name: original.name
+          });
+        }
+      } else {
+        generated.column++;
+      }
+    }
+  });
+  this.walkSourceContents(function (sourceFile, sourceContent) {
+    map.setSourceContent(sourceFile, sourceContent);
+  });
+
+  return { code: generated.code, map: map };
+};
+
+exports.SourceNode = SourceNode;
Index: node_modules/source-map-js/lib/util.js
===================================================================
--- node_modules/source-map-js/lib/util.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/lib/util.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,594 @@
+/* -*- Mode: js; js-indent-level: 2; -*- */
+/*
+ * Copyright 2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+
+/**
+ * This is a helper function for getting values from parameter/options
+ * objects.
+ *
+ * @param args The object we are extracting values from
+ * @param name The name of the property we are getting.
+ * @param defaultValue An optional value to return if the property is missing
+ * from the object. If this is not specified and the property is missing, an
+ * error will be thrown.
+ */
+function getArg(aArgs, aName, aDefaultValue) {
+  if (aName in aArgs) {
+    return aArgs[aName];
+  } else if (arguments.length === 3) {
+    return aDefaultValue;
+  } else {
+    throw new Error('"' + aName + '" is a required argument.');
+  }
+}
+exports.getArg = getArg;
+
+var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;
+var dataUrlRegexp = /^data:.+\,.+$/;
+
+function urlParse(aUrl) {
+  var match = aUrl.match(urlRegexp);
+  if (!match) {
+    return null;
+  }
+  return {
+    scheme: match[1],
+    auth: match[2],
+    host: match[3],
+    port: match[4],
+    path: match[5]
+  };
+}
+exports.urlParse = urlParse;
+
+function urlGenerate(aParsedUrl) {
+  var url = '';
+  if (aParsedUrl.scheme) {
+    url += aParsedUrl.scheme + ':';
+  }
+  url += '//';
+  if (aParsedUrl.auth) {
+    url += aParsedUrl.auth + '@';
+  }
+  if (aParsedUrl.host) {
+    url += aParsedUrl.host;
+  }
+  if (aParsedUrl.port) {
+    url += ":" + aParsedUrl.port
+  }
+  if (aParsedUrl.path) {
+    url += aParsedUrl.path;
+  }
+  return url;
+}
+exports.urlGenerate = urlGenerate;
+
+var MAX_CACHED_INPUTS = 32;
+
+/**
+ * Takes some function `f(input) -> result` and returns a memoized version of
+ * `f`.
+ *
+ * We keep at most `MAX_CACHED_INPUTS` memoized results of `f` alive. The
+ * memoization is a dumb-simple, linear least-recently-used cache.
+ */
+function lruMemoize(f) {
+  var cache = [];
+
+  return function(input) {
+    for (var i = 0; i < cache.length; i++) {
+      if (cache[i].input === input) {
+        var temp = cache[0];
+        cache[0] = cache[i];
+        cache[i] = temp;
+        return cache[0].result;
+      }
+    }
+
+    var result = f(input);
+
+    cache.unshift({
+      input,
+      result,
+    });
+
+    if (cache.length > MAX_CACHED_INPUTS) {
+      cache.pop();
+    }
+
+    return result;
+  };
+}
+
+/**
+ * Normalizes a path, or the path portion of a URL:
+ *
+ * - Replaces consecutive slashes with one slash.
+ * - Removes unnecessary '.' parts.
+ * - Removes unnecessary '<dir>/..' parts.
+ *
+ * Based on code in the Node.js 'path' core module.
+ *
+ * @param aPath The path or url to normalize.
+ */
+var normalize = lruMemoize(function normalize(aPath) {
+  var path = aPath;
+  var url = urlParse(aPath);
+  if (url) {
+    if (!url.path) {
+      return aPath;
+    }
+    path = url.path;
+  }
+  var isAbsolute = exports.isAbsolute(path);
+  // Split the path into parts between `/` characters. This is much faster than
+  // using `.split(/\/+/g)`.
+  var parts = [];
+  var start = 0;
+  var i = 0;
+  while (true) {
+    start = i;
+    i = path.indexOf("/", start);
+    if (i === -1) {
+      parts.push(path.slice(start));
+      break;
+    } else {
+      parts.push(path.slice(start, i));
+      while (i < path.length && path[i] === "/") {
+        i++;
+      }
+    }
+  }
+
+  for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
+    part = parts[i];
+    if (part === '.') {
+      parts.splice(i, 1);
+    } else if (part === '..') {
+      up++;
+    } else if (up > 0) {
+      if (part === '') {
+        // The first part is blank if the path is absolute. Trying to go
+        // above the root is a no-op. Therefore we can remove all '..' parts
+        // directly after the root.
+        parts.splice(i + 1, up);
+        up = 0;
+      } else {
+        parts.splice(i, 2);
+        up--;
+      }
+    }
+  }
+  path = parts.join('/');
+
+  if (path === '') {
+    path = isAbsolute ? '/' : '.';
+  }
+
+  if (url) {
+    url.path = path;
+    return urlGenerate(url);
+  }
+  return path;
+});
+exports.normalize = normalize;
+
+/**
+ * Joins two paths/URLs.
+ *
+ * @param aRoot The root path or URL.
+ * @param aPath The path or URL to be joined with the root.
+ *
+ * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a
+ *   scheme-relative URL: Then the scheme of aRoot, if any, is prepended
+ *   first.
+ * - Otherwise aPath is a path. If aRoot is a URL, then its path portion
+ *   is updated with the result and aRoot is returned. Otherwise the result
+ *   is returned.
+ *   - If aPath is absolute, the result is aPath.
+ *   - Otherwise the two paths are joined with a slash.
+ * - Joining for example 'http://' and 'www.example.com' is also supported.
+ */
+function join(aRoot, aPath) {
+  if (aRoot === "") {
+    aRoot = ".";
+  }
+  if (aPath === "") {
+    aPath = ".";
+  }
+  var aPathUrl = urlParse(aPath);
+  var aRootUrl = urlParse(aRoot);
+  if (aRootUrl) {
+    aRoot = aRootUrl.path || '/';
+  }
+
+  // `join(foo, '//www.example.org')`
+  if (aPathUrl && !aPathUrl.scheme) {
+    if (aRootUrl) {
+      aPathUrl.scheme = aRootUrl.scheme;
+    }
+    return urlGenerate(aPathUrl);
+  }
+
+  if (aPathUrl || aPath.match(dataUrlRegexp)) {
+    return aPath;
+  }
+
+  // `join('http://', 'www.example.com')`
+  if (aRootUrl && !aRootUrl.host && !aRootUrl.path) {
+    aRootUrl.host = aPath;
+    return urlGenerate(aRootUrl);
+  }
+
+  var joined = aPath.charAt(0) === '/'
+    ? aPath
+    : normalize(aRoot.replace(/\/+$/, '') + '/' + aPath);
+
+  if (aRootUrl) {
+    aRootUrl.path = joined;
+    return urlGenerate(aRootUrl);
+  }
+  return joined;
+}
+exports.join = join;
+
+exports.isAbsolute = function (aPath) {
+  return aPath.charAt(0) === '/' || urlRegexp.test(aPath);
+};
+
+/**
+ * Make a path relative to a URL or another path.
+ *
+ * @param aRoot The root path or URL.
+ * @param aPath The path or URL to be made relative to aRoot.
+ */
+function relative(aRoot, aPath) {
+  if (aRoot === "") {
+    aRoot = ".";
+  }
+
+  aRoot = aRoot.replace(/\/$/, '');
+
+  // It is possible for the path to be above the root. In this case, simply
+  // checking whether the root is a prefix of the path won't work. Instead, we
+  // need to remove components from the root one by one, until either we find
+  // a prefix that fits, or we run out of components to remove.
+  var level = 0;
+  while (aPath.indexOf(aRoot + '/') !== 0) {
+    var index = aRoot.lastIndexOf("/");
+    if (index < 0) {
+      return aPath;
+    }
+
+    // If the only part of the root that is left is the scheme (i.e. http://,
+    // file:///, etc.), one or more slashes (/), or simply nothing at all, we
+    // have exhausted all components, so the path is not relative to the root.
+    aRoot = aRoot.slice(0, index);
+    if (aRoot.match(/^([^\/]+:\/)?\/*$/)) {
+      return aPath;
+    }
+
+    ++level;
+  }
+
+  // Make sure we add a "../" for each component we removed from the root.
+  return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
+}
+exports.relative = relative;
+
+var supportsNullProto = (function () {
+  var obj = Object.create(null);
+  return !('__proto__' in obj);
+}());
+
+function identity (s) {
+  return s;
+}
+
+/**
+ * Because behavior goes wacky when you set `__proto__` on objects, we
+ * have to prefix all the strings in our set with an arbitrary character.
+ *
+ * See https://github.com/mozilla/source-map/pull/31 and
+ * https://github.com/mozilla/source-map/issues/30
+ *
+ * @param String aStr
+ */
+function toSetString(aStr) {
+  if (isProtoString(aStr)) {
+    return '$' + aStr;
+  }
+
+  return aStr;
+}
+exports.toSetString = supportsNullProto ? identity : toSetString;
+
+function fromSetString(aStr) {
+  if (isProtoString(aStr)) {
+    return aStr.slice(1);
+  }
+
+  return aStr;
+}
+exports.fromSetString = supportsNullProto ? identity : fromSetString;
+
+function isProtoString(s) {
+  if (!s) {
+    return false;
+  }
+
+  var length = s.length;
+
+  if (length < 9 /* "__proto__".length */) {
+    return false;
+  }
+
+  if (s.charCodeAt(length - 1) !== 95  /* '_' */ ||
+      s.charCodeAt(length - 2) !== 95  /* '_' */ ||
+      s.charCodeAt(length - 3) !== 111 /* 'o' */ ||
+      s.charCodeAt(length - 4) !== 116 /* 't' */ ||
+      s.charCodeAt(length - 5) !== 111 /* 'o' */ ||
+      s.charCodeAt(length - 6) !== 114 /* 'r' */ ||
+      s.charCodeAt(length - 7) !== 112 /* 'p' */ ||
+      s.charCodeAt(length - 8) !== 95  /* '_' */ ||
+      s.charCodeAt(length - 9) !== 95  /* '_' */) {
+    return false;
+  }
+
+  for (var i = length - 10; i >= 0; i--) {
+    if (s.charCodeAt(i) !== 36 /* '$' */) {
+      return false;
+    }
+  }
+
+  return true;
+}
+
+/**
+ * Comparator between two mappings where the original positions are compared.
+ *
+ * Optionally pass in `true` as `onlyCompareGenerated` to consider two
+ * mappings with the same original source/line/column, but different generated
+ * line and column the same. Useful when searching for a mapping with a
+ * stubbed out mapping.
+ */
+function compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) {
+  var cmp = strcmp(mappingA.source, mappingB.source);
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalLine - mappingB.originalLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalColumn - mappingB.originalColumn;
+  if (cmp !== 0 || onlyCompareOriginal) {
+    return cmp;
+  }
+
+  cmp = mappingA.generatedColumn - mappingB.generatedColumn;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.generatedLine - mappingB.generatedLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  return strcmp(mappingA.name, mappingB.name);
+}
+exports.compareByOriginalPositions = compareByOriginalPositions;
+
+function compareByOriginalPositionsNoSource(mappingA, mappingB, onlyCompareOriginal) {
+  var cmp
+
+  cmp = mappingA.originalLine - mappingB.originalLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalColumn - mappingB.originalColumn;
+  if (cmp !== 0 || onlyCompareOriginal) {
+    return cmp;
+  }
+
+  cmp = mappingA.generatedColumn - mappingB.generatedColumn;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.generatedLine - mappingB.generatedLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  return strcmp(mappingA.name, mappingB.name);
+}
+exports.compareByOriginalPositionsNoSource = compareByOriginalPositionsNoSource;
+
+/**
+ * Comparator between two mappings with deflated source and name indices where
+ * the generated positions are compared.
+ *
+ * Optionally pass in `true` as `onlyCompareGenerated` to consider two
+ * mappings with the same generated line and column, but different
+ * source/name/original line and column the same. Useful when searching for a
+ * mapping with a stubbed out mapping.
+ */
+function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {
+  var cmp = mappingA.generatedLine - mappingB.generatedLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.generatedColumn - mappingB.generatedColumn;
+  if (cmp !== 0 || onlyCompareGenerated) {
+    return cmp;
+  }
+
+  cmp = strcmp(mappingA.source, mappingB.source);
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalLine - mappingB.originalLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalColumn - mappingB.originalColumn;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  return strcmp(mappingA.name, mappingB.name);
+}
+exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
+
+function compareByGeneratedPositionsDeflatedNoLine(mappingA, mappingB, onlyCompareGenerated) {
+  var cmp = mappingA.generatedColumn - mappingB.generatedColumn;
+  if (cmp !== 0 || onlyCompareGenerated) {
+    return cmp;
+  }
+
+  cmp = strcmp(mappingA.source, mappingB.source);
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalLine - mappingB.originalLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalColumn - mappingB.originalColumn;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  return strcmp(mappingA.name, mappingB.name);
+}
+exports.compareByGeneratedPositionsDeflatedNoLine = compareByGeneratedPositionsDeflatedNoLine;
+
+function strcmp(aStr1, aStr2) {
+  if (aStr1 === aStr2) {
+    return 0;
+  }
+
+  if (aStr1 === null) {
+    return 1; // aStr2 !== null
+  }
+
+  if (aStr2 === null) {
+    return -1; // aStr1 !== null
+  }
+
+  if (aStr1 > aStr2) {
+    return 1;
+  }
+
+  return -1;
+}
+
+/**
+ * Comparator between two mappings with inflated source and name strings where
+ * the generated positions are compared.
+ */
+function compareByGeneratedPositionsInflated(mappingA, mappingB) {
+  var cmp = mappingA.generatedLine - mappingB.generatedLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.generatedColumn - mappingB.generatedColumn;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = strcmp(mappingA.source, mappingB.source);
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalLine - mappingB.originalLine;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  cmp = mappingA.originalColumn - mappingB.originalColumn;
+  if (cmp !== 0) {
+    return cmp;
+  }
+
+  return strcmp(mappingA.name, mappingB.name);
+}
+exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
+
+/**
+ * Strip any JSON XSSI avoidance prefix from the string (as documented
+ * in the source maps specification), and then parse the string as
+ * JSON.
+ */
+function parseSourceMapInput(str) {
+  return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ''));
+}
+exports.parseSourceMapInput = parseSourceMapInput;
+
+/**
+ * Compute the URL of a source given the the source root, the source's
+ * URL, and the source map's URL.
+ */
+function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
+  sourceURL = sourceURL || '';
+
+  if (sourceRoot) {
+    // This follows what Chrome does.
+    if (sourceRoot[sourceRoot.length - 1] !== '/' && sourceURL[0] !== '/') {
+      sourceRoot += '/';
+    }
+    // The spec says:
+    //   Line 4: An optional source root, useful for relocating source
+    //   files on a server or removing repeated values in the
+    //   “sources” entry.  This value is prepended to the individual
+    //   entries in the “source” field.
+    sourceURL = sourceRoot + sourceURL;
+  }
+
+  // Historically, SourceMapConsumer did not take the sourceMapURL as
+  // a parameter.  This mode is still somewhat supported, which is why
+  // this code block is conditional.  However, it's preferable to pass
+  // the source map URL to SourceMapConsumer, so that this function
+  // can implement the source URL resolution algorithm as outlined in
+  // the spec.  This block is basically the equivalent of:
+  //    new URL(sourceURL, sourceMapURL).toString()
+  // ... except it avoids using URL, which wasn't available in the
+  // older releases of node still supported by this library.
+  //
+  // The spec says:
+  //   If the sources are not absolute URLs after prepending of the
+  //   “sourceRoot”, the sources are resolved relative to the
+  //   SourceMap (like resolving script src in a html document).
+  if (sourceMapURL) {
+    var parsed = urlParse(sourceMapURL);
+    if (!parsed) {
+      throw new Error("sourceMapURL could not be parsed");
+    }
+    if (parsed.path) {
+      // Strip the last path component, but keep the "/".
+      var index = parsed.path.lastIndexOf('/');
+      if (index >= 0) {
+        parsed.path = parsed.path.substring(0, index + 1);
+      }
+    }
+    sourceURL = join(urlGenerate(parsed), sourceURL);
+  }
+
+  return normalize(sourceURL);
+}
+exports.computeSourceURL = computeSourceURL;
Index: node_modules/source-map-js/package.json
===================================================================
--- node_modules/source-map-js/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,71 @@
+{
+  "name": "source-map-js",
+  "description": "Generates and consumes source maps",
+  "version": "1.2.1",
+  "homepage": "https://github.com/7rulnik/source-map-js",
+  "author": "Valentin 7rulnik Semirulnik <v7rulnik@gmail.com>",
+  "contributors": [
+    "Nick Fitzgerald <nfitzgerald@mozilla.com>",
+    "Tobias Koppers <tobias.koppers@googlemail.com>",
+    "Duncan Beevers <duncan@dweebd.com>",
+    "Stephen Crane <scrane@mozilla.com>",
+    "Ryan Seddon <seddon.ryan@gmail.com>",
+    "Miles Elam <miles.elam@deem.com>",
+    "Mihai Bazon <mihai.bazon@gmail.com>",
+    "Michael Ficarra <github.public.email@michael.ficarra.me>",
+    "Todd Wolfson <todd@twolfson.com>",
+    "Alexander Solovyov <alexander@solovyov.net>",
+    "Felix Gnass <fgnass@gmail.com>",
+    "Conrad Irwin <conrad.irwin@gmail.com>",
+    "usrbincc <usrbincc@yahoo.com>",
+    "David Glasser <glasser@davidglasser.net>",
+    "Chase Douglas <chase@newrelic.com>",
+    "Evan Wallace <evan.exe@gmail.com>",
+    "Heather Arthur <fayearthur@gmail.com>",
+    "Hugh Kennedy <hughskennedy@gmail.com>",
+    "David Glasser <glasser@davidglasser.net>",
+    "Simon Lydell <simon.lydell@gmail.com>",
+    "Jmeas Smith <jellyes2@gmail.com>",
+    "Michael Z Goddard <mzgoddard@gmail.com>",
+    "azu <azu@users.noreply.github.com>",
+    "John Gozde <john@gozde.ca>",
+    "Adam Kirkton <akirkton@truefitinnovation.com>",
+    "Chris Montgomery <christopher.montgomery@dowjones.com>",
+    "J. Ryan Stinnett <jryans@gmail.com>",
+    "Jack Herrington <jherrington@walmartlabs.com>",
+    "Chris Truter <jeffpalentine@gmail.com>",
+    "Daniel Espeset <daniel@danielespeset.com>",
+    "Jamie Wong <jamie.lf.wong@gmail.com>",
+    "Eddy Bruël <ejpbruel@mozilla.com>",
+    "Hawken Rives <hawkrives@gmail.com>",
+    "Gilad Peleg <giladp007@gmail.com>",
+    "djchie <djchie.dev@gmail.com>",
+    "Gary Ye <garysye@gmail.com>",
+    "Nicolas Lalevée <nicolas.lalevee@hibnet.org>"
+  ],
+  "repository": "7rulnik/source-map-js",
+  "main": "./source-map.js",
+  "files": [
+    "source-map.js",
+    "source-map.d.ts",
+    "lib/"
+  ],
+  "engines": {
+    "node": ">=0.10.0"
+  },
+  "license": "BSD-3-Clause",
+  "scripts": {
+    "test": "npm run build && node test/run-tests.js",
+    "build": "webpack --color",
+    "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md"
+  },
+  "devDependencies": {
+    "clean-publish": "^3.1.0",
+    "doctoc": "^0.15.0",
+    "webpack": "^1.12.0"
+  },
+  "clean-publish": {
+    "cleanDocs": true
+  },
+  "typings": "source-map.d.ts"
+}
Index: node_modules/source-map-js/source-map.d.ts
===================================================================
--- node_modules/source-map-js/source-map.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/source-map.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,104 @@
+export interface StartOfSourceMap {
+    file?: string;
+    sourceRoot?: string;
+}
+
+export interface RawSourceMap extends StartOfSourceMap {
+    version: string;
+    sources: string[];
+    names: string[];
+    sourcesContent?: string[];
+    mappings: string;
+}
+
+export interface Position {
+    line: number;
+    column: number;
+}
+
+export interface LineRange extends Position {
+    lastColumn: number;
+}
+
+export interface FindPosition extends Position {
+    // SourceMapConsumer.GREATEST_LOWER_BOUND or SourceMapConsumer.LEAST_UPPER_BOUND
+    bias?: number;
+}
+
+export interface SourceFindPosition extends FindPosition {
+    source: string;
+}
+
+export interface MappedPosition extends Position {
+    source: string;
+    name?: string;
+}
+
+export interface MappingItem {
+    source: string | null;
+    generatedLine: number;
+    generatedColumn: number;
+    originalLine: number | null;
+    originalColumn: number | null;
+    name: string | null;
+}
+
+export class SourceMapConsumer {
+    static GENERATED_ORDER: number;
+    static ORIGINAL_ORDER: number;
+
+    static GREATEST_LOWER_BOUND: number;
+    static LEAST_UPPER_BOUND: number;
+
+    constructor(rawSourceMap: RawSourceMap);
+    readonly file: string | undefined | null;
+    readonly sourceRoot: string | undefined | null;
+    readonly sourcesContent: readonly string[] | null | undefined;
+    readonly sources: readonly string[]
+
+    computeColumnSpans(): void;
+    originalPositionFor(generatedPosition: FindPosition): MappedPosition;
+    generatedPositionFor(originalPosition: SourceFindPosition): LineRange;
+    allGeneratedPositionsFor(originalPosition: MappedPosition): Position[];
+    hasContentsOfAllSources(): boolean;
+    sourceContentFor(source: string, returnNullOnMissing?: boolean): string | null;
+    eachMapping(callback: (mapping: MappingItem) => void, context?: any, order?: number): void;
+}
+
+export interface Mapping {
+    generated: Position;
+    original?: Position | null;
+    source?: string | null;
+    name?: string | null;
+}
+
+export class SourceMapGenerator {
+    constructor(startOfSourceMap?: StartOfSourceMap);
+    static fromSourceMap(sourceMapConsumer: SourceMapConsumer, startOfSourceMap?: StartOfSourceMap): SourceMapGenerator;
+    addMapping(mapping: Mapping): void;
+    setSourceContent(sourceFile: string, sourceContent: string | null | undefined): void;
+    applySourceMap(sourceMapConsumer: SourceMapConsumer, sourceFile?: string, sourceMapPath?: string): void;
+    toString(): string;
+    toJSON(): RawSourceMap;
+}
+
+export interface CodeWithSourceMap {
+    code: string;
+    map: SourceMapGenerator;
+}
+
+export class SourceNode {
+    constructor();
+    constructor(line: number, column: number, source: string);
+    constructor(line: number, column: number, source: string, chunk?: string, name?: string);
+    static fromStringWithSourceMap(code: string, sourceMapConsumer: SourceMapConsumer, relativePath?: string): SourceNode;
+    add(chunk: string): void;
+    prepend(chunk: string): void;
+    setSourceContent(sourceFile: string, sourceContent: string): void;
+    walk(fn: (chunk: string, mapping: MappedPosition) => void): void;
+    walkSourceContents(fn: (file: string, content: string) => void): void;
+    join(sep: string): SourceNode;
+    replaceRight(pattern: string, replacement: string): SourceNode;
+    toString(): string;
+    toStringWithSourceMap(startOfSourceMap?: StartOfSourceMap): CodeWithSourceMap;
+}
Index: node_modules/source-map-js/source-map.js
===================================================================
--- node_modules/source-map-js/source-map.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/source-map-js/source-map.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,8 @@
+/*
+ * Copyright 2009-2011 Mozilla Foundation and contributors
+ * Licensed under the New BSD license. See LICENSE.txt or:
+ * http://opensource.org/licenses/BSD-3-Clause
+ */
+exports.SourceMapGenerator = require('./lib/source-map-generator').SourceMapGenerator;
+exports.SourceMapConsumer = require('./lib/source-map-consumer').SourceMapConsumer;
+exports.SourceNode = require('./lib/source-node').SourceNode;
Index: node_modules/tailwindcss/LICENSE
===================================================================
--- node_modules/tailwindcss/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) Tailwind Labs, Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
Index: node_modules/tailwindcss/README.md
===================================================================
--- node_modules/tailwindcss/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,36 @@
+<p align="center">
+  <a href="https://tailwindcss.com" target="_blank">
+    <picture>
+      <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-dark.svg">
+      <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-light.svg">
+      <img alt="Tailwind CSS" src="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-light.svg" width="350" height="70" style="max-width: 100%;">
+    </picture>
+  </a>
+</p>
+
+<p align="center">
+  A utility-first CSS framework for rapidly building custom user interfaces.
+</p>
+
+<p align="center">
+    <a href="https://github.com/tailwindlabs/tailwindcss/actions"><img src="https://img.shields.io/github/actions/workflow/status/tailwindlabs/tailwindcss/ci.yml?branch=next" alt="Build Status"></a>
+    <a href="https://www.npmjs.com/package/tailwindcss"><img src="https://img.shields.io/npm/dt/tailwindcss.svg" alt="Total Downloads"></a>
+    <a href="https://github.com/tailwindcss/tailwindcss/releases"><img src="https://img.shields.io/npm/v/tailwindcss.svg" alt="Latest Release"></a>
+    <a href="https://github.com/tailwindcss/tailwindcss/blob/master/LICENSE"><img src="https://img.shields.io/npm/l/tailwindcss.svg" alt="License"></a>
+</p>
+
+---
+
+## Documentation
+
+For full documentation, visit [tailwindcss.com](https://tailwindcss.com).
+
+## Community
+
+For help, discussion about best practices, or feature ideas:
+
+[Discuss Tailwind CSS on GitHub](https://github.com/tailwindcss/tailwindcss/discussions)
+
+## Contributing
+
+If you're interested in contributing to Tailwind CSS, please read our [contributing docs](https://github.com/tailwindcss/tailwindcss/blob/next/.github/CONTRIBUTING.md) **before submitting a pull request**.
Index: node_modules/tailwindcss/dist/chunk-CT46QCH7.mjs
===================================================================
--- node_modules/tailwindcss/dist/chunk-CT46QCH7.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/chunk-CT46QCH7.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,38 @@
+import{a as Xt,b as j,c as H,d as er,e as P,f as Ct,g as ie,h as et,i as rr}from"./chunk-GFBUASX3.mjs";import{a as tr}from"./chunk-HTB5LLOP.mjs";var ir="4.1.18";function tt(t){let r=[0];for(let n=0;n<t.length;n++)t.charCodeAt(n)===10&&r.push(n+1);function i(n){let s=0,a=r.length;for(;a>0;){let u=(a|0)>>1,f=s+u;r[f]<=n?(s=f+1,a=a-u-1):a=u}s-=1;let p=n-r[s];return{line:s+1,column:p}}function e({line:n,column:s}){n-=1,n=Math.min(Math.max(n,0),r.length-1);let a=r[n],p=r[n+1]??a;return Math.min(Math.max(a+s,0),p)}return{find:i,findOffset:e}}var Fe=92,rt=47,it=42,nr=34,ar=39,Yi=58,nt=59,le=10,at=13,We=32,Be=9,or=123,$t=125,Vt=40,lr=41,Gi=91,qi=93,sr=45,St=64,Zi=33,se=class t extends Error{loc;constructor(r,i){if(i){let e=i[0],n=tt(e.code).find(i[1]);r=`${e.file}:${n.line}:${n.column+1}: ${r}`}super(r),this.name="CssSyntaxError",this.loc=i,Error.captureStackTrace&&Error.captureStackTrace(this,t)}};function $e(t,r){let i=r?.from?{file:r.from,code:t}:null;t[0]==="\uFEFF"&&(t=" "+t.slice(1));let e=[],n=[],s=[],a=null,p=null,u="",f="",m=0,d;for(let c=0;c<t.length;c++){let w=t.charCodeAt(c);if(!(w===at&&(d=t.charCodeAt(c+1),d===le)))if(w===Fe)u===""&&(m=c),u+=t.slice(c,c+2),c+=1;else if(w===rt&&t.charCodeAt(c+1)===it){let h=c;for(let x=c+2;x<t.length;x++)if(d=t.charCodeAt(x),d===Fe)x+=1;else if(d===it&&t.charCodeAt(x+1)===rt){c=x+1;break}let y=t.slice(h,c+1);if(y.charCodeAt(2)===Zi){let x=ot(y.slice(2,-2));n.push(x),i&&(x.src=[i,h,c+1],x.dst=[i,h,c+1])}}else if(w===ar||w===nr){let h=ur(t,c,w,i);u+=t.slice(c,h+1),c=h}else{if((w===We||w===le||w===Be)&&(d=t.charCodeAt(c+1))&&(d===We||d===le||d===Be||d===at&&(d=t.charCodeAt(c+2))&&d==le))continue;if(w===le){if(u.length===0)continue;d=u.charCodeAt(u.length-1),d!==We&&d!==le&&d!==Be&&(u+=" ")}else if(w===sr&&t.charCodeAt(c+1)===sr&&u.length===0){let h="",y=c,x=-1;for(let A=c+2;A<t.length;A++)if(d=t.charCodeAt(A),d===Fe)A+=1;else if(d===ar||d===nr)A=ur(t,A,d,i);else if(d===rt&&t.charCodeAt(A+1)===it){for(let k=A+2;k<t.length;k++)if(d=t.charCodeAt(k),d===Fe)k+=1;else if(d===it&&t.charCodeAt(k+1)===rt){A=k+1;break}}else if(x===-1&&d===Yi)x=u.length+A-y;else if(d===nt&&h.length===0){u+=t.slice(y,A),c=A;break}else if(d===Vt)h+=")";else if(d===Gi)h+="]";else if(d===or)h+="}";else if((d===$t||t.length-1===A)&&h.length===0){c=A-1,u+=t.slice(y,A);break}else(d===lr||d===qi||d===$t)&&h.length>0&&t[A]===h[h.length-1]&&(h=h.slice(0,-1));let $=Tt(u,x);if(!$)throw new se("Invalid custom property, expected a value",i?[i,y,c]:null);i&&($.src=[i,y,c],$.dst=[i,y,c]),a?a.nodes.push($):e.push($),u=""}else if(w===nt&&u.charCodeAt(0)===St)p=Ye(u),i&&(p.src=[i,m,c],p.dst=[i,m,c]),a?a.nodes.push(p):e.push(p),u="",p=null;else if(w===nt&&f[f.length-1]!==")"){let h=Tt(u);if(!h){if(u.length===0)continue;throw new se(`Invalid declaration: \`${u.trim()}\``,i?[i,m,c]:null)}i&&(h.src=[i,m,c],h.dst=[i,m,c]),a?a.nodes.push(h):e.push(h),u=""}else if(w===or&&f[f.length-1]!==")")f+="}",p=J(u.trim()),i&&(p.src=[i,m,c],p.dst=[i,m,c]),a&&a.nodes.push(p),s.push(a),a=p,u="",p=null;else if(w===$t&&f[f.length-1]!==")"){if(f==="")throw new se("Missing opening {",i?[i,c,c]:null);if(f=f.slice(0,-1),u.length>0)if(u.charCodeAt(0)===St)p=Ye(u),i&&(p.src=[i,m,c],p.dst=[i,m,c]),a?a.nodes.push(p):e.push(p),u="",p=null;else{let y=u.indexOf(":");if(a){let x=Tt(u,y);if(!x)throw new se(`Invalid declaration: \`${u.trim()}\``,i?[i,m,c]:null);i&&(x.src=[i,m,c],x.dst=[i,m,c]),a.nodes.push(x)}}let h=s.pop()??null;h===null&&a&&e.push(a),a=h,u="",p=null}else if(w===Vt)f+=")",u+="(";else if(w===lr){if(f[f.length-1]!==")")throw new se("Missing opening (",i?[i,c,c]:null);f=f.slice(0,-1),u+=")"}else{if(u.length===0&&(w===We||w===le||w===Be))continue;u===""&&(m=c),u+=String.fromCharCode(w)}}}if(u.charCodeAt(0)===St){let c=Ye(u);i&&(c.src=[i,m,t.length],c.dst=[i,m,t.length]),e.push(c)}if(f.length>0&&a){if(a.kind==="rule")throw new se(`Missing closing } at ${a.selector}`,a.src?[a.src[0],a.src[1],a.src[1]]:null);if(a.kind==="at-rule")throw new se(`Missing closing } at ${a.name} ${a.params}`,a.src?[a.src[0],a.src[1],a.src[1]]:null)}return n.length>0?n.concat(e):e}function Ye(t,r=[]){let i=t,e="";for(let n=5;n<t.length;n++){let s=t.charCodeAt(n);if(s===We||s===Be||s===Vt){i=t.slice(0,n),e=t.slice(n);break}}return F(i.trim(),e.trim(),r)}function Tt(t,r=t.indexOf(":")){if(r===-1)return null;let i=t.indexOf("!important",r+1);return o(t.slice(0,r).trim(),t.slice(r+1,i===-1?t.length:i).trim(),i!==-1)}function ur(t,r,i,e=null){let n;for(let s=r+1;s<t.length;s++)if(n=t.charCodeAt(s),n===Fe)s+=1;else{if(n===i)return s;if(n===nt&&(t.charCodeAt(s+1)===le||t.charCodeAt(s+1)===at&&t.charCodeAt(s+2)===le))throw new se(`Unterminated string: ${t.slice(r,s+1)+String.fromCharCode(i)}`,e?[e,r,s+1]:null);if(n===le||n===at&&t.charCodeAt(s+1)===le)throw new se(`Unterminated string: ${t.slice(r,s)+String.fromCharCode(i)}`,e?[e,r,s+1]:null)}return r}function ye(t){if(arguments.length===0)throw new TypeError("`CSS.escape` requires an argument.");let r=String(t),i=r.length,e=-1,n,s="",a=r.charCodeAt(0);if(i===1&&a===45)return"\\"+r;for(;++e<i;){if(n=r.charCodeAt(e),n===0){s+="\uFFFD";continue}if(n>=1&&n<=31||n===127||e===0&&n>=48&&n<=57||e===1&&n>=48&&n<=57&&a===45){s+="\\"+n.toString(16)+" ";continue}if(n>=128||n===45||n===95||n>=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122){s+=r.charAt(e);continue}s+="\\"+r.charAt(e)}return s}function Se(t){return t.replace(/\\([\dA-Fa-f]{1,6}[\t\n\f\r ]?|[\S\s])/g,r=>r.length>2?String.fromCodePoint(Number.parseInt(r.slice(1).trim(),16)):r[1])}var cr=new Map([["--font",["--font-weight","--font-size"]],["--inset",["--inset-shadow","--inset-ring"]],["--text",["--text-color","--text-decoration-color","--text-decoration-thickness","--text-indent","--text-shadow","--text-underline-offset"]],["--grid-column",["--grid-column-start","--grid-column-end"]],["--grid-row",["--grid-row-start","--grid-row-end"]]]);function fr(t,r){return(cr.get(r)??[]).some(i=>t===i||t.startsWith(`${i}-`))}var lt=class{constructor(r=new Map,i=new Set([])){this.values=r;this.keyframes=i}prefix=null;get size(){return this.values.size}add(r,i,e=0,n){if(r.endsWith("-*")){if(i!=="initial")throw new Error(`Invalid theme value \`${i}\` for namespace \`${r}\``);r==="--*"?this.values.clear():this.clearNamespace(r.slice(0,-2),0)}if(e&4){let s=this.values.get(r);if(s&&!(s.options&4))return}i==="initial"?this.values.delete(r):this.values.set(r,{value:i,options:e,src:n})}keysInNamespaces(r){let i=[];for(let e of r){let n=`${e}-`;for(let s of this.values.keys())s.startsWith(n)&&s.indexOf("--",2)===-1&&(fr(s,e)||i.push(s.slice(n.length)))}return i}get(r){for(let i of r){let e=this.values.get(i);if(e)return e.value}return null}hasDefault(r){return(this.getOptions(r)&4)===4}getOptions(r){return r=Se(this.#r(r)),this.values.get(r)?.options??0}entries(){return this.prefix?Array.from(this.values,r=>(r[0]=this.prefixKey(r[0]),r)):this.values.entries()}prefixKey(r){return this.prefix?`--${this.prefix}-${r.slice(2)}`:r}#r(r){return this.prefix?`--${r.slice(3+this.prefix.length)}`:r}clearNamespace(r,i){let e=cr.get(r)??[];e:for(let n of this.values.keys())if(n.startsWith(r)){if(i!==0&&(this.getOptions(n)&i)!==i)continue;for(let s of e)if(n.startsWith(s))continue e;this.values.delete(n)}}#e(r,i){for(let e of i){let n=r!==null?`${e}-${r}`:e;if(!this.values.has(n))if(r!==null&&r.includes(".")){if(n=`${e}-${r.replaceAll(".","_")}`,!this.values.has(n))continue}else continue;if(!fr(n,e))return n}return null}#t(r){let i=this.values.get(r);if(!i)return null;let e=null;return i.options&2&&(e=i.value),`var(${ye(this.prefixKey(r))}${e?`, ${e}`:""})`}markUsedVariable(r){let i=Se(this.#r(r)),e=this.values.get(i);if(!e)return!1;let n=e.options&16;return e.options|=16,!n}resolve(r,i,e=0){let n=this.#e(r,i);if(!n)return null;let s=this.values.get(n);return(e|s.options)&1?s.value:this.#t(n)}resolveValue(r,i){let e=this.#e(r,i);return e?this.values.get(e).value:null}resolveWith(r,i,e=[]){let n=this.#e(r,i);if(!n)return null;let s={};for(let p of e){let u=`${n}${p}`,f=this.values.get(u);f&&(f.options&1?s[p]=f.value:s[p]=this.#t(u))}let a=this.values.get(n);return a.options&1?[a.value,s]:[this.#t(n),s]}namespace(r){let i=new Map,e=`${r}-`;for(let[n,s]of this.values)n===r?i.set(null,s.value):n.startsWith(`${e}-`)?i.set(n.slice(r.length),s.value):n.startsWith(e)&&i.set(n.slice(e.length),s.value);return i}addKeyframes(r){this.keyframes.add(r)}getKeyframes(){return Array.from(this.keyframes)}};var K=class extends Map{constructor(i){super();this.factory=i}get(i){let e=super.get(i);return e===void 0&&(e=this.factory(i,this),this.set(i,e)),e}};function ne(t){return{kind:"word",value:t}}function Hi(t,r){return{kind:"function",value:t,nodes:r}}function Ji(t){return{kind:"separator",value:t}}function Z(t){let r="";for(let i of t)switch(i.kind){case"word":case"separator":{r+=i.value;break}case"function":r+=i.value+"("+Z(i.nodes)+")"}return r}var pr=92,Qi=41,dr=58,mr=44,Xi=34,gr=61,hr=62,vr=60,wr=10,en=40,tn=39,rn=47,yr=32,kr=9;function B(t){t=t.replaceAll(`\r
+`,`
+`);let r=[],i=[],e=null,n="",s;for(let a=0;a<t.length;a++){let p=t.charCodeAt(a);switch(p){case pr:{n+=t[a]+t[a+1],a++;break}case rn:{if(n.length>0){let f=ne(n);e?e.nodes.push(f):r.push(f),n=""}let u=ne(t[a]);e?e.nodes.push(u):r.push(u);break}case dr:case mr:case gr:case hr:case vr:case wr:case yr:case kr:{if(n.length>0){let d=ne(n);e?e.nodes.push(d):r.push(d),n=""}let u=a,f=a+1;for(;f<t.length&&(s=t.charCodeAt(f),!(s!==dr&&s!==mr&&s!==gr&&s!==hr&&s!==vr&&s!==wr&&s!==yr&&s!==kr));f++);a=f-1;let m=Ji(t.slice(u,f));e?e.nodes.push(m):r.push(m);break}case tn:case Xi:{let u=a;for(let f=a+1;f<t.length;f++)if(s=t.charCodeAt(f),s===pr)f+=1;else if(s===p){a=f;break}n+=t.slice(u,a+1);break}case en:{let u=Hi(n,[]);n="",e?e.nodes.push(u):r.push(u),i.push(u),e=u;break}case Qi:{let u=i.pop();if(n.length>0){let f=ne(n);u?.nodes.push(f),n=""}i.length>0?e=i[i.length-1]:e=null;break}default:n+=String.fromCharCode(p)}}return n.length>0&&r.push(ne(n)),r}var Et=(a=>(a[a.Continue=0]="Continue",a[a.Skip=1]="Skip",a[a.Stop=2]="Stop",a[a.Replace=3]="Replace",a[a.ReplaceSkip=4]="ReplaceSkip",a[a.ReplaceStop=5]="ReplaceStop",a))(Et||{}),E={Continue:{kind:0},Skip:{kind:1},Stop:{kind:2},Replace:t=>({kind:3,nodes:Array.isArray(t)?t:[t]}),ReplaceSkip:t=>({kind:4,nodes:Array.isArray(t)?t:[t]}),ReplaceStop:t=>({kind:5,nodes:Array.isArray(t)?t:[t]})};function I(t,r){typeof r=="function"?br(t,r):br(t,r.enter,r.exit)}function br(t,r=()=>E.Continue,i=()=>E.Continue){let e=[[t,0,null]],n={parent:null,depth:0,path(){let s=[];for(let a=1;a<e.length;a++){let p=e[a][2];p&&s.push(p)}return s}};for(;e.length>0;){let s=e.length-1,a=e[s],p=a[0],u=a[1],f=a[2];if(u>=p.length){e.pop();continue}if(n.parent=f,n.depth=s,u>=0){let w=p[u],h=r(w,n)??E.Continue;switch(h.kind){case 0:{w.nodes&&w.nodes.length>0&&e.push([w.nodes,0,w]),a[1]=~u;continue}case 2:return;case 1:{a[1]=~u;continue}case 3:{p.splice(u,1,...h.nodes);continue}case 5:{p.splice(u,1,...h.nodes);return}case 4:{p.splice(u,1,...h.nodes),a[1]+=h.nodes.length;continue}default:throw new Error(`Invalid \`WalkAction.${Et[h.kind]??`Unknown(${h.kind})`}\` in enter.`)}}let m=~u,d=p[m],c=i(d,n)??E.Continue;switch(c.kind){case 0:a[1]=m+1;continue;case 2:return;case 3:{p.splice(m,1,...c.nodes),a[1]=m+c.nodes.length;continue}case 5:{p.splice(m,1,...c.nodes);return}case 4:{p.splice(m,1,...c.nodes),a[1]=m+c.nodes.length;continue}default:throw new Error(`Invalid \`WalkAction.${Et[c.kind]??`Unknown(${c.kind})`}\` in exit.`)}}}function st(t){let r=[];return I(B(t),i=>{if(!(i.kind!=="function"||i.value!=="var"))return I(i.nodes,e=>{e.kind!=="word"||e.value[0]!=="-"||e.value[1]!=="-"||r.push(e.value)}),E.Skip}),r}var nn=64;function G(t,r=[]){return{kind:"rule",selector:t,nodes:r}}function F(t,r="",i=[]){return{kind:"at-rule",name:t,params:r,nodes:i}}function J(t,r=[]){return t.charCodeAt(0)===nn?Ye(t,r):G(t,r)}function o(t,r,i=!1){return{kind:"declaration",property:t,value:r,important:i}}function ot(t){return{kind:"comment",value:t}}function ce(t,r){return{kind:"context",context:t,nodes:r}}function W(t){return{kind:"at-root",nodes:t}}function ee(t){switch(t.kind){case"rule":return{kind:t.kind,selector:t.selector,nodes:t.nodes.map(ee),src:t.src,dst:t.dst};case"at-rule":return{kind:t.kind,name:t.name,params:t.params,nodes:t.nodes.map(ee),src:t.src,dst:t.dst};case"at-root":return{kind:t.kind,nodes:t.nodes.map(ee),src:t.src,dst:t.dst};case"context":return{kind:t.kind,context:{...t.context},nodes:t.nodes.map(ee),src:t.src,dst:t.dst};case"declaration":return{kind:t.kind,property:t.property,value:t.value,important:t.important,src:t.src,dst:t.dst};case"comment":return{kind:t.kind,value:t.value,src:t.src,dst:t.dst};default:throw new Error(`Unknown node kind: ${t.kind}`)}}function qe(t){return{depth:t.depth,get context(){let r={};for(let i of t.path())i.kind==="context"&&Object.assign(r,i.context);return Object.defineProperty(this,"context",{value:r}),r},get parent(){let r=this.path().pop()??null;return Object.defineProperty(this,"parent",{value:r}),r},path(){return t.path().filter(r=>r.kind!=="context")}}}function Te(t,r,i=3){let e=[],n=new Set,s=new K(()=>new Set),a=new K(()=>new Set),p=new Set,u=new Set,f=[],m=[],d=new K(()=>new Set);function c(h,y,x={},$=0){if(h.kind==="declaration"){if(h.property==="--tw-sort"||h.value===void 0||h.value===null)return;if(x.theme&&h.property[0]==="-"&&h.property[1]==="-"){if(h.value==="initial"){h.value=void 0;return}x.keyframes||s.get(y).add(h)}if(h.value.includes("var("))if(x.theme&&h.property[0]==="-"&&h.property[1]==="-")for(let A of st(h.value))d.get(A).add(h.property);else r.trackUsedVariables(h.value);if(h.property==="animation")for(let A of xr(h.value))u.add(A);i&2&&h.value.includes("color-mix(")&&!x.keyframes&&a.get(y).add(h),y.push(h)}else if(h.kind==="rule"){let A=[];for(let N of h.nodes)c(N,A,x,$+1);let k={},U=new Set;for(let N of A){if(N.kind!=="declaration")continue;let O=`${N.property}:${N.value}:${N.important}`;k[O]??=[],k[O].push(N)}for(let N in k)for(let O=0;O<k[N].length-1;++O)U.add(k[N][O]);if(U.size>0&&(A=A.filter(N=>!U.has(N))),A.length===0)return;h.selector==="&"?y.push(...A):y.push({...h,nodes:A})}else if(h.kind==="at-rule"&&h.name==="@property"&&$===0){if(n.has(h.params))return;if(i&1){let k=h.params,U=null,N=!1;for(let L of h.nodes)L.kind==="declaration"&&(L.property==="initial-value"?U=L.value:L.property==="inherits"&&(N=L.value==="true"));let O=o(k,U??"initial");O.src=h.src,N?f.push(O):m.push(O)}n.add(h.params);let A={...h,nodes:[]};for(let k of h.nodes)c(k,A.nodes,x,$+1);y.push(A)}else if(h.kind==="at-rule"){h.name==="@keyframes"&&(x={...x,keyframes:!0});let A={...h,nodes:[]};for(let k of h.nodes)c(k,A.nodes,x,$+1);h.name==="@keyframes"&&x.theme&&p.add(A),(A.nodes.length>0||A.name==="@layer"||A.name==="@charset"||A.name==="@custom-media"||A.name==="@namespace"||A.name==="@import")&&y.push(A)}else if(h.kind==="at-root")for(let A of h.nodes){let k=[];c(A,k,x,0);for(let U of k)e.push(U)}else if(h.kind==="context"){if(h.context.reference)return;for(let A of h.nodes)c(A,y,{...x,...h.context},$)}else h.kind==="comment"&&y.push(h)}let w=[];for(let h of t)c(h,w,{},0);e:for(let[h,y]of s)for(let x of y){if(Ar(x.property,r.theme,d)){if(x.property.startsWith(r.theme.prefixKey("--animate-")))for(let k of xr(x.value))u.add(k);continue}let A=h.indexOf(x);if(h.splice(A,1),h.length===0){let k=an(w,U=>U.kind==="rule"&&U.nodes===h);if(!k||k.length===0)continue e;k.unshift({kind:"at-root",nodes:w});do{let U=k.pop();if(!U)break;let N=k[k.length-1];if(!N||N.kind!=="at-root"&&N.kind!=="at-rule")break;let O=N.nodes.indexOf(U);if(O===-1)break;N.nodes.splice(O,1)}while(!0);continue e}}for(let h of p)if(!u.has(h.params)){let y=e.indexOf(h);e.splice(y,1)}if(w=w.concat(e),i&2)for(let[h,y]of a)for(let x of y){let $=h.indexOf(x);if($===-1||x.value==null)continue;let A=B(x.value),k=!1;if(I(A,O=>{if(O.kind!=="function"||O.value!=="color-mix")return;let L=!1,_=!1;if(I(O.nodes,z=>{if(z.kind=="word"&&z.value.toLowerCase()==="currentcolor"){_=!0,k=!0;return}let Y=z,q=null,ae=new Set;do{if(Y.kind!=="function"||Y.value!=="var")return;let oe=Y.nodes[0];if(!oe||oe.kind!=="word")return;let l=oe.value;if(ae.has(l)){L=!0;return}if(ae.add(l),k=!0,q=r.theme.resolveValue(null,[oe.value]),!q){L=!0;return}if(q.toLowerCase()==="currentcolor"){_=!0;return}q.startsWith("var(")?Y=B(q)[0]:Y=null}while(Y);return E.Replace({kind:"word",value:q})}),L||_){let z=O.nodes.findIndex(q=>q.kind==="separator"&&q.value.trim().includes(","));if(z===-1)return;let Y=O.nodes.length>z?O.nodes[z+1]:null;return Y?E.Replace(Y):void 0}else if(k){let z=O.nodes[2];z.kind==="word"&&(z.value==="oklab"||z.value==="oklch"||z.value==="lab"||z.value==="lch")&&(z.value="srgb")}}),!k)continue;let U={...x,value:Z(A)},N=J("@supports (color: color-mix(in lab, red, red))",[x]);N.src=x.src,h.splice($,1,U,N)}if(i&1){let h=[];if(f.length>0){let y=J(":root, :host",f);y.src=f[0].src,h.push(y)}if(m.length>0){let y=J("*, ::before, ::after, ::backdrop",m);y.src=m[0].src,h.push(y)}if(h.length>0){let y=w.findIndex(A=>!(A.kind==="comment"||A.kind==="at-rule"&&(A.name==="@charset"||A.name==="@import"))),x=F("@layer","properties",[]);x.src=h[0].src,w.splice(y<0?w.length:y,0,x);let $=J("@layer properties",[F("@supports","((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b))))",h)]);$.src=h[0].src,$.nodes[0].src=h[0].src,w.push($)}}return w}function re(t,r){let i=0,e={file:null,code:""};function n(a,p=0){let u="",f="  ".repeat(p);if(a.kind==="declaration"){if(u+=`${f}${a.property}: ${a.value}${a.important?" !important":""};
+`,r){i+=f.length;let m=i;i+=a.property.length,i+=2,i+=a.value?.length??0,a.important&&(i+=11);let d=i;i+=2,a.dst=[e,m,d]}}else if(a.kind==="rule"){if(u+=`${f}${a.selector} {
+`,r){i+=f.length;let m=i;i+=a.selector.length,i+=1;let d=i;a.dst=[e,m,d],i+=2}for(let m of a.nodes)u+=n(m,p+1);u+=`${f}}
+`,r&&(i+=f.length,i+=2)}else if(a.kind==="at-rule"){if(a.nodes.length===0){let m=`${f}${a.name} ${a.params};
+`;if(r){i+=f.length;let d=i;i+=a.name.length,i+=1,i+=a.params.length;let c=i;i+=2,a.dst=[e,d,c]}return m}if(u+=`${f}${a.name}${a.params?` ${a.params} `:" "}{
+`,r){i+=f.length;let m=i;i+=a.name.length,a.params&&(i+=1,i+=a.params.length),i+=1;let d=i;a.dst=[e,m,d],i+=2}for(let m of a.nodes)u+=n(m,p+1);u+=`${f}}
+`,r&&(i+=f.length,i+=2)}else if(a.kind==="comment"){if(u+=`${f}/*${a.value}*/
+`,r){i+=f.length;let m=i;i+=2+a.value.length+2;let d=i;a.dst=[e,m,d],i+=1}}else if(a.kind==="context"||a.kind==="at-root")return"";return u}let s="";for(let a of t)s+=n(a,0);return e.code=s,s}function an(t,r){let i=[];return I(t,(e,n)=>{if(r(e))return i=n.path(),i.push(e),E.Stop}),i}function Ar(t,r,i,e=new Set){if(e.has(t)||(e.add(t),r.getOptions(t)&24))return!0;{let s=i.get(t)??[];for(let a of s)if(Ar(a,r,i,e))return!0}return!1}function xr(t){return t.split(/[\s,]+/)}function ke(t){if(t.indexOf("(")===-1)return Ie(t);let r=B(t);return Ot(r),t=Z(r),t=Xt(t),t}function Ie(t,r=!1){let i="";for(let e=0;e<t.length;e++){let n=t[e];n==="\\"&&t[e+1]==="_"?(i+="_",e+=1):n==="_"&&!r?i+=" ":i+=n}return i}function Ot(t){for(let r of t)switch(r.kind){case"function":{if(r.value==="url"||r.value.endsWith("_url")){r.value=Ie(r.value);break}if(r.value==="var"||r.value.endsWith("_var")||r.value==="theme"||r.value.endsWith("_theme")){r.value=Ie(r.value);for(let i=0;i<r.nodes.length;i++){if(i==0&&r.nodes[i].kind==="word"){r.nodes[i].value=Ie(r.nodes[i].value,!0);continue}Ot([r.nodes[i]])}break}r.value=Ie(r.value),Ot(r.nodes);break}case"separator":case"word":{r.value=Ie(r.value);break}default:on(r)}}function on(t){throw new Error(`Unexpected value: ${t}`)}var Pt=new Uint8Array(256);function he(t){let r=0,i=t.length;for(let e=0;e<i;e++){let n=t.charCodeAt(e);switch(n){case 92:e+=1;break;case 39:case 34:for(;++e<i;){let s=t.charCodeAt(e);if(s===92){e+=1;continue}if(s===n)break}break;case 40:Pt[r]=41,r++;break;case 91:Pt[r]=93,r++;break;case 123:break;case 93:case 125:case 41:if(r===0)return!1;r>0&&n===Pt[r-1]&&r--;break;case 59:if(r===0)return!1;break}}return!0}var ln=58,Cr=45,$r=97,Sr=122,Dt=/^[a-zA-Z0-9_.%-]+$/;function Tr(t){switch(t.kind){case"arbitrary":return{kind:t.kind,property:t.property,value:t.value,modifier:t.modifier?{kind:t.modifier.kind,value:t.modifier.value}:null,variants:t.variants.map(_e),important:t.important,raw:t.raw};case"static":return{kind:t.kind,root:t.root,variants:t.variants.map(_e),important:t.important,raw:t.raw};case"functional":return{kind:t.kind,root:t.root,value:t.value?t.value.kind==="arbitrary"?{kind:t.value.kind,dataType:t.value.dataType,value:t.value.value}:{kind:t.value.kind,value:t.value.value,fraction:t.value.fraction}:null,modifier:t.modifier?{kind:t.modifier.kind,value:t.modifier.value}:null,variants:t.variants.map(_e),important:t.important,raw:t.raw};default:throw new Error("Unknown candidate kind")}}function _e(t){switch(t.kind){case"arbitrary":return{kind:t.kind,selector:t.selector,relative:t.relative};case"static":return{kind:t.kind,root:t.root};case"functional":return{kind:t.kind,root:t.root,value:t.value?{kind:t.value.kind,value:t.value.value}:null,modifier:t.modifier?{kind:t.modifier.kind,value:t.modifier.value}:null};case"compound":return{kind:t.kind,root:t.root,variant:_e(t.variant),modifier:t.modifier?{kind:t.modifier.kind,value:t.modifier.value}:null};default:throw new Error("Unknown variant kind")}}function*Vr(t,r){let i=j(t,":");if(r.theme.prefix){if(i.length===1||i[0]!==r.theme.prefix)return null;i.shift()}let e=i.pop(),n=[];for(let d=i.length-1;d>=0;--d){let c=r.parseVariant(i[d]);if(c===null)return;n.push(c)}let s=!1;e[e.length-1]==="!"?(s=!0,e=e.slice(0,-1)):e[0]==="!"&&(s=!0,e=e.slice(1)),r.utilities.has(e,"static")&&!e.includes("[")&&(yield{kind:"static",root:e,variants:n,important:s,raw:t});let[a,p=null,u]=j(e,"/");if(u)return;let f=p===null?null:It(p);if(p!==null&&f===null)return;if(a[0]==="["){if(a[a.length-1]!=="]")return;let d=a.charCodeAt(1);if(d!==Cr&&!(d>=$r&&d<=Sr))return;a=a.slice(1,-1);let c=a.indexOf(":");if(c===-1||c===0||c===a.length-1)return;let w=a.slice(0,c),h=ke(a.slice(c+1));if(!he(h))return;yield{kind:"arbitrary",property:w,value:h,modifier:f,variants:n,important:s,raw:t};return}let m;if(a[a.length-1]==="]"){let d=a.indexOf("-[");if(d===-1)return;let c=a.slice(0,d);if(!r.utilities.has(c,"functional"))return;let w=a.slice(d+1);m=[[c,w]]}else if(a[a.length-1]===")"){let d=a.indexOf("-(");if(d===-1)return;let c=a.slice(0,d);if(!r.utilities.has(c,"functional"))return;let w=a.slice(d+2,-1),h=j(w,":"),y=null;if(h.length===2&&(y=h[0],w=h[1]),w[0]!=="-"||w[1]!=="-"||!he(w))return;m=[[c,y===null?`[var(${w})]`:`[${y}:var(${w})]`]]}else m=Er(a,d=>r.utilities.has(d,"functional"));for(let[d,c]of m){let w={kind:"functional",root:d,modifier:f,value:null,variants:n,important:s,raw:t};if(c===null){yield w;continue}{let h=c.indexOf("[");if(h!==-1){if(c[c.length-1]!=="]")return;let x=ke(c.slice(h+1,-1));if(!he(x))continue;let $=null;for(let A=0;A<x.length;A++){let k=x.charCodeAt(A);if(k===ln){$=x.slice(0,A),x=x.slice(A+1);break}if(!(k===Cr||k>=$r&&k<=Sr))break}if(x.length===0||x.trim().length===0||$==="")continue;w.value={kind:"arbitrary",dataType:$||null,value:x}}else{let x=p===null||w.modifier?.kind==="arbitrary"?null:`${c}/${p}`;if(!Dt.test(c))continue;w.value={kind:"named",value:c,fraction:x}}}yield w}}function It(t){if(t[0]==="["&&t[t.length-1]==="]"){let r=ke(t.slice(1,-1));return!he(r)||r.length===0||r.trim().length===0?null:{kind:"arbitrary",value:r}}return t[0]==="("&&t[t.length-1]===")"?(t=t.slice(1,-1),t[0]!=="-"||t[1]!=="-"||!he(t)?null:(t=`var(${t})`,{kind:"arbitrary",value:ke(t)})):Dt.test(t)?{kind:"named",value:t}:null}function Nr(t,r){if(t[0]==="["&&t[t.length-1]==="]"){if(t[1]==="@"&&t.includes("&"))return null;let i=ke(t.slice(1,-1));if(!he(i)||i.length===0||i.trim().length===0)return null;let e=i[0]===">"||i[0]==="+"||i[0]==="~";return!e&&i[0]!=="@"&&!i.includes("&")&&(i=`&:is(${i})`),{kind:"arbitrary",selector:i,relative:e}}{let[i,e=null,n]=j(t,"/");if(n)return null;let s=Er(i,a=>r.variants.has(a));for(let[a,p]of s)switch(r.variants.kind(a)){case"static":return p!==null||e!==null?null:{kind:"static",root:a};case"functional":{let u=e===null?null:It(e);if(e!==null&&u===null)return null;if(p===null)return{kind:"functional",root:a,modifier:u,value:null};if(p[p.length-1]==="]"){if(p[0]!=="[")continue;let f=ke(p.slice(1,-1));return!he(f)||f.length===0||f.trim().length===0?null:{kind:"functional",root:a,modifier:u,value:{kind:"arbitrary",value:f}}}if(p[p.length-1]===")"){if(p[0]!=="(")continue;let f=ke(p.slice(1,-1));return!he(f)||f.length===0||f.trim().length===0||f[0]!=="-"||f[1]!=="-"?null:{kind:"functional",root:a,modifier:u,value:{kind:"arbitrary",value:`var(${f})`}}}if(!Dt.test(p))continue;return{kind:"functional",root:a,modifier:u,value:{kind:"named",value:p}}}case"compound":{if(p===null)return null;e&&(a==="not"||a==="has"||a==="in")&&(p=`${p}/${e}`,e=null);let u=r.parseVariant(p);if(u===null||!r.variants.compoundsWith(a,u))return null;let f=e===null?null:It(e);return e!==null&&f===null?null:{kind:"compound",root:a,modifier:f,variant:u}}}}return null}function*Er(t,r){r(t)&&(yield[t,null]);let i=t.lastIndexOf("-");for(;i>0;){let e=t.slice(0,i);if(r(e)){let n=[e,t.slice(i+1)];if(n[1]===""||n[0]==="@"&&r("@")&&t[i]==="-")break;yield n}i=t.lastIndexOf("-",i-1)}t[0]==="@"&&r("@")&&(yield["@",t.slice(1)])}function Rr(t,r){let i=[];for(let n of r.variants)i.unshift(ut(n));t.theme.prefix&&i.unshift(t.theme.prefix);let e="";if(r.kind==="static"&&(e+=r.root),r.kind==="functional"&&(e+=r.root,r.value))if(r.value.kind==="arbitrary"){if(r.value!==null){let n=Kt(r.value.value),s=n?r.value.value.slice(4,-1):r.value.value,[a,p]=n?["(",")"]:["[","]"];r.value.dataType?e+=`-${a}${r.value.dataType}:${be(s)}${p}`:e+=`-${a}${be(s)}${p}`}}else r.value.kind==="named"&&(e+=`-${r.value.value}`);return r.kind==="arbitrary"&&(e+=`[${r.property}:${be(r.value)}]`),(r.kind==="arbitrary"||r.kind==="functional")&&(e+=He(r.modifier)),r.important&&(e+="!"),i.push(e),i.join(":")}function He(t){if(t===null)return"";let r=Kt(t.value),i=r?t.value.slice(4,-1):t.value,[e,n]=r?["(",")"]:["[","]"];return t.kind==="arbitrary"?`/${e}${be(i)}${n}`:t.kind==="named"?`/${t.value}`:""}function ut(t){if(t.kind==="static")return t.root;if(t.kind==="arbitrary")return`[${be(fn(t.selector))}]`;let r="";if(t.kind==="functional"){r+=t.root;let i=t.root!=="@";if(t.value)if(t.value.kind==="arbitrary"){let e=Kt(t.value.value),n=e?t.value.value.slice(4,-1):t.value.value,[s,a]=e?["(",")"]:["[","]"];r+=`${i?"-":""}${s}${be(n)}${a}`}else t.value.kind==="named"&&(r+=`${i?"-":""}${t.value.value}`)}return t.kind==="compound"&&(r+=t.root,r+="-",r+=ut(t.variant)),(t.kind==="functional"||t.kind==="compound")&&(r+=He(t.modifier)),r}var sn=new K(t=>{let r=B(t),i=new Set;return I(r,(e,n)=>{let s=n.parent===null?r:n.parent.nodes??[];if(e.kind==="word"&&(e.value==="+"||e.value==="-"||e.value==="*"||e.value==="/")){let a=s.indexOf(e)??-1;if(a===-1)return;let p=s[a-1];if(p?.kind!=="separator"||p.value!==" ")return;let u=s[a+1];if(u?.kind!=="separator"||u.value!==" ")return;i.add(p),i.add(u)}else e.kind==="separator"&&e.value.length>0&&e.value.trim()===""?(s[0]===e||s[s.length-1]===e)&&i.add(e):e.kind==="separator"&&e.value.trim()===","&&(e.value=",")}),i.size>0&&I(r,e=>{if(i.has(e))return i.delete(e),E.ReplaceSkip([])}),_t(r),Z(r)});function be(t){return sn.get(t)}var un=new K(t=>{let r=B(t);return r.length===3&&r[0].kind==="word"&&r[0].value==="&"&&r[1].kind==="separator"&&r[1].value===":"&&r[2].kind==="function"&&r[2].value==="is"?Z(r[2].nodes):t});function fn(t){return un.get(t)}function _t(t){for(let r of t)switch(r.kind){case"function":{if(r.value==="url"||r.value.endsWith("_url")){r.value=Ze(r.value);break}if(r.value==="var"||r.value.endsWith("_var")||r.value==="theme"||r.value.endsWith("_theme")){r.value=Ze(r.value);for(let i=0;i<r.nodes.length;i++)_t([r.nodes[i]]);break}r.value=Ze(r.value),_t(r.nodes);break}case"separator":r.value=Ze(r.value);break;case"word":{(r.value[0]!=="-"||r.value[1]!=="-")&&(r.value=Ze(r.value));break}default:pn(r)}}var cn=new K(t=>{let r=B(t);return r.length===1&&r[0].kind==="function"&&r[0].value==="var"});function Kt(t){return cn.get(t)}function pn(t){throw new Error(`Unexpected value: ${t}`)}function Ze(t){return t.replaceAll("_",String.raw`\_`).replaceAll(" ","_")}function Ve(t,r,i){if(t===r)return 0;let e=t.indexOf("("),n=r.indexOf("("),s=e===-1?t.replace(/[\d.]+/g,""):t.slice(0,e),a=n===-1?r.replace(/[\d.]+/g,""):r.slice(0,n),p=(s===a?0:s<a?-1:1)||(i==="asc"?parseInt(t)-parseInt(r):parseInt(r)-parseInt(t));return Number.isNaN(p)?t<r?-1:1:p}var dn=new Set(["inset","inherit","initial","revert","unset"]),Or=/^-?(\d+|\.\d+)(.*?)$/g;function Je(t,r){return j(t,",").map(e=>{e=e.trim();let n=j(e," ").filter(f=>f.trim()!==""),s=null,a=null,p=null;for(let f of n)dn.has(f)||(Or.test(f)?(a===null?a=f:p===null&&(p=f),Or.lastIndex=0):s===null&&(s=f));if(a===null||p===null)return e;let u=r(s??"currentcolor");return s!==null?e.replace(s,u):`${e} ${u}`}).join(", ")}var gn=/^-?[a-z][a-zA-Z0-9/%._-]*$/,hn=/^-?[a-z][a-zA-Z0-9/%._-]*-\*$/,ct=["0","0.5","1","1.5","2","2.5","3","3.5","4","5","6","7","8","9","10","11","12","14","16","20","24","28","32","36","40","44","48","52","56","60","64","72","80","96"],Ut=class{utilities=new K(()=>[]);completions=new Map;static(r,i){this.utilities.get(r).push({kind:"static",compileFn:i})}functional(r,i,e){this.utilities.get(r).push({kind:"functional",compileFn:i,options:e})}has(r,i){return this.utilities.has(r)&&this.utilities.get(r).some(e=>e.kind===i)}get(r){return this.utilities.has(r)?this.utilities.get(r):[]}getCompletions(r){return this.has(r,"static")?this.completions.get(r)?.()??[{supportsNegative:!1,values:[],modifiers:[]}]:this.completions.get(r)?.()??[]}suggest(r,i){let e=this.completions.get(r);e?this.completions.set(r,()=>[...e?.(),...i?.()]):this.completions.set(r,i)}keys(r){let i=[];for(let[e,n]of this.utilities.entries())for(let s of n)if(s.kind===r){i.push(e);break}return i}};function S(t,r,i){return F("@property",t,[o("syntax",i?`"${i}"`:'"*"'),o("inherits","false"),...r?[o("initial-value",r)]:[]])}function Q(t,r){if(r===null)return t;let i=Number(r);return Number.isNaN(i)||(r=`${i*100}%`),r==="100%"?t:`color-mix(in oklab, ${t} ${r}, transparent)`}function Ir(t,r){let i=Number(r);return Number.isNaN(i)||(r=`${i*100}%`),`oklab(from ${t} l a b / ${r})`}function X(t,r,i){if(!r)return t;if(r.kind==="arbitrary")return Q(t,r.value);let e=i.resolve(r.value,["--opacity"]);return e?Q(t,e):et(r.value)?Q(t,`${r.value}%`):null}function te(t,r,i){let e=null;switch(t.value.value){case"inherit":{e="inherit";break}case"transparent":{e="transparent";break}case"current":{e="currentcolor";break}default:{e=r.resolve(t.value.value,i);break}}return e?X(e,t.modifier,r):null}var _r=/(\d+)_(\d+)/g;function Dr(t){let r=new Ut;function i(l,g){function*v(b){for(let T of t.keysInNamespaces(b))yield T.replace(_r,(D,V,R)=>`${V}.${R}`)}let C=["1/2","1/3","2/3","1/4","2/4","3/4","1/5","2/5","3/5","4/5","1/6","2/6","3/6","4/6","5/6","1/12","2/12","3/12","4/12","5/12","6/12","7/12","8/12","9/12","10/12","11/12"];r.suggest(l,()=>{let b=[];for(let T of g()){if(typeof T=="string"){b.push({values:[T],modifiers:[]});continue}let D=[...T.values??[],...v(T.valueThemeKeys??[])],V=[...T.modifiers??[],...v(T.modifierThemeKeys??[])];T.supportsFractions&&D.push(...C),T.hasDefaultValue&&D.unshift(null),b.push({supportsNegative:T.supportsNegative,values:D,modifiers:V})}return b})}function e(l,g){r.static(l,()=>g.map(v=>typeof v=="function"?v():o(v[0],v[1])))}function n(l,g){function v({negative:C}){return b=>{let T=null,D=null;if(b.value)if(b.value.kind==="arbitrary"){if(b.modifier)return;T=b.value.value,D=b.value.dataType}else{if(T=t.resolve(b.value.fraction??b.value.value,g.themeKeys??[]),T===null&&g.supportsFractions&&b.value.fraction){let[V,R]=j(b.value.fraction,"/");if(!P(V)||!P(R))return;T=`calc(${b.value.fraction} * 100%)`}if(T===null&&C&&g.handleNegativeBareValue){if(T=g.handleNegativeBareValue(b.value),!T?.includes("/")&&b.modifier)return;if(T!==null)return g.handle(T,null)}if(T===null&&g.handleBareValue&&(T=g.handleBareValue(b.value),!T?.includes("/")&&b.modifier))return;if(T===null&&!C&&g.staticValues&&!b.modifier){let V=g.staticValues[b.value.value];if(V)return V.map(ee)}}else{if(b.modifier)return;T=g.defaultValue!==void 0?g.defaultValue:t.resolve(null,g.themeKeys??[])}if(T!==null)return g.handle(C?`calc(${T} * -1)`:T,D)}}if(g.supportsNegative&&r.functional(`-${l}`,v({negative:!0})),r.functional(l,v({negative:!1})),i(l,()=>[{supportsNegative:g.supportsNegative,valueThemeKeys:g.themeKeys??[],hasDefaultValue:g.defaultValue!==void 0&&g.defaultValue!==null,supportsFractions:g.supportsFractions}]),g.staticValues&&Object.keys(g.staticValues).length>0){let C=Object.keys(g.staticValues);i(l,()=>[{values:C}])}}function s(l,g){r.functional(l,v=>{if(!v.value)return;let C=null;if(v.value.kind==="arbitrary"?(C=v.value.value,C=X(C,v.modifier,t)):C=te(v,t,g.themeKeys),C!==null)return g.handle(C)}),i(l,()=>[{values:["current","inherit","transparent"],valueThemeKeys:g.themeKeys,modifiers:Array.from({length:21},(v,C)=>`${C*5}`)}])}function a(l,g,v,{supportsNegative:C=!1,supportsFractions:b=!1,staticValues:T}={}){C&&r.static(`-${l}-px`,()=>v("-1px")),r.static(`${l}-px`,()=>v("1px")),n(l,{themeKeys:g,supportsFractions:b,supportsNegative:C,defaultValue:null,handleBareValue:({value:D})=>{let V=t.resolve(null,["--spacing"]);return!V||!ie(D)?null:`calc(${V} * ${D})`},handleNegativeBareValue:({value:D})=>{let V=t.resolve(null,["--spacing"]);return!V||!ie(D)?null:`calc(${V} * -${D})`},handle:v,staticValues:T}),i(l,()=>[{values:t.get(["--spacing"])?ct:[],supportsNegative:C,supportsFractions:b,valueThemeKeys:g}])}e("sr-only",[["position","absolute"],["width","1px"],["height","1px"],["padding","0"],["margin","-1px"],["overflow","hidden"],["clip-path","inset(50%)"],["white-space","nowrap"],["border-width","0"]]),e("not-sr-only",[["position","static"],["width","auto"],["height","auto"],["padding","0"],["margin","0"],["overflow","visible"],["clip-path","none"],["white-space","normal"]]),e("pointer-events-none",[["pointer-events","none"]]),e("pointer-events-auto",[["pointer-events","auto"]]),e("visible",[["visibility","visible"]]),e("invisible",[["visibility","hidden"]]),e("collapse",[["visibility","collapse"]]),e("static",[["position","static"]]),e("fixed",[["position","fixed"]]),e("absolute",[["position","absolute"]]),e("relative",[["position","relative"]]),e("sticky",[["position","sticky"]]);for(let[l,g]of[["inset","inset"],["inset-x","inset-inline"],["inset-y","inset-block"],["start","inset-inline-start"],["end","inset-inline-end"],["top","top"],["right","right"],["bottom","bottom"],["left","left"]])e(`${l}-auto`,[[g,"auto"]]),e(`${l}-full`,[[g,"100%"]]),e(`-${l}-full`,[[g,"-100%"]]),a(l,["--inset","--spacing"],v=>[o(g,v)],{supportsNegative:!0,supportsFractions:!0});e("isolate",[["isolation","isolate"]]),e("isolation-auto",[["isolation","auto"]]),n("z",{supportsNegative:!0,handleBareValue:({value:l})=>P(l)?l:null,themeKeys:["--z-index"],handle:l=>[o("z-index",l)],staticValues:{auto:[o("z-index","auto")]}}),i("z",()=>[{supportsNegative:!0,values:["0","10","20","30","40","50"],valueThemeKeys:["--z-index"]}]),n("order",{supportsNegative:!0,handleBareValue:({value:l})=>P(l)?l:null,themeKeys:["--order"],handle:l=>[o("order",l)],staticValues:{first:[o("order","-9999")],last:[o("order","9999")]}}),i("order",()=>[{supportsNegative:!0,values:Array.from({length:12},(l,g)=>`${g+1}`),valueThemeKeys:["--order"]}]),n("col",{supportsNegative:!0,handleBareValue:({value:l})=>P(l)?l:null,themeKeys:["--grid-column"],handle:l=>[o("grid-column",l)],staticValues:{auto:[o("grid-column","auto")]}}),n("col-span",{handleBareValue:({value:l})=>P(l)?l:null,handle:l=>[o("grid-column",`span ${l} / span ${l}`)],staticValues:{full:[o("grid-column","1 / -1")]}}),n("col-start",{supportsNegative:!0,handleBareValue:({value:l})=>P(l)?l:null,themeKeys:["--grid-column-start"],handle:l=>[o("grid-column-start",l)],staticValues:{auto:[o("grid-column-start","auto")]}}),n("col-end",{supportsNegative:!0,handleBareValue:({value:l})=>P(l)?l:null,themeKeys:["--grid-column-end"],handle:l=>[o("grid-column-end",l)],staticValues:{auto:[o("grid-column-end","auto")]}}),i("col-span",()=>[{values:Array.from({length:12},(l,g)=>`${g+1}`),valueThemeKeys:[]}]),i("col-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(l,g)=>`${g+1}`),valueThemeKeys:["--grid-column-start"]}]),i("col-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(l,g)=>`${g+1}`),valueThemeKeys:["--grid-column-end"]}]),n("row",{supportsNegative:!0,handleBareValue:({value:l})=>P(l)?l:null,themeKeys:["--grid-row"],handle:l=>[o("grid-row",l)],staticValues:{auto:[o("grid-row","auto")]}}),n("row-span",{themeKeys:[],handleBareValue:({value:l})=>P(l)?l:null,handle:l=>[o("grid-row",`span ${l} / span ${l}`)],staticValues:{full:[o("grid-row","1 / -1")]}}),n("row-start",{supportsNegative:!0,handleBareValue:({value:l})=>P(l)?l:null,themeKeys:["--grid-row-start"],handle:l=>[o("grid-row-start",l)],staticValues:{auto:[o("grid-row-start","auto")]}}),n("row-end",{supportsNegative:!0,handleBareValue:({value:l})=>P(l)?l:null,themeKeys:["--grid-row-end"],handle:l=>[o("grid-row-end",l)],staticValues:{auto:[o("grid-row-end","auto")]}}),i("row-span",()=>[{values:Array.from({length:12},(l,g)=>`${g+1}`),valueThemeKeys:[]}]),i("row-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(l,g)=>`${g+1}`),valueThemeKeys:["--grid-row-start"]}]),i("row-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(l,g)=>`${g+1}`),valueThemeKeys:["--grid-row-end"]}]),e("float-start",[["float","inline-start"]]),e("float-end",[["float","inline-end"]]),e("float-right",[["float","right"]]),e("float-left",[["float","left"]]),e("float-none",[["float","none"]]),e("clear-start",[["clear","inline-start"]]),e("clear-end",[["clear","inline-end"]]),e("clear-right",[["clear","right"]]),e("clear-left",[["clear","left"]]),e("clear-both",[["clear","both"]]),e("clear-none",[["clear","none"]]);for(let[l,g]of[["m","margin"],["mx","margin-inline"],["my","margin-block"],["ms","margin-inline-start"],["me","margin-inline-end"],["mt","margin-top"],["mr","margin-right"],["mb","margin-bottom"],["ml","margin-left"]])e(`${l}-auto`,[[g,"auto"]]),a(l,["--margin","--spacing"],v=>[o(g,v)],{supportsNegative:!0});e("box-border",[["box-sizing","border-box"]]),e("box-content",[["box-sizing","content-box"]]),n("line-clamp",{themeKeys:["--line-clamp"],handleBareValue:({value:l})=>P(l)?l:null,handle:l=>[o("overflow","hidden"),o("display","-webkit-box"),o("-webkit-box-orient","vertical"),o("-webkit-line-clamp",l)],staticValues:{none:[o("overflow","visible"),o("display","block"),o("-webkit-box-orient","horizontal"),o("-webkit-line-clamp","unset")]}}),i("line-clamp",()=>[{values:["1","2","3","4","5","6"],valueThemeKeys:["--line-clamp"]}]),e("block",[["display","block"]]),e("inline-block",[["display","inline-block"]]),e("inline",[["display","inline"]]),e("hidden",[["display","none"]]),e("inline-flex",[["display","inline-flex"]]),e("table",[["display","table"]]),e("inline-table",[["display","inline-table"]]),e("table-caption",[["display","table-caption"]]),e("table-cell",[["display","table-cell"]]),e("table-column",[["display","table-column"]]),e("table-column-group",[["display","table-column-group"]]),e("table-footer-group",[["display","table-footer-group"]]),e("table-header-group",[["display","table-header-group"]]),e("table-row-group",[["display","table-row-group"]]),e("table-row",[["display","table-row"]]),e("flow-root",[["display","flow-root"]]),e("flex",[["display","flex"]]),e("grid",[["display","grid"]]),e("inline-grid",[["display","inline-grid"]]),e("contents",[["display","contents"]]),e("list-item",[["display","list-item"]]),e("field-sizing-content",[["field-sizing","content"]]),e("field-sizing-fixed",[["field-sizing","fixed"]]),n("aspect",{themeKeys:["--aspect"],handleBareValue:({fraction:l})=>{if(l===null)return null;let[g,v]=j(l,"/");return!P(g)||!P(v)?null:l},handle:l=>[o("aspect-ratio",l)],staticValues:{auto:[o("aspect-ratio","auto")],square:[o("aspect-ratio","1 / 1")]}});for(let[l,g]of[["full","100%"],["svw","100svw"],["lvw","100lvw"],["dvw","100dvw"],["svh","100svh"],["lvh","100lvh"],["dvh","100dvh"],["min","min-content"],["max","max-content"],["fit","fit-content"]])e(`size-${l}`,[["--tw-sort","size"],["width",g],["height",g]]),e(`w-${l}`,[["width",g]]),e(`h-${l}`,[["height",g]]),e(`min-w-${l}`,[["min-width",g]]),e(`min-h-${l}`,[["min-height",g]]),e(`max-w-${l}`,[["max-width",g]]),e(`max-h-${l}`,[["max-height",g]]);e("size-auto",[["--tw-sort","size"],["width","auto"],["height","auto"]]),e("w-auto",[["width","auto"]]),e("h-auto",[["height","auto"]]),e("min-w-auto",[["min-width","auto"]]),e("min-h-auto",[["min-height","auto"]]),e("h-lh",[["height","1lh"]]),e("min-h-lh",[["min-height","1lh"]]),e("max-h-lh",[["max-height","1lh"]]),e("w-screen",[["width","100vw"]]),e("min-w-screen",[["min-width","100vw"]]),e("max-w-screen",[["max-width","100vw"]]),e("h-screen",[["height","100vh"]]),e("min-h-screen",[["min-height","100vh"]]),e("max-h-screen",[["max-height","100vh"]]),e("max-w-none",[["max-width","none"]]),e("max-h-none",[["max-height","none"]]),a("size",["--size","--spacing"],l=>[o("--tw-sort","size"),o("width",l),o("height",l)],{supportsFractions:!0});for(let[l,g,v]of[["w",["--width","--spacing","--container"],"width"],["min-w",["--min-width","--spacing","--container"],"min-width"],["max-w",["--max-width","--spacing","--container"],"max-width"],["h",["--height","--spacing"],"height"],["min-h",["--min-height","--height","--spacing"],"min-height"],["max-h",["--max-height","--height","--spacing"],"max-height"]])a(l,g,C=>[o(v,C)],{supportsFractions:!0});r.static("container",()=>{let l=[...t.namespace("--breakpoint").values()];l.sort((v,C)=>Ve(v,C,"asc"));let g=[o("--tw-sort","--tw-container-component"),o("width","100%")];for(let v of l)g.push(F("@media",`(width >= ${v})`,[o("max-width",v)]));return g}),e("flex-auto",[["flex","auto"]]),e("flex-initial",[["flex","0 auto"]]),e("flex-none",[["flex","none"]]),r.functional("flex",l=>{if(l.value){if(l.value.kind==="arbitrary")return l.modifier?void 0:[o("flex",l.value.value)];if(l.value.fraction){let[g,v]=j(l.value.fraction,"/");return!P(g)||!P(v)?void 0:[o("flex",`calc(${l.value.fraction} * 100%)`)]}if(P(l.value.value))return l.modifier?void 0:[o("flex",l.value.value)]}}),i("flex",()=>[{supportsFractions:!0},{values:Array.from({length:12},(l,g)=>`${g+1}`)}]),n("shrink",{defaultValue:"1",handleBareValue:({value:l})=>P(l)?l:null,handle:l=>[o("flex-shrink",l)]}),n("grow",{defaultValue:"1",handleBareValue:({value:l})=>P(l)?l:null,handle:l=>[o("flex-grow",l)]}),i("shrink",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),i("grow",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),e("basis-auto",[["flex-basis","auto"]]),e("basis-full",[["flex-basis","100%"]]),a("basis",["--flex-basis","--spacing","--container"],l=>[o("flex-basis",l)],{supportsFractions:!0}),e("table-auto",[["table-layout","auto"]]),e("table-fixed",[["table-layout","fixed"]]),e("caption-top",[["caption-side","top"]]),e("caption-bottom",[["caption-side","bottom"]]),e("border-collapse",[["border-collapse","collapse"]]),e("border-separate",[["border-collapse","separate"]]);let p=()=>W([S("--tw-border-spacing-x","0","<length>"),S("--tw-border-spacing-y","0","<length>")]);a("border-spacing",["--border-spacing","--spacing"],l=>[p(),o("--tw-border-spacing-x",l),o("--tw-border-spacing-y",l),o("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-x",["--border-spacing","--spacing"],l=>[p(),o("--tw-border-spacing-x",l),o("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-y",["--border-spacing","--spacing"],l=>[p(),o("--tw-border-spacing-y",l),o("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),n("origin",{themeKeys:["--transform-origin"],handle:l=>[o("transform-origin",l)],staticValues:{center:[o("transform-origin","center")],top:[o("transform-origin","top")],"top-right":[o("transform-origin","100% 0")],right:[o("transform-origin","100%")],"bottom-right":[o("transform-origin","100% 100%")],bottom:[o("transform-origin","bottom")],"bottom-left":[o("transform-origin","0 100%")],left:[o("transform-origin","0")],"top-left":[o("transform-origin","0 0")]}}),n("perspective-origin",{themeKeys:["--perspective-origin"],handle:l=>[o("perspective-origin",l)],staticValues:{center:[o("perspective-origin","center")],top:[o("perspective-origin","top")],"top-right":[o("perspective-origin","100% 0")],right:[o("perspective-origin","100%")],"bottom-right":[o("perspective-origin","100% 100%")],bottom:[o("perspective-origin","bottom")],"bottom-left":[o("perspective-origin","0 100%")],left:[o("perspective-origin","0")],"top-left":[o("perspective-origin","0 0")]}}),n("perspective",{themeKeys:["--perspective"],handle:l=>[o("perspective",l)],staticValues:{none:[o("perspective","none")]}});let u=()=>W([S("--tw-translate-x","0"),S("--tw-translate-y","0"),S("--tw-translate-z","0")]);e("translate-none",[["translate","none"]]),e("-translate-full",[u,["--tw-translate-x","-100%"],["--tw-translate-y","-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e("translate-full",[u,["--tw-translate-x","100%"],["--tw-translate-y","100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a("translate",["--translate","--spacing"],l=>[u(),o("--tw-translate-x",l),o("--tw-translate-y",l),o("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});for(let l of["x","y"])e(`-translate-${l}-full`,[u,[`--tw-translate-${l}`,"-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e(`translate-${l}-full`,[u,[`--tw-translate-${l}`,"100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a(`translate-${l}`,["--translate","--spacing"],g=>[u(),o(`--tw-translate-${l}`,g),o("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});a("translate-z",["--translate","--spacing"],l=>[u(),o("--tw-translate-z",l),o("translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)")],{supportsNegative:!0}),e("translate-3d",[u,["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]);let f=()=>W([S("--tw-scale-x","1"),S("--tw-scale-y","1"),S("--tw-scale-z","1")]);e("scale-none",[["scale","none"]]);function m({negative:l}){return g=>{if(!g.value||g.modifier)return;let v;return g.value.kind==="arbitrary"?(v=g.value.value,v=l?`calc(${v} * -1)`:v,[o("scale",v)]):(v=t.resolve(g.value.value,["--scale"]),!v&&P(g.value.value)&&(v=`${g.value.value}%`),v?(v=l?`calc(${v} * -1)`:v,[f(),o("--tw-scale-x",v),o("--tw-scale-y",v),o("--tw-scale-z",v),o("scale","var(--tw-scale-x) var(--tw-scale-y)")]):void 0)}}r.functional("-scale",m({negative:!0})),r.functional("scale",m({negative:!1})),i("scale",()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);for(let l of["x","y","z"])n(`scale-${l}`,{supportsNegative:!0,themeKeys:["--scale"],handleBareValue:({value:g})=>P(g)?`${g}%`:null,handle:g=>[f(),o(`--tw-scale-${l}`,g),o("scale",`var(--tw-scale-x) var(--tw-scale-y)${l==="z"?" var(--tw-scale-z)":""}`)]}),i(`scale-${l}`,()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);e("scale-3d",[f,["scale","var(--tw-scale-x) var(--tw-scale-y) var(--tw-scale-z)"]]),e("rotate-none",[["rotate","none"]]);function d({negative:l}){return g=>{if(!g.value||g.modifier)return;let v;if(g.value.kind==="arbitrary"){v=g.value.value;let C=g.value.dataType??H(v,["angle","vector"]);if(C==="vector")return[o("rotate",`${v} var(--tw-rotate)`)];if(C!=="angle")return[o("rotate",l?`calc(${v} * -1)`:v)]}else if(v=t.resolve(g.value.value,["--rotate"]),!v&&P(g.value.value)&&(v=`${g.value.value}deg`),!v)return;return[o("rotate",l?`calc(${v} * -1)`:v)]}}r.functional("-rotate",d({negative:!0})),r.functional("rotate",d({negative:!1})),i("rotate",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);{let l=["var(--tw-rotate-x,)","var(--tw-rotate-y,)","var(--tw-rotate-z,)","var(--tw-skew-x,)","var(--tw-skew-y,)"].join(" "),g=()=>W([S("--tw-rotate-x"),S("--tw-rotate-y"),S("--tw-rotate-z"),S("--tw-skew-x"),S("--tw-skew-y")]);for(let v of["x","y","z"])n(`rotate-${v}`,{supportsNegative:!0,themeKeys:["--rotate"],handleBareValue:({value:C})=>P(C)?`${C}deg`:null,handle:C=>[g(),o(`--tw-rotate-${v}`,`rotate${v.toUpperCase()}(${C})`),o("transform",l)]}),i(`rotate-${v}`,()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);n("skew",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:v})=>P(v)?`${v}deg`:null,handle:v=>[g(),o("--tw-skew-x",`skewX(${v})`),o("--tw-skew-y",`skewY(${v})`),o("transform",l)]}),n("skew-x",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:v})=>P(v)?`${v}deg`:null,handle:v=>[g(),o("--tw-skew-x",`skewX(${v})`),o("transform",l)]}),n("skew-y",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:v})=>P(v)?`${v}deg`:null,handle:v=>[g(),o("--tw-skew-y",`skewY(${v})`),o("transform",l)]}),i("skew",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),i("skew-x",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),i("skew-y",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),r.functional("transform",v=>{if(v.modifier)return;let C=null;if(v.value?v.value.kind==="arbitrary"&&(C=v.value.value):C=l,C!==null)return[g(),o("transform",C)]}),i("transform",()=>[{hasDefaultValue:!0}]),e("transform-cpu",[["transform",l]]),e("transform-gpu",[["transform",`translateZ(0) ${l}`]]),e("transform-none",[["transform","none"]])}e("transform-flat",[["transform-style","flat"]]),e("transform-3d",[["transform-style","preserve-3d"]]),e("transform-content",[["transform-box","content-box"]]),e("transform-border",[["transform-box","border-box"]]),e("transform-fill",[["transform-box","fill-box"]]),e("transform-stroke",[["transform-box","stroke-box"]]),e("transform-view",[["transform-box","view-box"]]),e("backface-visible",[["backface-visibility","visible"]]),e("backface-hidden",[["backface-visibility","hidden"]]);for(let l of["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out"])e(`cursor-${l}`,[["cursor",l]]);n("cursor",{themeKeys:["--cursor"],handle:l=>[o("cursor",l)]});for(let l of["auto","none","manipulation"])e(`touch-${l}`,[["touch-action",l]]);let c=()=>W([S("--tw-pan-x"),S("--tw-pan-y"),S("--tw-pinch-zoom")]);for(let l of["x","left","right"])e(`touch-pan-${l}`,[c,["--tw-pan-x",`pan-${l}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let l of["y","up","down"])e(`touch-pan-${l}`,[c,["--tw-pan-y",`pan-${l}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);e("touch-pinch-zoom",[c,["--tw-pinch-zoom","pinch-zoom"],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let l of["none","text","all","auto"])e(`select-${l}`,[["-webkit-user-select",l],["user-select",l]]);e("resize-none",[["resize","none"]]),e("resize-x",[["resize","horizontal"]]),e("resize-y",[["resize","vertical"]]),e("resize",[["resize","both"]]),e("snap-none",[["scroll-snap-type","none"]]);let w=()=>W([S("--tw-scroll-snap-strictness","proximity","*")]);for(let l of["x","y","both"])e(`snap-${l}`,[w,["scroll-snap-type",`${l} var(--tw-scroll-snap-strictness)`]]);e("snap-mandatory",[w,["--tw-scroll-snap-strictness","mandatory"]]),e("snap-proximity",[w,["--tw-scroll-snap-strictness","proximity"]]),e("snap-align-none",[["scroll-snap-align","none"]]),e("snap-start",[["scroll-snap-align","start"]]),e("snap-end",[["scroll-snap-align","end"]]),e("snap-center",[["scroll-snap-align","center"]]),e("snap-normal",[["scroll-snap-stop","normal"]]),e("snap-always",[["scroll-snap-stop","always"]]);for(let[l,g]of[["scroll-m","scroll-margin"],["scroll-mx","scroll-margin-inline"],["scroll-my","scroll-margin-block"],["scroll-ms","scroll-margin-inline-start"],["scroll-me","scroll-margin-inline-end"],["scroll-mt","scroll-margin-top"],["scroll-mr","scroll-margin-right"],["scroll-mb","scroll-margin-bottom"],["scroll-ml","scroll-margin-left"]])a(l,["--scroll-margin","--spacing"],v=>[o(g,v)],{supportsNegative:!0});for(let[l,g]of[["scroll-p","scroll-padding"],["scroll-px","scroll-padding-inline"],["scroll-py","scroll-padding-block"],["scroll-ps","scroll-padding-inline-start"],["scroll-pe","scroll-padding-inline-end"],["scroll-pt","scroll-padding-top"],["scroll-pr","scroll-padding-right"],["scroll-pb","scroll-padding-bottom"],["scroll-pl","scroll-padding-left"]])a(l,["--scroll-padding","--spacing"],v=>[o(g,v)]);e("list-inside",[["list-style-position","inside"]]),e("list-outside",[["list-style-position","outside"]]),n("list",{themeKeys:["--list-style-type"],handle:l=>[o("list-style-type",l)],staticValues:{none:[o("list-style-type","none")],disc:[o("list-style-type","disc")],decimal:[o("list-style-type","decimal")]}}),n("list-image",{themeKeys:["--list-style-image"],handle:l=>[o("list-style-image",l)],staticValues:{none:[o("list-style-image","none")]}}),e("appearance-none",[["appearance","none"]]),e("appearance-auto",[["appearance","auto"]]),e("scheme-normal",[["color-scheme","normal"]]),e("scheme-dark",[["color-scheme","dark"]]),e("scheme-light",[["color-scheme","light"]]),e("scheme-light-dark",[["color-scheme","light dark"]]),e("scheme-only-dark",[["color-scheme","only dark"]]),e("scheme-only-light",[["color-scheme","only light"]]),n("columns",{themeKeys:["--columns","--container"],handleBareValue:({value:l})=>P(l)?l:null,handle:l=>[o("columns",l)],staticValues:{auto:[o("columns","auto")]}}),i("columns",()=>[{values:Array.from({length:12},(l,g)=>`${g+1}`),valueThemeKeys:["--columns","--container"]}]);for(let l of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-before-${l}`,[["break-before",l]]);for(let l of["auto","avoid","avoid-page","avoid-column"])e(`break-inside-${l}`,[["break-inside",l]]);for(let l of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-after-${l}`,[["break-after",l]]);e("grid-flow-row",[["grid-auto-flow","row"]]),e("grid-flow-col",[["grid-auto-flow","column"]]),e("grid-flow-dense",[["grid-auto-flow","dense"]]),e("grid-flow-row-dense",[["grid-auto-flow","row dense"]]),e("grid-flow-col-dense",[["grid-auto-flow","column dense"]]),n("auto-cols",{themeKeys:["--grid-auto-columns"],handle:l=>[o("grid-auto-columns",l)],staticValues:{auto:[o("grid-auto-columns","auto")],min:[o("grid-auto-columns","min-content")],max:[o("grid-auto-columns","max-content")],fr:[o("grid-auto-columns","minmax(0, 1fr)")]}}),n("auto-rows",{themeKeys:["--grid-auto-rows"],handle:l=>[o("grid-auto-rows",l)],staticValues:{auto:[o("grid-auto-rows","auto")],min:[o("grid-auto-rows","min-content")],max:[o("grid-auto-rows","max-content")],fr:[o("grid-auto-rows","minmax(0, 1fr)")]}}),n("grid-cols",{themeKeys:["--grid-template-columns"],handleBareValue:({value:l})=>Ct(l)?`repeat(${l}, minmax(0, 1fr))`:null,handle:l=>[o("grid-template-columns",l)],staticValues:{none:[o("grid-template-columns","none")],subgrid:[o("grid-template-columns","subgrid")]}}),n("grid-rows",{themeKeys:["--grid-template-rows"],handleBareValue:({value:l})=>Ct(l)?`repeat(${l}, minmax(0, 1fr))`:null,handle:l=>[o("grid-template-rows",l)],staticValues:{none:[o("grid-template-rows","none")],subgrid:[o("grid-template-rows","subgrid")]}}),i("grid-cols",()=>[{values:Array.from({length:12},(l,g)=>`${g+1}`),valueThemeKeys:["--grid-template-columns"]}]),i("grid-rows",()=>[{values:Array.from({length:12},(l,g)=>`${g+1}`),valueThemeKeys:["--grid-template-rows"]}]),e("flex-row",[["flex-direction","row"]]),e("flex-row-reverse",[["flex-direction","row-reverse"]]),e("flex-col",[["flex-direction","column"]]),e("flex-col-reverse",[["flex-direction","column-reverse"]]),e("flex-wrap",[["flex-wrap","wrap"]]),e("flex-nowrap",[["flex-wrap","nowrap"]]),e("flex-wrap-reverse",[["flex-wrap","wrap-reverse"]]),e("place-content-center",[["place-content","center"]]),e("place-content-start",[["place-content","start"]]),e("place-content-end",[["place-content","end"]]),e("place-content-center-safe",[["place-content","safe center"]]),e("place-content-end-safe",[["place-content","safe end"]]),e("place-content-between",[["place-content","space-between"]]),e("place-content-around",[["place-content","space-around"]]),e("place-content-evenly",[["place-content","space-evenly"]]),e("place-content-baseline",[["place-content","baseline"]]),e("place-content-stretch",[["place-content","stretch"]]),e("place-items-center",[["place-items","center"]]),e("place-items-start",[["place-items","start"]]),e("place-items-end",[["place-items","end"]]),e("place-items-center-safe",[["place-items","safe center"]]),e("place-items-end-safe",[["place-items","safe end"]]),e("place-items-baseline",[["place-items","baseline"]]),e("place-items-stretch",[["place-items","stretch"]]),e("content-normal",[["align-content","normal"]]),e("content-center",[["align-content","center"]]),e("content-start",[["align-content","flex-start"]]),e("content-end",[["align-content","flex-end"]]),e("content-center-safe",[["align-content","safe center"]]),e("content-end-safe",[["align-content","safe flex-end"]]),e("content-between",[["align-content","space-between"]]),e("content-around",[["align-content","space-around"]]),e("content-evenly",[["align-content","space-evenly"]]),e("content-baseline",[["align-content","baseline"]]),e("content-stretch",[["align-content","stretch"]]),e("items-center",[["align-items","center"]]),e("items-start",[["align-items","flex-start"]]),e("items-end",[["align-items","flex-end"]]),e("items-center-safe",[["align-items","safe center"]]),e("items-end-safe",[["align-items","safe flex-end"]]),e("items-baseline",[["align-items","baseline"]]),e("items-baseline-last",[["align-items","last baseline"]]),e("items-stretch",[["align-items","stretch"]]),e("justify-normal",[["justify-content","normal"]]),e("justify-center",[["justify-content","center"]]),e("justify-start",[["justify-content","flex-start"]]),e("justify-end",[["justify-content","flex-end"]]),e("justify-center-safe",[["justify-content","safe center"]]),e("justify-end-safe",[["justify-content","safe flex-end"]]),e("justify-between",[["justify-content","space-between"]]),e("justify-around",[["justify-content","space-around"]]),e("justify-evenly",[["justify-content","space-evenly"]]),e("justify-baseline",[["justify-content","baseline"]]),e("justify-stretch",[["justify-content","stretch"]]),e("justify-items-normal",[["justify-items","normal"]]),e("justify-items-center",[["justify-items","center"]]),e("justify-items-start",[["justify-items","start"]]),e("justify-items-end",[["justify-items","end"]]),e("justify-items-center-safe",[["justify-items","safe center"]]),e("justify-items-end-safe",[["justify-items","safe end"]]),e("justify-items-stretch",[["justify-items","stretch"]]),a("gap",["--gap","--spacing"],l=>[o("gap",l)]),a("gap-x",["--gap","--spacing"],l=>[o("column-gap",l)]),a("gap-y",["--gap","--spacing"],l=>[o("row-gap",l)]),a("space-x",["--space","--spacing"],l=>[W([S("--tw-space-x-reverse","0")]),G(":where(& > :not(:last-child))",[o("--tw-sort","row-gap"),o("--tw-space-x-reverse","0"),o("margin-inline-start",`calc(${l} * var(--tw-space-x-reverse))`),o("margin-inline-end",`calc(${l} * calc(1 - var(--tw-space-x-reverse)))`)])],{supportsNegative:!0}),a("space-y",["--space","--spacing"],l=>[W([S("--tw-space-y-reverse","0")]),G(":where(& > :not(:last-child))",[o("--tw-sort","column-gap"),o("--tw-space-y-reverse","0"),o("margin-block-start",`calc(${l} * var(--tw-space-y-reverse))`),o("margin-block-end",`calc(${l} * calc(1 - var(--tw-space-y-reverse)))`)])],{supportsNegative:!0}),e("space-x-reverse",[()=>W([S("--tw-space-x-reverse","0")]),()=>G(":where(& > :not(:last-child))",[o("--tw-sort","row-gap"),o("--tw-space-x-reverse","1")])]),e("space-y-reverse",[()=>W([S("--tw-space-y-reverse","0")]),()=>G(":where(& > :not(:last-child))",[o("--tw-sort","column-gap"),o("--tw-space-y-reverse","1")])]),e("accent-auto",[["accent-color","auto"]]),s("accent",{themeKeys:["--accent-color","--color"],handle:l=>[o("accent-color",l)]}),s("caret",{themeKeys:["--caret-color","--color"],handle:l=>[o("caret-color",l)]}),s("divide",{themeKeys:["--divide-color","--border-color","--color"],handle:l=>[G(":where(& > :not(:last-child))",[o("--tw-sort","divide-color"),o("border-color",l)])]}),e("place-self-auto",[["place-self","auto"]]),e("place-self-start",[["place-self","start"]]),e("place-self-end",[["place-self","end"]]),e("place-self-center",[["place-self","center"]]),e("place-self-end-safe",[["place-self","safe end"]]),e("place-self-center-safe",[["place-self","safe center"]]),e("place-self-stretch",[["place-self","stretch"]]),e("self-auto",[["align-self","auto"]]),e("self-start",[["align-self","flex-start"]]),e("self-end",[["align-self","flex-end"]]),e("self-center",[["align-self","center"]]),e("self-end-safe",[["align-self","safe flex-end"]]),e("self-center-safe",[["align-self","safe center"]]),e("self-stretch",[["align-self","stretch"]]),e("self-baseline",[["align-self","baseline"]]),e("self-baseline-last",[["align-self","last baseline"]]),e("justify-self-auto",[["justify-self","auto"]]),e("justify-self-start",[["justify-self","flex-start"]]),e("justify-self-end",[["justify-self","flex-end"]]),e("justify-self-center",[["justify-self","center"]]),e("justify-self-end-safe",[["justify-self","safe flex-end"]]),e("justify-self-center-safe",[["justify-self","safe center"]]),e("justify-self-stretch",[["justify-self","stretch"]]);for(let l of["auto","hidden","clip","visible","scroll"])e(`overflow-${l}`,[["overflow",l]]),e(`overflow-x-${l}`,[["overflow-x",l]]),e(`overflow-y-${l}`,[["overflow-y",l]]);for(let l of["auto","contain","none"])e(`overscroll-${l}`,[["overscroll-behavior",l]]),e(`overscroll-x-${l}`,[["overscroll-behavior-x",l]]),e(`overscroll-y-${l}`,[["overscroll-behavior-y",l]]);e("scroll-auto",[["scroll-behavior","auto"]]),e("scroll-smooth",[["scroll-behavior","smooth"]]),e("truncate",[["overflow","hidden"],["text-overflow","ellipsis"],["white-space","nowrap"]]),e("text-ellipsis",[["text-overflow","ellipsis"]]),e("text-clip",[["text-overflow","clip"]]),e("hyphens-none",[["-webkit-hyphens","none"],["hyphens","none"]]),e("hyphens-manual",[["-webkit-hyphens","manual"],["hyphens","manual"]]),e("hyphens-auto",[["-webkit-hyphens","auto"],["hyphens","auto"]]),e("whitespace-normal",[["white-space","normal"]]),e("whitespace-nowrap",[["white-space","nowrap"]]),e("whitespace-pre",[["white-space","pre"]]),e("whitespace-pre-line",[["white-space","pre-line"]]),e("whitespace-pre-wrap",[["white-space","pre-wrap"]]),e("whitespace-break-spaces",[["white-space","break-spaces"]]),e("text-wrap",[["text-wrap","wrap"]]),e("text-nowrap",[["text-wrap","nowrap"]]),e("text-balance",[["text-wrap","balance"]]),e("text-pretty",[["text-wrap","pretty"]]),e("break-normal",[["overflow-wrap","normal"],["word-break","normal"]]),e("break-all",[["word-break","break-all"]]),e("break-keep",[["word-break","keep-all"]]),e("wrap-anywhere",[["overflow-wrap","anywhere"]]),e("wrap-break-word",[["overflow-wrap","break-word"]]),e("wrap-normal",[["overflow-wrap","normal"]]);for(let[l,g]of[["rounded",["border-radius"]],["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]],["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]])n(l,{themeKeys:["--radius"],handle:v=>g.map(C=>o(C,v)),staticValues:{none:g.map(v=>o(v,"0")),full:g.map(v=>o(v,"calc(infinity * 1px)"))}});e("border-solid",[["--tw-border-style","solid"],["border-style","solid"]]),e("border-dashed",[["--tw-border-style","dashed"],["border-style","dashed"]]),e("border-dotted",[["--tw-border-style","dotted"],["border-style","dotted"]]),e("border-double",[["--tw-border-style","double"],["border-style","double"]]),e("border-hidden",[["--tw-border-style","hidden"],["border-style","hidden"]]),e("border-none",[["--tw-border-style","none"],["border-style","none"]]);{let g=function(v,C){r.functional(v,b=>{if(!b.value){if(b.modifier)return;let T=t.get(["--default-border-width"])??"1px",D=C.width(T);return D?[l(),...D]:void 0}if(b.value.kind==="arbitrary"){let T=b.value.value;switch(b.value.dataType??H(T,["color","line-width","length"])){case"line-width":case"length":{if(b.modifier)return;let V=C.width(T);return V?[l(),...V]:void 0}default:return T=X(T,b.modifier,t),T===null?void 0:C.color(T)}}{let T=te(b,t,["--border-color","--color"]);if(T)return C.color(T)}{if(b.modifier)return;let T=t.resolve(b.value.value,["--border-width"]);if(T){let D=C.width(T);return D?[l(),...D]:void 0}if(P(b.value.value)){let D=C.width(`${b.value.value}px`);return D?[l(),...D]:void 0}}}),i(v,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--border-color","--color"],modifiers:Array.from({length:21},(b,T)=>`${T*5}`),hasDefaultValue:!0},{values:["0","2","4","8"],valueThemeKeys:["--border-width"]}])};var _=g;let l=()=>W([S("--tw-border-style","solid")]);g("border",{width:v=>[o("border-style","var(--tw-border-style)"),o("border-width",v)],color:v=>[o("border-color",v)]}),g("border-x",{width:v=>[o("border-inline-style","var(--tw-border-style)"),o("border-inline-width",v)],color:v=>[o("border-inline-color",v)]}),g("border-y",{width:v=>[o("border-block-style","var(--tw-border-style)"),o("border-block-width",v)],color:v=>[o("border-block-color",v)]}),g("border-s",{width:v=>[o("border-inline-start-style","var(--tw-border-style)"),o("border-inline-start-width",v)],color:v=>[o("border-inline-start-color",v)]}),g("border-e",{width:v=>[o("border-inline-end-style","var(--tw-border-style)"),o("border-inline-end-width",v)],color:v=>[o("border-inline-end-color",v)]}),g("border-t",{width:v=>[o("border-top-style","var(--tw-border-style)"),o("border-top-width",v)],color:v=>[o("border-top-color",v)]}),g("border-r",{width:v=>[o("border-right-style","var(--tw-border-style)"),o("border-right-width",v)],color:v=>[o("border-right-color",v)]}),g("border-b",{width:v=>[o("border-bottom-style","var(--tw-border-style)"),o("border-bottom-width",v)],color:v=>[o("border-bottom-color",v)]}),g("border-l",{width:v=>[o("border-left-style","var(--tw-border-style)"),o("border-left-width",v)],color:v=>[o("border-left-color",v)]}),n("divide-x",{defaultValue:t.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:v})=>P(v)?`${v}px`:null,handle:v=>[W([S("--tw-divide-x-reverse","0")]),G(":where(& > :not(:last-child))",[o("--tw-sort","divide-x-width"),l(),o("--tw-divide-x-reverse","0"),o("border-inline-style","var(--tw-border-style)"),o("border-inline-start-width",`calc(${v} * var(--tw-divide-x-reverse))`),o("border-inline-end-width",`calc(${v} * calc(1 - var(--tw-divide-x-reverse)))`)])]}),n("divide-y",{defaultValue:t.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:v})=>P(v)?`${v}px`:null,handle:v=>[W([S("--tw-divide-y-reverse","0")]),G(":where(& > :not(:last-child))",[o("--tw-sort","divide-y-width"),l(),o("--tw-divide-y-reverse","0"),o("border-bottom-style","var(--tw-border-style)"),o("border-top-style","var(--tw-border-style)"),o("border-top-width",`calc(${v} * var(--tw-divide-y-reverse))`),o("border-bottom-width",`calc(${v} * calc(1 - var(--tw-divide-y-reverse)))`)])]}),i("divide-x",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),i("divide-y",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),e("divide-x-reverse",[()=>W([S("--tw-divide-x-reverse","0")]),()=>G(":where(& > :not(:last-child))",[o("--tw-divide-x-reverse","1")])]),e("divide-y-reverse",[()=>W([S("--tw-divide-y-reverse","0")]),()=>G(":where(& > :not(:last-child))",[o("--tw-divide-y-reverse","1")])]);for(let v of["solid","dashed","dotted","double","none"])e(`divide-${v}`,[()=>G(":where(& > :not(:last-child))",[o("--tw-sort","divide-style"),o("--tw-border-style",v),o("border-style",v)])])}e("bg-auto",[["background-size","auto"]]),e("bg-cover",[["background-size","cover"]]),e("bg-contain",[["background-size","contain"]]),n("bg-size",{handle(l){if(l)return[o("background-size",l)]}}),e("bg-fixed",[["background-attachment","fixed"]]),e("bg-local",[["background-attachment","local"]]),e("bg-scroll",[["background-attachment","scroll"]]),e("bg-top",[["background-position","top"]]),e("bg-top-left",[["background-position","left top"]]),e("bg-top-right",[["background-position","right top"]]),e("bg-bottom",[["background-position","bottom"]]),e("bg-bottom-left",[["background-position","left bottom"]]),e("bg-bottom-right",[["background-position","right bottom"]]),e("bg-left",[["background-position","left"]]),e("bg-right",[["background-position","right"]]),e("bg-center",[["background-position","center"]]),n("bg-position",{handle(l){if(l)return[o("background-position",l)]}}),e("bg-repeat",[["background-repeat","repeat"]]),e("bg-no-repeat",[["background-repeat","no-repeat"]]),e("bg-repeat-x",[["background-repeat","repeat-x"]]),e("bg-repeat-y",[["background-repeat","repeat-y"]]),e("bg-repeat-round",[["background-repeat","round"]]),e("bg-repeat-space",[["background-repeat","space"]]),e("bg-none",[["background-image","none"]]);{let v=function(T){let D="in oklab";if(T?.kind==="named")switch(T.value){case"longer":case"shorter":case"increasing":case"decreasing":D=`in oklch ${T.value} hue`;break;default:D=`in ${T.value}`}else T?.kind==="arbitrary"&&(D=T.value);return D},C=function({negative:T}){return D=>{if(!D.value)return;if(D.value.kind==="arbitrary"){if(D.modifier)return;let M=D.value.value;switch(D.value.dataType??H(M,["angle"])){case"angle":return M=T?`calc(${M} * -1)`:`${M}`,[o("--tw-gradient-position",M),o("background-image",`linear-gradient(var(--tw-gradient-stops,${M}))`)];default:return T?void 0:[o("--tw-gradient-position",M),o("background-image",`linear-gradient(var(--tw-gradient-stops,${M}))`)]}}let V=D.value.value;if(!T&&g.has(V))V=g.get(V);else if(P(V))V=T?`calc(${V}deg * -1)`:`${V}deg`;else return;let R=v(D.modifier);return[o("--tw-gradient-position",`${V}`),J("@supports (background-image: linear-gradient(in lab, red, red))",[o("--tw-gradient-position",`${V} ${R}`)]),o("background-image","linear-gradient(var(--tw-gradient-stops))")]}},b=function({negative:T}){return D=>{if(D.value?.kind==="arbitrary"){if(D.modifier)return;let M=D.value.value;return[o("--tw-gradient-position",M),o("background-image",`conic-gradient(var(--tw-gradient-stops,${M}))`)]}let V=v(D.modifier);if(!D.value)return[o("--tw-gradient-position",V),o("background-image","conic-gradient(var(--tw-gradient-stops))")];let R=D.value.value;if(P(R))return R=T?`calc(${R}deg * -1)`:`${R}deg`,[o("--tw-gradient-position",`from ${R} ${V}`),o("background-image","conic-gradient(var(--tw-gradient-stops))")]}};var z=v,Y=C,q=b;let l=["oklab","oklch","srgb","hsl","longer","shorter","increasing","decreasing"],g=new Map([["to-t","to top"],["to-tr","to top right"],["to-r","to right"],["to-br","to bottom right"],["to-b","to bottom"],["to-bl","to bottom left"],["to-l","to left"],["to-tl","to top left"]]);r.functional("-bg-linear",C({negative:!0})),r.functional("bg-linear",C({negative:!1})),i("bg-linear",()=>[{values:[...g.keys()],modifiers:l},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:l}]),r.functional("-bg-conic",b({negative:!0})),r.functional("bg-conic",b({negative:!1})),i("bg-conic",()=>[{hasDefaultValue:!0,modifiers:l},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:l}]),r.functional("bg-radial",T=>{if(!T.value){let D=v(T.modifier);return[o("--tw-gradient-position",D),o("background-image","radial-gradient(var(--tw-gradient-stops))")]}if(T.value.kind==="arbitrary"){if(T.modifier)return;let D=T.value.value;return[o("--tw-gradient-position",D),o("background-image",`radial-gradient(var(--tw-gradient-stops,${D}))`)]}}),i("bg-radial",()=>[{hasDefaultValue:!0,modifiers:l}])}r.functional("bg",l=>{if(l.value){if(l.value.kind==="arbitrary"){let g=l.value.value;switch(l.value.dataType??H(g,["image","color","percentage","position","bg-size","length","url"])){case"percentage":case"position":return l.modifier?void 0:[o("background-position",g)];case"bg-size":case"length":case"size":return l.modifier?void 0:[o("background-size",g)];case"image":case"url":return l.modifier?void 0:[o("background-image",g)];default:return g=X(g,l.modifier,t),g===null?void 0:[o("background-color",g)]}}{let g=te(l,t,["--background-color","--color"]);if(g)return[o("background-color",g)]}{if(l.modifier)return;let g=t.resolve(l.value.value,["--background-image"]);if(g)return[o("background-image",g)]}}}),i("bg",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(l,g)=>`${g*5}`)},{values:[],valueThemeKeys:["--background-image"]}]);let h=()=>W([S("--tw-gradient-position"),S("--tw-gradient-from","#0000","<color>"),S("--tw-gradient-via","#0000","<color>"),S("--tw-gradient-to","#0000","<color>"),S("--tw-gradient-stops"),S("--tw-gradient-via-stops"),S("--tw-gradient-from-position","0%","<length-percentage>"),S("--tw-gradient-via-position","50%","<length-percentage>"),S("--tw-gradient-to-position","100%","<length-percentage>")]);function y(l,g){r.functional(l,v=>{if(v.value){if(v.value.kind==="arbitrary"){let C=v.value.value;switch(v.value.dataType??H(C,["color","length","percentage"])){case"length":case"percentage":return v.modifier?void 0:g.position(C);default:return C=X(C,v.modifier,t),C===null?void 0:g.color(C)}}{let C=te(v,t,["--background-color","--color"]);if(C)return g.color(C)}{if(v.modifier)return;let C=t.resolve(v.value.value,["--gradient-color-stop-positions"]);if(C)return g.position(C);if(v.value.value[v.value.value.length-1]==="%"&&P(v.value.value.slice(0,-1)))return g.position(v.value.value)}}}),i(l,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(v,C)=>`${C*5}`)},{values:Array.from({length:21},(v,C)=>`${C*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}])}y("from",{color:l=>[h(),o("--tw-sort","--tw-gradient-from"),o("--tw-gradient-from",l),o("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:l=>[h(),o("--tw-gradient-from-position",l)]}),e("via-none",[["--tw-gradient-via-stops","initial"]]),y("via",{color:l=>[h(),o("--tw-sort","--tw-gradient-via"),o("--tw-gradient-via",l),o("--tw-gradient-via-stops","var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position)"),o("--tw-gradient-stops","var(--tw-gradient-via-stops)")],position:l=>[h(),o("--tw-gradient-via-position",l)]}),y("to",{color:l=>[h(),o("--tw-sort","--tw-gradient-to"),o("--tw-gradient-to",l),o("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:l=>[h(),o("--tw-gradient-to-position",l)]}),e("mask-none",[["mask-image","none"]]),r.functional("mask",l=>{if(!l.value||l.modifier||l.value.kind!=="arbitrary")return;let g=l.value.value;switch(l.value.dataType??H(g,["image","percentage","position","bg-size","length","url"])){case"percentage":case"position":return l.modifier?void 0:[o("mask-position",g)];case"bg-size":case"length":case"size":return[o("mask-size",g)];case"image":case"url":default:return[o("mask-image",g)]}}),e("mask-add",[["mask-composite","add"]]),e("mask-subtract",[["mask-composite","subtract"]]),e("mask-intersect",[["mask-composite","intersect"]]),e("mask-exclude",[["mask-composite","exclude"]]),e("mask-alpha",[["mask-mode","alpha"]]),e("mask-luminance",[["mask-mode","luminance"]]),e("mask-match",[["mask-mode","match-source"]]),e("mask-type-alpha",[["mask-type","alpha"]]),e("mask-type-luminance",[["mask-type","luminance"]]),e("mask-auto",[["mask-size","auto"]]),e("mask-cover",[["mask-size","cover"]]),e("mask-contain",[["mask-size","contain"]]),n("mask-size",{handle(l){if(l)return[o("mask-size",l)]}}),e("mask-top",[["mask-position","top"]]),e("mask-top-left",[["mask-position","left top"]]),e("mask-top-right",[["mask-position","right top"]]),e("mask-bottom",[["mask-position","bottom"]]),e("mask-bottom-left",[["mask-position","left bottom"]]),e("mask-bottom-right",[["mask-position","right bottom"]]),e("mask-left",[["mask-position","left"]]),e("mask-right",[["mask-position","right"]]),e("mask-center",[["mask-position","center"]]),n("mask-position",{handle(l){if(l)return[o("mask-position",l)]}}),e("mask-repeat",[["mask-repeat","repeat"]]),e("mask-no-repeat",[["mask-repeat","no-repeat"]]),e("mask-repeat-x",[["mask-repeat","repeat-x"]]),e("mask-repeat-y",[["mask-repeat","repeat-y"]]),e("mask-repeat-round",[["mask-repeat","round"]]),e("mask-repeat-space",[["mask-repeat","space"]]),e("mask-clip-border",[["mask-clip","border-box"]]),e("mask-clip-padding",[["mask-clip","padding-box"]]),e("mask-clip-content",[["mask-clip","content-box"]]),e("mask-clip-fill",[["mask-clip","fill-box"]]),e("mask-clip-stroke",[["mask-clip","stroke-box"]]),e("mask-clip-view",[["mask-clip","view-box"]]),e("mask-no-clip",[["mask-clip","no-clip"]]),e("mask-origin-border",[["mask-origin","border-box"]]),e("mask-origin-padding",[["mask-origin","padding-box"]]),e("mask-origin-content",[["mask-origin","content-box"]]),e("mask-origin-fill",[["mask-origin","fill-box"]]),e("mask-origin-stroke",[["mask-origin","stroke-box"]]),e("mask-origin-view",[["mask-origin","view-box"]]);let x=()=>W([S("--tw-mask-linear","linear-gradient(#fff, #fff)"),S("--tw-mask-radial","linear-gradient(#fff, #fff)"),S("--tw-mask-conic","linear-gradient(#fff, #fff)")]);function $(l,g){r.functional(l,v=>{if(v.value){if(v.value.kind==="arbitrary"){let C=v.value.value;switch(v.value.dataType??H(C,["length","percentage","color"])){case"color":return C=X(C,v.modifier,t),C===null?void 0:g.color(C);case"percentage":return v.modifier||!P(C.slice(0,-1))?void 0:g.position(C);default:return v.modifier?void 0:g.position(C)}}{let C=te(v,t,["--background-color","--color"]);if(C)return g.color(C)}{if(v.modifier)return;let C=H(v.value.value,["number","percentage"]);if(!C)return;switch(C){case"number":{let b=t.resolve(null,["--spacing"]);return!b||!ie(v.value.value)?void 0:g.position(`calc(${b} * ${v.value.value})`)}case"percentage":return P(v.value.value.slice(0,-1))?g.position(v.value.value):void 0;default:return}}}}),i(l,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(v,C)=>`${C*5}`)},{values:Array.from({length:21},(v,C)=>`${C*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}]),i(l,()=>[{values:Array.from({length:21},(v,C)=>`${C*5}%`)},{values:t.get(["--spacing"])?ct:[]},{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(v,C)=>`${C*5}`)}])}let A=()=>W([S("--tw-mask-left","linear-gradient(#fff, #fff)"),S("--tw-mask-right","linear-gradient(#fff, #fff)"),S("--tw-mask-bottom","linear-gradient(#fff, #fff)"),S("--tw-mask-top","linear-gradient(#fff, #fff)")]);function k(l,g,v){$(l,{color(C){let b=[x(),A(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-linear","var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top)")];for(let T of["top","right","bottom","left"])v[T]&&(b.push(o(`--tw-mask-${T}`,`linear-gradient(to ${T}, var(--tw-mask-${T}-from-color) var(--tw-mask-${T}-from-position), var(--tw-mask-${T}-to-color) var(--tw-mask-${T}-to-position))`)),b.push(W([S(`--tw-mask-${T}-from-position`,"0%"),S(`--tw-mask-${T}-to-position`,"100%"),S(`--tw-mask-${T}-from-color`,"black"),S(`--tw-mask-${T}-to-color`,"transparent")])),b.push(o(`--tw-mask-${T}-${g}-color`,C)));return b},position(C){let b=[x(),A(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-linear","var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top)")];for(let T of["top","right","bottom","left"])v[T]&&(b.push(o(`--tw-mask-${T}`,`linear-gradient(to ${T}, var(--tw-mask-${T}-from-color) var(--tw-mask-${T}-from-position), var(--tw-mask-${T}-to-color) var(--tw-mask-${T}-to-position))`)),b.push(W([S(`--tw-mask-${T}-from-position`,"0%"),S(`--tw-mask-${T}-to-position`,"100%"),S(`--tw-mask-${T}-from-color`,"black"),S(`--tw-mask-${T}-to-color`,"transparent")])),b.push(o(`--tw-mask-${T}-${g}-position`,C)));return b}})}k("mask-x-from","from",{top:!1,right:!0,bottom:!1,left:!0}),k("mask-x-to","to",{top:!1,right:!0,bottom:!1,left:!0}),k("mask-y-from","from",{top:!0,right:!1,bottom:!0,left:!1}),k("mask-y-to","to",{top:!0,right:!1,bottom:!0,left:!1}),k("mask-t-from","from",{top:!0,right:!1,bottom:!1,left:!1}),k("mask-t-to","to",{top:!0,right:!1,bottom:!1,left:!1}),k("mask-r-from","from",{top:!1,right:!0,bottom:!1,left:!1}),k("mask-r-to","to",{top:!1,right:!0,bottom:!1,left:!1}),k("mask-b-from","from",{top:!1,right:!1,bottom:!0,left:!1}),k("mask-b-to","to",{top:!1,right:!1,bottom:!0,left:!1}),k("mask-l-from","from",{top:!1,right:!1,bottom:!1,left:!0}),k("mask-l-to","to",{top:!1,right:!1,bottom:!1,left:!0});let U=()=>W([S("--tw-mask-linear-position","0deg"),S("--tw-mask-linear-from-position","0%"),S("--tw-mask-linear-to-position","100%"),S("--tw-mask-linear-from-color","black"),S("--tw-mask-linear-to-color","transparent")]);n("mask-linear",{defaultValue:null,supportsNegative:!0,supportsFractions:!1,handleBareValue(l){return P(l.value)?`calc(1deg * ${l.value})`:null},handleNegativeBareValue(l){return P(l.value)?`calc(1deg * -${l.value})`:null},handle:l=>[x(),U(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops, var(--tw-mask-linear-position)))"),o("--tw-mask-linear-position",l)]}),i("mask-linear",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"]}]),$("mask-linear-from",{color:l=>[x(),U(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),o("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),o("--tw-mask-linear-from-color",l)],position:l=>[x(),U(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),o("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),o("--tw-mask-linear-from-position",l)]}),$("mask-linear-to",{color:l=>[x(),U(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),o("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),o("--tw-mask-linear-to-color",l)],position:l=>[x(),U(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),o("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),o("--tw-mask-linear-to-position",l)]});let N=()=>W([S("--tw-mask-radial-from-position","0%"),S("--tw-mask-radial-to-position","100%"),S("--tw-mask-radial-from-color","black"),S("--tw-mask-radial-to-color","transparent"),S("--tw-mask-radial-shape","ellipse"),S("--tw-mask-radial-size","farthest-corner"),S("--tw-mask-radial-position","center")]);e("mask-circle",[["--tw-mask-radial-shape","circle"]]),e("mask-ellipse",[["--tw-mask-radial-shape","ellipse"]]),e("mask-radial-closest-side",[["--tw-mask-radial-size","closest-side"]]),e("mask-radial-farthest-side",[["--tw-mask-radial-size","farthest-side"]]),e("mask-radial-closest-corner",[["--tw-mask-radial-size","closest-corner"]]),e("mask-radial-farthest-corner",[["--tw-mask-radial-size","farthest-corner"]]),e("mask-radial-at-top",[["--tw-mask-radial-position","top"]]),e("mask-radial-at-top-left",[["--tw-mask-radial-position","top left"]]),e("mask-radial-at-top-right",[["--tw-mask-radial-position","top right"]]),e("mask-radial-at-bottom",[["--tw-mask-radial-position","bottom"]]),e("mask-radial-at-bottom-left",[["--tw-mask-radial-position","bottom left"]]),e("mask-radial-at-bottom-right",[["--tw-mask-radial-position","bottom right"]]),e("mask-radial-at-left",[["--tw-mask-radial-position","left"]]),e("mask-radial-at-right",[["--tw-mask-radial-position","right"]]),e("mask-radial-at-center",[["--tw-mask-radial-position","center"]]),n("mask-radial-at",{defaultValue:null,supportsNegative:!1,supportsFractions:!1,handle:l=>[o("--tw-mask-radial-position",l)]}),n("mask-radial",{defaultValue:null,supportsNegative:!1,supportsFractions:!1,handle:l=>[x(),N(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops, var(--tw-mask-radial-size)))"),o("--tw-mask-radial-size",l)]}),$("mask-radial-from",{color:l=>[x(),N(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),o("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),o("--tw-mask-radial-from-color",l)],position:l=>[x(),N(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),o("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),o("--tw-mask-radial-from-position",l)]}),$("mask-radial-to",{color:l=>[x(),N(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),o("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),o("--tw-mask-radial-to-color",l)],position:l=>[x(),N(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),o("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),o("--tw-mask-radial-to-position",l)]});let O=()=>W([S("--tw-mask-conic-position","0deg"),S("--tw-mask-conic-from-position","0%"),S("--tw-mask-conic-to-position","100%"),S("--tw-mask-conic-from-color","black"),S("--tw-mask-conic-to-color","transparent")]);n("mask-conic",{defaultValue:null,supportsNegative:!0,supportsFractions:!1,handleBareValue(l){return P(l.value)?`calc(1deg * ${l.value})`:null},handleNegativeBareValue(l){return P(l.value)?`calc(1deg * -${l.value})`:null},handle:l=>[x(),O(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops, var(--tw-mask-conic-position)))"),o("--tw-mask-conic-position",l)]}),i("mask-conic",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"]}]),$("mask-conic-from",{color:l=>[x(),O(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),o("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),o("--tw-mask-conic-from-color",l)],position:l=>[x(),O(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),o("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),o("--tw-mask-conic-from-position",l)]}),$("mask-conic-to",{color:l=>[x(),O(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),o("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),o("--tw-mask-conic-to-color",l)],position:l=>[x(),O(),o("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),o("mask-composite","intersect"),o("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),o("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),o("--tw-mask-conic-to-position",l)]}),e("box-decoration-slice",[["-webkit-box-decoration-break","slice"],["box-decoration-break","slice"]]),e("box-decoration-clone",[["-webkit-box-decoration-break","clone"],["box-decoration-break","clone"]]),e("bg-clip-text",[["background-clip","text"]]),e("bg-clip-border",[["background-clip","border-box"]]),e("bg-clip-padding",[["background-clip","padding-box"]]),e("bg-clip-content",[["background-clip","content-box"]]),e("bg-origin-border",[["background-origin","border-box"]]),e("bg-origin-padding",[["background-origin","padding-box"]]),e("bg-origin-content",[["background-origin","content-box"]]);for(let l of["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"])e(`bg-blend-${l}`,[["background-blend-mode",l]]),e(`mix-blend-${l}`,[["mix-blend-mode",l]]);e("mix-blend-plus-darker",[["mix-blend-mode","plus-darker"]]),e("mix-blend-plus-lighter",[["mix-blend-mode","plus-lighter"]]),e("fill-none",[["fill","none"]]),r.functional("fill",l=>{if(!l.value)return;if(l.value.kind==="arbitrary"){let v=X(l.value.value,l.modifier,t);return v===null?void 0:[o("fill",v)]}let g=te(l,t,["--fill","--color"]);if(g)return[o("fill",g)]}),i("fill",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--fill","--color"],modifiers:Array.from({length:21},(l,g)=>`${g*5}`)}]),e("stroke-none",[["stroke","none"]]),r.functional("stroke",l=>{if(l.value){if(l.value.kind==="arbitrary"){let g=l.value.value;switch(l.value.dataType??H(g,["color","number","length","percentage"])){case"number":case"length":case"percentage":return l.modifier?void 0:[o("stroke-width",g)];default:return g=X(l.value.value,l.modifier,t),g===null?void 0:[o("stroke",g)]}}{let g=te(l,t,["--stroke","--color"]);if(g)return[o("stroke",g)]}{let g=t.resolve(l.value.value,["--stroke-width"]);if(g)return[o("stroke-width",g)];if(P(l.value.value))return[o("stroke-width",l.value.value)]}}}),i("stroke",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--stroke","--color"],modifiers:Array.from({length:21},(l,g)=>`${g*5}`)},{values:["0","1","2","3"],valueThemeKeys:["--stroke-width"]}]),e("object-contain",[["object-fit","contain"]]),e("object-cover",[["object-fit","cover"]]),e("object-fill",[["object-fit","fill"]]),e("object-none",[["object-fit","none"]]),e("object-scale-down",[["object-fit","scale-down"]]),n("object",{themeKeys:["--object-position"],handle:l=>[o("object-position",l)],staticValues:{top:[o("object-position","top")],"top-left":[o("object-position","left top")],"top-right":[o("object-position","right top")],bottom:[o("object-position","bottom")],"bottom-left":[o("object-position","left bottom")],"bottom-right":[o("object-position","right bottom")],left:[o("object-position","left")],right:[o("object-position","right")],center:[o("object-position","center")]}});for(let[l,g]of[["p","padding"],["px","padding-inline"],["py","padding-block"],["ps","padding-inline-start"],["pe","padding-inline-end"],["pt","padding-top"],["pr","padding-right"],["pb","padding-bottom"],["pl","padding-left"]])a(l,["--padding","--spacing"],v=>[o(g,v)]);e("text-left",[["text-align","left"]]),e("text-center",[["text-align","center"]]),e("text-right",[["text-align","right"]]),e("text-justify",[["text-align","justify"]]),e("text-start",[["text-align","start"]]),e("text-end",[["text-align","end"]]),a("indent",["--text-indent","--spacing"],l=>[o("text-indent",l)],{supportsNegative:!0}),e("align-baseline",[["vertical-align","baseline"]]),e("align-top",[["vertical-align","top"]]),e("align-middle",[["vertical-align","middle"]]),e("align-bottom",[["vertical-align","bottom"]]),e("align-text-top",[["vertical-align","text-top"]]),e("align-text-bottom",[["vertical-align","text-bottom"]]),e("align-sub",[["vertical-align","sub"]]),e("align-super",[["vertical-align","super"]]),n("align",{themeKeys:[],handle:l=>[o("vertical-align",l)]}),r.functional("font",l=>{if(!(!l.value||l.modifier)){if(l.value.kind==="arbitrary"){let g=l.value.value;switch(l.value.dataType??H(g,["number","generic-name","family-name"])){case"generic-name":case"family-name":return[o("font-family",g)];default:return[W([S("--tw-font-weight")]),o("--tw-font-weight",g),o("font-weight",g)]}}{let g=t.resolveWith(l.value.value,["--font"],["--font-feature-settings","--font-variation-settings"]);if(g){let[v,C={}]=g;return[o("font-family",v),o("font-feature-settings",C["--font-feature-settings"]),o("font-variation-settings",C["--font-variation-settings"])]}}{let g=t.resolve(l.value.value,["--font-weight"]);if(g)return[W([S("--tw-font-weight")]),o("--tw-font-weight",g),o("font-weight",g)]}}}),i("font",()=>[{values:[],valueThemeKeys:["--font"]},{values:[],valueThemeKeys:["--font-weight"]}]),e("uppercase",[["text-transform","uppercase"]]),e("lowercase",[["text-transform","lowercase"]]),e("capitalize",[["text-transform","capitalize"]]),e("normal-case",[["text-transform","none"]]),e("italic",[["font-style","italic"]]),e("not-italic",[["font-style","normal"]]),e("underline",[["text-decoration-line","underline"]]),e("overline",[["text-decoration-line","overline"]]),e("line-through",[["text-decoration-line","line-through"]]),e("no-underline",[["text-decoration-line","none"]]),e("font-stretch-normal",[["font-stretch","normal"]]),e("font-stretch-ultra-condensed",[["font-stretch","ultra-condensed"]]),e("font-stretch-extra-condensed",[["font-stretch","extra-condensed"]]),e("font-stretch-condensed",[["font-stretch","condensed"]]),e("font-stretch-semi-condensed",[["font-stretch","semi-condensed"]]),e("font-stretch-semi-expanded",[["font-stretch","semi-expanded"]]),e("font-stretch-expanded",[["font-stretch","expanded"]]),e("font-stretch-extra-expanded",[["font-stretch","extra-expanded"]]),e("font-stretch-ultra-expanded",[["font-stretch","ultra-expanded"]]),n("font-stretch",{handleBareValue:({value:l})=>{if(!l.endsWith("%"))return null;let g=Number(l.slice(0,-1));return!P(g)||Number.isNaN(g)||g<50||g>200?null:l},handle:l=>[o("font-stretch",l)]}),i("font-stretch",()=>[{values:["50%","75%","90%","95%","100%","105%","110%","125%","150%","200%"]}]),s("placeholder",{themeKeys:["--background-color","--color"],handle:l=>[G("&::placeholder",[o("--tw-sort","placeholder-color"),o("color",l)])]}),e("decoration-solid",[["text-decoration-style","solid"]]),e("decoration-double",[["text-decoration-style","double"]]),e("decoration-dotted",[["text-decoration-style","dotted"]]),e("decoration-dashed",[["text-decoration-style","dashed"]]),e("decoration-wavy",[["text-decoration-style","wavy"]]),e("decoration-auto",[["text-decoration-thickness","auto"]]),e("decoration-from-font",[["text-decoration-thickness","from-font"]]),r.functional("decoration",l=>{if(l.value){if(l.value.kind==="arbitrary"){let g=l.value.value;switch(l.value.dataType??H(g,["color","length","percentage"])){case"length":case"percentage":return l.modifier?void 0:[o("text-decoration-thickness",g)];default:return g=X(g,l.modifier,t),g===null?void 0:[o("text-decoration-color",g)]}}{let g=t.resolve(l.value.value,["--text-decoration-thickness"]);if(g)return l.modifier?void 0:[o("text-decoration-thickness",g)];if(P(l.value.value))return l.modifier?void 0:[o("text-decoration-thickness",`${l.value.value}px`)]}{let g=te(l,t,["--text-decoration-color","--color"]);if(g)return[o("text-decoration-color",g)]}}}),i("decoration",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-decoration-color","--color"],modifiers:Array.from({length:21},(l,g)=>`${g*5}`)},{values:["0","1","2"],valueThemeKeys:["--text-decoration-thickness"]}]),n("animate",{themeKeys:["--animate"],handle:l=>[o("animation",l)],staticValues:{none:[o("animation","none")]}});{let l=["var(--tw-blur,)","var(--tw-brightness,)","var(--tw-contrast,)","var(--tw-grayscale,)","var(--tw-hue-rotate,)","var(--tw-invert,)","var(--tw-saturate,)","var(--tw-sepia,)","var(--tw-drop-shadow,)"].join(" "),g=["var(--tw-backdrop-blur,)","var(--tw-backdrop-brightness,)","var(--tw-backdrop-contrast,)","var(--tw-backdrop-grayscale,)","var(--tw-backdrop-hue-rotate,)","var(--tw-backdrop-invert,)","var(--tw-backdrop-opacity,)","var(--tw-backdrop-saturate,)","var(--tw-backdrop-sepia,)"].join(" "),v=()=>W([S("--tw-blur"),S("--tw-brightness"),S("--tw-contrast"),S("--tw-grayscale"),S("--tw-hue-rotate"),S("--tw-invert"),S("--tw-opacity"),S("--tw-saturate"),S("--tw-sepia"),S("--tw-drop-shadow"),S("--tw-drop-shadow-color"),S("--tw-drop-shadow-alpha","100%","<percentage>"),S("--tw-drop-shadow-size")]),C=()=>W([S("--tw-backdrop-blur"),S("--tw-backdrop-brightness"),S("--tw-backdrop-contrast"),S("--tw-backdrop-grayscale"),S("--tw-backdrop-hue-rotate"),S("--tw-backdrop-invert"),S("--tw-backdrop-opacity"),S("--tw-backdrop-saturate"),S("--tw-backdrop-sepia")]);r.functional("filter",b=>{if(!b.modifier){if(b.value===null)return[v(),o("filter",l)];if(b.value.kind==="arbitrary")return[o("filter",b.value.value)];switch(b.value.value){case"none":return[o("filter","none")]}}}),r.functional("backdrop-filter",b=>{if(!b.modifier){if(b.value===null)return[C(),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)];if(b.value.kind==="arbitrary")return[o("-webkit-backdrop-filter",b.value.value),o("backdrop-filter",b.value.value)];switch(b.value.value){case"none":return[o("-webkit-backdrop-filter","none"),o("backdrop-filter","none")]}}}),n("blur",{themeKeys:["--blur"],handle:b=>[v(),o("--tw-blur",`blur(${b})`),o("filter",l)],staticValues:{none:[v(),o("--tw-blur"," "),o("filter",l)]}}),n("backdrop-blur",{themeKeys:["--backdrop-blur","--blur"],handle:b=>[C(),o("--tw-backdrop-blur",`blur(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)],staticValues:{none:[C(),o("--tw-backdrop-blur"," "),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}}),n("brightness",{themeKeys:["--brightness"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,handle:b=>[v(),o("--tw-brightness",`brightness(${b})`),o("filter",l)]}),n("backdrop-brightness",{themeKeys:["--backdrop-brightness","--brightness"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,handle:b=>[C(),o("--tw-backdrop-brightness",`brightness(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}),i("brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--brightness"]}]),i("backdrop-brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--backdrop-brightness","--brightness"]}]),n("contrast",{themeKeys:["--contrast"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,handle:b=>[v(),o("--tw-contrast",`contrast(${b})`),o("filter",l)]}),n("backdrop-contrast",{themeKeys:["--backdrop-contrast","--contrast"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,handle:b=>[C(),o("--tw-backdrop-contrast",`contrast(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}),i("contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--contrast"]}]),i("backdrop-contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--backdrop-contrast","--contrast"]}]),n("grayscale",{themeKeys:["--grayscale"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[v(),o("--tw-grayscale",`grayscale(${b})`),o("filter",l)]}),n("backdrop-grayscale",{themeKeys:["--backdrop-grayscale","--grayscale"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[C(),o("--tw-backdrop-grayscale",`grayscale(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}),i("grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--grayscale"],hasDefaultValue:!0}]),i("backdrop-grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-grayscale","--grayscale"],hasDefaultValue:!0}]),n("hue-rotate",{supportsNegative:!0,themeKeys:["--hue-rotate"],handleBareValue:({value:b})=>P(b)?`${b}deg`:null,handle:b=>[v(),o("--tw-hue-rotate",`hue-rotate(${b})`),o("filter",l)]}),n("backdrop-hue-rotate",{supportsNegative:!0,themeKeys:["--backdrop-hue-rotate","--hue-rotate"],handleBareValue:({value:b})=>P(b)?`${b}deg`:null,handle:b=>[C(),o("--tw-backdrop-hue-rotate",`hue-rotate(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}),i("hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--hue-rotate"]}]),i("backdrop-hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--backdrop-hue-rotate","--hue-rotate"]}]),n("invert",{themeKeys:["--invert"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[v(),o("--tw-invert",`invert(${b})`),o("filter",l)]}),n("backdrop-invert",{themeKeys:["--backdrop-invert","--invert"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[C(),o("--tw-backdrop-invert",`invert(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}),i("invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--invert"],hasDefaultValue:!0}]),i("backdrop-invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-invert","--invert"],hasDefaultValue:!0}]),n("saturate",{themeKeys:["--saturate"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,handle:b=>[v(),o("--tw-saturate",`saturate(${b})`),o("filter",l)]}),n("backdrop-saturate",{themeKeys:["--backdrop-saturate","--saturate"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,handle:b=>[C(),o("--tw-backdrop-saturate",`saturate(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}),i("saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--saturate"]}]),i("backdrop-saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--backdrop-saturate","--saturate"]}]),n("sepia",{themeKeys:["--sepia"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[v(),o("--tw-sepia",`sepia(${b})`),o("filter",l)]}),n("backdrop-sepia",{themeKeys:["--backdrop-sepia","--sepia"],handleBareValue:({value:b})=>P(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[C(),o("--tw-backdrop-sepia",`sepia(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}),i("sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--sepia"],hasDefaultValue:!0}]),i("backdrop-sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--backdrop-sepia","--sepia"],hasDefaultValue:!0}]),e("drop-shadow-none",[v,["--tw-drop-shadow"," "],["filter",l]]),r.functional("drop-shadow",b=>{let T;if(b.modifier&&(b.modifier.kind==="arbitrary"?T=b.modifier.value:P(b.modifier.value)&&(T=`${b.modifier.value}%`)),!b.value){let D=t.get(["--drop-shadow"]),V=t.resolve(null,["--drop-shadow"]);return D===null||V===null?void 0:[v(),o("--tw-drop-shadow-alpha",T),...ft("--tw-drop-shadow-size",D,T,R=>`var(--tw-drop-shadow-color, ${R})`),o("--tw-drop-shadow",j(V,",").map(R=>`drop-shadow(${R})`).join(" ")),o("filter",l)]}if(b.value.kind==="arbitrary"){let D=b.value.value;switch(b.value.dataType??H(D,["color"])){case"color":return D=X(D,b.modifier,t),D===null?void 0:[v(),o("--tw-drop-shadow-color",Q(D,"var(--tw-drop-shadow-alpha)")),o("--tw-drop-shadow","var(--tw-drop-shadow-size)")];default:return b.modifier&&!T?void 0:[v(),o("--tw-drop-shadow-alpha",T),...ft("--tw-drop-shadow-size",D,T,R=>`var(--tw-drop-shadow-color, ${R})`),o("--tw-drop-shadow","var(--tw-drop-shadow-size)"),o("filter",l)]}}{let D=t.get([`--drop-shadow-${b.value.value}`]),V=t.resolve(b.value.value,["--drop-shadow"]);if(D&&V)return b.modifier&&!T?void 0:T?[v(),o("--tw-drop-shadow-alpha",T),...ft("--tw-drop-shadow-size",D,T,R=>`var(--tw-drop-shadow-color, ${R})`),o("--tw-drop-shadow","var(--tw-drop-shadow-size)"),o("filter",l)]:[v(),o("--tw-drop-shadow-alpha",T),...ft("--tw-drop-shadow-size",D,T,R=>`var(--tw-drop-shadow-color, ${R})`),o("--tw-drop-shadow",j(V,",").map(R=>`drop-shadow(${R})`).join(" ")),o("filter",l)]}{let D=te(b,t,["--drop-shadow-color","--color"]);if(D)return D==="inherit"?[v(),o("--tw-drop-shadow-color","inherit"),o("--tw-drop-shadow","var(--tw-drop-shadow-size)")]:[v(),o("--tw-drop-shadow-color",Q(D,"var(--tw-drop-shadow-alpha)")),o("--tw-drop-shadow","var(--tw-drop-shadow-size)")]}}),i("drop-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--drop-shadow-color","--color"],modifiers:Array.from({length:21},(b,T)=>`${T*5}`)},{valueThemeKeys:["--drop-shadow"]}]),n("backdrop-opacity",{themeKeys:["--backdrop-opacity","--opacity"],handleBareValue:({value:b})=>et(b)?`${b}%`:null,handle:b=>[C(),o("--tw-backdrop-opacity",`opacity(${b})`),o("-webkit-backdrop-filter",g),o("backdrop-filter",g)]}),i("backdrop-opacity",()=>[{values:Array.from({length:21},(b,T)=>`${T*5}`),valueThemeKeys:["--backdrop-opacity","--opacity"]}])}{let l=`var(--tw-ease, ${t.resolve(null,["--default-transition-timing-function"])??"ease"})`,g=`var(--tw-duration, ${t.resolve(null,["--default-transition-duration"])??"0s"})`;n("transition",{defaultValue:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events",themeKeys:["--transition-property"],handle:v=>[o("transition-property",v),o("transition-timing-function",l),o("transition-duration",g)],staticValues:{none:[o("transition-property","none")],all:[o("transition-property","all"),o("transition-timing-function",l),o("transition-duration",g)],colors:[o("transition-property","color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to"),o("transition-timing-function",l),o("transition-duration",g)],opacity:[o("transition-property","opacity"),o("transition-timing-function",l),o("transition-duration",g)],shadow:[o("transition-property","box-shadow"),o("transition-timing-function",l),o("transition-duration",g)],transform:[o("transition-property","transform, translate, scale, rotate"),o("transition-timing-function",l),o("transition-duration",g)]}}),e("transition-discrete",[["transition-behavior","allow-discrete"]]),e("transition-normal",[["transition-behavior","normal"]]),n("delay",{handleBareValue:({value:v})=>P(v)?`${v}ms`:null,themeKeys:["--transition-delay"],handle:v=>[o("transition-delay",v)]});{let v=()=>W([S("--tw-duration")]);e("duration-initial",[v,["--tw-duration","initial"]]),r.functional("duration",C=>{if(C.modifier||!C.value)return;let b=null;if(C.value.kind==="arbitrary"?b=C.value.value:(b=t.resolve(C.value.fraction??C.value.value,["--transition-duration"]),b===null&&P(C.value.value)&&(b=`${C.value.value}ms`)),b!==null)return[v(),o("--tw-duration",b),o("transition-duration",b)]})}i("delay",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-delay"]}]),i("duration",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-duration"]}])}{let l=()=>W([S("--tw-ease")]);n("ease",{themeKeys:["--ease"],handle:g=>[l(),o("--tw-ease",g),o("transition-timing-function",g)],staticValues:{initial:[l(),o("--tw-ease","initial")],linear:[l(),o("--tw-ease","linear"),o("transition-timing-function","linear")]}})}e("will-change-auto",[["will-change","auto"]]),e("will-change-scroll",[["will-change","scroll-position"]]),e("will-change-contents",[["will-change","contents"]]),e("will-change-transform",[["will-change","transform"]]),n("will-change",{themeKeys:[],handle:l=>[o("will-change",l)]}),e("content-none",[["--tw-content","none"],["content","none"]]),n("content",{themeKeys:["--content"],handle:l=>[W([S("--tw-content",'""')]),o("--tw-content",l),o("content","var(--tw-content)")]});{let l="var(--tw-contain-size,) var(--tw-contain-layout,) var(--tw-contain-paint,) var(--tw-contain-style,)",g=()=>W([S("--tw-contain-size"),S("--tw-contain-layout"),S("--tw-contain-paint"),S("--tw-contain-style")]);e("contain-none",[["contain","none"]]),e("contain-content",[["contain","content"]]),e("contain-strict",[["contain","strict"]]),e("contain-size",[g,["--tw-contain-size","size"],["contain",l]]),e("contain-inline-size",[g,["--tw-contain-size","inline-size"],["contain",l]]),e("contain-layout",[g,["--tw-contain-layout","layout"],["contain",l]]),e("contain-paint",[g,["--tw-contain-paint","paint"],["contain",l]]),e("contain-style",[g,["--tw-contain-style","style"],["contain",l]]),n("contain",{themeKeys:[],handle:v=>[o("contain",v)]})}e("forced-color-adjust-none",[["forced-color-adjust","none"]]),e("forced-color-adjust-auto",[["forced-color-adjust","auto"]]),a("leading",["--leading","--spacing"],l=>[W([S("--tw-leading")]),o("--tw-leading",l),o("line-height",l)],{staticValues:{none:[W([S("--tw-leading")]),o("--tw-leading","1"),o("line-height","1")]}}),n("tracking",{supportsNegative:!0,themeKeys:["--tracking"],handle:l=>[W([S("--tw-tracking")]),o("--tw-tracking",l),o("letter-spacing",l)]}),e("antialiased",[["-webkit-font-smoothing","antialiased"],["-moz-osx-font-smoothing","grayscale"]]),e("subpixel-antialiased",[["-webkit-font-smoothing","auto"],["-moz-osx-font-smoothing","auto"]]);{let l="var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)",g=()=>W([S("--tw-ordinal"),S("--tw-slashed-zero"),S("--tw-numeric-figure"),S("--tw-numeric-spacing"),S("--tw-numeric-fraction")]);e("normal-nums",[["font-variant-numeric","normal"]]),e("ordinal",[g,["--tw-ordinal","ordinal"],["font-variant-numeric",l]]),e("slashed-zero",[g,["--tw-slashed-zero","slashed-zero"],["font-variant-numeric",l]]),e("lining-nums",[g,["--tw-numeric-figure","lining-nums"],["font-variant-numeric",l]]),e("oldstyle-nums",[g,["--tw-numeric-figure","oldstyle-nums"],["font-variant-numeric",l]]),e("proportional-nums",[g,["--tw-numeric-spacing","proportional-nums"],["font-variant-numeric",l]]),e("tabular-nums",[g,["--tw-numeric-spacing","tabular-nums"],["font-variant-numeric",l]]),e("diagonal-fractions",[g,["--tw-numeric-fraction","diagonal-fractions"],["font-variant-numeric",l]]),e("stacked-fractions",[g,["--tw-numeric-fraction","stacked-fractions"],["font-variant-numeric",l]])}{let l=()=>W([S("--tw-outline-style","solid")]);r.static("outline-hidden",()=>[o("--tw-outline-style","none"),o("outline-style","none"),F("@media","(forced-colors: active)",[o("outline","2px solid transparent"),o("outline-offset","2px")])]),e("outline-none",[["--tw-outline-style","none"],["outline-style","none"]]),e("outline-solid",[["--tw-outline-style","solid"],["outline-style","solid"]]),e("outline-dashed",[["--tw-outline-style","dashed"],["outline-style","dashed"]]),e("outline-dotted",[["--tw-outline-style","dotted"],["outline-style","dotted"]]),e("outline-double",[["--tw-outline-style","double"],["outline-style","double"]]),r.functional("outline",g=>{if(g.value===null){if(g.modifier)return;let v=t.get(["--default-outline-width"])??"1px";return[l(),o("outline-style","var(--tw-outline-style)"),o("outline-width",v)]}if(g.value.kind==="arbitrary"){let v=g.value.value;switch(g.value.dataType??H(v,["color","length","number","percentage"])){case"length":case"number":case"percentage":return g.modifier?void 0:[l(),o("outline-style","var(--tw-outline-style)"),o("outline-width",v)];default:return v=X(v,g.modifier,t),v===null?void 0:[o("outline-color",v)]}}{let v=te(g,t,["--outline-color","--color"]);if(v)return[o("outline-color",v)]}{if(g.modifier)return;let v=t.resolve(g.value.value,["--outline-width"]);if(v)return[l(),o("outline-style","var(--tw-outline-style)"),o("outline-width",v)];if(P(g.value.value))return[l(),o("outline-style","var(--tw-outline-style)"),o("outline-width",`${g.value.value}px`)]}}),i("outline",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--outline-color","--color"],modifiers:Array.from({length:21},(g,v)=>`${v*5}`),hasDefaultValue:!0},{values:["0","1","2","4","8"],valueThemeKeys:["--outline-width"]}]),n("outline-offset",{supportsNegative:!0,themeKeys:["--outline-offset"],handleBareValue:({value:g})=>P(g)?`${g}px`:null,handle:g=>[o("outline-offset",g)]}),i("outline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--outline-offset"]}])}n("opacity",{themeKeys:["--opacity"],handleBareValue:({value:l})=>et(l)?`${l}%`:null,handle:l=>[o("opacity",l)]}),i("opacity",()=>[{values:Array.from({length:21},(l,g)=>`${g*5}`),valueThemeKeys:["--opacity"]}]),n("underline-offset",{supportsNegative:!0,themeKeys:["--text-underline-offset"],handleBareValue:({value:l})=>P(l)?`${l}px`:null,handle:l=>[o("text-underline-offset",l)],staticValues:{auto:[o("text-underline-offset","auto")]}}),i("underline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--text-underline-offset"]}]),r.functional("text",l=>{if(l.value){if(l.value.kind==="arbitrary"){let g=l.value.value;switch(l.value.dataType??H(g,["color","length","percentage","absolute-size","relative-size"])){case"size":case"length":case"percentage":case"absolute-size":case"relative-size":{if(l.modifier){let C=l.modifier.kind==="arbitrary"?l.modifier.value:t.resolve(l.modifier.value,["--leading"]);if(!C&&ie(l.modifier.value)){let b=t.resolve(null,["--spacing"]);if(!b)return null;C=`calc(${b} * ${l.modifier.value})`}return!C&&l.modifier.value==="none"&&(C="1"),C?[o("font-size",g),o("line-height",C)]:null}return[o("font-size",g)]}default:return g=X(g,l.modifier,t),g===null?void 0:[o("color",g)]}}{let g=te(l,t,["--text-color","--color"]);if(g)return[o("color",g)]}{let g=t.resolveWith(l.value.value,["--text"],["--line-height","--letter-spacing","--font-weight"]);if(g){let[v,C={}]=Array.isArray(g)?g:[g];if(l.modifier){let b=l.modifier.kind==="arbitrary"?l.modifier.value:t.resolve(l.modifier.value,["--leading"]);if(!b&&ie(l.modifier.value)){let D=t.resolve(null,["--spacing"]);if(!D)return null;b=`calc(${D} * ${l.modifier.value})`}if(!b&&l.modifier.value==="none"&&(b="1"),!b)return null;let T=[o("font-size",v)];return b&&T.push(o("line-height",b)),T}return typeof C=="string"?[o("font-size",v),o("line-height",C)]:[o("font-size",v),o("line-height",C["--line-height"]?`var(--tw-leading, ${C["--line-height"]})`:void 0),o("letter-spacing",C["--letter-spacing"]?`var(--tw-tracking, ${C["--letter-spacing"]})`:void 0),o("font-weight",C["--font-weight"]?`var(--tw-font-weight, ${C["--font-weight"]})`:void 0)]}}}}),i("text",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-color","--color"],modifiers:Array.from({length:21},(l,g)=>`${g*5}`)},{values:[],valueThemeKeys:["--text"],modifiers:[],modifierThemeKeys:["--leading"]}]);let L=()=>W([S("--tw-text-shadow-color"),S("--tw-text-shadow-alpha","100%","<percentage>")]);e("text-shadow-initial",[L,["--tw-text-shadow-color","initial"]]),r.functional("text-shadow",l=>{let g;if(l.modifier&&(l.modifier.kind==="arbitrary"?g=l.modifier.value:P(l.modifier.value)&&(g=`${l.modifier.value}%`)),!l.value){let v=t.get(["--text-shadow"]);return v===null?void 0:[L(),o("--tw-text-shadow-alpha",g),...ve("text-shadow",v,g,C=>`var(--tw-text-shadow-color, ${C})`)]}if(l.value.kind==="arbitrary"){let v=l.value.value;switch(l.value.dataType??H(v,["color"])){case"color":return v=X(v,l.modifier,t),v===null?void 0:[L(),o("--tw-text-shadow-color",Q(v,"var(--tw-text-shadow-alpha)"))];default:return[L(),o("--tw-text-shadow-alpha",g),...ve("text-shadow",v,g,b=>`var(--tw-text-shadow-color, ${b})`)]}}switch(l.value.value){case"none":return l.modifier?void 0:[L(),o("text-shadow","none")];case"inherit":return l.modifier?void 0:[L(),o("--tw-text-shadow-color","inherit")]}{let v=t.get([`--text-shadow-${l.value.value}`]);if(v)return[L(),o("--tw-text-shadow-alpha",g),...ve("text-shadow",v,g,C=>`var(--tw-text-shadow-color, ${C})`)]}{let v=te(l,t,["--text-shadow-color","--color"]);if(v)return[L(),o("--tw-text-shadow-color",Q(v,"var(--tw-text-shadow-alpha)"))]}}),i("text-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-shadow-color","--color"],modifiers:Array.from({length:21},(l,g)=>`${g*5}`)},{values:["none"]},{valueThemeKeys:["--text-shadow"],modifiers:Array.from({length:21},(l,g)=>`${g*5}`),hasDefaultValue:t.get(["--text-shadow"])!==null}]);{let b=function(V){return`var(--tw-ring-inset,) 0 0 0 calc(${V} + var(--tw-ring-offset-width)) var(--tw-ring-color, ${C})`},T=function(V){return`inset 0 0 0 ${V} var(--tw-inset-ring-color, currentcolor)`};var ae=b,oe=T;let l=["var(--tw-inset-shadow)","var(--tw-inset-ring-shadow)","var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow)"].join(", "),g="0 0 #0000",v=()=>W([S("--tw-shadow",g),S("--tw-shadow-color"),S("--tw-shadow-alpha","100%","<percentage>"),S("--tw-inset-shadow",g),S("--tw-inset-shadow-color"),S("--tw-inset-shadow-alpha","100%","<percentage>"),S("--tw-ring-color"),S("--tw-ring-shadow",g),S("--tw-inset-ring-color"),S("--tw-inset-ring-shadow",g),S("--tw-ring-inset"),S("--tw-ring-offset-width","0px","<length>"),S("--tw-ring-offset-color","#fff"),S("--tw-ring-offset-shadow",g)]);e("shadow-initial",[v,["--tw-shadow-color","initial"]]),r.functional("shadow",V=>{let R;if(V.modifier&&(V.modifier.kind==="arbitrary"?R=V.modifier.value:P(V.modifier.value)&&(R=`${V.modifier.value}%`)),!V.value){let M=t.get(["--shadow"]);return M===null?void 0:[v(),o("--tw-shadow-alpha",R),...ve("--tw-shadow",M,R,fe=>`var(--tw-shadow-color, ${fe})`),o("box-shadow",l)]}if(V.value.kind==="arbitrary"){let M=V.value.value;switch(V.value.dataType??H(M,["color"])){case"color":return M=X(M,V.modifier,t),M===null?void 0:[v(),o("--tw-shadow-color",Q(M,"var(--tw-shadow-alpha)"))];default:return[v(),o("--tw-shadow-alpha",R),...ve("--tw-shadow",M,R,At=>`var(--tw-shadow-color, ${At})`),o("box-shadow",l)]}}switch(V.value.value){case"none":return V.modifier?void 0:[v(),o("--tw-shadow",g),o("box-shadow",l)];case"inherit":return V.modifier?void 0:[v(),o("--tw-shadow-color","inherit")]}{let M=t.get([`--shadow-${V.value.value}`]);if(M)return[v(),o("--tw-shadow-alpha",R),...ve("--tw-shadow",M,R,fe=>`var(--tw-shadow-color, ${fe})`),o("box-shadow",l)]}{let M=te(V,t,["--box-shadow-color","--color"]);if(M)return[v(),o("--tw-shadow-color",Q(M,"var(--tw-shadow-alpha)"))]}}),i("shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(V,R)=>`${R*5}`)},{values:["none"]},{valueThemeKeys:["--shadow"],modifiers:Array.from({length:21},(V,R)=>`${R*5}`),hasDefaultValue:t.get(["--shadow"])!==null}]),e("inset-shadow-initial",[v,["--tw-inset-shadow-color","initial"]]),r.functional("inset-shadow",V=>{let R;if(V.modifier&&(V.modifier.kind==="arbitrary"?R=V.modifier.value:P(V.modifier.value)&&(R=`${V.modifier.value}%`)),!V.value){let M=t.get(["--inset-shadow"]);return M===null?void 0:[v(),o("--tw-inset-shadow-alpha",R),...ve("--tw-inset-shadow",M,R,fe=>`var(--tw-inset-shadow-color, ${fe})`),o("box-shadow",l)]}if(V.value.kind==="arbitrary"){let M=V.value.value;switch(V.value.dataType??H(M,["color"])){case"color":return M=X(M,V.modifier,t),M===null?void 0:[v(),o("--tw-inset-shadow-color",Q(M,"var(--tw-inset-shadow-alpha)"))];default:return[v(),o("--tw-inset-shadow-alpha",R),...ve("--tw-inset-shadow",M,R,At=>`var(--tw-inset-shadow-color, ${At})`,"inset "),o("box-shadow",l)]}}switch(V.value.value){case"none":return V.modifier?void 0:[v(),o("--tw-inset-shadow",g),o("box-shadow",l)];case"inherit":return V.modifier?void 0:[v(),o("--tw-inset-shadow-color","inherit")]}{let M=t.get([`--inset-shadow-${V.value.value}`]);if(M)return[v(),o("--tw-inset-shadow-alpha",R),...ve("--tw-inset-shadow",M,R,fe=>`var(--tw-inset-shadow-color, ${fe})`),o("box-shadow",l)]}{let M=te(V,t,["--box-shadow-color","--color"]);if(M)return[v(),o("--tw-inset-shadow-color",Q(M,"var(--tw-inset-shadow-alpha)"))]}}),i("inset-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(V,R)=>`${R*5}`)},{values:["none"]},{valueThemeKeys:["--inset-shadow"],modifiers:Array.from({length:21},(V,R)=>`${R*5}`),hasDefaultValue:t.get(["--inset-shadow"])!==null}]),e("ring-inset",[v,["--tw-ring-inset","inset"]]);let C=t.get(["--default-ring-color"])??"currentcolor";r.functional("ring",V=>{if(!V.value){if(V.modifier)return;let R=t.get(["--default-ring-width"])??"1px";return[v(),o("--tw-ring-shadow",b(R)),o("box-shadow",l)]}if(V.value.kind==="arbitrary"){let R=V.value.value;switch(V.value.dataType??H(R,["color","length"])){case"length":return V.modifier?void 0:[v(),o("--tw-ring-shadow",b(R)),o("box-shadow",l)];default:return R=X(R,V.modifier,t),R===null?void 0:[o("--tw-ring-color",R)]}}{let R=te(V,t,["--ring-color","--color"]);if(R)return[o("--tw-ring-color",R)]}{if(V.modifier)return;let R=t.resolve(V.value.value,["--ring-width"]);if(R===null&&P(V.value.value)&&(R=`${V.value.value}px`),R)return[v(),o("--tw-ring-shadow",b(R)),o("box-shadow",l)]}}),i("ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(V,R)=>`${R*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]),r.functional("inset-ring",V=>{if(!V.value)return V.modifier?void 0:[v(),o("--tw-inset-ring-shadow",T("1px")),o("box-shadow",l)];if(V.value.kind==="arbitrary"){let R=V.value.value;switch(V.value.dataType??H(R,["color","length"])){case"length":return V.modifier?void 0:[v(),o("--tw-inset-ring-shadow",T(R)),o("box-shadow",l)];default:return R=X(R,V.modifier,t),R===null?void 0:[o("--tw-inset-ring-color",R)]}}{let R=te(V,t,["--ring-color","--color"]);if(R)return[o("--tw-inset-ring-color",R)]}{if(V.modifier)return;let R=t.resolve(V.value.value,["--ring-width"]);if(R===null&&P(V.value.value)&&(R=`${V.value.value}px`),R)return[v(),o("--tw-inset-ring-shadow",T(R)),o("box-shadow",l)]}}),i("inset-ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(V,R)=>`${R*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]);let D="var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)";r.functional("ring-offset",V=>{if(V.value){if(V.value.kind==="arbitrary"){let R=V.value.value;switch(V.value.dataType??H(R,["color","length"])){case"length":return V.modifier?void 0:[o("--tw-ring-offset-width",R),o("--tw-ring-offset-shadow",D)];default:return R=X(R,V.modifier,t),R===null?void 0:[o("--tw-ring-offset-color",R)]}}{let R=t.resolve(V.value.value,["--ring-offset-width"]);if(R)return V.modifier?void 0:[o("--tw-ring-offset-width",R),o("--tw-ring-offset-shadow",D)];if(P(V.value.value))return V.modifier?void 0:[o("--tw-ring-offset-width",`${V.value.value}px`),o("--tw-ring-offset-shadow",D)]}{let R=te(V,t,["--ring-offset-color","--color"]);if(R)return[o("--tw-ring-offset-color",R)]}}})}return i("ring-offset",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-offset-color","--color"],modifiers:Array.from({length:21},(l,g)=>`${g*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-offset-width"]}]),r.functional("@container",l=>{let g=null;if(l.value===null?g="inline-size":l.value.kind==="arbitrary"?g=l.value.value:l.value.kind==="named"&&l.value.value==="normal"?g="normal":!1,g!==null)return l.modifier?[o("container-type",g),o("container-name",l.modifier.value)]:[o("container-type",g)]}),i("@container",()=>[{values:["normal"],valueThemeKeys:[],hasDefaultValue:!0}]),r}var Lt=["number","integer","ratio","percentage"];function Kr(t){let r=t.params;return hn.test(r)?i=>{let e={"--value":{usedSpacingInteger:!1,usedSpacingNumber:!1,themeKeys:new Set,literals:new Set},"--modifier":{usedSpacingInteger:!1,usedSpacingNumber:!1,themeKeys:new Set,literals:new Set}};I(t.nodes,n=>{if(n.kind!=="declaration"||!n.value||!n.value.includes("--value(")&&!n.value.includes("--modifier("))return;let s=B(n.value);I(s,a=>{if(a.kind!=="function")return;if(a.value==="--spacing"&&!(e["--modifier"].usedSpacingNumber&&e["--value"].usedSpacingNumber))return I(a.nodes,u=>{if(u.kind!=="function"||u.value!=="--value"&&u.value!=="--modifier")return;let f=u.value;for(let m of u.nodes)if(m.kind==="word"){if(m.value==="integer")e[f].usedSpacingInteger||=!0;else if(m.value==="number"&&(e[f].usedSpacingNumber||=!0,e["--modifier"].usedSpacingNumber&&e["--value"].usedSpacingNumber))return E.Stop}}),E.Continue;if(a.value!=="--value"&&a.value!=="--modifier")return;let p=j(Z(a.nodes),",");for(let[u,f]of p.entries())f=f.replace(/\\\*/g,"*"),f=f.replace(/--(.*?)\s--(.*?)/g,"--$1-*--$2"),f=f.replace(/\s+/g,""),f=f.replace(/(-\*){2,}/g,"-*"),f[0]==="-"&&f[1]==="-"&&!f.includes("-*")&&(f+="-*"),p[u]=f;a.nodes=B(p.join(","));for(let u of a.nodes)if(u.kind==="word"&&(u.value[0]==='"'||u.value[0]==="'")&&u.value[0]===u.value[u.value.length-1]){let f=u.value.slice(1,-1);e[a.value].literals.add(f)}else if(u.kind==="word"&&u.value[0]==="-"&&u.value[1]==="-"){let f=u.value.replace(/-\*.*$/g,"");e[a.value].themeKeys.add(f)}else if(u.kind==="word"&&!(u.value[0]==="["&&u.value[u.value.length-1]==="]")&&!Lt.includes(u.value)){console.warn(`Unsupported bare value data type: "${u.value}".
+Only valid data types are: ${Lt.map(y=>`"${y}"`).join(", ")}.
+`);let f=u.value,m=structuredClone(a),d="\xB6";I(m.nodes,y=>{if(y.kind==="word"&&y.value===f)return E.ReplaceSkip({kind:"word",value:d})});let c="^".repeat(Z([u]).length),w=Z([m]).indexOf(d),h=["```css",Z([a])," ".repeat(w)+c,"```"].join(`
+`);console.warn(h)}}),n.value=Z(s)}),i.utilities.functional(r.slice(0,-2),n=>{let s=ee(t),a=n.value,p=n.modifier;if(a===null)return;let u=!1,f=!1,m=!1,d=!1,c=new Map,w=!1;if(I([s],(h,y)=>{let x=y.parent;if(x?.kind!=="rule"&&x?.kind!=="at-rule"||h.kind!=="declaration"||!h.value)return;let $=!1,A=B(h.value);if(I(A,k=>{if(k.kind==="function"){if(k.value==="--value"){u=!0;let U=Pr(a,k,i);return U?(f=!0,U.ratio?w=!0:c.set(h,x),E.ReplaceSkip(U.nodes)):(u||=!1,$=!0,E.Stop)}else if(k.value==="--modifier"){if(p===null)return $=!0,E.Stop;m=!0;let U=Pr(p,k,i);return U?(d=!0,E.ReplaceSkip(U.nodes)):(m||=!1,$=!0,E.Stop)}}}),$)return E.ReplaceSkip([]);h.value=Z(A)}),u&&!f||m&&!d||w&&d||p&&!w&&!d)return null;if(w)for(let[h,y]of c){let x=y.nodes.indexOf(h);x!==-1&&y.nodes.splice(x,1)}return s.nodes}),i.utilities.suggest(r.slice(0,-2),()=>{let n=[],s=[];for(let[a,{literals:p,usedSpacingNumber:u,usedSpacingInteger:f,themeKeys:m}]of[[n,e["--value"]],[s,e["--modifier"]]]){for(let d of p)a.push(d);if(u)a.push(...ct);else if(f)for(let d of ct)P(d)&&a.push(d);for(let d of i.theme.keysInNamespaces(m))a.push(d.replace(_r,(c,w,h)=>`${w}.${h}`))}return[{values:n,modifiers:s}]})}:gn.test(r)?i=>{i.utilities.static(r,()=>t.nodes.map(ee))}:null}function Pr(t,r,i){for(let e of r.nodes){if(t.kind==="named"&&e.kind==="word"&&(e.value[0]==="'"||e.value[0]==='"')&&e.value[e.value.length-1]===e.value[0]&&e.value.slice(1,-1)===t.value)return{nodes:B(t.value)};if(t.kind==="named"&&e.kind==="word"&&e.value[0]==="-"&&e.value[1]==="-"){let n=e.value;if(n.endsWith("-*")){n=n.slice(0,-2);let s=i.theme.resolve(t.value,[n]);if(s)return{nodes:B(s)}}else{let s=n.split("-*");if(s.length<=1)continue;let a=[s.shift()],p=i.theme.resolveWith(t.value,a,s);if(p){let[,u={}]=p;{let f=u[s.pop()];if(f)return{nodes:B(f)}}}}}else if(t.kind==="named"&&e.kind==="word"){if(!Lt.includes(e.value))continue;let n=e.value==="ratio"&&"fraction"in t?t.fraction:t.value;if(!n)continue;let s=H(n,[e.value]);if(s===null)continue;if(s==="ratio"){let[a,p]=j(n,"/");if(!P(a)||!P(p))continue}else{if(s==="number"&&!ie(n))continue;if(s==="percentage"&&!P(n.slice(0,-1)))continue}return{nodes:B(n),ratio:s==="ratio"}}else if(t.kind==="arbitrary"&&e.kind==="word"&&e.value[0]==="["&&e.value[e.value.length-1]==="]"){let n=e.value.slice(1,-1);if(n==="*")return{nodes:B(t.value)};if("dataType"in t&&t.dataType&&t.dataType!==n)continue;if("dataType"in t&&t.dataType)return{nodes:B(t.value)};if(H(t.value,[n])!==null)return{nodes:B(t.value)}}}}function ve(t,r,i,e,n=""){let s=!1,a=Je(r,u=>i==null?e(u):u.startsWith("current")?e(Q(u,i)):((u.startsWith("var(")||i.startsWith("var("))&&(s=!0),e(Ir(u,i))));function p(u){return n?j(u,",").map(f=>n+f).join(","):u}return s?[o(t,p(Je(r,e))),J("@supports (color: lab(from red l a b))",[o(t,p(a))])]:[o(t,p(a))]}function ft(t,r,i,e,n=""){let s=!1,a=j(r,",").map(p=>Je(p,u=>i==null?e(u):u.startsWith("current")?e(Q(u,i)):((u.startsWith("var(")||i.startsWith("var("))&&(s=!0),e(Ir(u,i))))).map(p=>`drop-shadow(${p})`).join(" ");return s?[o(t,n+j(r,",").map(p=>`drop-shadow(${Je(p,e)})`).join(" ")),J("@supports (color: lab(from red l a b))",[o(t,n+a)])]:[o(t,n+a)]}var jt={"--alpha":vn,"--spacing":wn,"--theme":yn,theme:kn};function vn(t,r,i,...e){let[n,s]=j(i,"/").map(a=>a.trim());if(!n||!s)throw new Error(`The --alpha(\u2026) function requires a color and an alpha value, e.g.: \`--alpha(${n||"var(--my-color)"} / ${s||"50%"})\``);if(e.length>0)throw new Error(`The --alpha(\u2026) function only accepts one argument, e.g.: \`--alpha(${n||"var(--my-color)"} / ${s||"50%"})\``);return Q(n,s)}function wn(t,r,i,...e){if(!i)throw new Error("The --spacing(\u2026) function requires an argument, but received none.");if(e.length>0)throw new Error(`The --spacing(\u2026) function only accepts a single argument, but received ${e.length+1}.`);let n=t.theme.resolve(null,["--spacing"]);if(!n)throw new Error("The --spacing(\u2026) function requires that the `--spacing` theme variable exists, but it was not found.");return`calc(${n} * ${i})`}function yn(t,r,i,...e){if(!i.startsWith("--"))throw new Error("The --theme(\u2026) function can only be used with CSS variables from your theme.");let n=!1;i.endsWith(" inline")&&(n=!0,i=i.slice(0,-7)),r.kind==="at-rule"&&(n=!0);let s=t.resolveThemeValue(i,n);if(!s){if(e.length>0)return e.join(", ");throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the variable name is correct or provide a fallback value to silence this error.`)}if(e.length===0)return s;let a=e.join(", ");if(a==="initial")return s;if(s==="initial")return a;if(s.startsWith("var(")||s.startsWith("theme(")||s.startsWith("--theme(")){let p=B(s);return xn(p,a),Z(p)}return s}function kn(t,r,i,...e){i=bn(i);let n=t.resolveThemeValue(i);if(!n&&e.length>0)return e.join(", ");if(!n)throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the path is correct or provide a fallback value to silence this error.`);return n}var Ur=new RegExp(Object.keys(jt).map(t=>`${t}\\(`).join("|"));function De(t,r){let i=0;return I(t,e=>{if(e.kind==="declaration"&&e.value&&Ur.test(e.value)){i|=8,e.value=Lr(e.value,e,r);return}e.kind==="at-rule"&&(e.name==="@media"||e.name==="@custom-media"||e.name==="@container"||e.name==="@supports")&&Ur.test(e.params)&&(i|=8,e.params=Lr(e.params,e,r))}),i}function Lr(t,r,i){let e=B(t);return I(e,n=>{if(n.kind==="function"&&n.value in jt){let s=j(Z(n.nodes).trim(),",").map(p=>p.trim()),a=jt[n.value](i,r,...s);return E.Replace(B(a))}}),Z(e)}function bn(t){if(t[0]!=="'"&&t[0]!=='"')return t;let r="",i=t[0];for(let e=1;e<t.length-1;e++){let n=t[e],s=t[e+1];n==="\\"&&(s===i||s==="\\")?(r+=s,e++):r+=n}return r}function xn(t,r){I(t,i=>{if(i.kind==="function"&&!(i.value!=="var"&&i.value!=="theme"&&i.value!=="--theme"))if(i.nodes.length===1)i.nodes.push({kind:"word",value:`, ${r}`});else{let e=i.nodes[i.nodes.length-1];e.kind==="word"&&e.value==="initial"&&(e.value=r)}})}function pt(t,r){let i=t.length,e=r.length,n=i<e?i:e;for(let s=0;s<n;s++){let a=t.charCodeAt(s),p=r.charCodeAt(s);if(a>=48&&a<=57&&p>=48&&p<=57){let u=s,f=s+1,m=s,d=s+1;for(a=t.charCodeAt(f);a>=48&&a<=57;)a=t.charCodeAt(++f);for(p=r.charCodeAt(d);p>=48&&p<=57;)p=r.charCodeAt(++d);let c=t.slice(u,f),w=r.slice(m,d),h=Number(c)-Number(w);if(h)return h;if(c<w)return-1;if(c>w)return 1;continue}if(a!==p)return a-p}return t.length-r.length}function jr(t){if(t[0]!=="["||t[t.length-1]!=="]")return null;let r=1,i=r,e=t.length-1;for(;Ue(t.charCodeAt(r));)r++;{for(i=r;r<e;r++){let m=t.charCodeAt(r);if(m===92){r++;continue}if(!(m>=65&&m<=90)&&!(m>=97&&m<=122)&&!(m>=48&&m<=57)&&!(m===45||m===95))break}if(i===r)return null}let n=t.slice(i,r);for(;Ue(t.charCodeAt(r));)r++;if(r===e)return{attribute:n,operator:null,quote:null,value:null,sensitivity:null};let s=null,a=t.charCodeAt(r);if(a===61)s="=",r++;else if((a===126||a===124||a===94||a===36||a===42)&&t.charCodeAt(r+1)===61)s=t[r]+"=",r+=2;else return null;for(;Ue(t.charCodeAt(r));)r++;if(r===e)return null;let p="",u=null;if(a=t.charCodeAt(r),a===39||a===34){u=t[r],r++,i=r;for(let m=r;m<e;m++){let d=t.charCodeAt(m);d===a?r=m+1:d===92&&m++}p=t.slice(i,r-1)}else{for(i=r;r<e&&!Ue(t.charCodeAt(r));)r++;p=t.slice(i,r)}for(;Ue(t.charCodeAt(r));)r++;if(r===e)return{attribute:n,operator:s,quote:u,value:p,sensitivity:null};let f=null;switch(t.charCodeAt(r)){case 105:case 73:{f="i",r++;break}case 115:case 83:{f="s",r++;break}default:return null}for(;Ue(t.charCodeAt(r));)r++;return r!==e?null:{attribute:n,operator:s,quote:u,value:p,sensitivity:f}}function Ue(t){switch(t){case 32:case 9:case 10:case 13:return!0;default:return!1}}function Le(t,r=null){return Array.isArray(t)&&t.length===2&&typeof t[1]=="object"&&typeof t[1]!==null?r?t[1][r]??null:t[0]:Array.isArray(t)&&r===null?t.join(", "):typeof t=="string"&&r===null?t:null}function zr(t,{theme:r},i){for(let e of i){let n=je([e]);n&&t.theme.clearNamespace(`--${n}`,4)}for(let[e,n]of Cn(r)){if(typeof n!="string"&&typeof n!="number")continue;if(typeof n=="string"&&(n=n.replace(/<alpha-value>/g,"1")),e[0]==="opacity"&&(typeof n=="number"||typeof n=="string")){let a=typeof n=="string"?parseFloat(n):n;a>=0&&a<=1&&(n=a*100+"%")}let s=je(e);s&&t.theme.add(`--${s}`,""+n,7)}if(Object.hasOwn(r,"fontFamily")){let e=5;{let n=Le(r.fontFamily.sans);n&&t.theme.hasDefault("--font-sans")&&(t.theme.add("--default-font-family",n,e),t.theme.add("--default-font-feature-settings",Le(r.fontFamily.sans,"fontFeatureSettings")??"normal",e),t.theme.add("--default-font-variation-settings",Le(r.fontFamily.sans,"fontVariationSettings")??"normal",e))}{let n=Le(r.fontFamily.mono);n&&t.theme.hasDefault("--font-mono")&&(t.theme.add("--default-mono-font-family",n,e),t.theme.add("--default-mono-font-feature-settings",Le(r.fontFamily.mono,"fontFeatureSettings")??"normal",e),t.theme.add("--default-mono-font-variation-settings",Le(r.fontFamily.mono,"fontVariationSettings")??"normal",e))}}return r}function Cn(t){let r=[];return Mr(t,[],(i,e)=>{if(Vn(i))return r.push([e,i]),1;if(Nn(i)){r.push([e,i[0]]);for(let n of Reflect.ownKeys(i[1]))r.push([[...e,`-${n}`],i[1][n]]);return 1}if(Array.isArray(i)&&i.every(n=>typeof n=="string"))return e[0]==="fontSize"?(r.push([e,i[0]]),i.length>=2&&r.push([[...e,"-line-height"],i[1]])):r.push([e,i.join(", ")]),1}),r}var $n={borderWidth:"border-width",outlineWidth:"outline-width",ringColor:"ring-color",ringWidth:"ring-width",transitionDuration:"transition-duration",transitionTimingFunction:"transition-timing-function"},Sn={animation:"animate",aspectRatio:"aspect",borderRadius:"radius",boxShadow:"shadow",colors:"color",containers:"container",fontFamily:"font",fontSize:"text",letterSpacing:"tracking",lineHeight:"leading",maxWidth:"container",screens:"breakpoint",transitionTimingFunction:"ease"},Tn=/^[a-zA-Z0-9-_%/\.]+$/;function je(t){let r=$n[t[0]];if(r&&t[1]==="DEFAULT")return`default-${r}`;if(t[0]==="container")return null;for(let e of t)if(!Tn.test(e))return null;let i=Sn[t[0]];return i&&(t=t.slice(),t[0]=i),t.map((e,n,s)=>e==="1"&&n!==s.length-1?"":e).map((e,n)=>(e=e.replaceAll(".","_"),(n===0||e.startsWith("-")||e==="lineHeight")&&(e=e.replace(/([a-z])([A-Z])/g,(a,p,u)=>`${p}-${u.toLowerCase()}`)),e)).filter((e,n)=>e!=="DEFAULT"||n!==t.length-1).join("-")}function Vn(t){return typeof t=="number"||typeof t=="string"}function Nn(t){if(!Array.isArray(t)||t.length!==2||typeof t[0]!="string"&&typeof t[0]!="number"||t[1]===void 0||t[1]===null||typeof t[1]!="object")return!1;for(let r of Reflect.ownKeys(t[1]))if(typeof r!="string"||typeof t[1][r]!="string"&&typeof t[1][r]!="number")return!1;return!0}function Mr(t,r=[],i){for(let e of Reflect.ownKeys(t)){let n=t[e];if(n==null)continue;let s=[...r,e],a=i(n,s)??0;if(a!==1){if(a===2)return 2;if(!(!Array.isArray(n)&&typeof n!="object")&&Mr(n,s,i)===2)return 2}}}var En=/^(?<value>[-+]?(?:\d*\.)?\d+)(?<unit>[a-z]+|%)?$/i,Ne=new K(t=>{let r=En.exec(t);if(!r)return null;let i=r.groups?.value;if(i===void 0)return null;let e=Number(i);if(Number.isNaN(e))return null;let n=r.groups?.unit;return n===void 0?[e,null]:[e,n]});function dt(t,r=null){let i=!1,e=B(t);return I(e,{exit(n){if(n.kind==="word"&&n.value!=="0"){let s=Rn(n.value,r);return s===null||s===n.value?void 0:(i=!0,E.ReplaceSkip(ne(s)))}else if(n.kind==="function"&&(n.value==="calc"||n.value==="")){if(n.nodes.length!==5)return;let s=Ne.get(n.nodes[0].value),a=n.nodes[2].value,p=Ne.get(n.nodes[4].value);if(a==="*"&&(s?.[0]===0&&s?.[1]===null||p?.[0]===0&&p?.[1]===null))return i=!0,E.ReplaceSkip(ne("0"));if(s===null||p===null)return;switch(a){case"*":{if(s[1]===p[1]||s[1]===null&&p[1]!==null||s[1]!==null&&p[1]===null)return i=!0,E.ReplaceSkip(ne(`${s[0]*p[0]}${s[1]??""}`));break}case"+":{if(s[1]===p[1])return i=!0,E.ReplaceSkip(ne(`${s[0]+p[0]}${s[1]??""}`));break}case"-":{if(s[1]===p[1])return i=!0,E.ReplaceSkip(ne(`${s[0]-p[0]}${s[1]??""}`));break}case"/":{if(p[0]!==0&&(s[1]===null&&p[1]===null||s[1]!==null&&p[1]===null))return i=!0,E.ReplaceSkip(ne(`${s[0]/p[0]}${s[1]??""}`));break}}}}}),i?Z(e):t}function Rn(t,r=null){let i=Ne.get(t);if(i===null)return null;let[e,n]=i;if(n===null)return`${e}`;if(e===0&&er(t))return"0";switch(n.toLowerCase()){case"in":return`${e*96}px`;case"cm":return`${e*96/2.54}px`;case"mm":return`${e*96/2.54/10}px`;case"q":return`${e*96/2.54/10/4}px`;case"pc":return`${e*96/6}px`;case"pt":return`${e*96/72}px`;case"rem":return r!==null?`${e*r}px`:null;case"grad":return`${e*.9}deg`;case"rad":return`${e*180/Math.PI}deg`;case"turn":return`${e*360}deg`;case"ms":return`${e/1e3}s`;case"khz":return`${e*1e3}hz`;default:return`${e}${n}`}}function Fr(t,r="top",i="right",e="bottom",n="left"){return Gr(`${t}-${r}`,`${t}-${i}`,`${t}-${e}`,`${t}-${n}`)}function Gr(t="top",r="right",i="bottom",e="left"){return{1:[[t,0],[r,0],[i,0],[e,0]],2:[[t,0],[r,1],[i,0],[e,1]],3:[[t,0],[r,1],[i,2],[e,1]],4:[[t,0],[r,1],[i,2],[e,3]]}}function Ee(t,r){return{1:[[t,0],[r,0]],2:[[t,0],[r,1]]}}var Wr={inset:Gr(),margin:Fr("margin"),padding:Fr("padding"),gap:Ee("row-gap","column-gap")},Br={"inset-block":Ee("top","bottom"),"inset-inline":Ee("left","right"),"margin-block":Ee("margin-top","margin-bottom"),"margin-inline":Ee("margin-left","margin-right"),"padding-block":Ee("padding-top","padding-bottom"),"padding-inline":Ee("padding-left","padding-right")},Yr={"border-block":["border-bottom","border-top"],"border-block-color":["border-bottom-color","border-top-color"],"border-block-style":["border-bottom-style","border-top-style"],"border-block-width":["border-bottom-width","border-top-width"],"border-inline":["border-left","border-right"],"border-inline-color":["border-left-color","border-right-color"],"border-inline-style":["border-left-style","border-right-style"],"border-inline-width":["border-left-width","border-right-width"]};function qr(t,r){if(r&2){if(t.property in Br){let i=j(t.value," ");return Br[t.property][i.length]?.map(([e,n])=>o(e,i[n],t.important))}if(t.property in Yr)return Yr[t.property]?.map(i=>o(i,t.value,t.important))}if(t.property in Wr){let i=j(t.value," ");return Wr[t.property][i.length]?.map(([e,n])=>o(e,i[n],t.important))}return null}function On(t){return{kind:"combinator",value:t}}function Pn(t,r){return{kind:"function",value:t,nodes:r}}function xe(t){return{kind:"selector",value:t}}function In(t){return{kind:"separator",value:t}}function _n(t){return{kind:"value",value:t}}function pe(t){let r="";for(let i of t)switch(i.kind){case"combinator":case"selector":case"separator":case"value":{r+=i.value;break}case"function":r+=i.value+"("+pe(i.nodes)+")"}return r}var Zr=92,Dn=93,Hr=41,Kn=58,Jr=44,Un=34,Ln=46,Qr=62,Xr=10,jn=35,ei=91,ti=40,ri=43,zn=39,ii=32,ni=9,ai=126,Mn=38,Fn=42;function Re(t){t=t.replaceAll(`\r
+`,`
+`);let r=[],i=[],e=null,n="",s;for(let a=0;a<t.length;a++){let p=t.charCodeAt(a);switch(p){case Jr:case Qr:case Xr:case ii:case ri:case ni:case ai:{if(n.length>0){let c=xe(n);e?e.nodes.push(c):r.push(c),n=""}let u=a,f=a+1;for(;f<t.length&&(s=t.charCodeAt(f),!(s!==Jr&&s!==Qr&&s!==Xr&&s!==ii&&s!==ri&&s!==ni&&s!==ai));f++);a=f-1;let m=t.slice(u,f),d=m.trim()===","?In(m):On(m);e?e.nodes.push(d):r.push(d);break}case ti:{let u=Pn(n,[]);if(n="",u.value!==":not"&&u.value!==":where"&&u.value!==":has"&&u.value!==":is"){let f=a+1,m=0;for(let c=a+1;c<t.length;c++){if(s=t.charCodeAt(c),s===ti){m++;continue}if(s===Hr){if(m===0){a=c;break}m--}}let d=a;u.nodes.push(_n(t.slice(f,d))),n="",a=d,e?e.nodes.push(u):r.push(u);break}e?e.nodes.push(u):r.push(u),i.push(u),e=u;break}case Hr:{let u=i.pop();if(n.length>0){let f=xe(n);u.nodes.push(f),n=""}i.length>0?e=i[i.length-1]:e=null;break}case Ln:case Kn:case jn:{if(n.length>0){let u=xe(n);e?e.nodes.push(u):r.push(u)}n=t[a];break}case ei:{if(n.length>0){let m=xe(n);e?e.nodes.push(m):r.push(m)}n="";let u=a,f=0;for(let m=a+1;m<t.length;m++){if(s=t.charCodeAt(m),s===ei){f++;continue}if(s===Dn){if(f===0){a=m;break}f--}}n+=t.slice(u,a+1);break}case zn:case Un:{let u=a;for(let f=a+1;f<t.length;f++)if(s=t.charCodeAt(f),s===Zr)f+=1;else if(s===p){a=f;break}n+=t.slice(u,a+1);break}case Mn:case Fn:{if(n.length>0){let u=xe(n);e?e.nodes.push(u):r.push(u),n=""}e?e.nodes.push(xe(t[a])):r.push(xe(t[a]));break}case Zr:{n+=t[a]+t[a+1],a+=1;break}default:n+=t[a]}}return n.length>0&&r.push(xe(n)),r}function ue(t,r){for(let i in t)delete t[i];return Object.assign(t,r)}function Oe(t){let r=[];for(let i of j(t,".")){if(!i.includes("[")){r.push(i);continue}let e=0;for(;;){let n=i.indexOf("[",e),s=i.indexOf("]",n);if(n===-1||s===-1)break;n>e&&r.push(i.slice(e,n)),r.push(i.slice(n+1,s)),e=s+1}e<=i.length-1&&r.push(i.slice(e))}return r}function zt(t,r){let i=t;return i.storage[ui]??=Wn(),i.storage[fi]??=Yn(i),i.storage[ci]??=Zn(),i.storage[pi]??=Jn(),i.storage[di]??=Xn(),i.storage[Ft]??=na(i),i.storage[ht]??=la(i,r),i.storage[de]??=ya(i),i.storage[Wt]??=ba(),i.storage[vt]??=xa(i),i.storage[Bt]??=Aa(i),i.storage[yt]??=Ca(i),i.storage[hi]??=$a(i),i}var ui=Symbol();function Wn(){return new K(t=>new K(r=>({rem:t,features:r})))}function Bn(t,r){let i=0;return r?.collapse&&(i|=1),r?.logicalToPhysical&&(i|=2),zt(t,r).storage[ui].get(r?.rem??null).get(i)}var fi=Symbol();function Yn(t){return new K(r=>new K(i=>({features:i,designSystem:t,signatureOptions:r})))}function Gn(t,r,i){let e=0;return i?.collapse&&(e|=1),zt(t).storage[fi].get(r).get(e)}function Mt(t,r,i){let e=Bn(t,i),n=Gn(t,e,i),s=zt(t),a=new Set,p=s.storage[ci].get(n);for(let u of r)a.add(p.get(u));return a.size<=1||!(n.features&1)?Array.from(a):qn(n,Array.from(a))}function qn(t,r){if(r.length<=1)return r;let i=t.designSystem,e=new K(p=>new K(u=>new Set)),n=t.designSystem.theme.prefix?`${t.designSystem.theme.prefix}:`:"";for(let p of r){let u=j(p,":"),f=u.pop(),m=f.endsWith("!");m&&(f=f.slice(0,-1));let d=u.length>0?`${u.join(":")}:`:"",c=m?"!":"";e.get(d).get(c).add(`${n}${f}`)}let s=new Set;for(let[p,u]of e.entries())for(let[f,m]of u.entries())for(let d of a(Array.from(m)))n&&d.startsWith(n)&&(d=d.slice(n.length)),s.add(`${p}${d}${f}`);return Array.from(s);function a(p){let u=t.signatureOptions,f=i.storage[vt].get(u),m=i.storage[Wt].get(u),d=p.map($=>f.get($));if(d.some($=>$.has("line-height"))){let $=i.theme.keysInNamespaces(["--text"]);if($.length>0){let A=new Set,k=new Set;for(let N of d)for(let O of N.get("line-height")){if(k.has(O))continue;k.add(O);let L=i.storage[ht]?.get(O)??null;if(L!==null)if(ie(L)){A.add(L);for(let _ of $)f.get(`text-${_}/${L}`)}else{A.add(O);for(let _ of $)f.get(`text-${_}/[${O}]`)}}let U=new Set;for(let N of d)for(let O of N.get("font-size"))if(!U.has(O)){U.add(O);for(let L of A)ie(L)?f.get(`text-[${O}]/${L}`):f.get(`text-[${O}]/[${L}]`)}}}let c=d.map($=>{let A=null;for(let k of $.keys()){let U=new Set;for(let N of m.get(k).values())for(let O of N)U.add(O);if(A===null?A=U:A=si(A,U),A.size===0)return A}return A}),w=new K($=>new Set([$]));for(let $=0;$<c.length;$++){let A=c[$];for(let k=$+1;k<c.length;k++){let U=c[k];for(let N of A)if(U.has(N)){w.get($).add(k),w.get(k).add($);break}}}if(w.size===0)return p;let h=new K($=>$.split(",").map(Number));for(let $ of w.values()){let A=Array.from($).sort((k,U)=>k-U);h.get(A.join(","))}let y=new Set(p),x=new Set;for(let $ of h.values())for(let A of Ta($)){if(A.some(N=>x.has(p[N])))continue;let k=A.flatMap(N=>c[N]).reduce(si),U=i.storage[de].get(u).get(A.map(N=>p[N]).sort((N,O)=>N.localeCompare(O)).join(" "));for(let N of k)if(i.storage[de].get(u).get(N)===U){for(let L of A)x.add(p[L]);y.add(N);break}}for(let $ of x)y.delete($);return Array.from(y)}}var ci=Symbol();function Zn(){return new K(t=>{let r=t.designSystem,i=r.theme.prefix?`${r.theme.prefix}:`:"",e=r.storage[pi].get(t),n=r.storage[di].get(t);return new K((s,a)=>{for(let p of r.parseCandidate(s)){let u=p.variants.slice().reverse().flatMap(d=>e.get(d)),f=p.important;if(f||u.length>0){let c=a.get(r.printCandidate({...p,variants:[],important:!1}));return r.theme.prefix!==null&&u.length>0&&(c=c.slice(i.length)),u.length>0&&(c=`${u.map(w=>r.printVariant(w)).join(":")}:${c}`),f&&(c+="!"),r.theme.prefix!==null&&u.length>0&&(c=`${i}${c}`),c}let m=n.get(s);if(m!==s)return m}return s})})}var Hn=[ia,ha,va,da],pi=Symbol();function Jn(){return new K(t=>new K(r=>{let i=[r];for(let e of Hn)for(let n of i.splice(0)){let s=e(_e(n),t);if(Array.isArray(s)){i.push(...s);continue}else i.push(s)}return i}))}var Qn=[ta,ra,sa,fa,pa,ma,ga,wa],di=Symbol();function Xn(){return new K(t=>{let r=t.designSystem;return new K(i=>{for(let e of r.parseCandidate(i)){let n=Tr(e);for(let a of Qn)n=a(n,t);let s=r.printCandidate(n);if(i!==s)return s}return i})})}var ea=["t","tr","r","br","b","bl","l","tl"];function ta(t){if(t.kind==="static"&&t.root.startsWith("bg-gradient-to-")){let r=t.root.slice(15);return ea.includes(r)&&(t.root=`bg-linear-to-${r}`),t}return t}function ra(t,r){let i=r.designSystem.storage[Ft];if(t.kind==="arbitrary"){let[e,n]=i(t.value,t.modifier===null?1:0);e!==t.value&&(t.value=e,n!==null&&(t.modifier=n))}else if(t.kind==="functional"&&t.value?.kind==="arbitrary"){let[e,n]=i(t.value.value,t.modifier===null?1:0);e!==t.value.value&&(t.value.value=e,n!==null&&(t.modifier=n))}return t}function ia(t,r){let i=r.designSystem.storage[Ft],e=wt(t);for(let[n]of e)if(n.kind==="arbitrary"){let[s]=i(n.selector,2);s!==n.selector&&(n.selector=s)}else if(n.kind==="functional"&&n.value?.kind==="arbitrary"){let[s]=i(n.value.value,2);s!==n.value.value&&(n.value.value=s)}return t}var Ft=Symbol();function na(t){return r(t);function r(i){function e(p,u=0){let f=B(p);if(u&2)return[mt(f,a),null];let m=0,d=0;if(I(f,h=>{h.kind==="function"&&h.value==="theme"&&(m+=1,I(h.nodes,y=>y.kind==="separator"&&y.value.includes(",")?E.Stop:y.kind==="word"&&y.value==="/"?(d+=1,E.Stop):E.Skip))}),m===0)return[p,null];if(d===0)return[mt(f,s),null];if(d>1)return[mt(f,a),null];let c=null;return[mt(f,(h,y)=>{let x=j(h,"/").map($=>$.trim());if(x.length>2)return null;if(f.length===1&&x.length===2&&u&1){let[$,A]=x;if(/^\d+%$/.test(A))c={kind:"named",value:A.slice(0,-1)};else if(/^0?\.\d+$/.test(A)){let k=Number(A)*100;c={kind:Number.isInteger(k)?"named":"arbitrary",value:k.toString()}}else c={kind:"arbitrary",value:A};h=$}return s(h,y)||a(h,y)}),c]}function n(p,u=!0){let f=`--${je(Oe(p))}`;return i.theme.get([f])?u&&i.theme.prefix?`--${i.theme.prefix}-${f.slice(2)}`:f:null}function s(p,u){let f=n(p);if(f)return u?`var(${f}, ${u})`:`var(${f})`;let m=Oe(p);if(m[0]==="spacing"&&i.theme.get(["--spacing"])){let d=m[1];return ie(d)?`--spacing(${d})`:null}return null}function a(p,u){let f=j(p,"/").map(c=>c.trim());p=f.shift();let m=n(p,!1);if(!m)return null;let d=f.length>0?`/${f.join("/")}`:"";return u?`--theme(${m}${d}, ${u})`:`--theme(${m}${d})`}return e}}function mt(t,r){return I(t,(i,e)=>{if(i.kind==="function"&&i.value==="theme"){if(i.nodes.length<1)return;i.nodes[0].kind==="separator"&&i.nodes[0].value.trim()===""&&i.nodes.shift();let n=i.nodes[0];if(n.kind!=="word")return;let s=n.value,a=1;for(let f=a;f<i.nodes.length&&!i.nodes[f].value.includes(",");f++)s+=Z([i.nodes[f]]),a=f+1;s=aa(s);let p=i.nodes.slice(a+1),u=p.length>0?r(s,Z(p)):r(s);if(u===null)return;if(e.parent){let f=e.parent.nodes.indexOf(i)-1;for(;f!==-1;){let m=e.parent.nodes[f];if(m.kind==="separator"&&m.value.trim()===""){f-=1;continue}/^[-+*/]$/.test(m.value.trim())&&(u=`(${u})`);break}}return E.Replace(B(u))}}),Z(t)}function aa(t){if(t[0]!=="'"&&t[0]!=='"')return t;let r="",i=t[0];for(let e=1;e<t.length-1;e++){let n=t[e],s=t[e+1];n==="\\"&&(s===i||s==="\\")?(r+=s,e++):r+=n}return r}function*wt(t){function*r(i,e=null){yield[i,e],i.kind==="compound"&&(yield*r(i.variant,i))}yield*r(t,null)}function we(t,r){return t.parseCandidate(t.theme.prefix&&!r.startsWith(`${t.theme.prefix}:`)?`${t.theme.prefix}:${r}`:r)}function oa(t,r){let i=t.printCandidate(r);return t.theme.prefix&&i.startsWith(`${t.theme.prefix}:`)?i.slice(t.theme.prefix.length+1):i}var ht=Symbol();function la(t,r){let i=t.resolveThemeValue("--spacing");if(i===void 0)return null;i=dt(i,r?.rem??null);let e=Ne.get(i);if(!e)return null;let[n,s]=e;return new K(a=>{if(n===0)return null;let p=Ne.get(dt(a,r?.rem??null));if(!p)return null;let[u,f]=p;return f!==s?null:u/n})}function sa(t,r){if(t.kind!=="arbitrary"&&!(t.kind==="functional"&&t.value?.kind==="arbitrary"))return t;let i=r.designSystem,e=i.storage[Bt].get(r.signatureOptions),n=i.storage[de].get(r.signatureOptions),s=i.printCandidate(t),a=n.get(s);if(typeof a!="string")return t;for(let u of p(a,t)){let f=i.printCandidate(u);if(n.get(f)===a&&ua(i,t,u))return u}return t;function*p(u,f){let m=e.get(u);if(!(m.length>1)){if(m.length===0&&f.modifier){let d={...f,modifier:null},c=n.get(i.printCandidate(d));if(typeof c=="string")for(let w of p(c,d))yield Object.assign({},w,{modifier:f.modifier})}if(m.length===1)for(let d of we(i,m[0]))yield d;else if(m.length===0){let d=f.kind==="arbitrary"?f.value:f.value?.value??null;if(d===null)return;if(r.signatureOptions.rem!==null&&f.kind==="functional"&&f.value?.kind==="arbitrary"){let h=i.storage[ht]?.get(d)??null;h!==null&&ie(h)&&(yield Object.assign({},f,{value:{kind:"named",value:h,fraction:null}}))}let c=i.storage[ht]?.get(d)??null,w="";c!==null&&c<0&&(w="-",c=Math.abs(c));for(let h of Array.from(i.utilities.keys("functional")).sort((y,x)=>+(y[0]==="-")-+(x[0]==="-"))){w&&(h=`${w}${h}`);for(let y of we(i,`${h}-${d}`))yield y;if(f.modifier)for(let y of we(i,`${h}-${d}${f.modifier}`))yield y;if(c!==null){for(let y of we(i,`${h}-${c}`))yield y;if(f.modifier)for(let y of we(i,`${h}-${c}${He(f.modifier)}`))yield y}for(let y of we(i,`${h}-[${d}]`))yield y;if(f.modifier)for(let y of we(i,`${h}-[${d}]${He(f.modifier)}`))yield y}}}}}function ua(t,r,i){let e=null;if(r.kind==="functional"&&r.value?.kind==="arbitrary"&&r.value.value.includes("var(--")?e=r.value.value:r.kind==="arbitrary"&&r.value.includes("var(--")&&(e=r.value),e===null)return!0;let n=t.candidatesToCss([t.printCandidate(i)]).join(`
+`),s=!0;return I(B(e),a=>{if(a.kind==="function"&&a.value==="var"){let p=a.nodes[0].value;if(!new RegExp(`var\\(${p}[,)]\\s*`,"g").test(n)||n.includes(`${p}:`))return s=!1,E.Stop}}),s}function fa(t,r){if(t.kind!=="functional"||t.value?.kind!=="named")return t;let i=r.designSystem,e=i.storage[Bt].get(r.signatureOptions),n=i.storage[de].get(r.signatureOptions),s=i.printCandidate(t),a=n.get(s);if(typeof a!="string")return t;for(let u of p(a,t)){let f=i.printCandidate(u);if(n.get(f)===a)return u}return t;function*p(u,f){let m=e.get(u);if(!(m.length>1)){if(m.length===0&&f.modifier){let d={...f,modifier:null},c=n.get(i.printCandidate(d));if(typeof c=="string")for(let w of p(c,d))yield Object.assign({},w,{modifier:f.modifier})}if(m.length===1)for(let d of we(i,m[0]))yield d}}}var ca=new Map([["order-none","order-0"],["break-words","wrap-break-word"]]);function pa(t,r){let i=r.designSystem,e=i.storage[de].get(r.signatureOptions),n=oa(i,t),s=ca.get(n)??null;if(s===null)return t;let a=e.get(n);if(typeof a!="string")return t;let p=e.get(s);if(typeof p!="string"||a!==p)return t;let[u]=we(i,s);return u}function da(t,r){let i=r.designSystem,e=i.storage[yt],n=i.storage[hi],s=wt(t);for(let[a]of s){if(a.kind==="compound")continue;let p=i.printVariant(a),u=e.get(p);if(typeof u!="string")continue;let f=n.get(u);if(f.length!==1)continue;let m=f[0],d=i.parseVariant(m);d!==null&&ue(a,d)}return t}function ma(t,r){let i=r.designSystem,e=i.storage[de].get(r.signatureOptions);if(t.kind==="functional"&&t.value?.kind==="arbitrary"&&t.value.dataType!==null){let n=i.printCandidate({...t,value:{...t.value,dataType:null}});e.get(i.printCandidate(t))===e.get(n)&&(t.value.dataType=null)}return t}function ga(t,r){if(t.kind!=="functional"||t.value?.kind!=="arbitrary")return t;let i=r.designSystem,e=i.storage[de].get(r.signatureOptions),n=e.get(i.printCandidate(t));if(n===null)return t;for(let s of mi(t))if(e.get(i.printCandidate({...t,value:s}))===n)return t.value=s,t;return t}function ha(t){let r=wt(t);for(let[i]of r)if(i.kind==="functional"&&i.root==="data"&&i.value?.kind==="arbitrary"&&!i.value.value.includes("="))i.value={kind:"named",value:i.value.value};else if(i.kind==="functional"&&i.root==="aria"&&i.value?.kind==="arbitrary"&&(i.value.value.endsWith("=true")||i.value.value.endsWith('="true"')||i.value.value.endsWith("='true'"))){let[e,n]=j(i.value.value,"=");if(e[e.length-1]==="~"||e[e.length-1]==="|"||e[e.length-1]==="^"||e[e.length-1]==="$"||e[e.length-1]==="*")continue;i.value={kind:"named",value:i.value.value.slice(0,i.value.value.indexOf("="))}}else i.kind==="functional"&&i.root==="supports"&&i.value?.kind==="arbitrary"&&/^[a-z-][a-z0-9-]*$/i.test(i.value.value)&&(i.value={kind:"named",value:i.value.value});return t}function*mi(t,r=t.value?.value??"",i=new Set){if(i.has(r))return;if(i.add(r),yield{kind:"named",value:r,fraction:null},r.endsWith("%")&&ie(r.slice(0,-1))&&(yield{kind:"named",value:r.slice(0,-1),fraction:null}),r.includes("/")){let[s,a]=r.split("/");P(s)&&P(a)&&(yield{kind:"named",value:s,fraction:`${s}/${a}`})}let e=new Set;for(let s of r.matchAll(/(\d+\/\d+)|(\d+\.?\d+)/g))e.add(s[0].trim());let n=Array.from(e).sort((s,a)=>s.length-a.length);for(let s of n)yield*mi(t,s,i)}function li(t){return!t.some(r=>r.kind==="separator"&&r.value.trim()===",")}function gt(t){let r=t.value.trim();return t.kind==="selector"&&r[0]==="["&&r[r.length-1]==="]"}function va(t,r){let i=[t],e=r.designSystem,n=e.storage[yt],s=wt(t);for(let[a,p]of s)if(a.kind==="compound"&&(a.root==="has"||a.root==="not"||a.root==="in")&&a.modifier!==null&&"modifier"in a.variant&&(a.variant.modifier=a.modifier,a.modifier=null),a.kind==="arbitrary"){if(a.relative)continue;let u=Re(a.selector.trim());if(!li(u))continue;if(p===null&&u.length===3&&u[0].kind==="selector"&&u[0].value==="&"&&u[1].kind==="combinator"&&u[1].value.trim()===">"&&u[2].kind==="selector"&&u[2].value==="*"){ue(a,e.parseVariant("*"));continue}if(p===null&&u.length===3&&u[0].kind==="selector"&&u[0].value==="&"&&u[1].kind==="combinator"&&u[1].value.trim()===""&&u[2].kind==="selector"&&u[2].value==="*"){ue(a,e.parseVariant("**"));continue}if(p===null&&u.length===3&&u[1].kind==="combinator"&&u[1].value.trim()===""&&u[2].kind==="selector"&&u[2].value==="&"){u.pop(),u.pop(),ue(a,e.parseVariant(`in-[${pe(u)}]`));continue}if(p===null&&u[0].kind==="selector"&&(u[0].value==="@media"||u[0].value==="@supports")){let c=n.get(e.printVariant(a)),w=B(pe(u)),h=!1;if(I(w,y=>{if(y.kind==="word"&&y.value==="not")return h=!0,E.Replace([])}),w=B(Z(w)),I(w,y=>{y.kind==="separator"&&y.value!==" "&&y.value.trim()===""&&(y.value=" ")}),h){let y=e.parseVariant(`not-[${Z(w)}]`);if(y===null)continue;let x=n.get(e.printVariant(y));if(c===x){ue(a,y);continue}}}let f=null;p===null&&u.length===3&&u[0].kind==="selector"&&u[0].value.trim()==="&"&&u[1].kind==="combinator"&&u[1].value.trim()===">"&&u[2].kind==="selector"&&(gt(u[2])||u[2].value[0]===":")&&(u=[u[2]],f=e.parseVariant("*")),p===null&&u.length===3&&u[0].kind==="selector"&&u[0].value.trim()==="&"&&u[1].kind==="combinator"&&u[1].value.trim()===""&&u[2].kind==="selector"&&(gt(u[2])||u[2].value[0]===":")&&(u=[u[2]],f=e.parseVariant("**"));let m=u.filter(c=>!(c.kind==="selector"&&c.value.trim()==="&"));if(m.length!==1)continue;let d=m[0];if(d.kind==="function"&&d.value===":is"){if(!li(d.nodes)||d.nodes.length!==1||!gt(d.nodes[0]))continue;d=d.nodes[0]}if(d.kind==="function"&&d.value[0]===":"||d.kind==="selector"&&d.value[0]===":"){let c=d,w=!1;if(c.kind==="function"&&c.value===":not"){if(w=!0,c.nodes.length!==1||c.nodes[0].kind!=="selector"&&c.nodes[0].kind!=="function"||c.nodes[0].value[0]!==":")continue;c=c.nodes[0]}let h=(x=>{if(x===":nth-child"&&c.kind==="function"&&c.nodes.length===1&&c.nodes[0].kind==="value"&&c.nodes[0].value==="odd")return w?(w=!1,"even"):"odd";if(x===":nth-child"&&c.kind==="function"&&c.nodes.length===1&&c.nodes[0].kind==="value"&&c.nodes[0].value==="even")return w?(w=!1,"odd"):"even";for(let[$,A]of[[":nth-child","nth"],[":nth-last-child","nth-last"],[":nth-of-type","nth-of-type"],[":nth-last-of-type","nth-of-last-type"]])if(x===$&&c.kind==="function"&&c.nodes.length===1)return c.nodes.length===1&&c.nodes[0].kind==="value"&&P(c.nodes[0].value)?`${A}-${c.nodes[0].value}`:`${A}-[${pe(c.nodes)}]`;if(w){let $=n.get(e.printVariant(a)),A=n.get(`not-[${x}]`);if($===A)return`[&${x}]`}return null})(c.value);if(h===null){if(f)return ue(a,{kind:"arbitrary",selector:d.value,relative:!1}),[f,a];continue}w&&(h=`not-${h}`);let y=e.parseVariant(h);if(y===null)continue;ue(a,y)}else if(gt(d)){let c=jr(d.value);if(c===null)continue;if(c.attribute.startsWith("data-")){let w=c.attribute.slice(5);ue(a,{kind:"functional",root:"data",modifier:null,value:c.value===null?{kind:"named",value:w}:{kind:"arbitrary",value:`${w}${c.operator}${c.quote??""}${c.value}${c.quote??""}${c.sensitivity?` ${c.sensitivity}`:""}`}})}else if(c.attribute.startsWith("aria-")){let w=c.attribute.slice(5);ue(a,{kind:"functional",root:"aria",modifier:null,value:c.value===null?{kind:"arbitrary",value:w}:c.operator==="="&&c.value==="true"&&c.sensitivity===null?{kind:"named",value:w}:{kind:"arbitrary",value:`${c.attribute}${c.operator}${c.quote??""}${c.value}${c.quote??""}${c.sensitivity?` ${c.sensitivity}`:""}`}})}else ue(a,{kind:"arbitrary",selector:d.value,relative:!1})}if(f)return[f,a]}return i}function wa(t,r){if(t.kind!=="functional"&&t.kind!=="arbitrary"||t.modifier===null)return t;let i=r.designSystem,e=i.storage[de].get(r.signatureOptions),n=e.get(i.printCandidate(t)),s=t.modifier;if(n===e.get(i.printCandidate({...t,modifier:null})))return t.modifier=null,t;{let a={kind:"named",value:s.value.endsWith("%")?s.value.includes(".")?`${Number(s.value.slice(0,-1))}`:s.value.slice(0,-1):s.value,fraction:null};if(n===e.get(i.printCandidate({...t,modifier:a})))return t.modifier=a,t}{let a={kind:"named",value:`${parseFloat(s.value)*100}`,fraction:null};if(n===e.get(i.printCandidate({...t,modifier:a})))return t.modifier=a,t}return t}var de=Symbol();function ya(t){return new K(r=>new K(i=>{try{i=t.theme.prefix&&!i.startsWith(t.theme.prefix)?`${t.theme.prefix}:${i}`:i;let e=[G(".x",[F("@apply",i)])];return Sa(t,()=>{for(let s of t.parseCandidate(i))t.compileAstNodes(s,1);Ae(e,t)}),gi(t,e,r),re(e)}catch{return Symbol()}}))}function gi(t,r,i){let{rem:e}=i;return I(r,{enter(n,s){if(n.kind==="declaration"){if(n.value===void 0||n.property==="--tw-sort")return E.Replace([]);if(n.property.startsWith("--tw-")&&(s.parent?.nodes??[]).some(a=>a.kind==="declaration"&&n.value===a.value&&n.important===a.important&&!a.property.startsWith("--tw-")))return E.Replace([]);if(i.features&1){let a=qr(n,i.features);if(a)return E.Replace(a)}n.value.includes("var(")&&(n.value=ka(n.value,t)),n.value=dt(n.value,e),n.value=be(n.value)}else{if(n.kind==="context"||n.kind==="at-root")return E.Replace(n.nodes);if(n.kind==="comment")return E.Replace([]);if(n.kind==="at-rule"&&n.name==="@property")return E.Replace([])}},exit(n){if(n.kind==="rule"||n.kind==="at-rule"){if(n.nodes.length>1){let s=new Set;for(let a=n.nodes.length-1;a>=0;a--){let p=n.nodes[a];p.kind==="declaration"&&p.value!==void 0&&(s.has(p.property)&&n.nodes.splice(a,1),s.add(p.property))}}n.nodes.sort((s,a)=>s.kind!=="declaration"||a.kind!=="declaration"?0:s.property.localeCompare(a.property))}}}),r}function ka(t,r){let i=!1,e=B(t),n=new Set;return I(e,s=>{if(s.kind!=="function"||s.value!=="var"||s.nodes.length!==1&&s.nodes.length<3)return;let a=s.nodes[0].value;r.theme.prefix&&a.startsWith(`--${r.theme.prefix}-`)&&(a=a.slice(`--${r.theme.prefix}-`.length));let p=r.resolveThemeValue(a);if(!n.has(a)&&(n.add(a),p!==void 0&&(s.nodes.length===1&&(i=!0,s.nodes.push(...B(`,${p}`))),s.nodes.length>=3))){let u=Z(s.nodes),f=`${s.nodes[0].value},${p}`;if(u===f)return i=!0,E.Replace(B(p))}}),i?Z(e):t}var Wt=Symbol();function ba(){return new K(t=>new K(r=>new K(i=>new Set)))}var vt=Symbol();function xa(t){return new K(r=>new K(i=>{let e=new K(s=>new Set);t.theme.prefix&&!i.startsWith(t.theme.prefix)&&(i=`${t.theme.prefix}:${i}`);let n=t.parseCandidate(i);return n.length===0||I(gi(t,t.compileAstNodes(n[0]).map(s=>ee(s.node)),r),s=>{s.kind==="declaration"&&(e.get(s.property).add(s.value),t.storage[Wt].get(r).get(s.property).get(s.value).add(i))}),e}))}var Bt=Symbol();function Aa(t){return new K(r=>{let i=t.storage[de].get(r),e=new K(()=>[]);for(let[n,s]of t.getClassList()){let a=i.get(n);if(typeof a=="string"){if(n[0]==="-"&&n.endsWith("-0")){let p=i.get(n.slice(1));if(typeof p=="string"&&a===p)continue}e.get(a).push(n),t.storage[vt].get(r).get(n);for(let p of s.modifiers){if(ie(p))continue;let u=`${n}/${p}`,f=i.get(u);typeof f=="string"&&(e.get(f).push(u),t.storage[vt].get(r).get(u))}}}return e})}var yt=Symbol();function Ca(t){return new K(r=>{try{r=t.theme.prefix&&!r.startsWith(t.theme.prefix)?`${t.theme.prefix}:${r}`:r;let i=[G(".x",[F("@apply",`${r}:flex`)])];return Ae(i,t),I(i,n=>{if(n.kind==="at-rule"&&n.params.includes(" "))n.params=n.params.replaceAll(" ","");else if(n.kind==="rule"){let s=Re(n.selector),a=!1;I(s,p=>{if(p.kind==="separator"&&p.value!==" ")p.value=p.value.trim(),a=!0;else if(p.kind==="function"&&p.value===":is"){if(p.nodes.length===1)return a=!0,E.Replace(p.nodes);if(p.nodes.length===2&&p.nodes[0].kind==="selector"&&p.nodes[0].value==="*"&&p.nodes[1].kind==="selector"&&p.nodes[1].value[0]===":")return a=!0,E.Replace(p.nodes[1])}else p.kind==="function"&&p.value[0]===":"&&p.nodes[0]?.kind==="selector"&&p.nodes[0]?.value[0]===":"&&(a=!0,p.nodes.unshift({kind:"selector",value:"*"}))}),a&&(n.selector=pe(s))}}),re(i)}catch{return Symbol()}})}var hi=Symbol();function $a(t){let r=t.storage[yt],i=new K(()=>[]);for(let[e,n]of t.variants.entries())if(n.kind==="static"){let s=r.get(e);if(typeof s!="string")continue;i.get(s).push(e)}return i}function Sa(t,r){let i=t.theme.values.get,e=new Set;t.theme.values.get=n=>{let s=i.call(t.theme.values,n);return s===void 0||s.options&1&&(e.add(s),s.options&=-2),s};try{return r()}finally{t.theme.values.get=i;for(let n of e)n.options|=1}}function*Ta(t){let r=t.length,i=1n<<BigInt(r);for(let e=r;e>=2;e--){let n=(1n<<BigInt(e))-1n;for(;n<i;){let s=[];for(let u=0;u<r;u++)n>>BigInt(u)&1n&&s.push(t[u]);yield s;let a=n&-n,p=n+a;n=((p^n)>>2n)/a|p}}}function si(t,r){if(typeof t.intersection=="function")return t.intersection(r);if(t.size===0||r.size===0)return new Set;let i=new Set(t);for(let e of r)i.has(e)||i.delete(e);return i}var Na=/^\d+\/\d+$/;function vi(t){let r=new K(n=>({name:n,utility:n,fraction:!1,modifiers:[]}));for(let n of t.utilities.keys("static")){if(t.utilities.getCompletions(n).length===0)continue;let a=r.get(n);a.fraction=!1,a.modifiers=[]}for(let n of t.utilities.keys("functional")){let s=t.utilities.getCompletions(n);for(let a of s)for(let p of a.values){let u=p!==null&&Na.test(p),f=p===null?n:`${n}-${p}`,m=r.get(f);if(m.utility=n,m.fraction||=u,m.modifiers.push(...a.modifiers),a.supportsNegative){let d=r.get(`-${f}`);d.utility=`-${n}`,d.fraction||=u,d.modifiers.push(...a.modifiers)}m.modifiers=Array.from(new Set(m.modifiers))}}if(r.size===0)return[];let i=Array.from(r.values());return i.sort((n,s)=>pt(n.name,s.name)),Ea(i)}function Ea(t){let r=[],i=null,e=new Map,n=new K(()=>[]);for(let a of t){let{utility:p,fraction:u}=a;i||(i={utility:p,items:[]},e.set(p,i)),p!==i.utility&&(r.push(i),i={utility:p,items:[]},e.set(p,i)),u?n.get(p).push(a):i.items.push(a)}i&&r[r.length-1]!==i&&r.push(i);for(let[a,p]of n){let u=e.get(a);u&&u.items.push(...p)}let s=[];for(let a of r)for(let p of a.items)s.push([p.name,{modifiers:p.modifiers}]);return s}function wi(t){let r=[];for(let[e,n]of t.variants.entries()){let p=function({value:u,modifier:f}={}){let m=e;u&&(m+=s?`-${u}`:u),f&&(m+=`/${f}`);let d=t.parseVariant(m);if(!d)return[];let c=G(".__placeholder__",[]);if(ze(c,d,t.variants)===null)return[];let w=[];return I(c.nodes,{exit(h,y){if(h.kind!=="rule"&&h.kind!=="at-rule"||h.nodes.length>0)return;let x=y.path();x.push(h),x.sort((k,U)=>{let N=k.kind==="at-rule",O=U.kind==="at-rule";return N&&!O?-1:!N&&O?1:0});let $=x.flatMap(k=>k.kind==="rule"?k.selector==="&"?[]:[k.selector]:k.kind==="at-rule"?[`${k.name} ${k.params}`]:[]),A="";for(let k=$.length-1;k>=0;k--)A=A===""?$[k]:`${$[k]} { ${A} }`;w.push(A)}}),w};var i=p;if(n.kind==="arbitrary")continue;let s=e!=="@",a=t.variants.getCompletions(e);switch(n.kind){case"static":{r.push({name:e,values:a,isArbitrary:!1,hasDash:s,selectors:p});break}case"functional":{r.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:p});break}case"compound":{r.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:p});break}}}return r}function yi(t,r){let{astNodes:i,nodeSorting:e}=Ce(Array.from(r),t),n=new Map(r.map(a=>[a,null])),s=0n;for(let a of i){let p=e.get(a)?.candidate;p&&n.set(p,n.get(p)??s++)}return r.map(a=>[a,n.get(a)??null])}var kt=/^@?[a-z0-9][a-zA-Z0-9_-]*(?<![_-])$/;var Yt=class{compareFns=new Map;variants=new Map;completions=new Map;groupOrder=null;lastOrder=0;static(r,i,{compounds:e,order:n}={}){this.set(r,{kind:"static",applyFn:i,compoundsWith:0,compounds:e??2,order:n})}fromAst(r,i,e){let n=[],s=!1;I(i,a=>{a.kind==="rule"?n.push(a.selector):a.kind==="at-rule"&&a.name==="@variant"?s=!0:a.kind==="at-rule"&&a.name!=="@slot"&&n.push(`${a.name} ${a.params}`)}),this.static(r,a=>{let p=i.map(ee);s&&Qe(p,e),Gt(p,a.nodes),a.nodes=p},{compounds:Pe(n)})}functional(r,i,{compounds:e,order:n}={}){this.set(r,{kind:"functional",applyFn:i,compoundsWith:0,compounds:e??2,order:n})}compound(r,i,e,{compounds:n,order:s}={}){this.set(r,{kind:"compound",applyFn:e,compoundsWith:i,compounds:n??2,order:s})}group(r,i){this.groupOrder=this.nextOrder(),i&&this.compareFns.set(this.groupOrder,i),r(),this.groupOrder=null}has(r){return this.variants.has(r)}get(r){return this.variants.get(r)}kind(r){return this.variants.get(r)?.kind}compoundsWith(r,i){let e=this.variants.get(r),n=typeof i=="string"?this.variants.get(i):i.kind==="arbitrary"?{compounds:Pe([i.selector])}:this.variants.get(i.root);return!(!e||!n||e.kind!=="compound"||n.compounds===0||e.compoundsWith===0||(e.compoundsWith&n.compounds)===0)}suggest(r,i){this.completions.set(r,i)}getCompletions(r){return this.completions.get(r)?.()??[]}compare(r,i){if(r===i)return 0;if(r===null)return-1;if(i===null)return 1;if(r.kind==="arbitrary"&&i.kind==="arbitrary")return r.selector<i.selector?-1:1;if(r.kind==="arbitrary")return 1;if(i.kind==="arbitrary")return-1;let e=this.variants.get(r.root).order,n=this.variants.get(i.root).order,s=e-n;if(s!==0)return s;if(r.kind==="compound"&&i.kind==="compound"){let f=this.compare(r.variant,i.variant);return f!==0?f:r.modifier&&i.modifier?r.modifier.value<i.modifier.value?-1:1:r.modifier?1:i.modifier?-1:0}let a=this.compareFns.get(e);if(a!==void 0)return a(r,i);if(r.root!==i.root)return r.root<i.root?-1:1;let p=r.value,u=i.value;return p===null?-1:u===null||p.kind==="arbitrary"&&u.kind!=="arbitrary"?1:p.kind!=="arbitrary"&&u.kind==="arbitrary"||p.value<u.value?-1:1}keys(){return this.variants.keys()}entries(){return this.variants.entries()}set(r,{kind:i,applyFn:e,compounds:n,compoundsWith:s,order:a}){let p=this.variants.get(r);p?Object.assign(p,{kind:i,applyFn:e,compounds:n}):(a===void 0&&(this.lastOrder=this.nextOrder(),a=this.lastOrder),this.variants.set(r,{kind:i,applyFn:e,order:a,compoundsWith:s,compounds:n}))}nextOrder(){return this.groupOrder??this.lastOrder+1}};function Pe(t){let r=0;for(let i of t){if(i[0]==="@"){if(!i.startsWith("@media")&&!i.startsWith("@supports")&&!i.startsWith("@container"))return 0;r|=1;continue}if(i.includes("::"))return 0;r|=2}return r}function bi(t){let r=new Yt;function i(f,m,{compounds:d}={}){d=d??Pe(m),r.static(f,c=>{c.nodes=m.map(w=>J(w,c.nodes))},{compounds:d})}i("*",[":is(& > *)"],{compounds:0}),i("**",[":is(& *)"],{compounds:0});function e(f,m){return m.map(d=>{d=d.trim();let c=j(d," ");return c[0]==="not"?c.slice(1).join(" "):f==="@container"?c[0][0]==="("?`not ${d}`:c[1]==="not"?`${c[0]} ${c.slice(2).join(" ")}`:`${c[0]} not ${c.slice(1).join(" ")}`:`not ${d}`})}let n=["@media","@supports","@container"];function s(f){for(let m of n){if(m!==f.name)continue;let d=j(f.params,",");return d.length>1?null:(d=e(f.name,d),F(f.name,d.join(", ")))}return null}function a(f){return f.includes("::")?null:`&:not(${j(f,",").map(d=>(d=d.replaceAll("&","*"),d)).join(", ")})`}r.compound("not",3,(f,m)=>{if(m.variant.kind==="arbitrary"&&m.variant.relative||m.modifier)return null;let d=!1;if(I([f],(c,w)=>{if(c.kind!=="rule"&&c.kind!=="at-rule")return E.Continue;if(c.nodes.length>0)return E.Continue;let h=[],y=[],x=w.path();x.push(c);for(let A of x)A.kind==="at-rule"?h.push(A):A.kind==="rule"&&y.push(A);if(h.length>1)return E.Stop;if(y.length>1)return E.Stop;let $=[];for(let A of y){let k=a(A.selector);if(!k)return d=!1,E.Stop;$.push(G(k,[]))}for(let A of h){let k=s(A);if(!k)return d=!1,E.Stop;$.push(k)}return Object.assign(f,G("&",$)),d=!0,E.Skip}),f.kind==="rule"&&f.selector==="&"&&f.nodes.length===1&&Object.assign(f,f.nodes[0]),!d)return null}),r.suggest("not",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("not",f))),r.compound("group",2,(f,m)=>{if(m.variant.kind==="arbitrary"&&m.variant.relative)return null;let d=m.modifier?`:where(.${t.prefix?`${t.prefix}\\:`:""}group\\/${m.modifier.value})`:`:where(.${t.prefix?`${t.prefix}\\:`:""}group)`,c=!1;if(I([f],(w,h)=>{if(w.kind!=="rule")return E.Continue;for(let x of h.path())if(x.kind==="rule")return c=!1,E.Stop;let y=w.selector.replaceAll("&",d);j(y,",").length>1&&(y=`:is(${y})`),w.selector=`&:is(${y} *)`,c=!0}),!c)return null}),r.suggest("group",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("group",f))),r.compound("peer",2,(f,m)=>{if(m.variant.kind==="arbitrary"&&m.variant.relative)return null;let d=m.modifier?`:where(.${t.prefix?`${t.prefix}\\:`:""}peer\\/${m.modifier.value})`:`:where(.${t.prefix?`${t.prefix}\\:`:""}peer)`,c=!1;if(I([f],(w,h)=>{if(w.kind!=="rule")return E.Continue;for(let x of h.path())if(x.kind==="rule")return c=!1,E.Stop;let y=w.selector.replaceAll("&",d);j(y,",").length>1&&(y=`:is(${y})`),w.selector=`&:is(${y} ~ *)`,c=!0}),!c)return null}),r.suggest("peer",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("peer",f))),i("first-letter",["&::first-letter"]),i("first-line",["&::first-line"]),i("marker",["& *::marker","&::marker","& *::-webkit-details-marker","&::-webkit-details-marker"]),i("selection",["& *::selection","&::selection"]),i("file",["&::file-selector-button"]),i("placeholder",["&::placeholder"]),i("backdrop",["&::backdrop"]),i("details-content",["&::details-content"]);{let f=function(){return W([F("@property","--tw-content",[o("syntax",'"*"'),o("initial-value",'""'),o("inherits","false")])])};var p=f;r.static("before",m=>{m.nodes=[G("&::before",[f(),o("content","var(--tw-content)"),...m.nodes])]},{compounds:0}),r.static("after",m=>{m.nodes=[G("&::after",[f(),o("content","var(--tw-content)"),...m.nodes])]},{compounds:0})}i("first",["&:first-child"]),i("last",["&:last-child"]),i("only",["&:only-child"]),i("odd",["&:nth-child(odd)"]),i("even",["&:nth-child(even)"]),i("first-of-type",["&:first-of-type"]),i("last-of-type",["&:last-of-type"]),i("only-of-type",["&:only-of-type"]),i("visited",["&:visited"]),i("target",["&:target"]),i("open",["&:is([open], :popover-open, :open)"]),i("default",["&:default"]),i("checked",["&:checked"]),i("indeterminate",["&:indeterminate"]),i("placeholder-shown",["&:placeholder-shown"]),i("autofill",["&:autofill"]),i("optional",["&:optional"]),i("required",["&:required"]),i("valid",["&:valid"]),i("invalid",["&:invalid"]),i("user-valid",["&:user-valid"]),i("user-invalid",["&:user-invalid"]),i("in-range",["&:in-range"]),i("out-of-range",["&:out-of-range"]),i("read-only",["&:read-only"]),i("empty",["&:empty"]),i("focus-within",["&:focus-within"]),r.static("hover",f=>{f.nodes=[G("&:hover",[F("@media","(hover: hover)",f.nodes)])]}),i("focus",["&:focus"]),i("focus-visible",["&:focus-visible"]),i("active",["&:active"]),i("enabled",["&:enabled"]),i("disabled",["&:disabled"]),i("inert",["&:is([inert], [inert] *)"]),r.compound("in",2,(f,m)=>{if(m.modifier)return null;let d=!1;if(I([f],(c,w)=>{if(c.kind!=="rule")return E.Continue;for(let h of w.path())if(h.kind==="rule")return d=!1,E.Stop;c.selector=`:where(${c.selector.replaceAll("&","*")}) &`,d=!0}),!d)return null}),r.suggest("in",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("in",f))),r.compound("has",2,(f,m)=>{if(m.modifier)return null;let d=!1;if(I([f],(c,w)=>{if(c.kind!=="rule")return E.Continue;for(let h of w.path())if(h.kind==="rule")return d=!1,E.Stop;c.selector=`&:has(${c.selector.replaceAll("&","*")})`,d=!0}),!d)return null}),r.suggest("has",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("has",f))),r.functional("aria",(f,m)=>{if(!m.value||m.modifier)return null;m.value.kind==="arbitrary"?f.nodes=[G(`&[aria-${ki(m.value.value)}]`,f.nodes)]:f.nodes=[G(`&[aria-${m.value.value}="true"]`,f.nodes)]}),r.suggest("aria",()=>["busy","checked","disabled","expanded","hidden","pressed","readonly","required","selected"]),r.functional("data",(f,m)=>{if(!m.value||m.modifier)return null;f.nodes=[G(`&[data-${ki(m.value.value)}]`,f.nodes)]}),r.functional("nth",(f,m)=>{if(!m.value||m.modifier||m.value.kind==="named"&&!P(m.value.value))return null;f.nodes=[G(`&:nth-child(${m.value.value})`,f.nodes)]}),r.functional("nth-last",(f,m)=>{if(!m.value||m.modifier||m.value.kind==="named"&&!P(m.value.value))return null;f.nodes=[G(`&:nth-last-child(${m.value.value})`,f.nodes)]}),r.functional("nth-of-type",(f,m)=>{if(!m.value||m.modifier||m.value.kind==="named"&&!P(m.value.value))return null;f.nodes=[G(`&:nth-of-type(${m.value.value})`,f.nodes)]}),r.functional("nth-last-of-type",(f,m)=>{if(!m.value||m.modifier||m.value.kind==="named"&&!P(m.value.value))return null;f.nodes=[G(`&:nth-last-of-type(${m.value.value})`,f.nodes)]}),r.functional("supports",(f,m)=>{if(!m.value||m.modifier)return null;let d=m.value.value;if(d===null)return null;if(/^[\w-]*\s*\(/.test(d)){let c=d.replace(/\b(and|or|not)\b/g," $1 ");f.nodes=[F("@supports",c,f.nodes)];return}d.includes(":")||(d=`${d}: var(--tw)`),(d[0]!=="("||d[d.length-1]!==")")&&(d=`(${d})`),f.nodes=[F("@supports",d,f.nodes)]},{compounds:1}),i("motion-safe",["@media (prefers-reduced-motion: no-preference)"]),i("motion-reduce",["@media (prefers-reduced-motion: reduce)"]),i("contrast-more",["@media (prefers-contrast: more)"]),i("contrast-less",["@media (prefers-contrast: less)"]);{let f=function(m,d,c,w){if(m===d)return 0;let h=w.get(m);if(h===null)return c==="asc"?-1:1;let y=w.get(d);return y===null?c==="asc"?1:-1:Ve(h,y,c)};var u=f;{let m=t.namespace("--breakpoint"),d=new K(c=>{switch(c.kind){case"static":return t.resolveValue(c.root,["--breakpoint"])??null;case"functional":{if(!c.value||c.modifier)return null;let w=null;return c.value.kind==="arbitrary"?w=c.value.value:c.value.kind==="named"&&(w=t.resolveValue(c.value.value,["--breakpoint"])),!w||w.includes("var(")?null:w}case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("max",(c,w)=>{if(w.modifier)return null;let h=d.get(w);if(h===null)return null;c.nodes=[F("@media",`(width < ${h})`,c.nodes)]},{compounds:1})},(c,w)=>f(c,w,"desc",d)),r.suggest("max",()=>Array.from(m.keys()).filter(c=>c!==null)),r.group(()=>{for(let[c,w]of t.namespace("--breakpoint"))c!==null&&r.static(c,h=>{h.nodes=[F("@media",`(width >= ${w})`,h.nodes)]},{compounds:1});r.functional("min",(c,w)=>{if(w.modifier)return null;let h=d.get(w);if(h===null)return null;c.nodes=[F("@media",`(width >= ${h})`,c.nodes)]},{compounds:1})},(c,w)=>f(c,w,"asc",d)),r.suggest("min",()=>Array.from(m.keys()).filter(c=>c!==null))}{let m=t.namespace("--container"),d=new K(c=>{switch(c.kind){case"functional":{if(c.value===null)return null;let w=null;return c.value.kind==="arbitrary"?w=c.value.value:c.value.kind==="named"&&(w=t.resolveValue(c.value.value,["--container"])),!w||w.includes("var(")?null:w}case"static":case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("@max",(c,w)=>{let h=d.get(w);if(h===null)return null;c.nodes=[F("@container",w.modifier?`${w.modifier.value} (width < ${h})`:`(width < ${h})`,c.nodes)]},{compounds:1})},(c,w)=>f(c,w,"desc",d)),r.suggest("@max",()=>Array.from(m.keys()).filter(c=>c!==null)),r.group(()=>{r.functional("@",(c,w)=>{let h=d.get(w);if(h===null)return null;c.nodes=[F("@container",w.modifier?`${w.modifier.value} (width >= ${h})`:`(width >= ${h})`,c.nodes)]},{compounds:1}),r.functional("@min",(c,w)=>{let h=d.get(w);if(h===null)return null;c.nodes=[F("@container",w.modifier?`${w.modifier.value} (width >= ${h})`:`(width >= ${h})`,c.nodes)]},{compounds:1})},(c,w)=>f(c,w,"asc",d)),r.suggest("@min",()=>Array.from(m.keys()).filter(c=>c!==null)),r.suggest("@",()=>Array.from(m.keys()).filter(c=>c!==null))}}return i("portrait",["@media (orientation: portrait)"]),i("landscape",["@media (orientation: landscape)"]),i("ltr",['&:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *)']),i("rtl",['&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *)']),i("dark",["@media (prefers-color-scheme: dark)"]),i("starting",["@starting-style"]),i("print",["@media print"]),i("forced-colors",["@media (forced-colors: active)"]),i("inverted-colors",["@media (inverted-colors: inverted)"]),i("pointer-none",["@media (pointer: none)"]),i("pointer-coarse",["@media (pointer: coarse)"]),i("pointer-fine",["@media (pointer: fine)"]),i("any-pointer-none",["@media (any-pointer: none)"]),i("any-pointer-coarse",["@media (any-pointer: coarse)"]),i("any-pointer-fine",["@media (any-pointer: fine)"]),i("noscript",["@media (scripting: none)"]),r}function ki(t){if(t.includes("=")){let[r,...i]=j(t,"="),e=i.join("=").trim();if(e[0]==="'"||e[0]==='"')return t;if(e.length>1){let n=e[e.length-1];if(e[e.length-2]===" "&&(n==="i"||n==="I"||n==="s"||n==="S"))return`${r}="${e.slice(0,-2)}" ${n}`}return`${r}="${e}"`}return t}function Gt(t,r){I(t,i=>{if(i.kind==="at-rule"&&i.name==="@slot")return E.Replace(r);if(i.kind==="at-rule"&&(i.name==="@keyframes"||i.name==="@property"))return Object.assign(i,W([F(i.name,i.params,i.nodes)])),E.Skip})}function Qe(t,r){let i=0;return I(t,e=>{if(e.kind!=="at-rule"||e.name!=="@variant")return;let n=G("&",e.nodes),s=e.params,a=r.parseVariant(s);if(a===null)throw new Error(`Cannot use \`@variant\` with unknown variant: ${s}`);if(ze(n,a,r.variants)===null)throw new Error(`Cannot use \`@variant\` with variant: ${s}`);return i|=32,E.Replace(n)}),i}function xi(t,r){let i=Dr(t),e=bi(t),n=new K(d=>Nr(d,m)),s=new K(d=>Array.from(Vr(d,m))),a=new K(d=>new K(c=>{let w=Ai(c,m,d);try{De(w.map(({node:h})=>h),m),Qe(w.map(({node:h})=>h),m)}catch{return[]}return w})),p=new K(d=>{for(let c of st(d))t.markUsedVariable(c)});function u(d){let c=[];for(let w of d){let h=!0,{astNodes:y}=Ce([w],m,{onInvalidCandidate(){h=!1}});r&&I(y,x=>(x.src??=r,E.Continue)),y=Te(y,m,0),c.push(h?y:[])}return c}function f(d){return u(d).map(c=>c.length>0?re(c):null)}let m={theme:t,utilities:i,variants:e,invalidCandidates:new Set,important:!1,candidatesToCss:f,candidatesToAst:u,getClassOrder(d){return yi(this,d)},getClassList(){return vi(this)},getVariants(){return wi(this)},parseCandidate(d){return s.get(d)},parseVariant(d){return n.get(d)},compileAstNodes(d,c=1){return a.get(c).get(d)},printCandidate(d){return Rr(m,d)},printVariant(d){return ut(d)},getVariantOrder(){let d=Array.from(n.values());d.sort((y,x)=>this.variants.compare(y,x));let c=new Map,w,h=0;for(let y of d)y!==null&&(w!==void 0&&this.variants.compare(w,y)!==0&&h++,c.set(y,h),w=y);return c},resolveThemeValue(d,c=!0){let w=d.lastIndexOf("/"),h=null;w!==-1&&(h=d.slice(w+1).trim(),d=d.slice(0,w).trim());let y=t.resolve(null,[d],c?1:0)??void 0;return h&&y?Q(y,h):y},trackUsedVariables(d){p.get(d)},canonicalizeCandidates(d,c){return Mt(this,d,c)},storage:{}};return m}var qt=["container-type","pointer-events","visibility","position","inset","inset-inline","inset-block","inset-inline-start","inset-inline-end","top","right","bottom","left","isolation","z-index","order","grid-column","grid-column-start","grid-column-end","grid-row","grid-row-start","grid-row-end","float","clear","--tw-container-component","margin","margin-inline","margin-block","margin-inline-start","margin-inline-end","margin-top","margin-right","margin-bottom","margin-left","box-sizing","display","field-sizing","aspect-ratio","height","max-height","min-height","width","max-width","min-width","flex","flex-shrink","flex-grow","flex-basis","table-layout","caption-side","border-collapse","border-spacing","transform-origin","translate","--tw-translate-x","--tw-translate-y","--tw-translate-z","scale","--tw-scale-x","--tw-scale-y","--tw-scale-z","rotate","--tw-rotate-x","--tw-rotate-y","--tw-rotate-z","--tw-skew-x","--tw-skew-y","transform","animation","cursor","touch-action","--tw-pan-x","--tw-pan-y","--tw-pinch-zoom","resize","scroll-snap-type","--tw-scroll-snap-strictness","scroll-snap-align","scroll-snap-stop","scroll-margin","scroll-margin-inline","scroll-margin-block","scroll-margin-inline-start","scroll-margin-inline-end","scroll-margin-top","scroll-margin-right","scroll-margin-bottom","scroll-margin-left","scroll-padding","scroll-padding-inline","scroll-padding-block","scroll-padding-inline-start","scroll-padding-inline-end","scroll-padding-top","scroll-padding-right","scroll-padding-bottom","scroll-padding-left","list-style-position","list-style-type","list-style-image","appearance","columns","break-before","break-inside","break-after","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-template-columns","grid-template-rows","flex-direction","flex-wrap","place-content","place-items","align-content","align-items","justify-content","justify-items","gap","column-gap","row-gap","--tw-space-x-reverse","--tw-space-y-reverse","divide-x-width","divide-y-width","--tw-divide-y-reverse","divide-style","divide-color","place-self","align-self","justify-self","overflow","overflow-x","overflow-y","overscroll-behavior","overscroll-behavior-x","overscroll-behavior-y","scroll-behavior","border-radius","border-start-radius","border-end-radius","border-top-radius","border-right-radius","border-bottom-radius","border-left-radius","border-start-start-radius","border-start-end-radius","border-end-end-radius","border-end-start-radius","border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius","border-width","border-inline-width","border-block-width","border-inline-start-width","border-inline-end-width","border-top-width","border-right-width","border-bottom-width","border-left-width","border-style","border-inline-style","border-block-style","border-inline-start-style","border-inline-end-style","border-top-style","border-right-style","border-bottom-style","border-left-style","border-color","border-inline-color","border-block-color","border-inline-start-color","border-inline-end-color","border-top-color","border-right-color","border-bottom-color","border-left-color","background-color","background-image","--tw-gradient-position","--tw-gradient-stops","--tw-gradient-via-stops","--tw-gradient-from","--tw-gradient-from-position","--tw-gradient-via","--tw-gradient-via-position","--tw-gradient-to","--tw-gradient-to-position","mask-image","--tw-mask-top","--tw-mask-top-from-color","--tw-mask-top-from-position","--tw-mask-top-to-color","--tw-mask-top-to-position","--tw-mask-right","--tw-mask-right-from-color","--tw-mask-right-from-position","--tw-mask-right-to-color","--tw-mask-right-to-position","--tw-mask-bottom","--tw-mask-bottom-from-color","--tw-mask-bottom-from-position","--tw-mask-bottom-to-color","--tw-mask-bottom-to-position","--tw-mask-left","--tw-mask-left-from-color","--tw-mask-left-from-position","--tw-mask-left-to-color","--tw-mask-left-to-position","--tw-mask-linear","--tw-mask-linear-position","--tw-mask-linear-from-color","--tw-mask-linear-from-position","--tw-mask-linear-to-color","--tw-mask-linear-to-position","--tw-mask-radial","--tw-mask-radial-shape","--tw-mask-radial-size","--tw-mask-radial-position","--tw-mask-radial-from-color","--tw-mask-radial-from-position","--tw-mask-radial-to-color","--tw-mask-radial-to-position","--tw-mask-conic","--tw-mask-conic-position","--tw-mask-conic-from-color","--tw-mask-conic-from-position","--tw-mask-conic-to-color","--tw-mask-conic-to-position","box-decoration-break","background-size","background-attachment","background-clip","background-position","background-repeat","background-origin","mask-composite","mask-mode","mask-type","mask-size","mask-clip","mask-position","mask-repeat","mask-origin","fill","stroke","stroke-width","object-fit","object-position","padding","padding-inline","padding-block","padding-inline-start","padding-inline-end","padding-top","padding-right","padding-bottom","padding-left","text-align","text-indent","vertical-align","font-family","font-size","line-height","font-weight","letter-spacing","text-wrap","overflow-wrap","word-break","text-overflow","hyphens","white-space","color","text-transform","font-style","font-stretch","font-variant-numeric","text-decoration-line","text-decoration-color","text-decoration-style","text-decoration-thickness","text-underline-offset","-webkit-font-smoothing","placeholder-color","caret-color","accent-color","color-scheme","opacity","background-blend-mode","mix-blend-mode","box-shadow","--tw-shadow","--tw-shadow-color","--tw-ring-shadow","--tw-ring-color","--tw-inset-shadow","--tw-inset-shadow-color","--tw-inset-ring-shadow","--tw-inset-ring-color","--tw-ring-offset-width","--tw-ring-offset-color","outline","outline-width","outline-offset","outline-color","--tw-blur","--tw-brightness","--tw-contrast","--tw-drop-shadow","--tw-grayscale","--tw-hue-rotate","--tw-invert","--tw-saturate","--tw-sepia","filter","--tw-backdrop-blur","--tw-backdrop-brightness","--tw-backdrop-contrast","--tw-backdrop-grayscale","--tw-backdrop-hue-rotate","--tw-backdrop-invert","--tw-backdrop-opacity","--tw-backdrop-saturate","--tw-backdrop-sepia","backdrop-filter","transition-property","transition-behavior","transition-delay","transition-duration","transition-timing-function","will-change","contain","content","forced-color-adjust"];function Ce(t,r,{onInvalidCandidate:i,respectImportant:e}={}){let n=new Map,s=[],a=new Map;for(let f of t){if(r.invalidCandidates.has(f)){i?.(f);continue}let m=r.parseCandidate(f);if(m.length===0){i?.(f);continue}a.set(f,m)}let p=0;(e??!0)&&(p|=1);let u=r.getVariantOrder();for(let[f,m]of a){let d=!1;for(let c of m){let w=r.compileAstNodes(c,p);if(w.length!==0){d=!0;for(let{node:h,propertySort:y}of w){let x=0n;for(let $ of c.variants)x|=1n<<BigInt(u.get($));n.set(h,{properties:y,variants:x,candidate:f}),s.push(h)}}}d||i?.(f)}return s.sort((f,m)=>{let d=n.get(f),c=n.get(m);if(d.variants-c.variants!==0n)return Number(d.variants-c.variants);let w=0;for(;w<d.properties.order.length&&w<c.properties.order.length&&d.properties.order[w]===c.properties.order[w];)w+=1;return(d.properties.order[w]??1/0)-(c.properties.order[w]??1/0)||c.properties.count-d.properties.count||pt(d.candidate,c.candidate)}),{astNodes:s,nodeSorting:n}}function Ai(t,r,i){let e=Ra(t,r);if(e.length===0)return[];let n=r.important&&!!(i&1),s=[],a=`.${ye(t.raw)}`;for(let p of e){let u=Oa(p);(t.important||n)&&$i(p);let f={kind:"rule",selector:a,nodes:p};for(let m of t.variants)if(ze(f,m,r.variants)===null)return[];s.push({node:f,propertySort:u})}return s}function ze(t,r,i,e=0){if(r.kind==="arbitrary"){if(r.relative&&e===0)return null;t.nodes=[J(r.selector,t.nodes)];return}let{applyFn:n}=i.get(r.root);if(r.kind==="compound"){let a=F("@slot");if(ze(a,r.variant,i,e+1)===null||r.root==="not"&&a.nodes.length>1)return null;for(let u of a.nodes)if(u.kind!=="rule"&&u.kind!=="at-rule"||n(u,r)===null)return null;I(a.nodes,u=>{if((u.kind==="rule"||u.kind==="at-rule")&&u.nodes.length<=0)return u.nodes=t.nodes,E.Skip}),t.nodes=a.nodes;return}if(n(t,r)===null)return null}function Ci(t){let r=t.options?.types??[];return r.length>1&&r.includes("any")}function Ra(t,r){if(t.kind==="arbitrary"){let a=t.value;return t.modifier&&(a=X(a,t.modifier,r.theme)),a===null?[]:[[o(t.property,a)]]}let i=r.utilities.get(t.root)??[],e=[],n=i.filter(a=>!Ci(a));for(let a of n){if(a.kind!==t.kind)continue;let p=a.compileFn(t);if(p!==void 0){if(p===null)return e;e.push(p)}}if(e.length>0)return e;let s=i.filter(a=>Ci(a));for(let a of s){if(a.kind!==t.kind)continue;let p=a.compileFn(t);if(p!==void 0){if(p===null)return e;e.push(p)}}return e}function $i(t){for(let r of t)r.kind!=="at-root"&&(r.kind==="declaration"?r.important=!0:(r.kind==="rule"||r.kind==="at-rule")&&$i(r.nodes))}function Oa(t){let r=new Set,i=0,e=t.slice(),n=!1;for(;e.length>0;){let s=e.shift();if(s.kind==="declaration"){if(s.value===void 0||(i++,n))continue;if(s.property==="--tw-sort"){let p=qt.indexOf(s.value??"");if(p!==-1){r.add(p),n=!0;continue}}let a=qt.indexOf(s.property);a!==-1&&r.add(a)}else if(s.kind==="rule"||s.kind==="at-rule")for(let a of s.nodes)e.push(a)}return{order:Array.from(r).sort((s,a)=>s-a),count:i}}function Ae(t,r){let i=0,e=J("&",t),n=new Set,s=new K(()=>new Set),a=new K(()=>new Set);I([e],(d,c)=>{if(d.kind==="at-rule"){if(d.name==="@keyframes")return I(d.nodes,w=>{if(w.kind==="at-rule"&&w.name==="@apply")throw new Error("You cannot use `@apply` inside `@keyframes`.")}),E.Skip;if(d.name==="@utility"){let w=d.params.replace(/-\*$/,"");a.get(w).add(d),I(d.nodes,h=>{if(!(h.kind!=="at-rule"||h.name!=="@apply")){n.add(d);for(let y of Si(h,r))s.get(d).add(y)}});return}if(d.name==="@apply"){if(c.parent===null)return;i|=1,n.add(c.parent);for(let w of Si(d,r))for(let h of c.path())n.has(h)&&s.get(h).add(w)}}});let p=new Set,u=[],f=new Set;function m(d,c=[]){if(!p.has(d)){if(f.has(d)){let w=c[(c.indexOf(d)+1)%c.length];throw d.kind==="at-rule"&&d.name==="@utility"&&w.kind==="at-rule"&&w.name==="@utility"&&I(d.nodes,h=>{if(h.kind!=="at-rule"||h.name!=="@apply")return;let y=h.params.split(/\s+/g);for(let x of y)for(let $ of r.parseCandidate(x))switch($.kind){case"arbitrary":break;case"static":case"functional":if(w.params.replace(/-\*$/,"")===$.root)throw new Error(`You cannot \`@apply\` the \`${x}\` utility here because it creates a circular dependency.`);break;default:}}),new Error(`Circular dependency detected:
+
+${re([d])}
+Relies on:
+
+${re([w])}`)}f.add(d);for(let w of s.get(d))for(let h of a.get(w))c.push(d),m(h,c),c.pop();p.add(d),f.delete(d),u.push(d)}}for(let d of n)m(d);for(let d of u)"nodes"in d&&I(d.nodes,c=>{if(c.kind!=="at-rule"||c.name!=="@apply")return;let w=c.params.split(/(\s+)/g),h={},y=0;for(let[x,$]of w.entries())x%2===0&&(h[$]=y),y+=$.length;{let x=Object.keys(h),$=Ce(x,r,{respectImportant:!1,onInvalidCandidate:N=>{if(r.theme.prefix&&!N.startsWith(r.theme.prefix))throw new Error(`Cannot apply unprefixed utility class \`${N}\`. Did you mean \`${r.theme.prefix}:${N}\`?`);if(r.invalidCandidates.has(N))throw new Error(`Cannot apply utility class \`${N}\` because it has been explicitly disabled: https://tailwindcss.com/docs/detecting-classes-in-source-files#explicitly-excluding-classes`);let O=j(N,":");if(O.length>1){let L=O.pop();if(r.candidatesToCss([L])[0]){let _=r.candidatesToCss(O.map(Y=>`${Y}:[--tw-variant-check:1]`)),z=O.filter((Y,q)=>_[q]===null);if(z.length>0){if(z.length===1)throw new Error(`Cannot apply utility class \`${N}\` because the ${z.map(Y=>`\`${Y}\``)} variant does not exist.`);{let Y=new Intl.ListFormat("en",{style:"long",type:"conjunction"});throw new Error(`Cannot apply utility class \`${N}\` because the ${Y.format(z.map(q=>`\`${q}\``))} variants do not exist.`)}}}}throw r.theme.size===0?new Error(`Cannot apply unknown utility class \`${N}\`. Are you using CSS modules or similar and missing \`@reference\`? https://tailwindcss.com/docs/functions-and-directives#reference-directive`):new Error(`Cannot apply unknown utility class \`${N}\``)}}),A=c.src,k=$.astNodes.map(N=>{let O=$.nodeSorting.get(N)?.candidate,L=O?h[O]:void 0;if(N=ee(N),!A||!O||L===void 0)return I([N],z=>{z.src=A}),N;let _=[A[0],A[1],A[2]];return _[1]+=7+L,_[2]=_[1]+O.length,I([N],z=>{z.src=_}),N}),U=[];for(let N of k)if(N.kind==="rule")for(let O of N.nodes)U.push(O);else U.push(N);return E.Replace(U)}});return i}function*Si(t,r){for(let i of t.params.split(/\s+/g))for(let e of r.parseCandidate(i))switch(e.kind){case"arbitrary":break;case"static":case"functional":yield e.root;break;default:}}async function Zt(t,r,i,e=0,n=!1){let s=0,a=[];return I(t,p=>{if(p.kind==="at-rule"&&(p.name==="@import"||p.name==="@reference")){let u=Pa(B(p.params));if(u===null)return;p.name==="@reference"&&(u.media="reference"),s|=2;let{uri:f,layer:m,media:d,supports:c}=u;if(f.startsWith("data:")||f.startsWith("http://")||f.startsWith("https://"))return;let w=ce({},[]);return a.push((async()=>{if(e>100)throw new Error(`Exceeded maximum recursion depth while resolving \`${f}\` in \`${r}\`)`);let h=await i(f,r),y=$e(h.content,{from:n?h.path:void 0});await Zt(y,h.base,i,e+1,n),w.nodes=Ia(p,[ce({base:h.base},y)],m,d,c)})()),E.ReplaceSkip(w)}}),a.length>0&&await Promise.all(a),s}function Pa(t){let r,i=null,e=null,n=null;for(let s=0;s<t.length;s++){let a=t[s];if(a.kind!=="separator"){if(a.kind==="word"&&!r){if(!a.value||a.value[0]!=='"'&&a.value[0]!=="'")return null;r=a.value.slice(1,-1);continue}if(a.kind==="function"&&a.value.toLowerCase()==="url"||!r)return null;if((a.kind==="word"||a.kind==="function")&&a.value.toLowerCase()==="layer"){if(i)return null;if(n)throw new Error("`layer(\u2026)` in an `@import` should come before any other functions or conditions");"nodes"in a?i=Z(a.nodes):i="";continue}if(a.kind==="function"&&a.value.toLowerCase()==="supports"){if(n)return null;n=Z(a.nodes);continue}e=Z(t.slice(s));break}}return r?{uri:r,layer:i,media:e,supports:n}:null}function Ia(t,r,i,e,n){let s=r;if(i!==null){let a=F("@layer",i,s);a.src=t.src,s=[a]}if(e!==null){let a=F("@media",e,s);a.src=t.src,s=[a]}if(n!==null){let a=F("@supports",n[0]==="("?n:`(${n})`,s);a.src=t.src,s=[a]}return s}function Me(t){if(Object.prototype.toString.call(t)!=="[object Object]")return!1;let r=Object.getPrototypeOf(t);return r===null||Object.getPrototypeOf(r)===null}function Xe(t,r,i,e=[]){for(let n of r)if(n!=null)for(let s of Reflect.ownKeys(n)){e.push(s);let a=i(t[s],n[s],e);a!==void 0?t[s]=a:!Me(t[s])||!Me(n[s])?t[s]=n[s]:t[s]=Xe({},[t[s],n[s]],i,e),e.pop()}return t}function bt(t,r,i){return function(n,s){let a=n.lastIndexOf("/"),p=null;a!==-1&&(p=n.slice(a+1).trim(),n=n.slice(0,a).trim());let u=(()=>{let f=Oe(n),[m,d]=_a(t.theme,f),c=i(Ti(r()??{},f)??null);if(typeof c=="string"&&(c=c.replace("<alpha-value>","1")),typeof m!="object")return typeof d!="object"&&d&4?c??m:m;if(c!==null&&typeof c=="object"&&!Array.isArray(c)){let w=Xe({},[c],(h,y)=>y);if(m===null&&Object.hasOwn(c,"__CSS_VALUES__")){let h={};for(let y in c.__CSS_VALUES__)h[y]=c[y],delete w[y];m=h}for(let h in m)h!=="__CSS_VALUES__"&&(c?.__CSS_VALUES__?.[h]&4&&Ti(w,h.split("-"))!==void 0||(w[Se(h)]=m[h]));return w}if(Array.isArray(m)&&Array.isArray(d)&&Array.isArray(c)){let w=m[0],h=m[1];d[0]&4&&(w=c[0]??w);for(let y of Object.keys(h))d[1][y]&4&&(h[y]=c[1][y]??h[y]);return[w,h]}return m??c})();return p&&typeof u=="string"&&(u=Q(u,p)),u??s}}function _a(t,r){if(r.length===1&&r[0].startsWith("--"))return[t.get([r[0]]),t.getOptions(r[0])];let i=je(r),e=new Map,n=new K(()=>new Map),s=t.namespace(`--${i}`);if(s.size===0)return[null,0];let a=new Map;for(let[m,d]of s){if(!m||!m.includes("--")){e.set(m,d),a.set(m,t.getOptions(m?`--${i}-${m}`:`--${i}`));continue}let c=m.indexOf("--"),w=m.slice(0,c),h=m.slice(c+2);h=h.replace(/-([a-z])/g,(y,x)=>x.toUpperCase()),n.get(w===""?null:w).set(h,[d,t.getOptions(`--${i}${m}`)])}let p=t.getOptions(`--${i}`);for(let[m,d]of n){let c=e.get(m);if(typeof c!="string")continue;let w={},h={};for(let[y,[x,$]]of d)w[y]=x,h[y]=$;e.set(m,[c,w]),a.set(m,[p,h])}let u={},f={};for(let[m,d]of e)Vi(u,[m??"DEFAULT"],d);for(let[m,d]of a)Vi(f,[m??"DEFAULT"],d);return r[r.length-1]==="DEFAULT"?[u?.DEFAULT??null,f.DEFAULT??0]:"DEFAULT"in u&&Object.keys(u).length===1?[u.DEFAULT,f.DEFAULT??0]:(u.__CSS_VALUES__=f,[u,f])}function Ti(t,r){for(let i=0;i<r.length;++i){let e=r[i];if(t?.[e]===void 0){if(r[i+1]===void 0)return;r[i+1]=`${e}-${r[i+1]}`;continue}if(typeof t=="string")return;t=t[e]}return t}function Vi(t,r,i){for(let e of r.slice(0,-1))t[e]===void 0&&(t[e]={}),t=t[e];t[r[r.length-1]]=i}var Ni=/^[a-z@][a-zA-Z0-9/%._-]*$/;function Ht({designSystem:t,ast:r,resolvedConfig:i,featuresRef:e,referenceMode:n,src:s}){let a={addBase(p){if(n)return;let u=me(p);e.current|=De(u,t);let f=F("@layer","base",u);I([f],m=>{m.src=s}),r.push(f)},addVariant(p,u){if(!kt.test(p))throw new Error(`\`addVariant('${p}')\` defines an invalid variant name. Variants should only contain alphanumeric, dashes, or underscore characters and start with a lowercase letter or number.`);if(typeof u=="string"){if(u.includes(":merge("))return}else if(Array.isArray(u)){if(u.some(m=>m.includes(":merge(")))return}else if(typeof u=="object"){let m=function(d,c){return Object.entries(d).some(([w,h])=>w.includes(c)||typeof h=="object"&&m(h,c))};var f=m;if(m(u,":merge("))return}typeof u=="string"||Array.isArray(u)?t.variants.static(p,m=>{m.nodes=Ei(u,m.nodes)},{compounds:Pe(typeof u=="string"?[u]:u)}):typeof u=="object"&&t.variants.fromAst(p,me(u),t)},matchVariant(p,u,f){function m(c,w,h){let y=u(c,{modifier:w?.value??null});return Ei(y,h)}try{let c=u("a",{modifier:null});if(typeof c=="string"&&c.includes(":merge("))return;if(Array.isArray(c)&&c.some(w=>w.includes(":merge(")))return}catch{}let d=Object.keys(f?.values??{});t.variants.group(()=>{t.variants.functional(p,(c,w)=>{if(!w.value){if(f?.values&&"DEFAULT"in f.values){c.nodes=m(f.values.DEFAULT,w.modifier,c.nodes);return}return null}if(w.value.kind==="arbitrary")c.nodes=m(w.value.value,w.modifier,c.nodes);else if(w.value.kind==="named"&&f?.values){let h=f.values[w.value.value];if(typeof h!="string")return null;c.nodes=m(h,w.modifier,c.nodes)}else return null})},(c,w)=>{if(c.kind!=="functional"||w.kind!=="functional")return 0;let h=c.value?c.value.value:"DEFAULT",y=w.value?w.value.value:"DEFAULT",x=f?.values?.[h]??h,$=f?.values?.[y]??y;if(f&&typeof f.sort=="function")return f.sort({value:x,modifier:c.modifier?.value??null},{value:$,modifier:w.modifier?.value??null});let A=d.indexOf(h),k=d.indexOf(y);return A=A===-1?d.length:A,k=k===-1?d.length:k,A!==k?A-k:x<$?-1:1}),t.variants.suggest(p,()=>Object.keys(f?.values??{}).filter(c=>c!=="DEFAULT"))},addUtilities(p){p=Array.isArray(p)?p:[p];let u=p.flatMap(m=>Object.entries(m));u=u.flatMap(([m,d])=>j(m,",").map(c=>[c.trim(),d]));let f=new K(()=>[]);for(let[m,d]of u){if(m.startsWith("@keyframes ")){if(!n){let h=J(m,me(d));I([h],y=>{y.src=s}),r.push(h)}continue}let c=Re(m),w=!1;if(I(c,h=>{if(h.kind==="selector"&&h.value[0]==="."&&Ni.test(h.value.slice(1))){let y=h.value;h.value="&";let x=pe(c),$=y.slice(1),A=x==="&"?me(d):[J(x,me(d))];f.get($).push(...A),w=!0,h.value=y;return}if(h.kind==="function"&&h.value===":not")return E.Skip}),!w)throw new Error(`\`addUtilities({ '${m}' : \u2026 })\` defines an invalid utility selector. Utilities must be a single class name and start with a lowercase letter, eg. \`.scrollbar-none\`.`)}for(let[m,d]of f)t.theme.prefix&&I(d,c=>{if(c.kind==="rule"){let w=Re(c.selector);I(w,h=>{h.kind==="selector"&&h.value[0]==="."&&(h.value=`.${t.theme.prefix}\\:${h.value.slice(1)}`)}),c.selector=pe(w)}}),t.utilities.static(m,c=>{let w=d.map(ee);return Ri(w,m,c.raw),e.current|=Ae(w,t),w})},matchUtilities(p,u){let f=u?.type?Array.isArray(u?.type)?u.type:[u.type]:["any"];for(let[d,c]of Object.entries(p)){let w=function({negative:h}){return y=>{if(y.value?.kind==="arbitrary"&&f.length>0&&!f.includes("any")&&(y.value.dataType&&!f.includes(y.value.dataType)||!y.value.dataType&&!H(y.value.value,f)))return;let x=f.includes("color"),$=null,A=!1;{let N=u?.values??{};x&&(N=Object.assign({inherit:"inherit",transparent:"transparent",current:"currentcolor"},N)),y.value?y.value.kind==="arbitrary"?$=y.value.value:y.value.fraction&&N[y.value.fraction]?($=N[y.value.fraction],A=!0):N[y.value.value]?$=N[y.value.value]:N.__BARE_VALUE__&&($=N.__BARE_VALUE__(y.value)??null,A=(y.value.fraction!==null&&$?.includes("/"))??!1):$=N.DEFAULT??null}if($===null)return;let k;{let N=u?.modifiers??null;y.modifier?N==="any"||y.modifier.kind==="arbitrary"?k=y.modifier.value:N?.[y.modifier.value]?k=N[y.modifier.value]:x&&!Number.isNaN(Number(y.modifier.value))?k=`${y.modifier.value}%`:k=null:k=null}if(y.modifier&&k===null&&!A)return y.value?.kind==="arbitrary"?null:void 0;x&&k!==null&&($=Q($,k)),h&&($=`calc(${$} * -1)`);let U=me(c($,{modifier:k}));return Ri(U,d,y.raw),e.current|=Ae(U,t),U}};var m=w;if(!Ni.test(d))throw new Error(`\`matchUtilities({ '${d}' : \u2026 })\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter, eg. \`scrollbar\`.`);u?.supportsNegativeValues&&t.utilities.functional(`-${d}`,w({negative:!0}),{types:f}),t.utilities.functional(d,w({negative:!1}),{types:f}),t.utilities.suggest(d,()=>{let h=u?.values??{},y=new Set(Object.keys(h));y.delete("__BARE_VALUE__"),y.delete("__CSS_VALUES__"),y.has("DEFAULT")&&(y.delete("DEFAULT"),y.add(null));let x=u?.modifiers??{},$=x==="any"?[]:Object.keys(x);return[{supportsNegative:u?.supportsNegativeValues??!1,values:Array.from(y),modifiers:$}]})}},addComponents(p,u){this.addUtilities(p,u)},matchComponents(p,u){this.matchUtilities(p,u)},theme:bt(t,()=>i.theme??{},p=>p),prefix(p){return p},config(p,u){let f=i;if(!p)return f;let m=Oe(p);for(let d=0;d<m.length;++d){let c=m[d];if(f[c]===void 0)return u;f=f[c]}return f??u}};return a.addComponents=a.addComponents.bind(a),a.matchComponents=a.matchComponents.bind(a),a}function me(t){let r=[];t=Array.isArray(t)?t:[t];let i=t.flatMap(e=>Object.entries(e));for(let[e,n]of i)if(n!=null&&n!==!1)if(typeof n!="object"){if(!e.startsWith("--")){if(n==="@slot"){r.push(J(e,[F("@slot")]));continue}e=e.replace(/([A-Z])/g,"-$1").toLowerCase()}r.push(o(e,String(n)))}else if(Array.isArray(n))for(let s of n)typeof s=="string"?r.push(o(e,s)):r.push(J(e,me(s)));else r.push(J(e,me(n)));return r}function Ei(t,r){return(typeof t=="string"?[t]:t).flatMap(e=>{if(e.trim().endsWith("}")){let n=e.replace("}","{@slot}}"),s=$e(n);return Gt(s,r),s}else return J(e,r)})}function Ri(t,r,i){I(t,e=>{if(e.kind==="rule"){let n=Re(e.selector);I(n,s=>{s.kind==="selector"&&s.value===`.${r}`&&(s.value=`.${ye(i)}`)}),e.selector=pe(n)}})}function Oi(t,r){for(let i of Da(r))t.theme.addKeyframes(i)}function Da(t){let r=[];if("keyframes"in t.theme)for(let[i,e]of Object.entries(t.theme.keyframes))r.push(F("@keyframes",i,me(e)));return r}function Pi(t){return{theme:{...rr,colors:({theme:r})=>r("color",{}),extend:{fontSize:({theme:r})=>({...r("text",{})}),boxShadow:({theme:r})=>({...r("shadow",{})}),animation:({theme:r})=>({...r("animate",{})}),aspectRatio:({theme:r})=>({...r("aspect",{})}),borderRadius:({theme:r})=>({...r("radius",{})}),screens:({theme:r})=>({...r("breakpoint",{})}),letterSpacing:({theme:r})=>({...r("tracking",{})}),lineHeight:({theme:r})=>({...r("leading",{})}),transitionDuration:{DEFAULT:t.get(["--default-transition-duration"])??null},transitionTimingFunction:{DEFAULT:t.get(["--default-transition-timing-function"])??null},maxWidth:({theme:r})=>({...r("container",{})})}}}}var Ka={blocklist:[],future:{},experimental:{},prefix:"",important:!1,darkMode:null,theme:{},plugins:[],content:{files:[]}};function Qt(t,r){let i={design:t,configs:[],plugins:[],content:{files:[]},theme:{},extend:{},result:structuredClone(Ka)};for(let n of r)Jt(i,n);for(let n of i.configs)"darkMode"in n&&n.darkMode!==void 0&&(i.result.darkMode=n.darkMode??null),"prefix"in n&&n.prefix!==void 0&&(i.result.prefix=n.prefix??""),"blocklist"in n&&n.blocklist!==void 0&&(i.result.blocklist=n.blocklist??[]),"important"in n&&n.important!==void 0&&(i.result.important=n.important??!1);let e=La(i);return{resolvedConfig:{...i.result,content:i.content,theme:i.theme,plugins:i.plugins},replacedThemeKeys:e}}function Ua(t,r){if(Array.isArray(t)&&Me(t[0]))return t.concat(r);if(Array.isArray(r)&&Me(r[0])&&Me(t))return[t,...r];if(Array.isArray(r))return r}function Jt(t,{config:r,base:i,path:e,reference:n,src:s}){let a=[];for(let f of r.plugins??[])"__isOptionsFunction"in f?a.push({...f(),reference:n,src:s}):"handler"in f?a.push({...f,reference:n,src:s}):a.push({handler:f,reference:n,src:s});if(Array.isArray(r.presets)&&r.presets.length===0)throw new Error("Error in the config file/plugin/preset. An empty preset (`preset: []`) is not currently supported.");for(let f of r.presets??[])Jt(t,{path:e,base:i,config:f,reference:n,src:s});for(let f of a)t.plugins.push(f),f.config&&Jt(t,{path:e,base:i,config:f.config,reference:!!f.reference,src:f.src??s});let p=r.content??[],u=Array.isArray(p)?p:p.files;for(let f of u)t.content.files.push(typeof f=="object"?f:{base:i,pattern:f});t.configs.push(r)}function La(t){let r=new Set,i=bt(t.design,()=>t.theme,n),e=Object.assign(i,{theme:i,colors:tr});function n(s){return typeof s=="function"?s(e)??null:s??null}for(let s of t.configs){let a=s.theme??{},p=a.extend??{};for(let u in a)u!=="extend"&&r.add(u);Object.assign(t.theme,a);for(let u in p)t.extend[u]??=[],t.extend[u].push(p[u])}delete t.theme.extend;for(let s in t.extend){let a=[t.theme[s],...t.extend[s]];t.theme[s]=()=>{let p=a.map(n);return Xe({},p,Ua)}}for(let s in t.theme)t.theme[s]=n(t.theme[s]);if(t.theme.screens&&typeof t.theme.screens=="object")for(let s of Object.keys(t.theme.screens)){let a=t.theme.screens[s];a&&typeof a=="object"&&("raw"in a||"max"in a||"min"in a&&(t.theme.screens[s]=a.min))}return r}function Ii(t,r){let i=t.theme.container||{};if(typeof i!="object"||i===null)return;let e=ja(i,r);e.length!==0&&r.utilities.static("container",()=>e.map(ee))}function ja({center:t,padding:r,screens:i},e){let n=[],s=null;if(t&&n.push(o("margin-inline","auto")),(typeof r=="string"||typeof r=="object"&&r!==null&&"DEFAULT"in r)&&n.push(o("padding-inline",typeof r=="string"?r:r.DEFAULT)),typeof i=="object"&&i!==null){s=new Map;let a=Array.from(e.theme.namespace("--breakpoint").entries());if(a.sort((p,u)=>Ve(p[1],u[1],"asc")),a.length>0){let[p]=a[0];n.push(F("@media",`(width >= --theme(--breakpoint-${p}))`,[o("max-width","none")]))}for(let[p,u]of Object.entries(i)){if(typeof u=="object")if("min"in u)u=u.min;else continue;s.set(p,F("@media",`(width >= ${u})`,[o("max-width",u)]))}}if(typeof r=="object"&&r!==null){let a=Object.entries(r).filter(([p])=>p!=="DEFAULT").map(([p,u])=>[p,e.theme.resolveValue(p,["--breakpoint"]),u]).filter(Boolean);a.sort((p,u)=>Ve(p[1],u[1],"asc"));for(let[p,,u]of a)if(s&&s.has(p))s.get(p).nodes.push(o("padding-inline",u));else{if(s)continue;n.push(F("@media",`(width >= theme(--breakpoint-${p}))`,[o("padding-inline",u)]))}}if(s)for(let[,a]of s)n.push(a);return n}function _i({addVariant:t,config:r}){let i=r("darkMode",null),[e,n=".dark"]=Array.isArray(i)?i:[i];if(e==="variant"){let s;if(Array.isArray(n)||typeof n=="function"?s=n:typeof n=="string"&&(s=[n]),Array.isArray(s))for(let a of s)a===".dark"?(e=!1,console.warn('When using `variant` for `darkMode`, you must provide a selector.\nExample: `darkMode: ["variant", ".your-selector &"]`')):a.includes("&")||(e=!1,console.warn('When using `variant` for `darkMode`, your selector must contain `&`.\nExample `darkMode: ["variant", ".your-selector &"]`'));n=s}e===null||(e==="selector"?t("dark",`&:where(${n}, ${n} *)`):e==="media"?t("dark","@media (prefers-color-scheme: dark)"):e==="variant"?t("dark",n):e==="class"&&t("dark",`&:is(${n} *)`))}function Di(t){for(let[r,i]of[["t","top"],["tr","top right"],["r","right"],["br","bottom right"],["b","bottom"],["bl","bottom left"],["l","left"],["tl","top left"]])t.utilities.suggest(`bg-gradient-to-${r}`,()=>[]),t.utilities.static(`bg-gradient-to-${r}`,()=>[o("--tw-gradient-position",`to ${i} in oklab`),o("background-image","linear-gradient(var(--tw-gradient-stops))")]);t.utilities.suggest("bg-left-top",()=>[]),t.utilities.static("bg-left-top",()=>[o("background-position","left top")]),t.utilities.suggest("bg-right-top",()=>[]),t.utilities.static("bg-right-top",()=>[o("background-position","right top")]),t.utilities.suggest("bg-left-bottom",()=>[]),t.utilities.static("bg-left-bottom",()=>[o("background-position","left bottom")]),t.utilities.suggest("bg-right-bottom",()=>[]),t.utilities.static("bg-right-bottom",()=>[o("background-position","right bottom")]),t.utilities.suggest("object-left-top",()=>[]),t.utilities.static("object-left-top",()=>[o("object-position","left top")]),t.utilities.suggest("object-right-top",()=>[]),t.utilities.static("object-right-top",()=>[o("object-position","right top")]),t.utilities.suggest("object-left-bottom",()=>[]),t.utilities.static("object-left-bottom",()=>[o("object-position","left bottom")]),t.utilities.suggest("object-right-bottom",()=>[]),t.utilities.static("object-right-bottom",()=>[o("object-position","right bottom")]),t.utilities.suggest("max-w-screen",()=>[]),t.utilities.functional("max-w-screen",r=>{if(!r.value||r.value.kind==="arbitrary")return;let i=t.theme.resolve(r.value.value,["--breakpoint"]);if(i)return[o("max-width",i)]}),t.utilities.suggest("overflow-ellipsis",()=>[]),t.utilities.static("overflow-ellipsis",()=>[o("text-overflow","ellipsis")]),t.utilities.suggest("decoration-slice",()=>[]),t.utilities.static("decoration-slice",()=>[o("-webkit-box-decoration-break","slice"),o("box-decoration-break","slice")]),t.utilities.suggest("decoration-clone",()=>[]),t.utilities.static("decoration-clone",()=>[o("-webkit-box-decoration-break","clone"),o("box-decoration-break","clone")]),t.utilities.suggest("flex-shrink",()=>[]),t.utilities.functional("flex-shrink",r=>{if(!r.modifier){if(!r.value)return[o("flex-shrink","1")];if(r.value.kind==="arbitrary")return[o("flex-shrink",r.value.value)];if(P(r.value.value))return[o("flex-shrink",r.value.value)]}}),t.utilities.suggest("flex-grow",()=>[]),t.utilities.functional("flex-grow",r=>{if(!r.modifier){if(!r.value)return[o("flex-grow","1")];if(r.value.kind==="arbitrary")return[o("flex-grow",r.value.value)];if(P(r.value.value))return[o("flex-grow",r.value.value)]}}),t.utilities.suggest("order-none",()=>[]),t.utilities.static("order-none",()=>[o("order","0")]),t.utilities.suggest("break-words",()=>[]),t.utilities.static("break-words",()=>[o("overflow-wrap","break-word")])}function Ki(t,r){let i=t.theme.screens||{},e=r.variants.get("min")?.order??0,n=[];for(let[a,p]of Object.entries(i)){let c=function(w){r.variants.static(a,h=>{h.nodes=[F("@media",d,h.nodes)]},{order:w})};var s=c;let u=r.variants.get(a),f=r.theme.resolveValue(a,["--breakpoint"]);if(u&&f&&!r.theme.hasDefault(`--breakpoint-${a}`))continue;let m=!0;typeof p=="string"&&(m=!1);let d=za(p);m?n.push(c):c(e)}if(n.length!==0){for(let[,a]of r.variants.variants)a.order>e&&(a.order+=n.length);r.variants.compareFns=new Map(Array.from(r.variants.compareFns).map(([a,p])=>(a>e&&(a+=n.length),[a,p])));for(let[a,p]of n.entries())p(e+a+1)}}function za(t){return(Array.isArray(t)?t:[t]).map(i=>typeof i=="string"?{min:i}:i&&typeof i=="object"?i:null).map(i=>{if(i===null)return null;if("raw"in i)return i.raw;let e="";return i.max!==void 0&&(e+=`${i.max} >= `),e+="width",i.min!==void 0&&(e+=` >= ${i.min}`),`(${e})`}).filter(Boolean).join(", ")}function Ui(t,r){let i=t.theme.aria||{},e=t.theme.supports||{},n=t.theme.data||{};if(Object.keys(i).length>0){let s=r.variants.get("aria"),a=s?.applyFn,p=s?.compounds;r.variants.functional("aria",(u,f)=>{let m=f.value;return m&&m.kind==="named"&&m.value in i?a?.(u,{...f,value:{kind:"arbitrary",value:i[m.value]}}):a?.(u,f)},{compounds:p})}if(Object.keys(e).length>0){let s=r.variants.get("supports"),a=s?.applyFn,p=s?.compounds;r.variants.functional("supports",(u,f)=>{let m=f.value;return m&&m.kind==="named"&&m.value in e?a?.(u,{...f,value:{kind:"arbitrary",value:e[m.value]}}):a?.(u,f)},{compounds:p})}if(Object.keys(n).length>0){let s=r.variants.get("data"),a=s?.applyFn,p=s?.compounds;r.variants.functional("data",(u,f)=>{let m=f.value;return m&&m.kind==="named"&&m.value in n?a?.(u,{...f,value:{kind:"arbitrary",value:n[m.value]}}):a?.(u,f)},{compounds:p})}}var Ma=/^[a-z]+$/;async function ji({designSystem:t,base:r,ast:i,loadModule:e,sources:n}){let s=0,a=[],p=[];I(i,(d,c)=>{if(d.kind!=="at-rule")return;let w=qe(c);if(d.name==="@plugin"){if(w.parent!==null)throw new Error("`@plugin` cannot be nested.");let h=d.params.slice(1,-1);if(h.length===0)throw new Error("`@plugin` must have a path.");let y={};for(let x of d.nodes??[]){if(x.kind!=="declaration")throw new Error(`Unexpected \`@plugin\` option:
+
+${re([x])}
+
+\`@plugin\` options must be a flat list of declarations.`);if(x.value===void 0)continue;let $=x.value,A=j($,",").map(k=>{if(k=k.trim(),k==="null")return null;if(k==="true")return!0;if(k==="false")return!1;if(Number.isNaN(Number(k))){if(k[0]==='"'&&k[k.length-1]==='"'||k[0]==="'"&&k[k.length-1]==="'")return k.slice(1,-1);if(k[0]==="{"&&k[k.length-1]==="}")throw new Error(`Unexpected \`@plugin\` option: Value of declaration \`${re([x]).trim()}\` is not supported.
+
+Using an object as a plugin option is currently only supported in JavaScript configuration files.`)}else return Number(k);return k});y[x.property]=A.length===1?A[0]:A}return a.push([{id:h,base:w.context.base,reference:!!w.context.reference,src:d.src},Object.keys(y).length>0?y:null]),s|=4,E.Replace([])}if(d.name==="@config"){if(d.nodes.length>0)throw new Error("`@config` cannot have a body.");if(w.parent!==null)throw new Error("`@config` cannot be nested.");return p.push({id:d.params.slice(1,-1),base:w.context.base,reference:!!w.context.reference,src:d.src}),s|=4,E.Replace([])}}),Di(t);let u=t.resolveThemeValue;if(t.resolveThemeValue=function(c,w){return c.startsWith("--")?u(c,w):(s|=Li({designSystem:t,base:r,ast:i,sources:n,configs:[],pluginDetails:[]}),t.resolveThemeValue(c,w))},!a.length&&!p.length)return 0;let[f,m]=await Promise.all([Promise.all(p.map(async({id:d,base:c,reference:w,src:h})=>{let y=await e(d,c,"config");return{path:d,base:y.base,config:y.module,reference:w,src:h}})),Promise.all(a.map(async([{id:d,base:c,reference:w,src:h},y])=>{let x=await e(d,c,"plugin");return{path:d,base:x.base,plugin:x.module,options:y,reference:w,src:h}}))]);return s|=Li({designSystem:t,base:r,ast:i,sources:n,configs:f,pluginDetails:m}),s}function Li({designSystem:t,base:r,ast:i,sources:e,configs:n,pluginDetails:s}){let a=0,u=[...s.map(y=>{if(!y.options)return{config:{plugins:[y.plugin]},base:y.base,reference:y.reference,src:y.src};if("__isOptionsFunction"in y.plugin)return{config:{plugins:[y.plugin(y.options)]},base:y.base,reference:y.reference,src:y.src};throw new Error(`The plugin "${y.path}" does not accept options`)}),...n],{resolvedConfig:f}=Qt(t,[{config:Pi(t.theme),base:r,reference:!0,src:void 0},...u,{config:{plugins:[_i]},base:r,reference:!0,src:void 0}]),{resolvedConfig:m,replacedThemeKeys:d}=Qt(t,u),c={designSystem:t,ast:i,resolvedConfig:f,featuresRef:{set current(y){a|=y}}},w=Ht({...c,referenceMode:!1,src:void 0}),h=t.resolveThemeValue;t.resolveThemeValue=function(x,$){if(x[0]==="-"&&x[1]==="-")return h(x,$);let A=w.theme(x,void 0);if(Array.isArray(A)&&A.length===2)return A[0];if(Array.isArray(A))return A.join(", ");if(typeof A=="object"&&A!==null&&"DEFAULT"in A)return A.DEFAULT;if(typeof A=="string")return A};for(let{handler:y,reference:x,src:$}of f.plugins){let A=Ht({...c,referenceMode:x??!1,src:$});y(A)}if(zr(t,m,d),Oi(t,m),Ui(m,t),Ki(m,t),Ii(m,t),!t.theme.prefix&&f.prefix){if(f.prefix.endsWith("-")&&(f.prefix=f.prefix.slice(0,-1),console.warn(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only and is written as a variant before all utilities. We have fixed up the prefix for you. Remove the trailing \`-\` to silence this warning.`)),!Ma.test(f.prefix))throw new Error(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);t.theme.prefix=f.prefix}if(!t.important&&f.important===!0&&(t.important=!0),typeof f.important=="string"){let y=f.important;I(i,(x,$)=>{if(x.kind!=="at-rule"||x.name!=="@tailwind"||x.params!=="utilities")return;let A=qe($);return A.parent?.kind==="rule"&&A.parent.selector===y?E.Stop:E.ReplaceStop(G(y,[x]))})}for(let y of f.blocklist)t.invalidCandidates.add(y);for(let y of f.content.files){if("raw"in y)throw new Error(`Error in the config file/plugin/preset. The \`content\` key contains a \`raw\` entry:
+
+${JSON.stringify(y,null,2)}
+
+This feature is not currently supported.`);let x=!1;y.pattern[0]=="!"&&(x=!0,y.pattern=y.pattern.slice(1)),e.push({...y,negated:x})}return a}function zi({ast:t}){let r=new K(n=>tt(n.code)),i=new K(n=>({url:n.file,content:n.code,ignore:!1})),e={file:null,sources:[],mappings:[]};I(t,n=>{if(!n.src||!n.dst)return;let s=i.get(n.src[0]);if(!s.content)return;let a=r.get(n.src[0]),p=r.get(n.dst[0]),u=s.content.slice(n.src[1],n.src[2]),f=0;for(let c of u.split(`
+`)){if(c.trim()!==""){let w=a.find(n.src[1]+f),h=p.find(n.dst[1]);e.mappings.push({name:null,originalPosition:{source:s,...w},generatedPosition:h})}f+=c.length,f+=1}let m=a.find(n.src[2]),d=p.find(n.dst[2]);e.mappings.push({name:null,originalPosition:{source:s,...m},generatedPosition:d})});for(let n of r.keys())e.sources.push(i.get(n));return e.mappings.sort((n,s)=>n.generatedPosition.line-s.generatedPosition.line||n.generatedPosition.column-s.generatedPosition.column||(n.originalPosition?.line??0)-(s.originalPosition?.line??0)||(n.originalPosition?.column??0)-(s.originalPosition?.column??0)),e}var Mi=/^(-?\d+)\.\.(-?\d+)(?:\.\.(-?\d+))?$/;function xt(t){let r=t.indexOf("{");if(r===-1)return[t];let i=[],e=t.slice(0,r),n=t.slice(r),s=0,a=n.lastIndexOf("}");for(let d=0;d<n.length;d++){let c=n[d];if(c==="{")s++;else if(c==="}"&&(s--,s===0)){a=d;break}}if(a===-1)throw new Error(`The pattern \`${t}\` is not balanced.`);let p=n.slice(1,a),u=n.slice(a+1),f;Fa(p)?f=Wa(p):f=j(p,","),f=f.flatMap(d=>xt(d));let m=xt(u);for(let d of m)for(let c of f)i.push(e+c+d);return i}function Fa(t){return Mi.test(t)}function Wa(t){let r=t.match(Mi);if(!r)return[t];let[,i,e,n]=r,s=n?parseInt(n,10):void 0,a=[];if(/^-?\d+$/.test(i)&&/^-?\d+$/.test(e)){let p=parseInt(i,10),u=parseInt(e,10);if(s===void 0&&(s=p<=u?1:-1),s===0)throw new Error("Step cannot be zero in sequence expansion.");let f=p<u;f&&s<0&&(s=-s),!f&&s>0&&(s=-s);for(let m=p;f?m<=u:m>=u;m+=s)a.push(m.toString())}return a}function Fi(t,r){let i=new Set,e=new Set,n=[];function s(a,p=[]){if(t.has(a)&&!i.has(a)){e.has(a)&&r.onCircularDependency?.(p,a),e.add(a);for(let u of t.get(a)??[])p.push(a),s(u,p),p.pop();i.add(a),e.delete(a),n.push(a)}}for(let a of t.keys())s(a);return n}var Ba=/^[a-z]+$/,Rt=(n=>(n[n.None=0]="None",n[n.AtProperty=1]="AtProperty",n[n.ColorMix=2]="ColorMix",n[n.All=3]="All",n))(Rt||{});function Ya(){throw new Error("No `loadModule` function provided to `compile`")}function Ga(){throw new Error("No `loadStylesheet` function provided to `compile`")}function qa(t){let r=0,i=null;for(let e of j(t," "))e==="reference"?r|=2:e==="inline"?r|=1:e==="default"?r|=4:e==="static"?r|=8:e.startsWith("prefix(")&&e.endsWith(")")&&(i=e.slice(7,-1));return[r,i]}var Ke=(u=>(u[u.None=0]="None",u[u.AtApply=1]="AtApply",u[u.AtImport=2]="AtImport",u[u.JsPluginCompat=4]="JsPluginCompat",u[u.ThemeFunction=8]="ThemeFunction",u[u.Utilities=16]="Utilities",u[u.Variants=32]="Variants",u[u.AtTheme=64]="AtTheme",u))(Ke||{});async function Wi(t,{base:r="",from:i,loadModule:e=Ya,loadStylesheet:n=Ga}={}){let s=0;t=[ce({base:r},t)],s|=await Zt(t,r,n,0,i!==void 0);let a=null,p=new lt,u=new Map,f=new Map,m=[],d=null,c=null,w=[],h=[],y=[],x=[],$=null;I(t,(k,U)=>{if(k.kind!=="at-rule")return;let N=qe(U);if(k.name==="@tailwind"&&(k.params==="utilities"||k.params.startsWith("utilities"))){if(c!==null)return E.Replace([]);if(N.context.reference)return E.Replace([]);let O=j(k.params," ");for(let L of O)if(L.startsWith("source(")){let _=L.slice(7,-1);if(_==="none"){$=_;continue}if(_[0]==='"'&&_[_.length-1]!=='"'||_[0]==="'"&&_[_.length-1]!=="'"||_[0]!=="'"&&_[0]!=='"')throw new Error("`source(\u2026)` paths must be quoted.");$={base:N.context.sourceBase??N.context.base,pattern:_.slice(1,-1)}}c=k,s|=16}if(k.name==="@utility"){if(N.parent!==null)throw new Error("`@utility` cannot be nested.");if(k.nodes.length===0)throw new Error(`\`@utility ${k.params}\` is empty. Utilities should include at least one property.`);let O=Kr(k);if(O===null){if(!k.params.endsWith("-*")){if(k.params.endsWith("*"))throw new Error(`\`@utility ${k.params}\` defines an invalid utility name. A functional utility must end in \`-*\`.`);if(k.params.includes("*"))throw new Error(`\`@utility ${k.params}\` defines an invalid utility name. The dynamic portion marked by \`-*\` must appear once at the end.`)}throw new Error(`\`@utility ${k.params}\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter.`)}m.push(O)}if(k.name==="@source"){if(k.nodes.length>0)throw new Error("`@source` cannot have a body.");if(N.parent!==null)throw new Error("`@source` cannot be nested.");let O=!1,L=!1,_=k.params;if(_[0]==="n"&&_.startsWith("not ")&&(O=!0,_=_.slice(4)),_[0]==="i"&&_.startsWith("inline(")&&(L=!0,_=_.slice(7,-1)),_[0]==='"'&&_[_.length-1]!=='"'||_[0]==="'"&&_[_.length-1]!=="'"||_[0]!=="'"&&_[0]!=='"')throw new Error("`@source` paths must be quoted.");let z=_.slice(1,-1);if(L){let Y=O?x:y,q=j(z," ");for(let ae of q)for(let oe of xt(ae))Y.push(oe)}else h.push({base:N.context.base,pattern:z,negated:O});return E.ReplaceSkip([])}if(k.name==="@variant"&&(N.parent===null?k.nodes.length===0?k.name="@custom-variant":(I(k.nodes,O=>{if(O.kind==="at-rule"&&O.name==="@slot")return k.name="@custom-variant",E.Stop}),k.name==="@variant"&&w.push(k)):w.push(k)),k.name==="@custom-variant"){if(N.parent!==null)throw new Error("`@custom-variant` cannot be nested.");let[O,L]=j(k.params," ");if(!kt.test(O))throw new Error(`\`@custom-variant ${O}\` defines an invalid variant name. Variants should only contain alphanumeric, dashes, or underscore characters and start with a lowercase letter or number.`);if(k.nodes.length>0&&L)throw new Error(`\`@custom-variant ${O}\` cannot have both a selector and a body.`);if(k.nodes.length===0){if(!L)throw new Error(`\`@custom-variant ${O}\` has no selector or body.`);let _=j(L.slice(1,-1),",");if(_.length===0||_.some(q=>q.trim()===""))throw new Error(`\`@custom-variant ${O} (${_.join(",")})\` selector is invalid.`);let z=[],Y=[];for(let q of _)q=q.trim(),q[0]==="@"?z.push(q):Y.push(q);u.set(O,q=>{q.variants.static(O,ae=>{let oe=[];Y.length>0&&oe.push(G(Y.join(", "),ae.nodes));for(let l of z)oe.push(J(l,ae.nodes));ae.nodes=oe},{compounds:Pe([...Y,...z])})}),f.set(O,new Set)}else{let _=new Set;I(k.nodes,z=>{z.kind==="at-rule"&&z.name==="@variant"&&_.add(z.params)}),u.set(O,z=>{z.variants.fromAst(O,k.nodes,z)}),f.set(O,_)}return E.ReplaceSkip([])}if(k.name==="@media"){let O=j(k.params," "),L=[];for(let _ of O)if(_.startsWith("source(")){let z=_.slice(7,-1);I(k.nodes,Y=>{if(Y.kind==="at-rule"&&Y.name==="@tailwind"&&Y.params==="utilities")return Y.params+=` source(${z})`,E.ReplaceStop([ce({sourceBase:N.context.base},[Y])])})}else if(_.startsWith("theme(")){let z=_.slice(6,-1),Y=z.includes("reference");I(k.nodes,q=>{if(q.kind!=="context"){if(q.kind!=="at-rule"){if(Y)throw new Error('Files imported with `@import "\u2026" theme(reference)` must only contain `@theme` blocks.\nUse `@reference "\u2026";` instead.');return E.Continue}if(q.name==="@theme")return q.params+=" "+z,E.Skip}})}else if(_.startsWith("prefix(")){let z=_.slice(7,-1);I(k.nodes,Y=>{if(Y.kind==="at-rule"&&Y.name==="@theme")return Y.params+=` prefix(${z})`,E.Skip})}else _==="important"?a=!0:_==="reference"?k.nodes=[ce({reference:!0},k.nodes)]:L.push(_);if(L.length>0)k.params=L.join(" ");else if(O.length>0)return E.Replace(k.nodes);return E.Continue}if(k.name==="@theme"){let[O,L]=qa(k.params);if(s|=64,N.context.reference&&(O|=2),L){if(!Ba.test(L))throw new Error(`The prefix "${L}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);p.prefix=L}return I(k.nodes,_=>{if(_.kind==="at-rule"&&_.name==="@keyframes")return p.addKeyframes(_),E.Skip;if(_.kind==="comment")return;if(_.kind==="declaration"&&_.property.startsWith("--")){p.add(Se(_.property),_.value??"",O,_.src);return}let z=re([F(k.name,k.params,[_])]).split(`
+`).map((Y,q,ae)=>`${q===0||q>=ae.length-2?" ":">"} ${Y}`).join(`
+`);throw new Error(`\`@theme\` blocks must only contain custom properties or \`@keyframes\`.
+
+${z}`)}),d?E.ReplaceSkip([]):(d=G(":root, :host",[]),d.src=k.src,E.ReplaceSkip(d))}});let A=xi(p,c?.src);if(a&&(A.important=a),x.length>0)for(let k of x)A.invalidCandidates.add(k);s|=await ji({designSystem:A,base:r,ast:t,loadModule:e,sources:h});for(let k of u.keys())A.variants.static(k,()=>{});for(let k of Fi(f,{onCircularDependency(U,N){let O=re(U.map((L,_)=>F("@custom-variant",L,[F("@variant",U[_+1]??N,[])]))).replaceAll(";"," { \u2026 }").replace(`@custom-variant ${N} {`,`@custom-variant ${N} { /* \u2190 */`);throw new Error(`Circular dependency detected in custom variants:
+
+${O}`)}}))u.get(k)?.(A);for(let k of m)k(A);if(d){let k=[];for(let[N,O]of A.theme.entries()){if(O.options&2)continue;let L=o(ye(N),O.value);L.src=O.src,k.push(L)}let U=A.theme.getKeyframes();for(let N of U)t.push(ce({theme:!0},[W([N])]));d.nodes=[ce({theme:!0},k)]}if(s|=Qe(t,A),s|=De(t,A),s|=Ae(t,A),c){let k=c;k.kind="context",k.context={}}return I(t,k=>{if(k.kind==="at-rule")return k.name==="@utility"?E.Replace([]):E.Skip}),{designSystem:A,ast:t,sources:h,root:$,utilitiesNode:c,features:s,inlineCandidates:y}}async function Za(t,r={}){let{designSystem:i,ast:e,sources:n,root:s,utilitiesNode:a,features:p,inlineCandidates:u}=await Wi(t,r);e.unshift(ot(`! tailwindcss v${ir} | MIT License | https://tailwindcss.com `));function f(h){i.invalidCandidates.add(h)}let m=new Set,d=null,c=0,w=!1;for(let h of u)i.invalidCandidates.has(h)||(m.add(h),w=!0);return{sources:n,root:s,features:p,build(h){if(p===0)return t;if(!a)return d??=Te(e,i,r.polyfills),d;let y=w,x=!1;w=!1;let $=m.size;for(let k of h)if(!i.invalidCandidates.has(k))if(k[0]==="-"&&k[1]==="-"){let U=i.theme.markUsedVariable(k);y||=U,x||=U}else m.add(k),y||=m.size!==$;if(!y)return d??=Te(e,i,r.polyfills),d;let A=Ce(m,i,{onInvalidCandidate:f}).astNodes;return r.from&&I(A,k=>{k.src??=a.src}),!x&&c===A.length?(d??=Te(e,i,r.polyfills),d):(c=A.length,a.nodes=A,d=Te(e,i,r.polyfills),d)}}}async function rf(t,r={}){let i=$e(t,{from:r.from}),e=await Za(i,r),n=i,s=t;return{...e,build(a){let p=e.build(a);return p===n||(s=re(p,!!r.from),n=p),s},buildSourceMap(){return zi({ast:n})}}}async function nf(t,r={}){return(await Wi($e(t,{from:r.from}),r)).designSystem}function Ha(){throw new Error("It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration.")}export{Rt as a,Ke as b,Za as c,rf as d,nf as e,Ha as f};
Index: node_modules/tailwindcss/dist/chunk-GFBUASX3.mjs
===================================================================
--- node_modules/tailwindcss/dist/chunk-GFBUASX3.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/chunk-GFBUASX3.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+import{a as k}from"./chunk-HTB5LLOP.mjs";var _=new Set(["black","silver","gray","white","maroon","red","purple","fuchsia","green","lime","olive","yellow","navy","blue","teal","aqua","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen","transparent","currentcolor","canvas","canvastext","linktext","visitedtext","activetext","buttonface","buttontext","buttonborder","field","fieldtext","highlight","highlighttext","selecteditem","selecteditemtext","mark","marktext","graytext","accentcolor","accentcolortext"]),U=/^(rgba?|hsla?|hwb|color|(ok)?(lab|lch)|light-dark|color-mix)\(/i;function S(e){return e.charCodeAt(0)===35||U.test(e)||_.has(e.toLowerCase())}var A=["calc","min","max","clamp","mod","rem","sin","cos","tan","asin","acos","atan","atan2","pow","sqrt","hypot","log","exp","round"];function b(e){return e.indexOf("(")!==-1&&A.some(t=>e.includes(`${t}(`))}function oe(e){if(!A.some(n=>e.includes(n)))return e;let t="",r=[],s=null,m=null;for(let n=0;n<e.length;n++){let a=e.charCodeAt(n);if(a>=48&&a<=57||s!==null&&(a===37||a>=97&&a<=122||a>=65&&a<=90)?s=n:(m=s,s=null),a===40){t+=e[n];let i=n;for(let p=n-1;p>=0;p--){let c=e.charCodeAt(p);if(c>=48&&c<=57)i=p;else if(c>=97&&c<=122)i=p;else break}let o=e.slice(i,n);if(A.includes(o)){r.unshift(!0);continue}else if(r[0]&&o===""){r.unshift(!0);continue}r.unshift(!1);continue}else if(a===41)t+=e[n],r.shift();else if(a===44&&r[0]){t+=", ";continue}else{if(a===32&&r[0]&&t.charCodeAt(t.length-1)===32)continue;if((a===43||a===42||a===47||a===45)&&r[0]){let i=t.trimEnd(),o=i.charCodeAt(i.length-1),p=i.charCodeAt(i.length-2),c=e.charCodeAt(n+1);if((o===101||o===69)&&p>=48&&p<=57){t+=e[n];continue}else if(o===43||o===42||o===47||o===45){t+=e[n];continue}else if(o===40||o===44){t+=e[n];continue}else e.charCodeAt(n-1)===32?t+=`${e[n]} `:o>=48&&o<=57||c>=48&&c<=57||o===41||c===40||c===43||c===42||c===47||c===45||m!==null&&m===n-1?t+=` ${e[n]} `:t+=e[n]}else t+=e[n]}}return t}var E=new Uint8Array(256);function d(e,t){let r=0,s=[],m=0,n=e.length,a=t.charCodeAt(0);for(let i=0;i<n;i++){let o=e.charCodeAt(i);if(r===0&&o===a){s.push(e.slice(m,i)),m=i+1;continue}switch(o){case 92:i+=1;break;case 39:case 34:for(;++i<n;){let p=e.charCodeAt(i);if(p===92){i+=1;continue}if(p===o)break}break;case 40:E[r]=41,r++;break;case 91:E[r]=93,r++;break;case 123:E[r]=125,r++;break;case 93:case 125:case 41:r>0&&o===E[r-1]&&r--;break}}return s.push(e.slice(m)),s}var P={color:S,length:y,percentage:C,ratio:G,number:v,integer:u,url:R,position:K,"bg-size":Y,"line-width":T,image:F,"family-name":M,"generic-name":H,"absolute-size":$,"relative-size":W,angle:X,vector:te};function me(e,t){if(e.startsWith("var("))return null;for(let r of t)if(P[r]?.(e))return r;return null}var z=/^url\(.*\)$/;function R(e){return z.test(e)}function T(e){return d(e," ").every(t=>y(t)||v(t)||t==="thin"||t==="medium"||t==="thick")}var D=/^(?:element|image|cross-fade|image-set)\(/,I=/^(repeating-)?(conic|linear|radial)-gradient\(/;function F(e){let t=0;for(let r of d(e,","))if(!r.startsWith("var(")){if(R(r)){t+=1;continue}if(I.test(r)){t+=1;continue}if(D.test(r)){t+=1;continue}return!1}return t>0}function H(e){return e==="serif"||e==="sans-serif"||e==="monospace"||e==="cursive"||e==="fantasy"||e==="system-ui"||e==="ui-serif"||e==="ui-sans-serif"||e==="ui-monospace"||e==="ui-rounded"||e==="math"||e==="emoji"||e==="fangsong"}function M(e){let t=0;for(let r of d(e,",")){let s=r.charCodeAt(0);if(s>=48&&s<=57)return!1;r.startsWith("var(")||(t+=1)}return t>0}function $(e){return e==="xx-small"||e==="x-small"||e==="small"||e==="medium"||e==="large"||e==="x-large"||e==="xx-large"||e==="xxx-large"}function W(e){return e==="larger"||e==="smaller"}var x=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,B=new RegExp(`^${x.source}$`);function v(e){return B.test(e)||b(e)}var q=new RegExp(`^${x.source}%$`);function C(e){return q.test(e)||b(e)}var V=new RegExp(`^${x.source}s*/s*${x.source}$`);function G(e){return V.test(e)||b(e)}var Z=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],j=new RegExp(`^${x.source}(${Z.join("|")})$`);function y(e){return j.test(e)||b(e)}function K(e){let t=0;for(let r of d(e," ")){if(r==="center"||r==="top"||r==="right"||r==="bottom"||r==="left"){t+=1;continue}if(!r.startsWith("var(")){if(y(r)||C(r)){t+=1;continue}return!1}}return t>0}function Y(e){let t=0;for(let r of d(e,",")){if(r==="cover"||r==="contain"){t+=1;continue}let s=d(r," ");if(s.length!==1&&s.length!==2)return!1;if(s.every(m=>m==="auto"||y(m)||C(m))){t+=1;continue}}return t>0}var Q=["deg","rad","grad","turn"],J=new RegExp(`^${x.source}(${Q.join("|")})$`);function X(e){return J.test(e)}var ee=new RegExp(`^${x.source} +${x.source} +${x.source}$`);function te(e){return ee.test(e)}function u(e){let t=Number(e);return Number.isInteger(t)&&t>=0&&String(t)===String(e)}function pe(e){let t=Number(e);return Number.isInteger(t)&&t>0&&String(t)===String(e)}function ge(e){return N(e,.25)}function ue(e){return N(e,.25)}function N(e,t){let r=Number(e);return r>=0&&r%t===0&&String(r)===String(e)}function h(e){return{__BARE_VALUE__:e}}var g=h(e=>{if(u(e.value))return e.value}),l=h(e=>{if(u(e.value))return`${e.value}%`}),f=h(e=>{if(u(e.value))return`${e.value}px`}),O=h(e=>{if(u(e.value))return`${e.value}ms`}),w=h(e=>{if(u(e.value))return`${e.value}deg`}),re=h(e=>{if(e.fraction===null)return;let[t,r]=d(e.fraction,"/");if(!(!u(t)||!u(r)))return e.fraction}),L=h(e=>{if(u(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),be={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...re},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...l}),backdropContrast:({theme:e})=>({...e("contrast"),...l}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...l}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...w}),backdropInvert:({theme:e})=>({...e("invert"),...l}),backdropOpacity:({theme:e})=>({...e("opacity"),...l}),backdropSaturate:({theme:e})=>({...e("saturate"),...l}),backdropSepia:({theme:e})=>({...e("sepia"),...l}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...f},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...l},caretColor:({theme:e})=>e("colors"),colors:()=>({...k}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...g},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...l},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...f}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...g},flexShrink:{0:"0",DEFAULT:"1",...g},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...l},grayscale:{0:"0",DEFAULT:"100%",...l},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...g},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...g},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...g},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...g},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...L},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...L},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...w},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...l},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...g},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...l},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...g},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...f},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...f},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...f},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...f},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...w},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...l},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...l},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...l},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...w},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...g},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...f},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...f},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...O},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...O},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...g}};export{oe as a,d as b,me as c,y as d,u as e,pe as f,ge as g,ue as h,be as i};
Index: node_modules/tailwindcss/dist/chunk-HTB5LLOP.mjs
===================================================================
--- node_modules/tailwindcss/dist/chunk-HTB5LLOP.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/chunk-HTB5LLOP.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+var l={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};export{l as a};
Index: node_modules/tailwindcss/dist/colors-b_6i0Oi7.d.ts
===================================================================
--- node_modules/tailwindcss/dist/colors-b_6i0Oi7.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/colors-b_6i0Oi7.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,295 @@
+declare const _default: {
+    inherit: string;
+    current: string;
+    transparent: string;
+    black: string;
+    white: string;
+    slate: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    gray: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    zinc: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    neutral: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    stone: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    red: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    orange: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    amber: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    yellow: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    lime: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    green: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    emerald: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    teal: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    cyan: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    sky: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    blue: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    indigo: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    violet: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    purple: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    fuchsia: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    pink: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    rose: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+};
+
+export { _default as _ };
Index: node_modules/tailwindcss/dist/colors.d.mts
===================================================================
--- node_modules/tailwindcss/dist/colors.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/colors.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,295 @@
+declare const _default: {
+    inherit: string;
+    current: string;
+    transparent: string;
+    black: string;
+    white: string;
+    slate: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    gray: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    zinc: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    neutral: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    stone: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    red: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    orange: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    amber: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    yellow: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    lime: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    green: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    emerald: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    teal: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    cyan: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    sky: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    blue: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    indigo: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    violet: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    purple: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    fuchsia: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    pink: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+    rose: {
+        '50': string;
+        '100': string;
+        '200': string;
+        '300': string;
+        '400': string;
+        '500': string;
+        '600': string;
+        '700': string;
+        '800': string;
+        '900': string;
+        '950': string;
+    };
+};
+
+export { _default as default };
Index: node_modules/tailwindcss/dist/colors.d.ts
===================================================================
--- node_modules/tailwindcss/dist/colors.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/colors.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,5 @@
+import { _ as _default } from './colors-b_6i0Oi7.js';
+
+
+
+export { _default as default };
Index: node_modules/tailwindcss/dist/colors.js
===================================================================
--- node_modules/tailwindcss/dist/colors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/colors.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+"use strict";var l={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};module.exports=l;
Index: node_modules/tailwindcss/dist/colors.mjs
===================================================================
--- node_modules/tailwindcss/dist/colors.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/colors.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+import{a}from"./chunk-HTB5LLOP.mjs";export{a as default};
Index: node_modules/tailwindcss/dist/default-theme.d.mts
===================================================================
--- node_modules/tailwindcss/dist/default-theme.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/default-theme.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1147 @@
+import { P as PluginUtils, N as NamedUtilityValue } from './resolve-config-QUZ9b-Gn.mjs';
+import './colors.mjs';
+
+declare const _default: {
+    accentColor: ({ theme }: PluginUtils) => any;
+    animation: {
+        none: string;
+        spin: string;
+        ping: string;
+        pulse: string;
+        bounce: string;
+    };
+    aria: {
+        busy: string;
+        checked: string;
+        disabled: string;
+        expanded: string;
+        hidden: string;
+        pressed: string;
+        readonly: string;
+        required: string;
+        selected: string;
+    };
+    aspectRatio: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        square: string;
+        video: string;
+    };
+    backdropBlur: ({ theme }: PluginUtils) => any;
+    backdropBrightness: ({ theme }: PluginUtils) => any;
+    backdropContrast: ({ theme }: PluginUtils) => any;
+    backdropGrayscale: ({ theme }: PluginUtils) => any;
+    backdropHueRotate: ({ theme }: PluginUtils) => any;
+    backdropInvert: ({ theme }: PluginUtils) => any;
+    backdropOpacity: ({ theme }: PluginUtils) => any;
+    backdropSaturate: ({ theme }: PluginUtils) => any;
+    backdropSepia: ({ theme }: PluginUtils) => any;
+    backgroundColor: ({ theme }: PluginUtils) => any;
+    backgroundImage: {
+        none: string;
+        'gradient-to-t': string;
+        'gradient-to-tr': string;
+        'gradient-to-r': string;
+        'gradient-to-br': string;
+        'gradient-to-b': string;
+        'gradient-to-bl': string;
+        'gradient-to-l': string;
+        'gradient-to-tl': string;
+    };
+    backgroundOpacity: ({ theme }: PluginUtils) => any;
+    backgroundPosition: {
+        bottom: string;
+        center: string;
+        left: string;
+        'left-bottom': string;
+        'left-top': string;
+        right: string;
+        'right-bottom': string;
+        'right-top': string;
+        top: string;
+    };
+    backgroundSize: {
+        auto: string;
+        cover: string;
+        contain: string;
+    };
+    blur: {
+        0: string;
+        none: string;
+        sm: string;
+        DEFAULT: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+        '3xl': string;
+    };
+    borderColor: ({ theme }: PluginUtils) => any;
+    borderOpacity: ({ theme }: PluginUtils) => any;
+    borderRadius: {
+        none: string;
+        sm: string;
+        DEFAULT: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+        '3xl': string;
+        full: string;
+    };
+    borderSpacing: ({ theme }: PluginUtils) => any;
+    borderWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        DEFAULT: string;
+        0: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    boxShadow: {
+        sm: string;
+        DEFAULT: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+        inner: string;
+        none: string;
+    };
+    boxShadowColor: ({ theme }: PluginUtils) => any;
+    brightness: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        50: string;
+        75: string;
+        90: string;
+        95: string;
+        100: string;
+        105: string;
+        110: string;
+        125: string;
+        150: string;
+        200: string;
+    };
+    caretColor: ({ theme }: PluginUtils) => any;
+    colors: () => {
+        inherit: string;
+        current: string;
+        transparent: string;
+        black: string;
+        white: string;
+        slate: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        gray: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        zinc: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        neutral: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        stone: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        red: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        orange: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        amber: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        yellow: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        lime: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        green: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        emerald: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        teal: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        cyan: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        sky: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        blue: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        indigo: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        violet: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        purple: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        fuchsia: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        pink: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        rose: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+    };
+    columns: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        '3xs': string;
+        '2xs': string;
+        xs: string;
+        sm: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+        '3xl': string;
+        '4xl': string;
+        '5xl': string;
+        '6xl': string;
+        '7xl': string;
+    };
+    container: {};
+    content: {
+        none: string;
+    };
+    contrast: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        50: string;
+        75: string;
+        100: string;
+        125: string;
+        150: string;
+        200: string;
+    };
+    cursor: {
+        auto: string;
+        default: string;
+        pointer: string;
+        wait: string;
+        text: string;
+        move: string;
+        help: string;
+        'not-allowed': string;
+        none: string;
+        'context-menu': string;
+        progress: string;
+        cell: string;
+        crosshair: string;
+        'vertical-text': string;
+        alias: string;
+        copy: string;
+        'no-drop': string;
+        grab: string;
+        grabbing: string;
+        'all-scroll': string;
+        'col-resize': string;
+        'row-resize': string;
+        'n-resize': string;
+        'e-resize': string;
+        's-resize': string;
+        'w-resize': string;
+        'ne-resize': string;
+        'nw-resize': string;
+        'se-resize': string;
+        'sw-resize': string;
+        'ew-resize': string;
+        'ns-resize': string;
+        'nesw-resize': string;
+        'nwse-resize': string;
+        'zoom-in': string;
+        'zoom-out': string;
+    };
+    divideColor: ({ theme }: PluginUtils) => any;
+    divideOpacity: ({ theme }: PluginUtils) => any;
+    divideWidth: ({ theme }: PluginUtils) => any;
+    dropShadow: {
+        sm: string;
+        DEFAULT: string[];
+        md: string[];
+        lg: string[];
+        xl: string[];
+        '2xl': string;
+        none: string;
+    };
+    fill: ({ theme }: PluginUtils) => any;
+    flex: {
+        1: string;
+        auto: string;
+        initial: string;
+        none: string;
+    };
+    flexBasis: ({ theme }: PluginUtils) => any;
+    flexGrow: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    flexShrink: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    fontFamily: {
+        sans: string[];
+        serif: string[];
+        mono: string[];
+    };
+    fontSize: {
+        xs: (string | {
+            lineHeight: string;
+        })[];
+        sm: (string | {
+            lineHeight: string;
+        })[];
+        base: (string | {
+            lineHeight: string;
+        })[];
+        lg: (string | {
+            lineHeight: string;
+        })[];
+        xl: (string | {
+            lineHeight: string;
+        })[];
+        '2xl': (string | {
+            lineHeight: string;
+        })[];
+        '3xl': (string | {
+            lineHeight: string;
+        })[];
+        '4xl': (string | {
+            lineHeight: string;
+        })[];
+        '5xl': (string | {
+            lineHeight: string;
+        })[];
+        '6xl': (string | {
+            lineHeight: string;
+        })[];
+        '7xl': (string | {
+            lineHeight: string;
+        })[];
+        '8xl': (string | {
+            lineHeight: string;
+        })[];
+        '9xl': (string | {
+            lineHeight: string;
+        })[];
+    };
+    fontWeight: {
+        thin: string;
+        extralight: string;
+        light: string;
+        normal: string;
+        medium: string;
+        semibold: string;
+        bold: string;
+        extrabold: string;
+        black: string;
+    };
+    gap: ({ theme }: PluginUtils) => any;
+    gradientColorStops: ({ theme }: PluginUtils) => any;
+    gradientColorStopPositions: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        '0%': string;
+        '5%': string;
+        '10%': string;
+        '15%': string;
+        '20%': string;
+        '25%': string;
+        '30%': string;
+        '35%': string;
+        '40%': string;
+        '45%': string;
+        '50%': string;
+        '55%': string;
+        '60%': string;
+        '65%': string;
+        '70%': string;
+        '75%': string;
+        '80%': string;
+        '85%': string;
+        '90%': string;
+        '95%': string;
+        '100%': string;
+    };
+    grayscale: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    gridAutoColumns: {
+        auto: string;
+        min: string;
+        max: string;
+        fr: string;
+    };
+    gridAutoRows: {
+        auto: string;
+        min: string;
+        max: string;
+        fr: string;
+    };
+    gridColumn: {
+        auto: string;
+        'span-1': string;
+        'span-2': string;
+        'span-3': string;
+        'span-4': string;
+        'span-5': string;
+        'span-6': string;
+        'span-7': string;
+        'span-8': string;
+        'span-9': string;
+        'span-10': string;
+        'span-11': string;
+        'span-12': string;
+        'span-full': string;
+    };
+    gridColumnEnd: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        13: string;
+    };
+    gridColumnStart: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        13: string;
+    };
+    gridRow: {
+        auto: string;
+        'span-1': string;
+        'span-2': string;
+        'span-3': string;
+        'span-4': string;
+        'span-5': string;
+        'span-6': string;
+        'span-7': string;
+        'span-8': string;
+        'span-9': string;
+        'span-10': string;
+        'span-11': string;
+        'span-12': string;
+        'span-full': string;
+    };
+    gridRowEnd: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        13: string;
+    };
+    gridRowStart: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        13: string;
+    };
+    gridTemplateColumns: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        none: string;
+        subgrid: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+    };
+    gridTemplateRows: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        none: string;
+        subgrid: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+    };
+    height: ({ theme }: PluginUtils) => any;
+    hueRotate: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        15: string;
+        30: string;
+        60: string;
+        90: string;
+        180: string;
+    };
+    inset: ({ theme }: PluginUtils) => any;
+    invert: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    keyframes: {
+        spin: {
+            to: {
+                transform: string;
+            };
+        };
+        ping: {
+            '75%, 100%': {
+                transform: string;
+                opacity: string;
+            };
+        };
+        pulse: {
+            '50%': {
+                opacity: string;
+            };
+        };
+        bounce: {
+            '0%, 100%': {
+                transform: string;
+                animationTimingFunction: string;
+            };
+            '50%': {
+                transform: string;
+                animationTimingFunction: string;
+            };
+        };
+    };
+    letterSpacing: {
+        tighter: string;
+        tight: string;
+        normal: string;
+        wide: string;
+        wider: string;
+        widest: string;
+    };
+    lineHeight: {
+        none: string;
+        tight: string;
+        snug: string;
+        normal: string;
+        relaxed: string;
+        loose: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+    };
+    listStyleType: {
+        none: string;
+        disc: string;
+        decimal: string;
+    };
+    listStyleImage: {
+        none: string;
+    };
+    margin: ({ theme }: PluginUtils) => any;
+    lineClamp: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+    };
+    maxHeight: ({ theme }: PluginUtils) => any;
+    maxWidth: ({ theme }: PluginUtils) => any;
+    minHeight: ({ theme }: PluginUtils) => any;
+    minWidth: ({ theme }: PluginUtils) => any;
+    objectPosition: {
+        bottom: string;
+        center: string;
+        left: string;
+        'left-bottom': string;
+        'left-top': string;
+        right: string;
+        'right-bottom': string;
+        'right-top': string;
+        top: string;
+    };
+    opacity: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        5: string;
+        10: string;
+        15: string;
+        20: string;
+        25: string;
+        30: string;
+        35: string;
+        40: string;
+        45: string;
+        50: string;
+        55: string;
+        60: string;
+        65: string;
+        70: string;
+        75: string;
+        80: string;
+        85: string;
+        90: string;
+        95: string;
+        100: string;
+    };
+    order: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        first: string;
+        last: string;
+        none: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+    };
+    outlineColor: ({ theme }: PluginUtils) => any;
+    outlineOffset: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    outlineWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    padding: ({ theme }: PluginUtils) => any;
+    placeholderColor: ({ theme }: PluginUtils) => any;
+    placeholderOpacity: ({ theme }: PluginUtils) => any;
+    ringColor: ({ theme }: PluginUtils) => any;
+    ringOffsetColor: ({ theme }: PluginUtils) => any;
+    ringOffsetWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    ringOpacity: ({ theme }: PluginUtils) => any;
+    ringWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        DEFAULT: string;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    rotate: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        3: string;
+        6: string;
+        12: string;
+        45: string;
+        90: string;
+        180: string;
+    };
+    saturate: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        50: string;
+        100: string;
+        150: string;
+        200: string;
+    };
+    scale: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        50: string;
+        75: string;
+        90: string;
+        95: string;
+        100: string;
+        105: string;
+        110: string;
+        125: string;
+        150: string;
+    };
+    screens: {
+        sm: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+    };
+    scrollMargin: ({ theme }: PluginUtils) => any;
+    scrollPadding: ({ theme }: PluginUtils) => any;
+    sepia: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    skew: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        3: string;
+        6: string;
+        12: string;
+    };
+    space: ({ theme }: PluginUtils) => any;
+    spacing: {
+        px: string;
+        0: string;
+        0.5: string;
+        1: string;
+        1.5: string;
+        2: string;
+        2.5: string;
+        3: string;
+        3.5: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        14: string;
+        16: string;
+        20: string;
+        24: string;
+        28: string;
+        32: string;
+        36: string;
+        40: string;
+        44: string;
+        48: string;
+        52: string;
+        56: string;
+        60: string;
+        64: string;
+        72: string;
+        80: string;
+        96: string;
+    };
+    stroke: ({ theme }: PluginUtils) => any;
+    strokeWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+    };
+    supports: {};
+    data: {};
+    textColor: ({ theme }: PluginUtils) => any;
+    textDecorationColor: ({ theme }: PluginUtils) => any;
+    textDecorationThickness: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        'from-font': string;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    textIndent: ({ theme }: PluginUtils) => any;
+    textOpacity: ({ theme }: PluginUtils) => any;
+    textUnderlineOffset: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    transformOrigin: {
+        center: string;
+        top: string;
+        'top-right': string;
+        right: string;
+        'bottom-right': string;
+        bottom: string;
+        'bottom-left': string;
+        left: string;
+        'top-left': string;
+    };
+    transitionDelay: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        75: string;
+        100: string;
+        150: string;
+        200: string;
+        300: string;
+        500: string;
+        700: string;
+        1000: string;
+    };
+    transitionDuration: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        DEFAULT: string;
+        0: string;
+        75: string;
+        100: string;
+        150: string;
+        200: string;
+        300: string;
+        500: string;
+        700: string;
+        1000: string;
+    };
+    transitionProperty: {
+        none: string;
+        all: string;
+        DEFAULT: string;
+        colors: string;
+        opacity: string;
+        shadow: string;
+        transform: string;
+    };
+    transitionTimingFunction: {
+        DEFAULT: string;
+        linear: string;
+        in: string;
+        out: string;
+        'in-out': string;
+    };
+    translate: ({ theme }: PluginUtils) => any;
+    size: ({ theme }: PluginUtils) => any;
+    width: ({ theme }: PluginUtils) => any;
+    willChange: {
+        auto: string;
+        scroll: string;
+        contents: string;
+        transform: string;
+    };
+    zIndex: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        0: string;
+        10: string;
+        20: string;
+        30: string;
+        40: string;
+        50: string;
+    };
+};
+
+export { _default as default };
Index: node_modules/tailwindcss/dist/default-theme.d.ts
===================================================================
--- node_modules/tailwindcss/dist/default-theme.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/default-theme.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1147 @@
+import { P as PluginUtils, N as NamedUtilityValue } from './resolve-config-BIFUA2FY.js';
+import './colors-b_6i0Oi7.js';
+
+declare const _default: {
+    accentColor: ({ theme }: PluginUtils) => any;
+    animation: {
+        none: string;
+        spin: string;
+        ping: string;
+        pulse: string;
+        bounce: string;
+    };
+    aria: {
+        busy: string;
+        checked: string;
+        disabled: string;
+        expanded: string;
+        hidden: string;
+        pressed: string;
+        readonly: string;
+        required: string;
+        selected: string;
+    };
+    aspectRatio: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        square: string;
+        video: string;
+    };
+    backdropBlur: ({ theme }: PluginUtils) => any;
+    backdropBrightness: ({ theme }: PluginUtils) => any;
+    backdropContrast: ({ theme }: PluginUtils) => any;
+    backdropGrayscale: ({ theme }: PluginUtils) => any;
+    backdropHueRotate: ({ theme }: PluginUtils) => any;
+    backdropInvert: ({ theme }: PluginUtils) => any;
+    backdropOpacity: ({ theme }: PluginUtils) => any;
+    backdropSaturate: ({ theme }: PluginUtils) => any;
+    backdropSepia: ({ theme }: PluginUtils) => any;
+    backgroundColor: ({ theme }: PluginUtils) => any;
+    backgroundImage: {
+        none: string;
+        'gradient-to-t': string;
+        'gradient-to-tr': string;
+        'gradient-to-r': string;
+        'gradient-to-br': string;
+        'gradient-to-b': string;
+        'gradient-to-bl': string;
+        'gradient-to-l': string;
+        'gradient-to-tl': string;
+    };
+    backgroundOpacity: ({ theme }: PluginUtils) => any;
+    backgroundPosition: {
+        bottom: string;
+        center: string;
+        left: string;
+        'left-bottom': string;
+        'left-top': string;
+        right: string;
+        'right-bottom': string;
+        'right-top': string;
+        top: string;
+    };
+    backgroundSize: {
+        auto: string;
+        cover: string;
+        contain: string;
+    };
+    blur: {
+        0: string;
+        none: string;
+        sm: string;
+        DEFAULT: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+        '3xl': string;
+    };
+    borderColor: ({ theme }: PluginUtils) => any;
+    borderOpacity: ({ theme }: PluginUtils) => any;
+    borderRadius: {
+        none: string;
+        sm: string;
+        DEFAULT: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+        '3xl': string;
+        full: string;
+    };
+    borderSpacing: ({ theme }: PluginUtils) => any;
+    borderWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        DEFAULT: string;
+        0: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    boxShadow: {
+        sm: string;
+        DEFAULT: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+        inner: string;
+        none: string;
+    };
+    boxShadowColor: ({ theme }: PluginUtils) => any;
+    brightness: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        50: string;
+        75: string;
+        90: string;
+        95: string;
+        100: string;
+        105: string;
+        110: string;
+        125: string;
+        150: string;
+        200: string;
+    };
+    caretColor: ({ theme }: PluginUtils) => any;
+    colors: () => {
+        inherit: string;
+        current: string;
+        transparent: string;
+        black: string;
+        white: string;
+        slate: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        gray: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        zinc: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        neutral: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        stone: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        red: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        orange: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        amber: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        yellow: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        lime: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        green: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        emerald: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        teal: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        cyan: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        sky: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        blue: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        indigo: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        violet: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        purple: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        fuchsia: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        pink: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+        rose: {
+            '50': string;
+            '100': string;
+            '200': string;
+            '300': string;
+            '400': string;
+            '500': string;
+            '600': string;
+            '700': string;
+            '800': string;
+            '900': string;
+            '950': string;
+        };
+    };
+    columns: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        '3xs': string;
+        '2xs': string;
+        xs: string;
+        sm: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+        '3xl': string;
+        '4xl': string;
+        '5xl': string;
+        '6xl': string;
+        '7xl': string;
+    };
+    container: {};
+    content: {
+        none: string;
+    };
+    contrast: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        50: string;
+        75: string;
+        100: string;
+        125: string;
+        150: string;
+        200: string;
+    };
+    cursor: {
+        auto: string;
+        default: string;
+        pointer: string;
+        wait: string;
+        text: string;
+        move: string;
+        help: string;
+        'not-allowed': string;
+        none: string;
+        'context-menu': string;
+        progress: string;
+        cell: string;
+        crosshair: string;
+        'vertical-text': string;
+        alias: string;
+        copy: string;
+        'no-drop': string;
+        grab: string;
+        grabbing: string;
+        'all-scroll': string;
+        'col-resize': string;
+        'row-resize': string;
+        'n-resize': string;
+        'e-resize': string;
+        's-resize': string;
+        'w-resize': string;
+        'ne-resize': string;
+        'nw-resize': string;
+        'se-resize': string;
+        'sw-resize': string;
+        'ew-resize': string;
+        'ns-resize': string;
+        'nesw-resize': string;
+        'nwse-resize': string;
+        'zoom-in': string;
+        'zoom-out': string;
+    };
+    divideColor: ({ theme }: PluginUtils) => any;
+    divideOpacity: ({ theme }: PluginUtils) => any;
+    divideWidth: ({ theme }: PluginUtils) => any;
+    dropShadow: {
+        sm: string;
+        DEFAULT: string[];
+        md: string[];
+        lg: string[];
+        xl: string[];
+        '2xl': string;
+        none: string;
+    };
+    fill: ({ theme }: PluginUtils) => any;
+    flex: {
+        1: string;
+        auto: string;
+        initial: string;
+        none: string;
+    };
+    flexBasis: ({ theme }: PluginUtils) => any;
+    flexGrow: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    flexShrink: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    fontFamily: {
+        sans: string[];
+        serif: string[];
+        mono: string[];
+    };
+    fontSize: {
+        xs: (string | {
+            lineHeight: string;
+        })[];
+        sm: (string | {
+            lineHeight: string;
+        })[];
+        base: (string | {
+            lineHeight: string;
+        })[];
+        lg: (string | {
+            lineHeight: string;
+        })[];
+        xl: (string | {
+            lineHeight: string;
+        })[];
+        '2xl': (string | {
+            lineHeight: string;
+        })[];
+        '3xl': (string | {
+            lineHeight: string;
+        })[];
+        '4xl': (string | {
+            lineHeight: string;
+        })[];
+        '5xl': (string | {
+            lineHeight: string;
+        })[];
+        '6xl': (string | {
+            lineHeight: string;
+        })[];
+        '7xl': (string | {
+            lineHeight: string;
+        })[];
+        '8xl': (string | {
+            lineHeight: string;
+        })[];
+        '9xl': (string | {
+            lineHeight: string;
+        })[];
+    };
+    fontWeight: {
+        thin: string;
+        extralight: string;
+        light: string;
+        normal: string;
+        medium: string;
+        semibold: string;
+        bold: string;
+        extrabold: string;
+        black: string;
+    };
+    gap: ({ theme }: PluginUtils) => any;
+    gradientColorStops: ({ theme }: PluginUtils) => any;
+    gradientColorStopPositions: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        '0%': string;
+        '5%': string;
+        '10%': string;
+        '15%': string;
+        '20%': string;
+        '25%': string;
+        '30%': string;
+        '35%': string;
+        '40%': string;
+        '45%': string;
+        '50%': string;
+        '55%': string;
+        '60%': string;
+        '65%': string;
+        '70%': string;
+        '75%': string;
+        '80%': string;
+        '85%': string;
+        '90%': string;
+        '95%': string;
+        '100%': string;
+    };
+    grayscale: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    gridAutoColumns: {
+        auto: string;
+        min: string;
+        max: string;
+        fr: string;
+    };
+    gridAutoRows: {
+        auto: string;
+        min: string;
+        max: string;
+        fr: string;
+    };
+    gridColumn: {
+        auto: string;
+        'span-1': string;
+        'span-2': string;
+        'span-3': string;
+        'span-4': string;
+        'span-5': string;
+        'span-6': string;
+        'span-7': string;
+        'span-8': string;
+        'span-9': string;
+        'span-10': string;
+        'span-11': string;
+        'span-12': string;
+        'span-full': string;
+    };
+    gridColumnEnd: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        13: string;
+    };
+    gridColumnStart: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        13: string;
+    };
+    gridRow: {
+        auto: string;
+        'span-1': string;
+        'span-2': string;
+        'span-3': string;
+        'span-4': string;
+        'span-5': string;
+        'span-6': string;
+        'span-7': string;
+        'span-8': string;
+        'span-9': string;
+        'span-10': string;
+        'span-11': string;
+        'span-12': string;
+        'span-full': string;
+    };
+    gridRowEnd: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        13: string;
+    };
+    gridRowStart: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        13: string;
+    };
+    gridTemplateColumns: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        none: string;
+        subgrid: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+    };
+    gridTemplateRows: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        none: string;
+        subgrid: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+    };
+    height: ({ theme }: PluginUtils) => any;
+    hueRotate: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        15: string;
+        30: string;
+        60: string;
+        90: string;
+        180: string;
+    };
+    inset: ({ theme }: PluginUtils) => any;
+    invert: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    keyframes: {
+        spin: {
+            to: {
+                transform: string;
+            };
+        };
+        ping: {
+            '75%, 100%': {
+                transform: string;
+                opacity: string;
+            };
+        };
+        pulse: {
+            '50%': {
+                opacity: string;
+            };
+        };
+        bounce: {
+            '0%, 100%': {
+                transform: string;
+                animationTimingFunction: string;
+            };
+            '50%': {
+                transform: string;
+                animationTimingFunction: string;
+            };
+        };
+    };
+    letterSpacing: {
+        tighter: string;
+        tight: string;
+        normal: string;
+        wide: string;
+        wider: string;
+        widest: string;
+    };
+    lineHeight: {
+        none: string;
+        tight: string;
+        snug: string;
+        normal: string;
+        relaxed: string;
+        loose: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+    };
+    listStyleType: {
+        none: string;
+        disc: string;
+        decimal: string;
+    };
+    listStyleImage: {
+        none: string;
+    };
+    margin: ({ theme }: PluginUtils) => any;
+    lineClamp: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+    };
+    maxHeight: ({ theme }: PluginUtils) => any;
+    maxWidth: ({ theme }: PluginUtils) => any;
+    minHeight: ({ theme }: PluginUtils) => any;
+    minWidth: ({ theme }: PluginUtils) => any;
+    objectPosition: {
+        bottom: string;
+        center: string;
+        left: string;
+        'left-bottom': string;
+        'left-top': string;
+        right: string;
+        'right-bottom': string;
+        'right-top': string;
+        top: string;
+    };
+    opacity: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        5: string;
+        10: string;
+        15: string;
+        20: string;
+        25: string;
+        30: string;
+        35: string;
+        40: string;
+        45: string;
+        50: string;
+        55: string;
+        60: string;
+        65: string;
+        70: string;
+        75: string;
+        80: string;
+        85: string;
+        90: string;
+        95: string;
+        100: string;
+    };
+    order: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        first: string;
+        last: string;
+        none: string;
+        1: string;
+        2: string;
+        3: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+    };
+    outlineColor: ({ theme }: PluginUtils) => any;
+    outlineOffset: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    outlineWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    padding: ({ theme }: PluginUtils) => any;
+    placeholderColor: ({ theme }: PluginUtils) => any;
+    placeholderOpacity: ({ theme }: PluginUtils) => any;
+    ringColor: ({ theme }: PluginUtils) => any;
+    ringOffsetColor: ({ theme }: PluginUtils) => any;
+    ringOffsetWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    ringOpacity: ({ theme }: PluginUtils) => any;
+    ringWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        DEFAULT: string;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    rotate: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        3: string;
+        6: string;
+        12: string;
+        45: string;
+        90: string;
+        180: string;
+    };
+    saturate: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        50: string;
+        100: string;
+        150: string;
+        200: string;
+    };
+    scale: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        50: string;
+        75: string;
+        90: string;
+        95: string;
+        100: string;
+        105: string;
+        110: string;
+        125: string;
+        150: string;
+    };
+    screens: {
+        sm: string;
+        md: string;
+        lg: string;
+        xl: string;
+        '2xl': string;
+    };
+    scrollMargin: ({ theme }: PluginUtils) => any;
+    scrollPadding: ({ theme }: PluginUtils) => any;
+    sepia: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        DEFAULT: string;
+    };
+    skew: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+        3: string;
+        6: string;
+        12: string;
+    };
+    space: ({ theme }: PluginUtils) => any;
+    spacing: {
+        px: string;
+        0: string;
+        0.5: string;
+        1: string;
+        1.5: string;
+        2: string;
+        2.5: string;
+        3: string;
+        3.5: string;
+        4: string;
+        5: string;
+        6: string;
+        7: string;
+        8: string;
+        9: string;
+        10: string;
+        11: string;
+        12: string;
+        14: string;
+        16: string;
+        20: string;
+        24: string;
+        28: string;
+        32: string;
+        36: string;
+        40: string;
+        44: string;
+        48: string;
+        52: string;
+        56: string;
+        60: string;
+        64: string;
+        72: string;
+        80: string;
+        96: string;
+    };
+    stroke: ({ theme }: PluginUtils) => any;
+    strokeWidth: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        1: string;
+        2: string;
+    };
+    supports: {};
+    data: {};
+    textColor: ({ theme }: PluginUtils) => any;
+    textDecorationColor: ({ theme }: PluginUtils) => any;
+    textDecorationThickness: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        'from-font': string;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    textIndent: ({ theme }: PluginUtils) => any;
+    textOpacity: ({ theme }: PluginUtils) => any;
+    textUnderlineOffset: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        0: string;
+        1: string;
+        2: string;
+        4: string;
+        8: string;
+    };
+    transformOrigin: {
+        center: string;
+        top: string;
+        'top-right': string;
+        right: string;
+        'bottom-right': string;
+        bottom: string;
+        'bottom-left': string;
+        left: string;
+        'top-left': string;
+    };
+    transitionDelay: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        0: string;
+        75: string;
+        100: string;
+        150: string;
+        200: string;
+        300: string;
+        500: string;
+        700: string;
+        1000: string;
+    };
+    transitionDuration: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        DEFAULT: string;
+        0: string;
+        75: string;
+        100: string;
+        150: string;
+        200: string;
+        300: string;
+        500: string;
+        700: string;
+        1000: string;
+    };
+    transitionProperty: {
+        none: string;
+        all: string;
+        DEFAULT: string;
+        colors: string;
+        opacity: string;
+        shadow: string;
+        transform: string;
+    };
+    transitionTimingFunction: {
+        DEFAULT: string;
+        linear: string;
+        in: string;
+        out: string;
+        'in-out': string;
+    };
+    translate: ({ theme }: PluginUtils) => any;
+    size: ({ theme }: PluginUtils) => any;
+    width: ({ theme }: PluginUtils) => any;
+    willChange: {
+        auto: string;
+        scroll: string;
+        contents: string;
+        transform: string;
+    };
+    zIndex: {
+        __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined;
+        auto: string;
+        0: string;
+        10: string;
+        20: string;
+        30: string;
+        40: string;
+        50: string;
+    };
+};
+
+export { _default as default };
Index: node_modules/tailwindcss/dist/default-theme.js
===================================================================
--- node_modules/tailwindcss/dist/default-theme.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/default-theme.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+"use strict";var m=new Uint8Array(256);function d(e,c){let t=0,g=[],u=0,k=e.length,w=c.charCodeAt(0);for(let n=0;n<k;n++){let h=e.charCodeAt(n);if(t===0&&h===w){g.push(e.slice(u,n)),u=n+1;continue}switch(h){case 92:n+=1;break;case 39:case 34:for(;++n<k;){let x=e.charCodeAt(n);if(x===92){n+=1;continue}if(x===h)break}break;case 40:m[t]=41,t++;break;case 91:m[t]=93,t++;break;case 123:m[t]=125,t++;break;case 93:case 125:case 41:t>0&&h===m[t-1]&&t--;break}}return g.push(e.slice(u)),g}var l=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,z=new RegExp(`^${l.source}$`);var T=new RegExp(`^${l.source}%$`);var D=new RegExp(`^${l.source}s*/s*${l.source}$`);var A=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],I=new RegExp(`^${l.source}(${A.join("|")})$`);var C=["deg","rad","grad","turn"],F=new RegExp(`^${l.source}(${C.join("|")})$`);var H=new RegExp(`^${l.source} +${l.source} +${l.source}$`);function i(e){let c=Number(e);return Number.isInteger(c)&&c>=0&&String(c)===String(e)}var f={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};function s(e){return{__BARE_VALUE__:e}}var r=s(e=>{if(i(e.value))return e.value}),o=s(e=>{if(i(e.value))return`${e.value}%`}),a=s(e=>{if(i(e.value))return`${e.value}px`}),b=s(e=>{if(i(e.value))return`${e.value}ms`}),p=s(e=>{if(i(e.value))return`${e.value}deg`}),S=s(e=>{if(e.fraction===null)return;let[c,t]=d(e.fraction,"/");if(!(!i(c)||!i(t)))return e.fraction}),E=s(e=>{if(i(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),y={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...S},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...o}),backdropContrast:({theme:e})=>({...e("contrast"),...o}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...o}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...p}),backdropInvert:({theme:e})=>({...e("invert"),...o}),backdropOpacity:({theme:e})=>({...e("opacity"),...o}),backdropSaturate:({theme:e})=>({...e("saturate"),...o}),backdropSepia:({theme:e})=>({...e("sepia"),...o}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...a},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...o},caretColor:({theme:e})=>e("colors"),colors:()=>({...f}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...r},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...o},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...a}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...r},flexShrink:{0:"0",DEFAULT:"1",...r},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...o},grayscale:{0:"0",DEFAULT:"100%",...o},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...r},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...r},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...r},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...r},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...E},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...E},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...p},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...o},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...r},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...o},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...r},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...p},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...o},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...o},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...o},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...p},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...r},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...b},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...b},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...r}};module.exports=y;
Index: node_modules/tailwindcss/dist/default-theme.mjs
===================================================================
--- node_modules/tailwindcss/dist/default-theme.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/default-theme.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+import{i as a}from"./chunk-GFBUASX3.mjs";import"./chunk-HTB5LLOP.mjs";export{a as default};
Index: node_modules/tailwindcss/dist/flatten-color-palette.d.mts
===================================================================
--- node_modules/tailwindcss/dist/flatten-color-palette.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/flatten-color-palette.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6 @@
+type Colors = {
+    [key: string | number]: string | Colors;
+};
+declare function flattenColorPalette(colors: Colors): Record<string, string>;
+
+export { flattenColorPalette as default };
Index: node_modules/tailwindcss/dist/flatten-color-palette.d.ts
===================================================================
--- node_modules/tailwindcss/dist/flatten-color-palette.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/flatten-color-palette.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6 @@
+type Colors = {
+    [key: string | number]: string | Colors;
+};
+declare function flattenColorPalette(colors: Colors): Record<string, string>;
+
+export { flattenColorPalette as default };
Index: node_modules/tailwindcss/dist/flatten-color-palette.js
===================================================================
--- node_modules/tailwindcss/dist/flatten-color-palette.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/flatten-color-palette.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,3 @@
+"use strict";function N(e){return{kind:"word",value:e}}function we(e,t){return{kind:"function",value:e,nodes:t}}function ye(e){return{kind:"separator",value:e}}function v(e){let t="";for(let i of e)switch(i.kind){case"word":case"separator":{t+=i.value;break}case"function":t+=i.value+"("+v(i.nodes)+")"}return t}var q=92,be=41,Z=58,Q=44,xe=34,J=61,X=62,ee=60,te=10,Ae=40,Ce=39,Se=47,re=32,ie=9;function g(e){e=e.replaceAll(`\r
+`,`
+`);let t=[],i=[],r=null,n="",a;for(let o=0;o<e.length;o++){let l=e.charCodeAt(o);switch(l){case q:{n+=e[o]+e[o+1],o++;break}case Se:{if(n.length>0){let u=N(n);r?r.nodes.push(u):t.push(u),n=""}let s=N(e[o]);r?r.nodes.push(s):t.push(s);break}case Z:case Q:case J:case X:case ee:case te:case re:case ie:{if(n.length>0){let U=N(n);r?r.nodes.push(U):t.push(U),n=""}let s=o,u=o+1;for(;u<e.length&&(a=e.charCodeAt(u),!(a!==Z&&a!==Q&&a!==J&&a!==X&&a!==ee&&a!==te&&a!==re&&a!==ie));u++);o=u-1;let w=ye(e.slice(s,u));r?r.nodes.push(w):t.push(w);break}case Ce:case xe:{let s=o;for(let u=o+1;u<e.length;u++)if(a=e.charCodeAt(u),a===q)u+=1;else if(a===l){o=u;break}n+=e.slice(s,o+1);break}case Ae:{let s=we(n,[]);n="",r?r.nodes.push(s):t.push(s),i.push(s),r=s;break}case be:{let s=i.pop();if(n.length>0){let u=N(n);s?.nodes.push(u),n=""}i.length>0?r=i[i.length-1]:r=null;break}default:n+=String.fromCharCode(l)}}return n.length>0&&t.push(N(n)),t}var p=class extends Map{constructor(i){super();this.factory=i}get(i){let r=super.get(i);return r===void 0&&(r=this.factory(i,this),this.set(i,r)),r}};var ct=new Uint8Array(256);var L=new Uint8Array(256);function d(e,t){let i=0,r=[],n=0,a=e.length,o=t.charCodeAt(0);for(let l=0;l<a;l++){let s=e.charCodeAt(l);if(i===0&&s===o){r.push(e.slice(n,l)),n=l+1;continue}switch(s){case 92:l+=1;break;case 39:case 34:for(;++l<a;){let u=e.charCodeAt(l);if(u===92){l+=1;continue}if(u===s)break}break;case 40:L[i]=41,i++;break;case 91:L[i]=93,i++;break;case 123:L[i]=125,i++;break;case 93:case 125:case 41:i>0&&s===L[i-1]&&i--;break}}return r.push(e.slice(n)),r}var j=(o=>(o[o.Continue=0]="Continue",o[o.Skip=1]="Skip",o[o.Stop=2]="Stop",o[o.Replace=3]="Replace",o[o.ReplaceSkip=4]="ReplaceSkip",o[o.ReplaceStop=5]="ReplaceStop",o))(j||{}),f={Continue:{kind:0},Skip:{kind:1},Stop:{kind:2},Replace:e=>({kind:3,nodes:Array.isArray(e)?e:[e]}),ReplaceSkip:e=>({kind:4,nodes:Array.isArray(e)?e:[e]}),ReplaceStop:e=>({kind:5,nodes:Array.isArray(e)?e:[e]})};function c(e,t){typeof t=="function"?ne(e,t):ne(e,t.enter,t.exit)}function ne(e,t=()=>f.Continue,i=()=>f.Continue){let r=[[e,0,null]],n={parent:null,depth:0,path(){let a=[];for(let o=1;o<r.length;o++){let l=r[o][2];l&&a.push(l)}return a}};for(;r.length>0;){let a=r.length-1,o=r[a],l=o[0],s=o[1],u=o[2];if(s>=l.length){r.pop();continue}if(n.parent=u,n.depth=a,s>=0){let O=l[s],C=t(O,n)??f.Continue;switch(C.kind){case 0:{O.nodes&&O.nodes.length>0&&r.push([O.nodes,0,O]),o[1]=~s;continue}case 2:return;case 1:{o[1]=~s;continue}case 3:{l.splice(s,1,...C.nodes);continue}case 5:{l.splice(s,1,...C.nodes);return}case 4:{l.splice(s,1,...C.nodes),o[1]+=C.nodes.length;continue}default:throw new Error(`Invalid \`WalkAction.${j[C.kind]??`Unknown(${C.kind})`}\` in enter.`)}}let w=~s,U=l[w],b=i(U,n)??f.Continue;switch(b.kind){case 0:o[1]=w+1;continue;case 2:return;case 3:{l.splice(w,1,...b.nodes),o[1]=w+b.nodes.length;continue}case 5:{l.splice(w,1,...b.nodes);return}case 4:{l.splice(w,1,...b.nodes),o[1]=w+b.nodes.length;continue}default:throw new Error(`Invalid \`WalkAction.${j[b.kind]??`Unknown(${b.kind})`}\` in exit.`)}}}var xt=new p(e=>{let t=g(e),i=new Set;return c(t,(r,n)=>{let a=n.parent===null?t:n.parent.nodes??[];if(r.kind==="word"&&(r.value==="+"||r.value==="-"||r.value==="*"||r.value==="/")){let o=a.indexOf(r)??-1;if(o===-1)return;let l=a[o-1];if(l?.kind!=="separator"||l.value!==" ")return;let s=a[o+1];if(s?.kind!=="separator"||s.value!==" ")return;i.add(l),i.add(s)}else r.kind==="separator"&&r.value.length>0&&r.value.trim()===""?(a[0]===r||a[a.length-1]===r)&&i.add(r):r.kind==="separator"&&r.value.trim()===","&&(r.value=",")}),i.size>0&&c(t,r=>{if(i.has(r))return i.delete(r),f.ReplaceSkip([])}),W(t),v(t)});var At=new p(e=>{let t=g(e);return t.length===3&&t[0].kind==="word"&&t[0].value==="&"&&t[1].kind==="separator"&&t[1].value===":"&&t[2].kind==="function"&&t[2].value==="is"?v(t[2].nodes):e});function W(e){for(let t of e)switch(t.kind){case"function":{if(t.value==="url"||t.value.endsWith("_url")){t.value=P(t.value);break}if(t.value==="var"||t.value.endsWith("_var")||t.value==="theme"||t.value.endsWith("_theme")){t.value=P(t.value);for(let i=0;i<t.nodes.length;i++)W([t.nodes[i]]);break}t.value=P(t.value),W(t.nodes);break}case"separator":t.value=P(t.value);break;case"word":{(t.value[0]!=="-"||t.value[1]!=="-")&&(t.value=P(t.value));break}default:$e(t)}}var Ct=new p(e=>{let t=g(e);return t.length===1&&t[0].kind==="function"&&t[0].value==="var"});function $e(e){throw new Error(`Unexpected value: ${e}`)}function P(e){return e.replaceAll("_",String.raw`\_`).replaceAll(" ","_")}var A=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,_t=new RegExp(`^${A.source}$`);var It=new RegExp(`^${A.source}%$`);var Dt=new RegExp(`^${A.source}s*/s*${A.source}$`);var Te=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],Ut=new RegExp(`^${A.source}(${Te.join("|")})$`);var Ee=["deg","rad","grad","turn"],Lt=new RegExp(`^${A.source}(${Ee.join("|")})$`);var Kt=new RegExp(`^${A.source} +${A.source} +${A.source}$`);function h(e){let t=Number(e);return Number.isInteger(t)&&t>=0&&String(t)===String(e)}function _(e,t){if(t===null)return e;let i=Number(t);return Number.isNaN(i)||(t=`${i*100}%`),t==="100%"?e:`color-mix(in oklab, ${e} ${t}, transparent)`}var Re={"--alpha":Oe,"--spacing":Pe,"--theme":_e,theme:Ie};function Oe(e,t,i,...r){let[n,a]=d(i,"/").map(o=>o.trim());if(!n||!a)throw new Error(`The --alpha(\u2026) function requires a color and an alpha value, e.g.: \`--alpha(${n||"var(--my-color)"} / ${a||"50%"})\``);if(r.length>0)throw new Error(`The --alpha(\u2026) function only accepts one argument, e.g.: \`--alpha(${n||"var(--my-color)"} / ${a||"50%"})\``);return _(n,a)}function Pe(e,t,i,...r){if(!i)throw new Error("The --spacing(\u2026) function requires an argument, but received none.");if(r.length>0)throw new Error(`The --spacing(\u2026) function only accepts a single argument, but received ${r.length+1}.`);let n=e.theme.resolve(null,["--spacing"]);if(!n)throw new Error("The --spacing(\u2026) function requires that the `--spacing` theme variable exists, but it was not found.");return`calc(${n} * ${i})`}function _e(e,t,i,...r){if(!i.startsWith("--"))throw new Error("The --theme(\u2026) function can only be used with CSS variables from your theme.");let n=!1;i.endsWith(" inline")&&(n=!0,i=i.slice(0,-7)),t.kind==="at-rule"&&(n=!0);let a=e.resolveThemeValue(i,n);if(!a){if(r.length>0)return r.join(", ");throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the variable name is correct or provide a fallback value to silence this error.`)}if(r.length===0)return a;let o=r.join(", ");if(o==="initial")return a;if(a==="initial")return o;if(a.startsWith("var(")||a.startsWith("theme(")||a.startsWith("--theme(")){let l=g(a);return Ue(l,o),v(l)}return a}function Ie(e,t,i,...r){i=De(i);let n=e.resolveThemeValue(i);if(!n&&r.length>0)return r.join(", ");if(!n)throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the path is correct or provide a fallback value to silence this error.`);return n}var lr=new RegExp(Object.keys(Re).map(e=>`${e}\\(`).join("|"));function De(e){if(e[0]!=="'"&&e[0]!=='"')return e;let t="",i=e[0];for(let r=1;r<e.length-1;r++){let n=e[r],a=e[r+1];n==="\\"&&(a===i||a==="\\")?(t+=a,r++):t+=n}return t}function Ue(e,t){c(e,i=>{if(i.kind==="function"&&!(i.value!=="var"&&i.value!=="theme"&&i.value!=="--theme"))if(i.nodes.length===1)i.nodes.push({kind:"word",value:`, ${t}`});else{let r=i.nodes[i.nodes.length-1];r.kind==="word"&&r.value==="initial"&&(r.value=t)}})}var Ke=/^(?<value>[-+]?(?:\d*\.)?\d+)(?<unit>[a-z]+|%)?$/i,le=new p(e=>{let t=Ke.exec(e);if(!t)return null;let i=t.groups?.value;if(i===void 0)return null;let r=Number(i);if(Number.isNaN(r))return null;let n=t.groups?.unit;return n===void 0?[r,null]:[r,n]});function se(e,t="top",i="right",r="bottom",n="left"){return ue(`${e}-${t}`,`${e}-${i}`,`${e}-${r}`,`${e}-${n}`)}function ue(e="top",t="right",i="bottom",r="left"){return{1:[[e,0],[t,0],[i,0],[r,0]],2:[[e,0],[t,1],[i,0],[r,1]],3:[[e,0],[t,1],[i,2],[r,1]],4:[[e,0],[t,1],[i,2],[r,3]]}}function T(e,t){return{1:[[e,0],[t,0]],2:[[e,0],[t,1]]}}var xr={inset:ue(),margin:se("margin"),padding:se("padding"),gap:T("row-gap","column-gap")},Ar={"inset-block":T("top","bottom"),"inset-inline":T("left","right"),"margin-block":T("margin-top","margin-bottom"),"margin-inline":T("margin-left","margin-right"),"padding-block":T("padding-top","padding-bottom"),"padding-inline":T("padding-left","padding-right")};var Jr=Symbol();var Xr=Symbol();var ei=Symbol();var ti=Symbol();var ri=Symbol();var ii=Symbol();var ni=Symbol();var oi=Symbol();var ai=Symbol();var li=Symbol();var si=Symbol();var ui=Symbol();var fi=Symbol();var H={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};function E(e){return{__BARE_VALUE__:e}}var k=E(e=>{if(h(e.value))return e.value}),m=E(e=>{if(h(e.value))return`${e.value}%`}),$=E(e=>{if(h(e.value))return`${e.value}px`}),ve=E(e=>{if(h(e.value))return`${e.value}ms`}),M=E(e=>{if(h(e.value))return`${e.value}deg`}),it=E(e=>{if(e.fraction===null)return;let[t,i]=d(e.fraction,"/");if(!(!h(t)||!h(i)))return e.fraction}),ke=E(e=>{if(h(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),nt={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...it},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...m}),backdropContrast:({theme:e})=>({...e("contrast"),...m}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...m}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...M}),backdropInvert:({theme:e})=>({...e("invert"),...m}),backdropOpacity:({theme:e})=>({...e("opacity"),...m}),backdropSaturate:({theme:e})=>({...e("saturate"),...m}),backdropSepia:({theme:e})=>({...e("sepia"),...m}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...$},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...m},caretColor:({theme:e})=>e("colors"),colors:()=>({...H}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...k},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...m},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...$}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...k},flexShrink:{0:"0",DEFAULT:"1",...k},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...m},grayscale:{0:"0",DEFAULT:"100%",...m},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...k},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...k},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...k},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...k},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...ke},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...ke},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...M},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...m},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...k},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...m},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...k},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...$},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...$},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...$},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...$},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...M},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...m},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...m},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...m},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...M},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...k},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...$},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...$},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...ve},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...ve},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...k}};function F(e){let t={};for(let[i,r]of Object.entries(e??{}))if(i!=="__CSS_VALUES__")if(typeof r=="object"&&r!==null)for(let[n,a]of Object.entries(F(r)))t[`${i}${n==="DEFAULT"?"":`-${n}`}`]=a;else t[i]=r;if("__CSS_VALUES__"in e)for(let[i,r]of Object.entries(e.__CSS_VALUES__))(Number(r)&4)===0&&(t[i]=e[i]);return t}module.exports=F;
Index: node_modules/tailwindcss/dist/flatten-color-palette.mjs
===================================================================
--- node_modules/tailwindcss/dist/flatten-color-palette.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/flatten-color-palette.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+import"./chunk-CT46QCH7.mjs";import"./chunk-GFBUASX3.mjs";import"./chunk-HTB5LLOP.mjs";function i(r){let n={};for(let[e,t]of Object.entries(r??{}))if(e!=="__CSS_VALUES__")if(typeof t=="object"&&t!==null)for(let[o,f]of Object.entries(i(t)))n[`${e}${o==="DEFAULT"?"":`-${o}`}`]=f;else n[e]=t;if("__CSS_VALUES__"in r)for(let[e,t]of Object.entries(r.__CSS_VALUES__))(Number(t)&4)===0&&(n[e]=r[e]);return n}export{i as default};
Index: node_modules/tailwindcss/dist/lib.d.mts
===================================================================
--- node_modules/tailwindcss/dist/lib.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/lib.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,378 @@
+import { S as SourceLocation, U as UserConfig, P as Plugin } from './types-CJYAW1ql.mjs';
+import { V as Variant, C as Candidate } from './resolve-config-QUZ9b-Gn.mjs';
+import './colors.mjs';
+
+declare const enum ThemeOptions {
+    NONE = 0,
+    INLINE = 1,
+    REFERENCE = 2,
+    DEFAULT = 4,
+    STATIC = 8,
+    USED = 16
+}
+declare class Theme {
+    #private;
+    private values;
+    private keyframes;
+    prefix: string | null;
+    constructor(values?: Map<string, {
+        value: string;
+        options: ThemeOptions;
+        src: Declaration["src"];
+    }>, keyframes?: Set<AtRule>);
+    get size(): number;
+    add(key: string, value: string, options?: ThemeOptions, src?: Declaration['src']): void;
+    keysInNamespaces(themeKeys: Iterable<ThemeKey>): string[];
+    get(themeKeys: ThemeKey[]): string | null;
+    hasDefault(key: string): boolean;
+    getOptions(key: string): ThemeOptions;
+    entries(): IterableIterator<[string, {
+        value: string;
+        options: ThemeOptions;
+        src: Declaration["src"];
+    }]> | [string, {
+        value: string;
+        options: ThemeOptions;
+        src: Declaration["src"];
+    }][];
+    prefixKey(key: string): string;
+    clearNamespace(namespace: string, clearOptions: ThemeOptions): void;
+    markUsedVariable(themeKey: string): boolean;
+    resolve(candidateValue: string | null, themeKeys: ThemeKey[], options?: ThemeOptions): string | null;
+    resolveValue(candidateValue: string | null, themeKeys: ThemeKey[]): string | null;
+    resolveWith(candidateValue: string, themeKeys: ThemeKey[], nestedKeys?: `--${string}`[]): [string, Record<string, string>] | null;
+    namespace(namespace: string): Map<string | null, string>;
+    addKeyframes(value: AtRule): void;
+    getKeyframes(): AtRule[];
+}
+type ThemeKey = `--${string}`;
+
+type VariantFn<T extends Variant['kind']> = (rule: Rule, variant: Extract<Variant, {
+    kind: T;
+}>) => null | void;
+type CompareFn = (a: Variant, z: Variant) => number;
+declare const enum Compounds {
+    Never = 0,
+    AtRules = 1,
+    StyleRules = 2
+}
+declare class Variants {
+    compareFns: Map<number, CompareFn>;
+    variants: Map<string, {
+        kind: Variant["kind"];
+        order: number;
+        applyFn: VariantFn<any>;
+        compoundsWith: Compounds;
+        compounds: Compounds;
+    }>;
+    private completions;
+    /**
+     * Registering a group of variants should result in the same sort number for
+     * all the variants. This is to ensure that the variants are applied in the
+     * correct order.
+     */
+    private groupOrder;
+    /**
+     * Keep track of the last sort order instead of using the size of the map to
+     * avoid unnecessarily skipping order numbers.
+     */
+    private lastOrder;
+    static(name: string, applyFn: VariantFn<'static'>, { compounds, order }?: {
+        compounds?: Compounds;
+        order?: number;
+    }): void;
+    fromAst(name: string, ast: AstNode[], designSystem: DesignSystem): void;
+    functional(name: string, applyFn: VariantFn<'functional'>, { compounds, order }?: {
+        compounds?: Compounds;
+        order?: number;
+    }): void;
+    compound(name: string, compoundsWith: Compounds, applyFn: VariantFn<'compound'>, { compounds, order }?: {
+        compounds?: Compounds;
+        order?: number;
+    }): void;
+    group(fn: () => void, compareFn?: CompareFn): void;
+    has(name: string): boolean;
+    get(name: string): {
+        kind: Variant["kind"];
+        order: number;
+        applyFn: VariantFn<any>;
+        compoundsWith: Compounds;
+        compounds: Compounds;
+    } | undefined;
+    kind(name: string): "arbitrary" | "static" | "functional" | "compound";
+    compoundsWith(parent: string, child: string | Variant): boolean;
+    suggest(name: string, suggestions: () => string[]): void;
+    getCompletions(name: string): string[];
+    compare(a: Variant | null, z: Variant | null): number;
+    keys(): IterableIterator<string>;
+    entries(): IterableIterator<[string, {
+        kind: Variant["kind"];
+        order: number;
+        applyFn: VariantFn<any>;
+        compoundsWith: Compounds;
+        compounds: Compounds;
+    }]>;
+    private set;
+    private nextOrder;
+}
+
+declare function compileAstNodes(candidate: Candidate, designSystem: DesignSystem, flags: CompileAstFlags): {
+    node: AstNode;
+    propertySort: {
+        order: number[];
+        count: number;
+    };
+}[];
+
+interface CanonicalizeOptions {
+    /**
+     * The root font size in pixels. If provided, `rem` values will be normalized
+     * to `px` values.
+     *
+     * E.g.: `mt-[16px]` with `rem: 16` will become `mt-4` (assuming `--spacing: 0.25rem`).
+     */
+    rem?: number;
+    /**
+     * Whether to collapse multiple utilities into a single utility if possible.
+     *
+     * E.g.: `mt-2 mr-2 mb-2 ml-2` → `m-2`
+     */
+    collapse?: boolean;
+    /**
+     * Whether to convert between logical and physical properties when collapsing
+     * utilities.
+     *
+     * E.g.: `mr-2 ml-2` → `mx-2`
+     */
+    logicalToPhysical?: boolean;
+}
+
+interface ClassMetadata {
+    modifiers: string[];
+}
+type ClassEntry = [string, ClassMetadata];
+interface SelectorOptions {
+    modifier?: string;
+    value?: string;
+}
+interface VariantEntry {
+    name: string;
+    isArbitrary: boolean;
+    values: string[];
+    hasDash: boolean;
+    selectors: (options: SelectorOptions) => string[];
+}
+
+type CompileFn<T extends Candidate['kind']> = (value: Extract<Candidate, {
+    kind: T;
+}>) => AstNode[] | undefined | null;
+interface SuggestionGroup {
+    supportsNegative?: boolean;
+    values: (string | null)[];
+    modifiers: string[];
+}
+type UtilityOptions = {
+    types: string[];
+};
+type Utility = {
+    kind: 'static' | 'functional';
+    compileFn: CompileFn<any>;
+    options?: UtilityOptions;
+};
+declare class Utilities {
+    private utilities;
+    private completions;
+    static(name: string, compileFn: CompileFn<'static'>): void;
+    functional(name: string, compileFn: CompileFn<'functional'>, options?: UtilityOptions): void;
+    has(name: string, kind: 'static' | 'functional'): boolean;
+    get(name: string): Utility[];
+    getCompletions(name: string): SuggestionGroup[];
+    suggest(name: string, groups: () => SuggestionGroup[]): void;
+    keys(kind: 'static' | 'functional'): string[];
+}
+
+declare const enum CompileAstFlags {
+    None = 0,
+    RespectImportant = 1
+}
+type DesignSystem = {
+    theme: Theme;
+    utilities: Utilities;
+    variants: Variants;
+    invalidCandidates: Set<string>;
+    important: boolean;
+    getClassOrder(classes: string[]): [string, bigint | null][];
+    getClassList(): ClassEntry[];
+    getVariants(): VariantEntry[];
+    parseCandidate(candidate: string): Readonly<Candidate>[];
+    parseVariant(variant: string): Readonly<Variant> | null;
+    compileAstNodes(candidate: Candidate, flags?: CompileAstFlags): ReturnType<typeof compileAstNodes>;
+    printCandidate(candidate: Candidate): string;
+    printVariant(variant: Variant): string;
+    getVariantOrder(): Map<Variant, number>;
+    resolveThemeValue(path: string, forceInline?: boolean): string | undefined;
+    trackUsedVariables(raw: string): void;
+    canonicalizeCandidates(candidates: string[], options?: CanonicalizeOptions): string[];
+    candidatesToCss(classes: string[]): (string | null)[];
+    candidatesToAst(classes: string[]): AstNode[][];
+    storage: Record<symbol, unknown>;
+};
+
+type StyleRule = {
+    kind: 'rule';
+    selector: string;
+    nodes: AstNode[];
+    src?: SourceLocation;
+    dst?: SourceLocation;
+};
+type AtRule = {
+    kind: 'at-rule';
+    name: string;
+    params: string;
+    nodes: AstNode[];
+    src?: SourceLocation;
+    dst?: SourceLocation;
+};
+type Declaration = {
+    kind: 'declaration';
+    property: string;
+    value: string | undefined;
+    important: boolean;
+    src?: SourceLocation;
+    dst?: SourceLocation;
+};
+type Comment = {
+    kind: 'comment';
+    value: string;
+    src?: SourceLocation;
+    dst?: SourceLocation;
+};
+type Context = {
+    kind: 'context';
+    context: Record<string, string | boolean>;
+    nodes: AstNode[];
+    src?: undefined;
+    dst?: undefined;
+};
+type AtRoot = {
+    kind: 'at-root';
+    nodes: AstNode[];
+    src?: undefined;
+    dst?: undefined;
+};
+type Rule = StyleRule | AtRule;
+type AstNode = StyleRule | AtRule | Declaration | Comment | Context | AtRoot;
+
+/**
+ * Line offset tables are the key to generating our source maps. They allow us
+ * to store indexes with our AST nodes and later convert them into positions as
+ * when given the source that the indexes refer to.
+ */
+/**
+ * A position in source code
+ *
+ * https://tc39.es/ecma426/#sec-position-record-type
+ */
+interface Position {
+    /** The line number, one-based */
+    line: number;
+    /** The column/character number, one-based */
+    column: number;
+}
+
+interface OriginalPosition extends Position {
+    source: DecodedSource;
+}
+/**
+ * A "decoded" sourcemap
+ *
+ * @see https://tc39.es/ecma426/#decoded-source-map-record
+ */
+interface DecodedSourceMap {
+    file: string | null;
+    sources: DecodedSource[];
+    mappings: DecodedMapping[];
+}
+/**
+ * A "decoded" source
+ *
+ * @see https://tc39.es/ecma426/#decoded-source-record
+ */
+interface DecodedSource {
+    url: string | null;
+    content: string | null;
+    ignore: boolean;
+}
+/**
+ * A "decoded" mapping
+ *
+ * @see https://tc39.es/ecma426/#decoded-mapping-record
+ */
+interface DecodedMapping {
+    originalPosition: OriginalPosition | null;
+    generatedPosition: Position;
+    name: string | null;
+}
+
+type Config = UserConfig;
+declare const enum Polyfills {
+    None = 0,
+    AtProperty = 1,
+    ColorMix = 2,
+    All = 3
+}
+type CompileOptions = {
+    base?: string;
+    from?: string;
+    polyfills?: Polyfills;
+    loadModule?: (id: string, base: string, resourceHint: 'plugin' | 'config') => Promise<{
+        path: string;
+        base: string;
+        module: Plugin | Config;
+    }>;
+    loadStylesheet?: (id: string, base: string) => Promise<{
+        path: string;
+        base: string;
+        content: string;
+    }>;
+};
+type Root = null | 'none' | {
+    base: string;
+    pattern: string;
+};
+declare const enum Features {
+    None = 0,
+    AtApply = 1,
+    AtImport = 2,
+    JsPluginCompat = 4,
+    ThemeFunction = 8,
+    Utilities = 16,
+    Variants = 32,
+    AtTheme = 64
+}
+declare function compileAst(input: AstNode[], opts?: CompileOptions): Promise<{
+    sources: {
+        base: string;
+        pattern: string;
+        negated: boolean;
+    }[];
+    root: Root;
+    features: Features;
+    build(candidates: string[]): AstNode[];
+}>;
+
+declare function compile(css: string, opts?: CompileOptions): Promise<{
+    sources: {
+        base: string;
+        pattern: string;
+        negated: boolean;
+    }[];
+    root: Root;
+    features: Features;
+    build(candidates: string[]): string;
+    buildSourceMap(): DecodedSourceMap;
+}>;
+declare function __unstable__loadDesignSystem(css: string, opts?: CompileOptions): Promise<DesignSystem>;
+declare function postcssPluginWarning(): void;
+
+export { type Config, type DecodedSourceMap, Features, Polyfills, __unstable__loadDesignSystem, compile, compileAst, postcssPluginWarning as default };
Index: node_modules/tailwindcss/dist/lib.d.ts
===================================================================
--- node_modules/tailwindcss/dist/lib.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/lib.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,3 @@
+declare function postcssPluginWarning(): void;
+
+export { postcssPluginWarning as default };
Index: node_modules/tailwindcss/dist/lib.js
===================================================================
--- node_modules/tailwindcss/dist/lib.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/lib.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,38 @@
+"use strict";var fn=Object.defineProperty;var pn=(e,r)=>{for(var i in r)fn(e,i,{get:r[i],enumerable:!0})};var It={};pn(It,{Features:()=>Pe,Polyfills:()=>ht,__unstable__loadDesignSystem:()=>Wa,compile:()=>Fa,compileAst:()=>cn,default:()=>lt});var dr="4.1.18";function st(e){let r=[0];for(let n=0;n<e.length;n++)e.charCodeAt(n)===10&&r.push(n+1);function i(n){let l=0,o=r.length;for(;o>0;){let u=(o|0)>>1,c=l+u;r[c]<=n?(l=c+1,o=o-u-1):o=u}l-=1;let f=n-r[l];return{line:l+1,column:f}}function t({line:n,column:l}){n-=1,n=Math.min(Math.max(n,0),r.length-1);let o=r[n],f=r[n+1]??o;return Math.min(Math.max(o+l,0),f)}return{find:i,findOffset:t}}var He=92,ut=47,ct=42,mr=34,gr=39,mn=58,ft=59,se=10,pt=13,Ze=32,Qe=9,hr=123,Ut=125,zt=40,vr=41,gn=91,hn=93,kr=45,Lt=64,vn=33,ue=class e extends Error{loc;constructor(r,i){if(i){let t=i[0],n=st(t.code).find(i[1]);r=`${t.file}:${n.line}:${n.column+1}: ${r}`}super(r),this.name="CssSyntaxError",this.loc=i,Error.captureStackTrace&&Error.captureStackTrace(this,e)}};function Ne(e,r){let i=r?.from?{file:r.from,code:e}:null;e[0]==="\uFEFF"&&(e=" "+e.slice(1));let t=[],n=[],l=[],o=null,f=null,u="",c="",m=0,d;for(let p=0;p<e.length;p++){let k=e.charCodeAt(p);if(!(k===pt&&(d=e.charCodeAt(p+1),d===se)))if(k===He)u===""&&(m=p),u+=e.slice(p,p+2),p+=1;else if(k===ut&&e.charCodeAt(p+1)===ct){let h=p;for(let x=p+2;x<e.length;x++)if(d=e.charCodeAt(x),d===He)x+=1;else if(d===ct&&e.charCodeAt(x+1)===ut){p=x+1;break}let w=e.slice(h,p+1);if(w.charCodeAt(2)===vn){let x=dt(w.slice(2,-2));n.push(x),i&&(x.src=[i,h,p+1],x.dst=[i,h,p+1])}}else if(k===gr||k===mr){let h=wr(e,p,k,i);u+=e.slice(p,h+1),p=h}else{if((k===Ze||k===se||k===Qe)&&(d=e.charCodeAt(p+1))&&(d===Ze||d===se||d===Qe||d===pt&&(d=e.charCodeAt(p+2))&&d==se))continue;if(k===se){if(u.length===0)continue;d=u.charCodeAt(u.length-1),d!==Ze&&d!==se&&d!==Qe&&(u+=" ")}else if(k===kr&&e.charCodeAt(p+1)===kr&&u.length===0){let h="",w=p,x=-1;for(let A=p+2;A<e.length;A++)if(d=e.charCodeAt(A),d===He)A+=1;else if(d===gr||d===mr)A=wr(e,A,d,i);else if(d===ut&&e.charCodeAt(A+1)===ct){for(let y=A+2;y<e.length;y++)if(d=e.charCodeAt(y),d===He)y+=1;else if(d===ct&&e.charCodeAt(y+1)===ut){A=y+1;break}}else if(x===-1&&d===mn)x=u.length+A-w;else if(d===ft&&h.length===0){u+=e.slice(w,A),p=A;break}else if(d===zt)h+=")";else if(d===gn)h+="]";else if(d===hr)h+="}";else if((d===Ut||e.length-1===A)&&h.length===0){p=A-1,u+=e.slice(w,A);break}else(d===vr||d===hn||d===Ut)&&h.length>0&&e[A]===h[h.length-1]&&(h=h.slice(0,-1));let S=Kt(u,x);if(!S)throw new ue("Invalid custom property, expected a value",i?[i,w,p]:null);i&&(S.src=[i,w,p],S.dst=[i,w,p]),o?o.nodes.push(S):t.push(S),u=""}else if(k===ft&&u.charCodeAt(0)===Lt)f=Je(u),i&&(f.src=[i,m,p],f.dst=[i,m,p]),o?o.nodes.push(f):t.push(f),u="",f=null;else if(k===ft&&c[c.length-1]!==")"){let h=Kt(u);if(!h){if(u.length===0)continue;throw new ue(`Invalid declaration: \`${u.trim()}\``,i?[i,m,p]:null)}i&&(h.src=[i,m,p],h.dst=[i,m,p]),o?o.nodes.push(h):t.push(h),u=""}else if(k===hr&&c[c.length-1]!==")")c+="}",f=Z(u.trim()),i&&(f.src=[i,m,p],f.dst=[i,m,p]),o&&o.nodes.push(f),l.push(o),o=f,u="",f=null;else if(k===Ut&&c[c.length-1]!==")"){if(c==="")throw new ue("Missing opening {",i?[i,p,p]:null);if(c=c.slice(0,-1),u.length>0)if(u.charCodeAt(0)===Lt)f=Je(u),i&&(f.src=[i,m,p],f.dst=[i,m,p]),o?o.nodes.push(f):t.push(f),u="",f=null;else{let w=u.indexOf(":");if(o){let x=Kt(u,w);if(!x)throw new ue(`Invalid declaration: \`${u.trim()}\``,i?[i,m,p]:null);i&&(x.src=[i,m,p],x.dst=[i,m,p]),o.nodes.push(x)}}let h=l.pop()??null;h===null&&o&&t.push(o),o=h,u="",f=null}else if(k===zt)c+=")",u+="(";else if(k===vr){if(c[c.length-1]!==")")throw new ue("Missing opening (",i?[i,p,p]:null);c=c.slice(0,-1),u+=")"}else{if(u.length===0&&(k===Ze||k===se||k===Qe))continue;u===""&&(m=p),u+=String.fromCharCode(k)}}}if(u.charCodeAt(0)===Lt){let p=Je(u);i&&(p.src=[i,m,e.length],p.dst=[i,m,e.length]),t.push(p)}if(c.length>0&&o){if(o.kind==="rule")throw new ue(`Missing closing } at ${o.selector}`,o.src?[o.src[0],o.src[1],o.src[1]]:null);if(o.kind==="at-rule")throw new ue(`Missing closing } at ${o.name} ${o.params}`,o.src?[o.src[0],o.src[1],o.src[1]]:null)}return n.length>0?n.concat(t):t}function Je(e,r=[]){let i=e,t="";for(let n=5;n<e.length;n++){let l=e.charCodeAt(n);if(l===Ze||l===Qe||l===zt){i=e.slice(0,n),t=e.slice(n);break}}return F(i.trim(),t.trim(),r)}function Kt(e,r=e.indexOf(":")){if(r===-1)return null;let i=e.indexOf("!important",r+1);return a(e.slice(0,r).trim(),e.slice(r+1,i===-1?e.length:i).trim(),i!==-1)}function wr(e,r,i,t=null){let n;for(let l=r+1;l<e.length;l++)if(n=e.charCodeAt(l),n===He)l+=1;else{if(n===i)return l;if(n===ft&&(e.charCodeAt(l+1)===se||e.charCodeAt(l+1)===pt&&e.charCodeAt(l+2)===se))throw new ue(`Unterminated string: ${e.slice(r,l+1)+String.fromCharCode(i)}`,t?[t,r,l+1]:null);if(n===se||n===pt&&e.charCodeAt(l+1)===se)throw new ue(`Unterminated string: ${e.slice(r,l)+String.fromCharCode(i)}`,t?[t,r,l+1]:null)}return r}function xe(e){if(arguments.length===0)throw new TypeError("`CSS.escape` requires an argument.");let r=String(e),i=r.length,t=-1,n,l="",o=r.charCodeAt(0);if(i===1&&o===45)return"\\"+r;for(;++t<i;){if(n=r.charCodeAt(t),n===0){l+="\uFFFD";continue}if(n>=1&&n<=31||n===127||t===0&&n>=48&&n<=57||t===1&&n>=48&&n<=57&&o===45){l+="\\"+n.toString(16)+" ";continue}if(n>=128||n===45||n===95||n>=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122){l+=r.charAt(t);continue}l+="\\"+r.charAt(t)}return l}function Ve(e){return e.replace(/\\([\dA-Fa-f]{1,6}[\t\n\f\r ]?|[\S\s])/g,r=>r.length>2?String.fromCodePoint(Number.parseInt(r.slice(1).trim(),16)):r[1])}var br=new Map([["--font",["--font-weight","--font-size"]],["--inset",["--inset-shadow","--inset-ring"]],["--text",["--text-color","--text-decoration-color","--text-decoration-thickness","--text-indent","--text-shadow","--text-underline-offset"]],["--grid-column",["--grid-column-start","--grid-column-end"]],["--grid-row",["--grid-row-start","--grid-row-end"]]]);function yr(e,r){return(br.get(r)??[]).some(i=>e===i||e.startsWith(`${i}-`))}var mt=class{constructor(r=new Map,i=new Set([])){this.values=r;this.keyframes=i}prefix=null;get size(){return this.values.size}add(r,i,t=0,n){if(r.endsWith("-*")){if(i!=="initial")throw new Error(`Invalid theme value \`${i}\` for namespace \`${r}\``);r==="--*"?this.values.clear():this.clearNamespace(r.slice(0,-2),0)}if(t&4){let l=this.values.get(r);if(l&&!(l.options&4))return}i==="initial"?this.values.delete(r):this.values.set(r,{value:i,options:t,src:n})}keysInNamespaces(r){let i=[];for(let t of r){let n=`${t}-`;for(let l of this.values.keys())l.startsWith(n)&&l.indexOf("--",2)===-1&&(yr(l,t)||i.push(l.slice(n.length)))}return i}get(r){for(let i of r){let t=this.values.get(i);if(t)return t.value}return null}hasDefault(r){return(this.getOptions(r)&4)===4}getOptions(r){return r=Ve(this.#r(r)),this.values.get(r)?.options??0}entries(){return this.prefix?Array.from(this.values,r=>(r[0]=this.prefixKey(r[0]),r)):this.values.entries()}prefixKey(r){return this.prefix?`--${this.prefix}-${r.slice(2)}`:r}#r(r){return this.prefix?`--${r.slice(3+this.prefix.length)}`:r}clearNamespace(r,i){let t=br.get(r)??[];e:for(let n of this.values.keys())if(n.startsWith(r)){if(i!==0&&(this.getOptions(n)&i)!==i)continue;for(let l of t)if(n.startsWith(l))continue e;this.values.delete(n)}}#e(r,i){for(let t of i){let n=r!==null?`${t}-${r}`:t;if(!this.values.has(n))if(r!==null&&r.includes(".")){if(n=`${t}-${r.replaceAll(".","_")}`,!this.values.has(n))continue}else continue;if(!yr(n,t))return n}return null}#t(r){let i=this.values.get(r);if(!i)return null;let t=null;return i.options&2&&(t=i.value),`var(${xe(this.prefixKey(r))}${t?`, ${t}`:""})`}markUsedVariable(r){let i=Ve(this.#r(r)),t=this.values.get(i);if(!t)return!1;let n=t.options&16;return t.options|=16,!n}resolve(r,i,t=0){let n=this.#e(r,i);if(!n)return null;let l=this.values.get(n);return(t|l.options)&1?l.value:this.#t(n)}resolveValue(r,i){let t=this.#e(r,i);return t?this.values.get(t).value:null}resolveWith(r,i,t=[]){let n=this.#e(r,i);if(!n)return null;let l={};for(let f of t){let u=`${n}${f}`,c=this.values.get(u);c&&(c.options&1?l[f]=c.value:l[f]=this.#t(u))}let o=this.values.get(n);return o.options&1?[o.value,l]:[this.#t(n),l]}namespace(r){let i=new Map,t=`${r}-`;for(let[n,l]of this.values)n===r?i.set(null,l.value):n.startsWith(`${t}-`)?i.set(n.slice(r.length),l.value):n.startsWith(t)&&i.set(n.slice(t.length),l.value);return i}addKeyframes(r){this.keyframes.add(r)}getKeyframes(){return Array.from(this.keyframes)}};var U=class extends Map{constructor(i){super();this.factory=i}get(i){let t=super.get(i);return t===void 0&&(t=this.factory(i,this),this.set(i,t)),t}};function oe(e){return{kind:"word",value:e}}function kn(e,r){return{kind:"function",value:e,nodes:r}}function wn(e){return{kind:"separator",value:e}}function H(e){let r="";for(let i of e)switch(i.kind){case"word":case"separator":{r+=i.value;break}case"function":r+=i.value+"("+H(i.nodes)+")"}return r}var xr=92,yn=41,Ar=58,Cr=44,bn=34,Sr=61,$r=62,Tr=60,Er=10,xn=40,An=39,Cn=47,Nr=32,Vr=9;function B(e){e=e.replaceAll(`\r
+`,`
+`);let r=[],i=[],t=null,n="",l;for(let o=0;o<e.length;o++){let f=e.charCodeAt(o);switch(f){case xr:{n+=e[o]+e[o+1],o++;break}case Cn:{if(n.length>0){let c=oe(n);t?t.nodes.push(c):r.push(c),n=""}let u=oe(e[o]);t?t.nodes.push(u):r.push(u);break}case Ar:case Cr:case Sr:case $r:case Tr:case Er:case Nr:case Vr:{if(n.length>0){let d=oe(n);t?t.nodes.push(d):r.push(d),n=""}let u=o,c=o+1;for(;c<e.length&&(l=e.charCodeAt(c),!(l!==Ar&&l!==Cr&&l!==Sr&&l!==$r&&l!==Tr&&l!==Er&&l!==Nr&&l!==Vr));c++);o=c-1;let m=wn(e.slice(u,c));t?t.nodes.push(m):r.push(m);break}case An:case bn:{let u=o;for(let c=o+1;c<e.length;c++)if(l=e.charCodeAt(c),l===xr)c+=1;else if(l===f){o=c;break}n+=e.slice(u,o+1);break}case xn:{let u=kn(n,[]);n="",t?t.nodes.push(u):r.push(u),i.push(u),t=u;break}case yn:{let u=i.pop();if(n.length>0){let c=oe(n);u?.nodes.push(c),n=""}i.length>0?t=i[i.length-1]:t=null;break}default:n+=String.fromCharCode(f)}}return n.length>0&&r.push(oe(n)),r}var jt=(o=>(o[o.Continue=0]="Continue",o[o.Skip=1]="Skip",o[o.Stop=2]="Stop",o[o.Replace=3]="Replace",o[o.ReplaceSkip=4]="ReplaceSkip",o[o.ReplaceStop=5]="ReplaceStop",o))(jt||{}),V={Continue:{kind:0},Skip:{kind:1},Stop:{kind:2},Replace:e=>({kind:3,nodes:Array.isArray(e)?e:[e]}),ReplaceSkip:e=>({kind:4,nodes:Array.isArray(e)?e:[e]}),ReplaceStop:e=>({kind:5,nodes:Array.isArray(e)?e:[e]})};function _(e,r){typeof r=="function"?Rr(e,r):Rr(e,r.enter,r.exit)}function Rr(e,r=()=>V.Continue,i=()=>V.Continue){let t=[[e,0,null]],n={parent:null,depth:0,path(){let l=[];for(let o=1;o<t.length;o++){let f=t[o][2];f&&l.push(f)}return l}};for(;t.length>0;){let l=t.length-1,o=t[l],f=o[0],u=o[1],c=o[2];if(u>=f.length){t.pop();continue}if(n.parent=c,n.depth=l,u>=0){let k=f[u],h=r(k,n)??V.Continue;switch(h.kind){case 0:{k.nodes&&k.nodes.length>0&&t.push([k.nodes,0,k]),o[1]=~u;continue}case 2:return;case 1:{o[1]=~u;continue}case 3:{f.splice(u,1,...h.nodes);continue}case 5:{f.splice(u,1,...h.nodes);return}case 4:{f.splice(u,1,...h.nodes),o[1]+=h.nodes.length;continue}default:throw new Error(`Invalid \`WalkAction.${jt[h.kind]??`Unknown(${h.kind})`}\` in enter.`)}}let m=~u,d=f[m],p=i(d,n)??V.Continue;switch(p.kind){case 0:o[1]=m+1;continue;case 2:return;case 3:{f.splice(m,1,...p.nodes),o[1]=m+p.nodes.length;continue}case 5:{f.splice(m,1,...p.nodes);return}case 4:{f.splice(m,1,...p.nodes),o[1]=m+p.nodes.length;continue}default:throw new Error(`Invalid \`WalkAction.${jt[p.kind]??`Unknown(${p.kind})`}\` in exit.`)}}}function gt(e){let r=[];return _(B(e),i=>{if(!(i.kind!=="function"||i.value!=="var"))return _(i.nodes,t=>{t.kind!=="word"||t.value[0]!=="-"||t.value[1]!=="-"||r.push(t.value)}),V.Skip}),r}var Sn=64;function q(e,r=[]){return{kind:"rule",selector:e,nodes:r}}function F(e,r="",i=[]){return{kind:"at-rule",name:e,params:r,nodes:i}}function Z(e,r=[]){return e.charCodeAt(0)===Sn?Je(e,r):q(e,r)}function a(e,r,i=!1){return{kind:"declaration",property:e,value:r,important:i}}function dt(e){return{kind:"comment",value:e}}function de(e,r){return{kind:"context",context:e,nodes:r}}function W(e){return{kind:"at-root",nodes:e}}function ee(e){switch(e.kind){case"rule":return{kind:e.kind,selector:e.selector,nodes:e.nodes.map(ee),src:e.src,dst:e.dst};case"at-rule":return{kind:e.kind,name:e.name,params:e.params,nodes:e.nodes.map(ee),src:e.src,dst:e.dst};case"at-root":return{kind:e.kind,nodes:e.nodes.map(ee),src:e.src,dst:e.dst};case"context":return{kind:e.kind,context:{...e.context},nodes:e.nodes.map(ee),src:e.src,dst:e.dst};case"declaration":return{kind:e.kind,property:e.property,value:e.value,important:e.important,src:e.src,dst:e.dst};case"comment":return{kind:e.kind,value:e.value,src:e.src,dst:e.dst};default:throw new Error(`Unknown node kind: ${e.kind}`)}}function et(e){return{depth:e.depth,get context(){let r={};for(let i of e.path())i.kind==="context"&&Object.assign(r,i.context);return Object.defineProperty(this,"context",{value:r}),r},get parent(){let r=this.path().pop()??null;return Object.defineProperty(this,"parent",{value:r}),r},path(){return e.path().filter(r=>r.kind!=="context")}}}function Re(e,r,i=3){let t=[],n=new Set,l=new U(()=>new Set),o=new U(()=>new Set),f=new Set,u=new Set,c=[],m=[],d=new U(()=>new Set);function p(h,w,x={},S=0){if(h.kind==="declaration"){if(h.property==="--tw-sort"||h.value===void 0||h.value===null)return;if(x.theme&&h.property[0]==="-"&&h.property[1]==="-"){if(h.value==="initial"){h.value=void 0;return}x.keyframes||l.get(w).add(h)}if(h.value.includes("var("))if(x.theme&&h.property[0]==="-"&&h.property[1]==="-")for(let A of gt(h.value))d.get(A).add(h.property);else r.trackUsedVariables(h.value);if(h.property==="animation")for(let A of Or(h.value))u.add(A);i&2&&h.value.includes("color-mix(")&&!x.keyframes&&o.get(w).add(h),w.push(h)}else if(h.kind==="rule"){let A=[];for(let N of h.nodes)p(N,A,x,S+1);let y={},K=new Set;for(let N of A){if(N.kind!=="declaration")continue;let P=`${N.property}:${N.value}:${N.important}`;y[P]??=[],y[P].push(N)}for(let N in y)for(let P=0;P<y[N].length-1;++P)K.add(y[N][P]);if(K.size>0&&(A=A.filter(N=>!K.has(N))),A.length===0)return;h.selector==="&"?w.push(...A):w.push({...h,nodes:A})}else if(h.kind==="at-rule"&&h.name==="@property"&&S===0){if(n.has(h.params))return;if(i&1){let y=h.params,K=null,N=!1;for(let z of h.nodes)z.kind==="declaration"&&(z.property==="initial-value"?K=z.value:z.property==="inherits"&&(N=z.value==="true"));let P=a(y,K??"initial");P.src=h.src,N?c.push(P):m.push(P)}n.add(h.params);let A={...h,nodes:[]};for(let y of h.nodes)p(y,A.nodes,x,S+1);w.push(A)}else if(h.kind==="at-rule"){h.name==="@keyframes"&&(x={...x,keyframes:!0});let A={...h,nodes:[]};for(let y of h.nodes)p(y,A.nodes,x,S+1);h.name==="@keyframes"&&x.theme&&f.add(A),(A.nodes.length>0||A.name==="@layer"||A.name==="@charset"||A.name==="@custom-media"||A.name==="@namespace"||A.name==="@import")&&w.push(A)}else if(h.kind==="at-root")for(let A of h.nodes){let y=[];p(A,y,x,0);for(let K of y)t.push(K)}else if(h.kind==="context"){if(h.context.reference)return;for(let A of h.nodes)p(A,w,{...x,...h.context},S)}else h.kind==="comment"&&w.push(h)}let k=[];for(let h of e)p(h,k,{},0);e:for(let[h,w]of l)for(let x of w){if(Pr(x.property,r.theme,d)){if(x.property.startsWith(r.theme.prefixKey("--animate-")))for(let y of Or(x.value))u.add(y);continue}let A=h.indexOf(x);if(h.splice(A,1),h.length===0){let y=$n(k,K=>K.kind==="rule"&&K.nodes===h);if(!y||y.length===0)continue e;y.unshift({kind:"at-root",nodes:k});do{let K=y.pop();if(!K)break;let N=y[y.length-1];if(!N||N.kind!=="at-root"&&N.kind!=="at-rule")break;let P=N.nodes.indexOf(K);if(P===-1)break;N.nodes.splice(P,1)}while(!0);continue e}}for(let h of f)if(!u.has(h.params)){let w=t.indexOf(h);t.splice(w,1)}if(k=k.concat(t),i&2)for(let[h,w]of o)for(let x of w){let S=h.indexOf(x);if(S===-1||x.value==null)continue;let A=B(x.value),y=!1;if(_(A,P=>{if(P.kind!=="function"||P.value!=="color-mix")return;let z=!1,I=!1;if(_(P.nodes,M=>{if(M.kind=="word"&&M.value.toLowerCase()==="currentcolor"){I=!0,y=!0;return}let Y=M,G=null,ae=new Set;do{if(Y.kind!=="function"||Y.value!=="var")return;let le=Y.nodes[0];if(!le||le.kind!=="word")return;let s=le.value;if(ae.has(s)){z=!0;return}if(ae.add(s),y=!0,G=r.theme.resolveValue(null,[le.value]),!G){z=!0;return}if(G.toLowerCase()==="currentcolor"){I=!0;return}G.startsWith("var(")?Y=B(G)[0]:Y=null}while(Y);return V.Replace({kind:"word",value:G})}),z||I){let M=P.nodes.findIndex(G=>G.kind==="separator"&&G.value.trim().includes(","));if(M===-1)return;let Y=P.nodes.length>M?P.nodes[M+1]:null;return Y?V.Replace(Y):void 0}else if(y){let M=P.nodes[2];M.kind==="word"&&(M.value==="oklab"||M.value==="oklch"||M.value==="lab"||M.value==="lch")&&(M.value="srgb")}}),!y)continue;let K={...x,value:H(A)},N=Z("@supports (color: color-mix(in lab, red, red))",[x]);N.src=x.src,h.splice(S,1,K,N)}if(i&1){let h=[];if(c.length>0){let w=Z(":root, :host",c);w.src=c[0].src,h.push(w)}if(m.length>0){let w=Z("*, ::before, ::after, ::backdrop",m);w.src=m[0].src,h.push(w)}if(h.length>0){let w=k.findIndex(A=>!(A.kind==="comment"||A.kind==="at-rule"&&(A.name==="@charset"||A.name==="@import"))),x=F("@layer","properties",[]);x.src=h[0].src,k.splice(w<0?k.length:w,0,x);let S=Z("@layer properties",[F("@supports","((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b))))",h)]);S.src=h[0].src,S.nodes[0].src=h[0].src,k.push(S)}}return k}function ie(e,r){let i=0,t={file:null,code:""};function n(o,f=0){let u="",c="  ".repeat(f);if(o.kind==="declaration"){if(u+=`${c}${o.property}: ${o.value}${o.important?" !important":""};
+`,r){i+=c.length;let m=i;i+=o.property.length,i+=2,i+=o.value?.length??0,o.important&&(i+=11);let d=i;i+=2,o.dst=[t,m,d]}}else if(o.kind==="rule"){if(u+=`${c}${o.selector} {
+`,r){i+=c.length;let m=i;i+=o.selector.length,i+=1;let d=i;o.dst=[t,m,d],i+=2}for(let m of o.nodes)u+=n(m,f+1);u+=`${c}}
+`,r&&(i+=c.length,i+=2)}else if(o.kind==="at-rule"){if(o.nodes.length===0){let m=`${c}${o.name} ${o.params};
+`;if(r){i+=c.length;let d=i;i+=o.name.length,i+=1,i+=o.params.length;let p=i;i+=2,o.dst=[t,d,p]}return m}if(u+=`${c}${o.name}${o.params?` ${o.params} `:" "}{
+`,r){i+=c.length;let m=i;i+=o.name.length,o.params&&(i+=1,i+=o.params.length),i+=1;let d=i;o.dst=[t,m,d],i+=2}for(let m of o.nodes)u+=n(m,f+1);u+=`${c}}
+`,r&&(i+=c.length,i+=2)}else if(o.kind==="comment"){if(u+=`${c}/*${o.value}*/
+`,r){i+=c.length;let m=i;i+=2+o.value.length+2;let d=i;o.dst=[t,m,d],i+=1}}else if(o.kind==="context"||o.kind==="at-root")return"";return u}let l="";for(let o of e)l+=n(o,0);return t.code=l,l}function $n(e,r){let i=[];return _(e,(t,n)=>{if(r(t))return i=n.path(),i.push(t),V.Stop}),i}function Pr(e,r,i,t=new Set){if(t.has(e)||(t.add(e),r.getOptions(e)&24))return!0;{let l=i.get(e)??[];for(let o of l)if(Pr(o,r,i,t))return!0}return!1}function Or(e){return e.split(/[\s,]+/)}var Ft=["calc","min","max","clamp","mod","rem","sin","cos","tan","asin","acos","atan","atan2","pow","sqrt","hypot","log","exp","round"];function tt(e){return e.indexOf("(")!==-1&&Ft.some(r=>e.includes(`${r}(`))}function _r(e){if(!Ft.some(l=>e.includes(l)))return e;let r="",i=[],t=null,n=null;for(let l=0;l<e.length;l++){let o=e.charCodeAt(l);if(o>=48&&o<=57||t!==null&&(o===37||o>=97&&o<=122||o>=65&&o<=90)?t=l:(n=t,t=null),o===40){r+=e[l];let f=l;for(let c=l-1;c>=0;c--){let m=e.charCodeAt(c);if(m>=48&&m<=57)f=c;else if(m>=97&&m<=122)f=c;else break}let u=e.slice(f,l);if(Ft.includes(u)){i.unshift(!0);continue}else if(i[0]&&u===""){i.unshift(!0);continue}i.unshift(!1);continue}else if(o===41)r+=e[l],i.shift();else if(o===44&&i[0]){r+=", ";continue}else{if(o===32&&i[0]&&r.charCodeAt(r.length-1)===32)continue;if((o===43||o===42||o===47||o===45)&&i[0]){let f=r.trimEnd(),u=f.charCodeAt(f.length-1),c=f.charCodeAt(f.length-2),m=e.charCodeAt(l+1);if((u===101||u===69)&&c>=48&&c<=57){r+=e[l];continue}else if(u===43||u===42||u===47||u===45){r+=e[l];continue}else if(u===40||u===44){r+=e[l];continue}else e.charCodeAt(l-1)===32?r+=`${e[l]} `:u>=48&&u<=57||m>=48&&m<=57||u===41||m===40||m===43||m===42||m===47||m===45||n!==null&&n===l-1?r+=` ${e[l]} `:r+=e[l]}else r+=e[l]}}return r}function Ae(e){if(e.indexOf("(")===-1)return ze(e);let r=B(e);return Wt(r),e=H(r),e=_r(e),e}function ze(e,r=!1){let i="";for(let t=0;t<e.length;t++){let n=e[t];n==="\\"&&e[t+1]==="_"?(i+="_",t+=1):n==="_"&&!r?i+=" ":i+=n}return i}function Wt(e){for(let r of e)switch(r.kind){case"function":{if(r.value==="url"||r.value.endsWith("_url")){r.value=ze(r.value);break}if(r.value==="var"||r.value.endsWith("_var")||r.value==="theme"||r.value.endsWith("_theme")){r.value=ze(r.value);for(let i=0;i<r.nodes.length;i++){if(i==0&&r.nodes[i].kind==="word"){r.nodes[i].value=ze(r.nodes[i].value,!0);continue}Wt([r.nodes[i]])}break}r.value=ze(r.value),Wt(r.nodes);break}case"separator":case"word":{r.value=ze(r.value);break}default:Tn(r)}}function Tn(e){throw new Error(`Unexpected value: ${e}`)}var Bt=new Uint8Array(256);function ke(e){let r=0,i=e.length;for(let t=0;t<i;t++){let n=e.charCodeAt(t);switch(n){case 92:t+=1;break;case 39:case 34:for(;++t<i;){let l=e.charCodeAt(t);if(l===92){t+=1;continue}if(l===n)break}break;case 40:Bt[r]=41,r++;break;case 91:Bt[r]=93,r++;break;case 123:break;case 93:case 125:case 41:if(r===0)return!1;r>0&&n===Bt[r-1]&&r--;break;case 59:if(r===0)return!1;break}}return!0}var vt=new Uint8Array(256);function L(e,r){let i=0,t=[],n=0,l=e.length,o=r.charCodeAt(0);for(let f=0;f<l;f++){let u=e.charCodeAt(f);if(i===0&&u===o){t.push(e.slice(n,f)),n=f+1;continue}switch(u){case 92:f+=1;break;case 39:case 34:for(;++f<l;){let c=e.charCodeAt(f);if(c===92){f+=1;continue}if(c===u)break}break;case 40:vt[i]=41,i++;break;case 91:vt[i]=93,i++;break;case 123:vt[i]=125,i++;break;case 93:case 125:case 41:i>0&&u===vt[i-1]&&i--;break}}return t.push(e.slice(n)),t}var En=58,Ir=45,Dr=97,Ur=122,Gt=/^[a-zA-Z0-9_.%-]+$/;function Lr(e){switch(e.kind){case"arbitrary":return{kind:e.kind,property:e.property,value:e.value,modifier:e.modifier?{kind:e.modifier.kind,value:e.modifier.value}:null,variants:e.variants.map(Me),important:e.important,raw:e.raw};case"static":return{kind:e.kind,root:e.root,variants:e.variants.map(Me),important:e.important,raw:e.raw};case"functional":return{kind:e.kind,root:e.root,value:e.value?e.value.kind==="arbitrary"?{kind:e.value.kind,dataType:e.value.dataType,value:e.value.value}:{kind:e.value.kind,value:e.value.value,fraction:e.value.fraction}:null,modifier:e.modifier?{kind:e.modifier.kind,value:e.modifier.value}:null,variants:e.variants.map(Me),important:e.important,raw:e.raw};default:throw new Error("Unknown candidate kind")}}function Me(e){switch(e.kind){case"arbitrary":return{kind:e.kind,selector:e.selector,relative:e.relative};case"static":return{kind:e.kind,root:e.root};case"functional":return{kind:e.kind,root:e.root,value:e.value?{kind:e.value.kind,value:e.value.value}:null,modifier:e.modifier?{kind:e.modifier.kind,value:e.modifier.value}:null};case"compound":return{kind:e.kind,root:e.root,variant:Me(e.variant),modifier:e.modifier?{kind:e.modifier.kind,value:e.modifier.value}:null};default:throw new Error("Unknown variant kind")}}function*Kr(e,r){let i=L(e,":");if(r.theme.prefix){if(i.length===1||i[0]!==r.theme.prefix)return null;i.shift()}let t=i.pop(),n=[];for(let d=i.length-1;d>=0;--d){let p=r.parseVariant(i[d]);if(p===null)return;n.push(p)}let l=!1;t[t.length-1]==="!"?(l=!0,t=t.slice(0,-1)):t[0]==="!"&&(l=!0,t=t.slice(1)),r.utilities.has(t,"static")&&!t.includes("[")&&(yield{kind:"static",root:t,variants:n,important:l,raw:e});let[o,f=null,u]=L(t,"/");if(u)return;let c=f===null?null:Yt(f);if(f!==null&&c===null)return;if(o[0]==="["){if(o[o.length-1]!=="]")return;let d=o.charCodeAt(1);if(d!==Ir&&!(d>=Dr&&d<=Ur))return;o=o.slice(1,-1);let p=o.indexOf(":");if(p===-1||p===0||p===o.length-1)return;let k=o.slice(0,p),h=Ae(o.slice(p+1));if(!ke(h))return;yield{kind:"arbitrary",property:k,value:h,modifier:c,variants:n,important:l,raw:e};return}let m;if(o[o.length-1]==="]"){let d=o.indexOf("-[");if(d===-1)return;let p=o.slice(0,d);if(!r.utilities.has(p,"functional"))return;let k=o.slice(d+1);m=[[p,k]]}else if(o[o.length-1]===")"){let d=o.indexOf("-(");if(d===-1)return;let p=o.slice(0,d);if(!r.utilities.has(p,"functional"))return;let k=o.slice(d+2,-1),h=L(k,":"),w=null;if(h.length===2&&(w=h[0],k=h[1]),k[0]!=="-"||k[1]!=="-"||!ke(k))return;m=[[p,w===null?`[var(${k})]`:`[${w}:var(${k})]`]]}else m=Mr(o,d=>r.utilities.has(d,"functional"));for(let[d,p]of m){let k={kind:"functional",root:d,modifier:c,value:null,variants:n,important:l,raw:e};if(p===null){yield k;continue}{let h=p.indexOf("[");if(h!==-1){if(p[p.length-1]!=="]")return;let x=Ae(p.slice(h+1,-1));if(!ke(x))continue;let S=null;for(let A=0;A<x.length;A++){let y=x.charCodeAt(A);if(y===En){S=x.slice(0,A),x=x.slice(A+1);break}if(!(y===Ir||y>=Dr&&y<=Ur))break}if(x.length===0||x.trim().length===0||S==="")continue;k.value={kind:"arbitrary",dataType:S||null,value:x}}else{let x=f===null||k.modifier?.kind==="arbitrary"?null:`${p}/${f}`;if(!Gt.test(p))continue;k.value={kind:"named",value:p,fraction:x}}}yield k}}function Yt(e){if(e[0]==="["&&e[e.length-1]==="]"){let r=Ae(e.slice(1,-1));return!ke(r)||r.length===0||r.trim().length===0?null:{kind:"arbitrary",value:r}}return e[0]==="("&&e[e.length-1]===")"?(e=e.slice(1,-1),e[0]!=="-"||e[1]!=="-"||!ke(e)?null:(e=`var(${e})`,{kind:"arbitrary",value:Ae(e)})):Gt.test(e)?{kind:"named",value:e}:null}function zr(e,r){if(e[0]==="["&&e[e.length-1]==="]"){if(e[1]==="@"&&e.includes("&"))return null;let i=Ae(e.slice(1,-1));if(!ke(i)||i.length===0||i.trim().length===0)return null;let t=i[0]===">"||i[0]==="+"||i[0]==="~";return!t&&i[0]!=="@"&&!i.includes("&")&&(i=`&:is(${i})`),{kind:"arbitrary",selector:i,relative:t}}{let[i,t=null,n]=L(e,"/");if(n)return null;let l=Mr(i,o=>r.variants.has(o));for(let[o,f]of l)switch(r.variants.kind(o)){case"static":return f!==null||t!==null?null:{kind:"static",root:o};case"functional":{let u=t===null?null:Yt(t);if(t!==null&&u===null)return null;if(f===null)return{kind:"functional",root:o,modifier:u,value:null};if(f[f.length-1]==="]"){if(f[0]!=="[")continue;let c=Ae(f.slice(1,-1));return!ke(c)||c.length===0||c.trim().length===0?null:{kind:"functional",root:o,modifier:u,value:{kind:"arbitrary",value:c}}}if(f[f.length-1]===")"){if(f[0]!=="(")continue;let c=Ae(f.slice(1,-1));return!ke(c)||c.length===0||c.trim().length===0||c[0]!=="-"||c[1]!=="-"?null:{kind:"functional",root:o,modifier:u,value:{kind:"arbitrary",value:`var(${c})`}}}if(!Gt.test(f))continue;return{kind:"functional",root:o,modifier:u,value:{kind:"named",value:f}}}case"compound":{if(f===null)return null;t&&(o==="not"||o==="has"||o==="in")&&(f=`${f}/${t}`,t=null);let u=r.parseVariant(f);if(u===null||!r.variants.compoundsWith(o,u))return null;let c=t===null?null:Yt(t);return t!==null&&c===null?null:{kind:"compound",root:o,modifier:c,variant:u}}}}return null}function*Mr(e,r){r(e)&&(yield[e,null]);let i=e.lastIndexOf("-");for(;i>0;){let t=e.slice(0,i);if(r(t)){let n=[t,e.slice(i+1)];if(n[1]===""||n[0]==="@"&&r("@")&&e[i]==="-")break;yield n}i=e.lastIndexOf("-",i-1)}e[0]==="@"&&r("@")&&(yield["@",e.slice(1)])}function jr(e,r){let i=[];for(let n of r.variants)i.unshift(kt(n));e.theme.prefix&&i.unshift(e.theme.prefix);let t="";if(r.kind==="static"&&(t+=r.root),r.kind==="functional"&&(t+=r.root,r.value))if(r.value.kind==="arbitrary"){if(r.value!==null){let n=Ht(r.value.value),l=n?r.value.value.slice(4,-1):r.value.value,[o,f]=n?["(",")"]:["[","]"];r.value.dataType?t+=`-${o}${r.value.dataType}:${Ce(l)}${f}`:t+=`-${o}${Ce(l)}${f}`}}else r.value.kind==="named"&&(t+=`-${r.value.value}`);return r.kind==="arbitrary"&&(t+=`[${r.property}:${Ce(r.value)}]`),(r.kind==="arbitrary"||r.kind==="functional")&&(t+=it(r.modifier)),r.important&&(t+="!"),i.push(t),i.join(":")}function it(e){if(e===null)return"";let r=Ht(e.value),i=r?e.value.slice(4,-1):e.value,[t,n]=r?["(",")"]:["[","]"];return e.kind==="arbitrary"?`/${t}${Ce(i)}${n}`:e.kind==="named"?`/${e.value}`:""}function kt(e){if(e.kind==="static")return e.root;if(e.kind==="arbitrary")return`[${Ce(Rn(e.selector))}]`;let r="";if(e.kind==="functional"){r+=e.root;let i=e.root!=="@";if(e.value)if(e.value.kind==="arbitrary"){let t=Ht(e.value.value),n=t?e.value.value.slice(4,-1):e.value.value,[l,o]=t?["(",")"]:["[","]"];r+=`${i?"-":""}${l}${Ce(n)}${o}`}else e.value.kind==="named"&&(r+=`${i?"-":""}${e.value.value}`)}return e.kind==="compound"&&(r+=e.root,r+="-",r+=kt(e.variant)),(e.kind==="functional"||e.kind==="compound")&&(r+=it(e.modifier)),r}var Nn=new U(e=>{let r=B(e),i=new Set;return _(r,(t,n)=>{let l=n.parent===null?r:n.parent.nodes??[];if(t.kind==="word"&&(t.value==="+"||t.value==="-"||t.value==="*"||t.value==="/")){let o=l.indexOf(t)??-1;if(o===-1)return;let f=l[o-1];if(f?.kind!=="separator"||f.value!==" ")return;let u=l[o+1];if(u?.kind!=="separator"||u.value!==" ")return;i.add(f),i.add(u)}else t.kind==="separator"&&t.value.length>0&&t.value.trim()===""?(l[0]===t||l[l.length-1]===t)&&i.add(t):t.kind==="separator"&&t.value.trim()===","&&(t.value=",")}),i.size>0&&_(r,t=>{if(i.has(t))return i.delete(t),V.ReplaceSkip([])}),qt(r),H(r)});function Ce(e){return Nn.get(e)}var Vn=new U(e=>{let r=B(e);return r.length===3&&r[0].kind==="word"&&r[0].value==="&"&&r[1].kind==="separator"&&r[1].value===":"&&r[2].kind==="function"&&r[2].value==="is"?H(r[2].nodes):e});function Rn(e){return Vn.get(e)}function qt(e){for(let r of e)switch(r.kind){case"function":{if(r.value==="url"||r.value.endsWith("_url")){r.value=rt(r.value);break}if(r.value==="var"||r.value.endsWith("_var")||r.value==="theme"||r.value.endsWith("_theme")){r.value=rt(r.value);for(let i=0;i<r.nodes.length;i++)qt([r.nodes[i]]);break}r.value=rt(r.value),qt(r.nodes);break}case"separator":r.value=rt(r.value);break;case"word":{(r.value[0]!=="-"||r.value[1]!=="-")&&(r.value=rt(r.value));break}default:Pn(r)}}var On=new U(e=>{let r=B(e);return r.length===1&&r[0].kind==="function"&&r[0].value==="var"});function Ht(e){return On.get(e)}function Pn(e){throw new Error(`Unexpected value: ${e}`)}function rt(e){return e.replaceAll("_",String.raw`\_`).replaceAll(" ","_")}function Oe(e,r,i){if(e===r)return 0;let t=e.indexOf("("),n=r.indexOf("("),l=t===-1?e.replace(/[\d.]+/g,""):e.slice(0,t),o=n===-1?r.replace(/[\d.]+/g,""):r.slice(0,n),f=(l===o?0:l<o?-1:1)||(i==="asc"?parseInt(e)-parseInt(r):parseInt(r)-parseInt(e));return Number.isNaN(f)?e<r?-1:1:f}var _n=new Set(["black","silver","gray","white","maroon","red","purple","fuchsia","green","lime","olive","yellow","navy","blue","teal","aqua","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen","transparent","currentcolor","canvas","canvastext","linktext","visitedtext","activetext","buttonface","buttontext","buttonborder","field","fieldtext","highlight","highlighttext","selecteditem","selecteditemtext","mark","marktext","graytext","accentcolor","accentcolortext"]),In=/^(rgba?|hsla?|hwb|color|(ok)?(lab|lch)|light-dark|color-mix)\(/i;function Fr(e){return e.charCodeAt(0)===35||In.test(e)||_n.has(e.toLowerCase())}var Dn={color:Fr,length:je,percentage:Zt,ratio:Hn,number:Br,integer:O,url:Wr,position:Jn,"bg-size":Xn,"line-width":Ln,image:Mn,"family-name":Fn,"generic-name":jn,"absolute-size":Wn,"relative-size":Bn,angle:ro,vector:no};function Q(e,r){if(e.startsWith("var("))return null;for(let i of r)if(Dn[i]?.(e))return i;return null}var Un=/^url\(.*\)$/;function Wr(e){return Un.test(e)}function Ln(e){return L(e," ").every(r=>je(r)||Br(r)||r==="thin"||r==="medium"||r==="thick")}var Kn=/^(?:element|image|cross-fade|image-set)\(/,zn=/^(repeating-)?(conic|linear|radial)-gradient\(/;function Mn(e){let r=0;for(let i of L(e,","))if(!i.startsWith("var(")){if(Wr(i)){r+=1;continue}if(zn.test(i)){r+=1;continue}if(Kn.test(i)){r+=1;continue}return!1}return r>0}function jn(e){return e==="serif"||e==="sans-serif"||e==="monospace"||e==="cursive"||e==="fantasy"||e==="system-ui"||e==="ui-serif"||e==="ui-sans-serif"||e==="ui-monospace"||e==="ui-rounded"||e==="math"||e==="emoji"||e==="fangsong"}function Fn(e){let r=0;for(let i of L(e,",")){let t=i.charCodeAt(0);if(t>=48&&t<=57)return!1;i.startsWith("var(")||(r+=1)}return r>0}function Wn(e){return e==="xx-small"||e==="x-small"||e==="small"||e==="medium"||e==="large"||e==="x-large"||e==="xx-large"||e==="xxx-large"}function Bn(e){return e==="larger"||e==="smaller"}var we=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,Yn=new RegExp(`^${we.source}$`);function Br(e){return Yn.test(e)||tt(e)}var qn=new RegExp(`^${we.source}%$`);function Zt(e){return qn.test(e)||tt(e)}var Gn=new RegExp(`^${we.source}s*/s*${we.source}$`);function Hn(e){return Gn.test(e)||tt(e)}var Zn=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],Qn=new RegExp(`^${we.source}(${Zn.join("|")})$`);function je(e){return Qn.test(e)||tt(e)}function Jn(e){let r=0;for(let i of L(e," ")){if(i==="center"||i==="top"||i==="right"||i==="bottom"||i==="left"){r+=1;continue}if(!i.startsWith("var(")){if(je(i)||Zt(i)){r+=1;continue}return!1}}return r>0}function Xn(e){let r=0;for(let i of L(e,",")){if(i==="cover"||i==="contain"){r+=1;continue}let t=L(i," ");if(t.length!==1&&t.length!==2)return!1;if(t.every(n=>n==="auto"||je(n)||Zt(n))){r+=1;continue}}return r>0}var eo=["deg","rad","grad","turn"],to=new RegExp(`^${we.source}(${eo.join("|")})$`);function ro(e){return to.test(e)}var io=new RegExp(`^${we.source} +${we.source} +${we.source}$`);function no(e){return io.test(e)}function O(e){let r=Number(e);return Number.isInteger(r)&&r>=0&&String(r)===String(e)}function Qt(e){let r=Number(e);return Number.isInteger(r)&&r>0&&String(r)===String(e)}function ne(e){return Yr(e,.25)}function wt(e){return Yr(e,.25)}function Yr(e,r){let i=Number(e);return i>=0&&i%r===0&&String(i)===String(e)}var oo=new Set(["inset","inherit","initial","revert","unset"]),qr=/^-?(\d+|\.\d+)(.*?)$/g;function nt(e,r){return L(e,",").map(t=>{t=t.trim();let n=L(t," ").filter(c=>c.trim()!==""),l=null,o=null,f=null;for(let c of n)oo.has(c)||(qr.test(c)?(o===null?o=c:f===null&&(f=c),qr.lastIndex=0):l===null&&(l=c));if(o===null||f===null)return t;let u=r(l??"currentcolor");return l!==null?t.replace(l,u):`${t} ${u}`}).join(", ")}var lo=/^-?[a-z][a-zA-Z0-9/%._-]*$/,so=/^-?[a-z][a-zA-Z0-9/%._-]*-\*$/,bt=["0","0.5","1","1.5","2","2.5","3","3.5","4","5","6","7","8","9","10","11","12","14","16","20","24","28","32","36","40","44","48","52","56","60","64","72","80","96"],Jt=class{utilities=new U(()=>[]);completions=new Map;static(r,i){this.utilities.get(r).push({kind:"static",compileFn:i})}functional(r,i,t){this.utilities.get(r).push({kind:"functional",compileFn:i,options:t})}has(r,i){return this.utilities.has(r)&&this.utilities.get(r).some(t=>t.kind===i)}get(r){return this.utilities.has(r)?this.utilities.get(r):[]}getCompletions(r){return this.has(r,"static")?this.completions.get(r)?.()??[{supportsNegative:!1,values:[],modifiers:[]}]:this.completions.get(r)?.()??[]}suggest(r,i){let t=this.completions.get(r);t?this.completions.set(r,()=>[...t?.(),...i?.()]):this.completions.set(r,i)}keys(r){let i=[];for(let[t,n]of this.utilities.entries())for(let l of n)if(l.kind===r){i.push(t);break}return i}};function $(e,r,i){return F("@property",e,[a("syntax",i?`"${i}"`:'"*"'),a("inherits","false"),...r?[a("initial-value",r)]:[]])}function J(e,r){if(r===null)return e;let i=Number(r);return Number.isNaN(i)||(r=`${i*100}%`),r==="100%"?e:`color-mix(in oklab, ${e} ${r}, transparent)`}function Hr(e,r){let i=Number(r);return Number.isNaN(i)||(r=`${i*100}%`),`oklab(from ${e} l a b / ${r})`}function X(e,r,i){if(!r)return e;if(r.kind==="arbitrary")return J(e,r.value);let t=i.resolve(r.value,["--opacity"]);return t?J(e,t):wt(r.value)?J(e,`${r.value}%`):null}function te(e,r,i){let t=null;switch(e.value.value){case"inherit":{t="inherit";break}case"transparent":{t="transparent";break}case"current":{t="currentcolor";break}default:{t=r.resolve(e.value.value,i);break}}return t?X(t,e.modifier,r):null}var Zr=/(\d+)_(\d+)/g;function Qr(e){let r=new Jt;function i(s,g){function*v(b){for(let T of e.keysInNamespaces(b))yield T.replace(Zr,(D,E,R)=>`${E}.${R}`)}let C=["1/2","1/3","2/3","1/4","2/4","3/4","1/5","2/5","3/5","4/5","1/6","2/6","3/6","4/6","5/6","1/12","2/12","3/12","4/12","5/12","6/12","7/12","8/12","9/12","10/12","11/12"];r.suggest(s,()=>{let b=[];for(let T of g()){if(typeof T=="string"){b.push({values:[T],modifiers:[]});continue}let D=[...T.values??[],...v(T.valueThemeKeys??[])],E=[...T.modifiers??[],...v(T.modifierThemeKeys??[])];T.supportsFractions&&D.push(...C),T.hasDefaultValue&&D.unshift(null),b.push({supportsNegative:T.supportsNegative,values:D,modifiers:E})}return b})}function t(s,g){r.static(s,()=>g.map(v=>typeof v=="function"?v():a(v[0],v[1])))}function n(s,g){function v({negative:C}){return b=>{let T=null,D=null;if(b.value)if(b.value.kind==="arbitrary"){if(b.modifier)return;T=b.value.value,D=b.value.dataType}else{if(T=e.resolve(b.value.fraction??b.value.value,g.themeKeys??[]),T===null&&g.supportsFractions&&b.value.fraction){let[E,R]=L(b.value.fraction,"/");if(!O(E)||!O(R))return;T=`calc(${b.value.fraction} * 100%)`}if(T===null&&C&&g.handleNegativeBareValue){if(T=g.handleNegativeBareValue(b.value),!T?.includes("/")&&b.modifier)return;if(T!==null)return g.handle(T,null)}if(T===null&&g.handleBareValue&&(T=g.handleBareValue(b.value),!T?.includes("/")&&b.modifier))return;if(T===null&&!C&&g.staticValues&&!b.modifier){let E=g.staticValues[b.value.value];if(E)return E.map(ee)}}else{if(b.modifier)return;T=g.defaultValue!==void 0?g.defaultValue:e.resolve(null,g.themeKeys??[])}if(T!==null)return g.handle(C?`calc(${T} * -1)`:T,D)}}if(g.supportsNegative&&r.functional(`-${s}`,v({negative:!0})),r.functional(s,v({negative:!1})),i(s,()=>[{supportsNegative:g.supportsNegative,valueThemeKeys:g.themeKeys??[],hasDefaultValue:g.defaultValue!==void 0&&g.defaultValue!==null,supportsFractions:g.supportsFractions}]),g.staticValues&&Object.keys(g.staticValues).length>0){let C=Object.keys(g.staticValues);i(s,()=>[{values:C}])}}function l(s,g){r.functional(s,v=>{if(!v.value)return;let C=null;if(v.value.kind==="arbitrary"?(C=v.value.value,C=X(C,v.modifier,e)):C=te(v,e,g.themeKeys),C!==null)return g.handle(C)}),i(s,()=>[{values:["current","inherit","transparent"],valueThemeKeys:g.themeKeys,modifiers:Array.from({length:21},(v,C)=>`${C*5}`)}])}function o(s,g,v,{supportsNegative:C=!1,supportsFractions:b=!1,staticValues:T}={}){C&&r.static(`-${s}-px`,()=>v("-1px")),r.static(`${s}-px`,()=>v("1px")),n(s,{themeKeys:g,supportsFractions:b,supportsNegative:C,defaultValue:null,handleBareValue:({value:D})=>{let E=e.resolve(null,["--spacing"]);return!E||!ne(D)?null:`calc(${E} * ${D})`},handleNegativeBareValue:({value:D})=>{let E=e.resolve(null,["--spacing"]);return!E||!ne(D)?null:`calc(${E} * -${D})`},handle:v,staticValues:T}),i(s,()=>[{values:e.get(["--spacing"])?bt:[],supportsNegative:C,supportsFractions:b,valueThemeKeys:g}])}t("sr-only",[["position","absolute"],["width","1px"],["height","1px"],["padding","0"],["margin","-1px"],["overflow","hidden"],["clip-path","inset(50%)"],["white-space","nowrap"],["border-width","0"]]),t("not-sr-only",[["position","static"],["width","auto"],["height","auto"],["padding","0"],["margin","0"],["overflow","visible"],["clip-path","none"],["white-space","normal"]]),t("pointer-events-none",[["pointer-events","none"]]),t("pointer-events-auto",[["pointer-events","auto"]]),t("visible",[["visibility","visible"]]),t("invisible",[["visibility","hidden"]]),t("collapse",[["visibility","collapse"]]),t("static",[["position","static"]]),t("fixed",[["position","fixed"]]),t("absolute",[["position","absolute"]]),t("relative",[["position","relative"]]),t("sticky",[["position","sticky"]]);for(let[s,g]of[["inset","inset"],["inset-x","inset-inline"],["inset-y","inset-block"],["start","inset-inline-start"],["end","inset-inline-end"],["top","top"],["right","right"],["bottom","bottom"],["left","left"]])t(`${s}-auto`,[[g,"auto"]]),t(`${s}-full`,[[g,"100%"]]),t(`-${s}-full`,[[g,"-100%"]]),o(s,["--inset","--spacing"],v=>[a(g,v)],{supportsNegative:!0,supportsFractions:!0});t("isolate",[["isolation","isolate"]]),t("isolation-auto",[["isolation","auto"]]),n("z",{supportsNegative:!0,handleBareValue:({value:s})=>O(s)?s:null,themeKeys:["--z-index"],handle:s=>[a("z-index",s)],staticValues:{auto:[a("z-index","auto")]}}),i("z",()=>[{supportsNegative:!0,values:["0","10","20","30","40","50"],valueThemeKeys:["--z-index"]}]),n("order",{supportsNegative:!0,handleBareValue:({value:s})=>O(s)?s:null,themeKeys:["--order"],handle:s=>[a("order",s)],staticValues:{first:[a("order","-9999")],last:[a("order","9999")]}}),i("order",()=>[{supportsNegative:!0,values:Array.from({length:12},(s,g)=>`${g+1}`),valueThemeKeys:["--order"]}]),n("col",{supportsNegative:!0,handleBareValue:({value:s})=>O(s)?s:null,themeKeys:["--grid-column"],handle:s=>[a("grid-column",s)],staticValues:{auto:[a("grid-column","auto")]}}),n("col-span",{handleBareValue:({value:s})=>O(s)?s:null,handle:s=>[a("grid-column",`span ${s} / span ${s}`)],staticValues:{full:[a("grid-column","1 / -1")]}}),n("col-start",{supportsNegative:!0,handleBareValue:({value:s})=>O(s)?s:null,themeKeys:["--grid-column-start"],handle:s=>[a("grid-column-start",s)],staticValues:{auto:[a("grid-column-start","auto")]}}),n("col-end",{supportsNegative:!0,handleBareValue:({value:s})=>O(s)?s:null,themeKeys:["--grid-column-end"],handle:s=>[a("grid-column-end",s)],staticValues:{auto:[a("grid-column-end","auto")]}}),i("col-span",()=>[{values:Array.from({length:12},(s,g)=>`${g+1}`),valueThemeKeys:[]}]),i("col-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(s,g)=>`${g+1}`),valueThemeKeys:["--grid-column-start"]}]),i("col-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(s,g)=>`${g+1}`),valueThemeKeys:["--grid-column-end"]}]),n("row",{supportsNegative:!0,handleBareValue:({value:s})=>O(s)?s:null,themeKeys:["--grid-row"],handle:s=>[a("grid-row",s)],staticValues:{auto:[a("grid-row","auto")]}}),n("row-span",{themeKeys:[],handleBareValue:({value:s})=>O(s)?s:null,handle:s=>[a("grid-row",`span ${s} / span ${s}`)],staticValues:{full:[a("grid-row","1 / -1")]}}),n("row-start",{supportsNegative:!0,handleBareValue:({value:s})=>O(s)?s:null,themeKeys:["--grid-row-start"],handle:s=>[a("grid-row-start",s)],staticValues:{auto:[a("grid-row-start","auto")]}}),n("row-end",{supportsNegative:!0,handleBareValue:({value:s})=>O(s)?s:null,themeKeys:["--grid-row-end"],handle:s=>[a("grid-row-end",s)],staticValues:{auto:[a("grid-row-end","auto")]}}),i("row-span",()=>[{values:Array.from({length:12},(s,g)=>`${g+1}`),valueThemeKeys:[]}]),i("row-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(s,g)=>`${g+1}`),valueThemeKeys:["--grid-row-start"]}]),i("row-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(s,g)=>`${g+1}`),valueThemeKeys:["--grid-row-end"]}]),t("float-start",[["float","inline-start"]]),t("float-end",[["float","inline-end"]]),t("float-right",[["float","right"]]),t("float-left",[["float","left"]]),t("float-none",[["float","none"]]),t("clear-start",[["clear","inline-start"]]),t("clear-end",[["clear","inline-end"]]),t("clear-right",[["clear","right"]]),t("clear-left",[["clear","left"]]),t("clear-both",[["clear","both"]]),t("clear-none",[["clear","none"]]);for(let[s,g]of[["m","margin"],["mx","margin-inline"],["my","margin-block"],["ms","margin-inline-start"],["me","margin-inline-end"],["mt","margin-top"],["mr","margin-right"],["mb","margin-bottom"],["ml","margin-left"]])t(`${s}-auto`,[[g,"auto"]]),o(s,["--margin","--spacing"],v=>[a(g,v)],{supportsNegative:!0});t("box-border",[["box-sizing","border-box"]]),t("box-content",[["box-sizing","content-box"]]),n("line-clamp",{themeKeys:["--line-clamp"],handleBareValue:({value:s})=>O(s)?s:null,handle:s=>[a("overflow","hidden"),a("display","-webkit-box"),a("-webkit-box-orient","vertical"),a("-webkit-line-clamp",s)],staticValues:{none:[a("overflow","visible"),a("display","block"),a("-webkit-box-orient","horizontal"),a("-webkit-line-clamp","unset")]}}),i("line-clamp",()=>[{values:["1","2","3","4","5","6"],valueThemeKeys:["--line-clamp"]}]),t("block",[["display","block"]]),t("inline-block",[["display","inline-block"]]),t("inline",[["display","inline"]]),t("hidden",[["display","none"]]),t("inline-flex",[["display","inline-flex"]]),t("table",[["display","table"]]),t("inline-table",[["display","inline-table"]]),t("table-caption",[["display","table-caption"]]),t("table-cell",[["display","table-cell"]]),t("table-column",[["display","table-column"]]),t("table-column-group",[["display","table-column-group"]]),t("table-footer-group",[["display","table-footer-group"]]),t("table-header-group",[["display","table-header-group"]]),t("table-row-group",[["display","table-row-group"]]),t("table-row",[["display","table-row"]]),t("flow-root",[["display","flow-root"]]),t("flex",[["display","flex"]]),t("grid",[["display","grid"]]),t("inline-grid",[["display","inline-grid"]]),t("contents",[["display","contents"]]),t("list-item",[["display","list-item"]]),t("field-sizing-content",[["field-sizing","content"]]),t("field-sizing-fixed",[["field-sizing","fixed"]]),n("aspect",{themeKeys:["--aspect"],handleBareValue:({fraction:s})=>{if(s===null)return null;let[g,v]=L(s,"/");return!O(g)||!O(v)?null:s},handle:s=>[a("aspect-ratio",s)],staticValues:{auto:[a("aspect-ratio","auto")],square:[a("aspect-ratio","1 / 1")]}});for(let[s,g]of[["full","100%"],["svw","100svw"],["lvw","100lvw"],["dvw","100dvw"],["svh","100svh"],["lvh","100lvh"],["dvh","100dvh"],["min","min-content"],["max","max-content"],["fit","fit-content"]])t(`size-${s}`,[["--tw-sort","size"],["width",g],["height",g]]),t(`w-${s}`,[["width",g]]),t(`h-${s}`,[["height",g]]),t(`min-w-${s}`,[["min-width",g]]),t(`min-h-${s}`,[["min-height",g]]),t(`max-w-${s}`,[["max-width",g]]),t(`max-h-${s}`,[["max-height",g]]);t("size-auto",[["--tw-sort","size"],["width","auto"],["height","auto"]]),t("w-auto",[["width","auto"]]),t("h-auto",[["height","auto"]]),t("min-w-auto",[["min-width","auto"]]),t("min-h-auto",[["min-height","auto"]]),t("h-lh",[["height","1lh"]]),t("min-h-lh",[["min-height","1lh"]]),t("max-h-lh",[["max-height","1lh"]]),t("w-screen",[["width","100vw"]]),t("min-w-screen",[["min-width","100vw"]]),t("max-w-screen",[["max-width","100vw"]]),t("h-screen",[["height","100vh"]]),t("min-h-screen",[["min-height","100vh"]]),t("max-h-screen",[["max-height","100vh"]]),t("max-w-none",[["max-width","none"]]),t("max-h-none",[["max-height","none"]]),o("size",["--size","--spacing"],s=>[a("--tw-sort","size"),a("width",s),a("height",s)],{supportsFractions:!0});for(let[s,g,v]of[["w",["--width","--spacing","--container"],"width"],["min-w",["--min-width","--spacing","--container"],"min-width"],["max-w",["--max-width","--spacing","--container"],"max-width"],["h",["--height","--spacing"],"height"],["min-h",["--min-height","--height","--spacing"],"min-height"],["max-h",["--max-height","--height","--spacing"],"max-height"]])o(s,g,C=>[a(v,C)],{supportsFractions:!0});r.static("container",()=>{let s=[...e.namespace("--breakpoint").values()];s.sort((v,C)=>Oe(v,C,"asc"));let g=[a("--tw-sort","--tw-container-component"),a("width","100%")];for(let v of s)g.push(F("@media",`(width >= ${v})`,[a("max-width",v)]));return g}),t("flex-auto",[["flex","auto"]]),t("flex-initial",[["flex","0 auto"]]),t("flex-none",[["flex","none"]]),r.functional("flex",s=>{if(s.value){if(s.value.kind==="arbitrary")return s.modifier?void 0:[a("flex",s.value.value)];if(s.value.fraction){let[g,v]=L(s.value.fraction,"/");return!O(g)||!O(v)?void 0:[a("flex",`calc(${s.value.fraction} * 100%)`)]}if(O(s.value.value))return s.modifier?void 0:[a("flex",s.value.value)]}}),i("flex",()=>[{supportsFractions:!0},{values:Array.from({length:12},(s,g)=>`${g+1}`)}]),n("shrink",{defaultValue:"1",handleBareValue:({value:s})=>O(s)?s:null,handle:s=>[a("flex-shrink",s)]}),n("grow",{defaultValue:"1",handleBareValue:({value:s})=>O(s)?s:null,handle:s=>[a("flex-grow",s)]}),i("shrink",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),i("grow",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),t("basis-auto",[["flex-basis","auto"]]),t("basis-full",[["flex-basis","100%"]]),o("basis",["--flex-basis","--spacing","--container"],s=>[a("flex-basis",s)],{supportsFractions:!0}),t("table-auto",[["table-layout","auto"]]),t("table-fixed",[["table-layout","fixed"]]),t("caption-top",[["caption-side","top"]]),t("caption-bottom",[["caption-side","bottom"]]),t("border-collapse",[["border-collapse","collapse"]]),t("border-separate",[["border-collapse","separate"]]);let f=()=>W([$("--tw-border-spacing-x","0","<length>"),$("--tw-border-spacing-y","0","<length>")]);o("border-spacing",["--border-spacing","--spacing"],s=>[f(),a("--tw-border-spacing-x",s),a("--tw-border-spacing-y",s),a("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),o("border-spacing-x",["--border-spacing","--spacing"],s=>[f(),a("--tw-border-spacing-x",s),a("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),o("border-spacing-y",["--border-spacing","--spacing"],s=>[f(),a("--tw-border-spacing-y",s),a("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),n("origin",{themeKeys:["--transform-origin"],handle:s=>[a("transform-origin",s)],staticValues:{center:[a("transform-origin","center")],top:[a("transform-origin","top")],"top-right":[a("transform-origin","100% 0")],right:[a("transform-origin","100%")],"bottom-right":[a("transform-origin","100% 100%")],bottom:[a("transform-origin","bottom")],"bottom-left":[a("transform-origin","0 100%")],left:[a("transform-origin","0")],"top-left":[a("transform-origin","0 0")]}}),n("perspective-origin",{themeKeys:["--perspective-origin"],handle:s=>[a("perspective-origin",s)],staticValues:{center:[a("perspective-origin","center")],top:[a("perspective-origin","top")],"top-right":[a("perspective-origin","100% 0")],right:[a("perspective-origin","100%")],"bottom-right":[a("perspective-origin","100% 100%")],bottom:[a("perspective-origin","bottom")],"bottom-left":[a("perspective-origin","0 100%")],left:[a("perspective-origin","0")],"top-left":[a("perspective-origin","0 0")]}}),n("perspective",{themeKeys:["--perspective"],handle:s=>[a("perspective",s)],staticValues:{none:[a("perspective","none")]}});let u=()=>W([$("--tw-translate-x","0"),$("--tw-translate-y","0"),$("--tw-translate-z","0")]);t("translate-none",[["translate","none"]]),t("-translate-full",[u,["--tw-translate-x","-100%"],["--tw-translate-y","-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),t("translate-full",[u,["--tw-translate-x","100%"],["--tw-translate-y","100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),o("translate",["--translate","--spacing"],s=>[u(),a("--tw-translate-x",s),a("--tw-translate-y",s),a("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});for(let s of["x","y"])t(`-translate-${s}-full`,[u,[`--tw-translate-${s}`,"-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),t(`translate-${s}-full`,[u,[`--tw-translate-${s}`,"100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),o(`translate-${s}`,["--translate","--spacing"],g=>[u(),a(`--tw-translate-${s}`,g),a("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});o("translate-z",["--translate","--spacing"],s=>[u(),a("--tw-translate-z",s),a("translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)")],{supportsNegative:!0}),t("translate-3d",[u,["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]);let c=()=>W([$("--tw-scale-x","1"),$("--tw-scale-y","1"),$("--tw-scale-z","1")]);t("scale-none",[["scale","none"]]);function m({negative:s}){return g=>{if(!g.value||g.modifier)return;let v;return g.value.kind==="arbitrary"?(v=g.value.value,v=s?`calc(${v} * -1)`:v,[a("scale",v)]):(v=e.resolve(g.value.value,["--scale"]),!v&&O(g.value.value)&&(v=`${g.value.value}%`),v?(v=s?`calc(${v} * -1)`:v,[c(),a("--tw-scale-x",v),a("--tw-scale-y",v),a("--tw-scale-z",v),a("scale","var(--tw-scale-x) var(--tw-scale-y)")]):void 0)}}r.functional("-scale",m({negative:!0})),r.functional("scale",m({negative:!1})),i("scale",()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);for(let s of["x","y","z"])n(`scale-${s}`,{supportsNegative:!0,themeKeys:["--scale"],handleBareValue:({value:g})=>O(g)?`${g}%`:null,handle:g=>[c(),a(`--tw-scale-${s}`,g),a("scale",`var(--tw-scale-x) var(--tw-scale-y)${s==="z"?" var(--tw-scale-z)":""}`)]}),i(`scale-${s}`,()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);t("scale-3d",[c,["scale","var(--tw-scale-x) var(--tw-scale-y) var(--tw-scale-z)"]]),t("rotate-none",[["rotate","none"]]);function d({negative:s}){return g=>{if(!g.value||g.modifier)return;let v;if(g.value.kind==="arbitrary"){v=g.value.value;let C=g.value.dataType??Q(v,["angle","vector"]);if(C==="vector")return[a("rotate",`${v} var(--tw-rotate)`)];if(C!=="angle")return[a("rotate",s?`calc(${v} * -1)`:v)]}else if(v=e.resolve(g.value.value,["--rotate"]),!v&&O(g.value.value)&&(v=`${g.value.value}deg`),!v)return;return[a("rotate",s?`calc(${v} * -1)`:v)]}}r.functional("-rotate",d({negative:!0})),r.functional("rotate",d({negative:!1})),i("rotate",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);{let s=["var(--tw-rotate-x,)","var(--tw-rotate-y,)","var(--tw-rotate-z,)","var(--tw-skew-x,)","var(--tw-skew-y,)"].join(" "),g=()=>W([$("--tw-rotate-x"),$("--tw-rotate-y"),$("--tw-rotate-z"),$("--tw-skew-x"),$("--tw-skew-y")]);for(let v of["x","y","z"])n(`rotate-${v}`,{supportsNegative:!0,themeKeys:["--rotate"],handleBareValue:({value:C})=>O(C)?`${C}deg`:null,handle:C=>[g(),a(`--tw-rotate-${v}`,`rotate${v.toUpperCase()}(${C})`),a("transform",s)]}),i(`rotate-${v}`,()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);n("skew",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:v})=>O(v)?`${v}deg`:null,handle:v=>[g(),a("--tw-skew-x",`skewX(${v})`),a("--tw-skew-y",`skewY(${v})`),a("transform",s)]}),n("skew-x",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:v})=>O(v)?`${v}deg`:null,handle:v=>[g(),a("--tw-skew-x",`skewX(${v})`),a("transform",s)]}),n("skew-y",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:v})=>O(v)?`${v}deg`:null,handle:v=>[g(),a("--tw-skew-y",`skewY(${v})`),a("transform",s)]}),i("skew",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),i("skew-x",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),i("skew-y",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),r.functional("transform",v=>{if(v.modifier)return;let C=null;if(v.value?v.value.kind==="arbitrary"&&(C=v.value.value):C=s,C!==null)return[g(),a("transform",C)]}),i("transform",()=>[{hasDefaultValue:!0}]),t("transform-cpu",[["transform",s]]),t("transform-gpu",[["transform",`translateZ(0) ${s}`]]),t("transform-none",[["transform","none"]])}t("transform-flat",[["transform-style","flat"]]),t("transform-3d",[["transform-style","preserve-3d"]]),t("transform-content",[["transform-box","content-box"]]),t("transform-border",[["transform-box","border-box"]]),t("transform-fill",[["transform-box","fill-box"]]),t("transform-stroke",[["transform-box","stroke-box"]]),t("transform-view",[["transform-box","view-box"]]),t("backface-visible",[["backface-visibility","visible"]]),t("backface-hidden",[["backface-visibility","hidden"]]);for(let s of["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out"])t(`cursor-${s}`,[["cursor",s]]);n("cursor",{themeKeys:["--cursor"],handle:s=>[a("cursor",s)]});for(let s of["auto","none","manipulation"])t(`touch-${s}`,[["touch-action",s]]);let p=()=>W([$("--tw-pan-x"),$("--tw-pan-y"),$("--tw-pinch-zoom")]);for(let s of["x","left","right"])t(`touch-pan-${s}`,[p,["--tw-pan-x",`pan-${s}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let s of["y","up","down"])t(`touch-pan-${s}`,[p,["--tw-pan-y",`pan-${s}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);t("touch-pinch-zoom",[p,["--tw-pinch-zoom","pinch-zoom"],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let s of["none","text","all","auto"])t(`select-${s}`,[["-webkit-user-select",s],["user-select",s]]);t("resize-none",[["resize","none"]]),t("resize-x",[["resize","horizontal"]]),t("resize-y",[["resize","vertical"]]),t("resize",[["resize","both"]]),t("snap-none",[["scroll-snap-type","none"]]);let k=()=>W([$("--tw-scroll-snap-strictness","proximity","*")]);for(let s of["x","y","both"])t(`snap-${s}`,[k,["scroll-snap-type",`${s} var(--tw-scroll-snap-strictness)`]]);t("snap-mandatory",[k,["--tw-scroll-snap-strictness","mandatory"]]),t("snap-proximity",[k,["--tw-scroll-snap-strictness","proximity"]]),t("snap-align-none",[["scroll-snap-align","none"]]),t("snap-start",[["scroll-snap-align","start"]]),t("snap-end",[["scroll-snap-align","end"]]),t("snap-center",[["scroll-snap-align","center"]]),t("snap-normal",[["scroll-snap-stop","normal"]]),t("snap-always",[["scroll-snap-stop","always"]]);for(let[s,g]of[["scroll-m","scroll-margin"],["scroll-mx","scroll-margin-inline"],["scroll-my","scroll-margin-block"],["scroll-ms","scroll-margin-inline-start"],["scroll-me","scroll-margin-inline-end"],["scroll-mt","scroll-margin-top"],["scroll-mr","scroll-margin-right"],["scroll-mb","scroll-margin-bottom"],["scroll-ml","scroll-margin-left"]])o(s,["--scroll-margin","--spacing"],v=>[a(g,v)],{supportsNegative:!0});for(let[s,g]of[["scroll-p","scroll-padding"],["scroll-px","scroll-padding-inline"],["scroll-py","scroll-padding-block"],["scroll-ps","scroll-padding-inline-start"],["scroll-pe","scroll-padding-inline-end"],["scroll-pt","scroll-padding-top"],["scroll-pr","scroll-padding-right"],["scroll-pb","scroll-padding-bottom"],["scroll-pl","scroll-padding-left"]])o(s,["--scroll-padding","--spacing"],v=>[a(g,v)]);t("list-inside",[["list-style-position","inside"]]),t("list-outside",[["list-style-position","outside"]]),n("list",{themeKeys:["--list-style-type"],handle:s=>[a("list-style-type",s)],staticValues:{none:[a("list-style-type","none")],disc:[a("list-style-type","disc")],decimal:[a("list-style-type","decimal")]}}),n("list-image",{themeKeys:["--list-style-image"],handle:s=>[a("list-style-image",s)],staticValues:{none:[a("list-style-image","none")]}}),t("appearance-none",[["appearance","none"]]),t("appearance-auto",[["appearance","auto"]]),t("scheme-normal",[["color-scheme","normal"]]),t("scheme-dark",[["color-scheme","dark"]]),t("scheme-light",[["color-scheme","light"]]),t("scheme-light-dark",[["color-scheme","light dark"]]),t("scheme-only-dark",[["color-scheme","only dark"]]),t("scheme-only-light",[["color-scheme","only light"]]),n("columns",{themeKeys:["--columns","--container"],handleBareValue:({value:s})=>O(s)?s:null,handle:s=>[a("columns",s)],staticValues:{auto:[a("columns","auto")]}}),i("columns",()=>[{values:Array.from({length:12},(s,g)=>`${g+1}`),valueThemeKeys:["--columns","--container"]}]);for(let s of["auto","avoid","all","avoid-page","page","left","right","column"])t(`break-before-${s}`,[["break-before",s]]);for(let s of["auto","avoid","avoid-page","avoid-column"])t(`break-inside-${s}`,[["break-inside",s]]);for(let s of["auto","avoid","all","avoid-page","page","left","right","column"])t(`break-after-${s}`,[["break-after",s]]);t("grid-flow-row",[["grid-auto-flow","row"]]),t("grid-flow-col",[["grid-auto-flow","column"]]),t("grid-flow-dense",[["grid-auto-flow","dense"]]),t("grid-flow-row-dense",[["grid-auto-flow","row dense"]]),t("grid-flow-col-dense",[["grid-auto-flow","column dense"]]),n("auto-cols",{themeKeys:["--grid-auto-columns"],handle:s=>[a("grid-auto-columns",s)],staticValues:{auto:[a("grid-auto-columns","auto")],min:[a("grid-auto-columns","min-content")],max:[a("grid-auto-columns","max-content")],fr:[a("grid-auto-columns","minmax(0, 1fr)")]}}),n("auto-rows",{themeKeys:["--grid-auto-rows"],handle:s=>[a("grid-auto-rows",s)],staticValues:{auto:[a("grid-auto-rows","auto")],min:[a("grid-auto-rows","min-content")],max:[a("grid-auto-rows","max-content")],fr:[a("grid-auto-rows","minmax(0, 1fr)")]}}),n("grid-cols",{themeKeys:["--grid-template-columns"],handleBareValue:({value:s})=>Qt(s)?`repeat(${s}, minmax(0, 1fr))`:null,handle:s=>[a("grid-template-columns",s)],staticValues:{none:[a("grid-template-columns","none")],subgrid:[a("grid-template-columns","subgrid")]}}),n("grid-rows",{themeKeys:["--grid-template-rows"],handleBareValue:({value:s})=>Qt(s)?`repeat(${s}, minmax(0, 1fr))`:null,handle:s=>[a("grid-template-rows",s)],staticValues:{none:[a("grid-template-rows","none")],subgrid:[a("grid-template-rows","subgrid")]}}),i("grid-cols",()=>[{values:Array.from({length:12},(s,g)=>`${g+1}`),valueThemeKeys:["--grid-template-columns"]}]),i("grid-rows",()=>[{values:Array.from({length:12},(s,g)=>`${g+1}`),valueThemeKeys:["--grid-template-rows"]}]),t("flex-row",[["flex-direction","row"]]),t("flex-row-reverse",[["flex-direction","row-reverse"]]),t("flex-col",[["flex-direction","column"]]),t("flex-col-reverse",[["flex-direction","column-reverse"]]),t("flex-wrap",[["flex-wrap","wrap"]]),t("flex-nowrap",[["flex-wrap","nowrap"]]),t("flex-wrap-reverse",[["flex-wrap","wrap-reverse"]]),t("place-content-center",[["place-content","center"]]),t("place-content-start",[["place-content","start"]]),t("place-content-end",[["place-content","end"]]),t("place-content-center-safe",[["place-content","safe center"]]),t("place-content-end-safe",[["place-content","safe end"]]),t("place-content-between",[["place-content","space-between"]]),t("place-content-around",[["place-content","space-around"]]),t("place-content-evenly",[["place-content","space-evenly"]]),t("place-content-baseline",[["place-content","baseline"]]),t("place-content-stretch",[["place-content","stretch"]]),t("place-items-center",[["place-items","center"]]),t("place-items-start",[["place-items","start"]]),t("place-items-end",[["place-items","end"]]),t("place-items-center-safe",[["place-items","safe center"]]),t("place-items-end-safe",[["place-items","safe end"]]),t("place-items-baseline",[["place-items","baseline"]]),t("place-items-stretch",[["place-items","stretch"]]),t("content-normal",[["align-content","normal"]]),t("content-center",[["align-content","center"]]),t("content-start",[["align-content","flex-start"]]),t("content-end",[["align-content","flex-end"]]),t("content-center-safe",[["align-content","safe center"]]),t("content-end-safe",[["align-content","safe flex-end"]]),t("content-between",[["align-content","space-between"]]),t("content-around",[["align-content","space-around"]]),t("content-evenly",[["align-content","space-evenly"]]),t("content-baseline",[["align-content","baseline"]]),t("content-stretch",[["align-content","stretch"]]),t("items-center",[["align-items","center"]]),t("items-start",[["align-items","flex-start"]]),t("items-end",[["align-items","flex-end"]]),t("items-center-safe",[["align-items","safe center"]]),t("items-end-safe",[["align-items","safe flex-end"]]),t("items-baseline",[["align-items","baseline"]]),t("items-baseline-last",[["align-items","last baseline"]]),t("items-stretch",[["align-items","stretch"]]),t("justify-normal",[["justify-content","normal"]]),t("justify-center",[["justify-content","center"]]),t("justify-start",[["justify-content","flex-start"]]),t("justify-end",[["justify-content","flex-end"]]),t("justify-center-safe",[["justify-content","safe center"]]),t("justify-end-safe",[["justify-content","safe flex-end"]]),t("justify-between",[["justify-content","space-between"]]),t("justify-around",[["justify-content","space-around"]]),t("justify-evenly",[["justify-content","space-evenly"]]),t("justify-baseline",[["justify-content","baseline"]]),t("justify-stretch",[["justify-content","stretch"]]),t("justify-items-normal",[["justify-items","normal"]]),t("justify-items-center",[["justify-items","center"]]),t("justify-items-start",[["justify-items","start"]]),t("justify-items-end",[["justify-items","end"]]),t("justify-items-center-safe",[["justify-items","safe center"]]),t("justify-items-end-safe",[["justify-items","safe end"]]),t("justify-items-stretch",[["justify-items","stretch"]]),o("gap",["--gap","--spacing"],s=>[a("gap",s)]),o("gap-x",["--gap","--spacing"],s=>[a("column-gap",s)]),o("gap-y",["--gap","--spacing"],s=>[a("row-gap",s)]),o("space-x",["--space","--spacing"],s=>[W([$("--tw-space-x-reverse","0")]),q(":where(& > :not(:last-child))",[a("--tw-sort","row-gap"),a("--tw-space-x-reverse","0"),a("margin-inline-start",`calc(${s} * var(--tw-space-x-reverse))`),a("margin-inline-end",`calc(${s} * calc(1 - var(--tw-space-x-reverse)))`)])],{supportsNegative:!0}),o("space-y",["--space","--spacing"],s=>[W([$("--tw-space-y-reverse","0")]),q(":where(& > :not(:last-child))",[a("--tw-sort","column-gap"),a("--tw-space-y-reverse","0"),a("margin-block-start",`calc(${s} * var(--tw-space-y-reverse))`),a("margin-block-end",`calc(${s} * calc(1 - var(--tw-space-y-reverse)))`)])],{supportsNegative:!0}),t("space-x-reverse",[()=>W([$("--tw-space-x-reverse","0")]),()=>q(":where(& > :not(:last-child))",[a("--tw-sort","row-gap"),a("--tw-space-x-reverse","1")])]),t("space-y-reverse",[()=>W([$("--tw-space-y-reverse","0")]),()=>q(":where(& > :not(:last-child))",[a("--tw-sort","column-gap"),a("--tw-space-y-reverse","1")])]),t("accent-auto",[["accent-color","auto"]]),l("accent",{themeKeys:["--accent-color","--color"],handle:s=>[a("accent-color",s)]}),l("caret",{themeKeys:["--caret-color","--color"],handle:s=>[a("caret-color",s)]}),l("divide",{themeKeys:["--divide-color","--border-color","--color"],handle:s=>[q(":where(& > :not(:last-child))",[a("--tw-sort","divide-color"),a("border-color",s)])]}),t("place-self-auto",[["place-self","auto"]]),t("place-self-start",[["place-self","start"]]),t("place-self-end",[["place-self","end"]]),t("place-self-center",[["place-self","center"]]),t("place-self-end-safe",[["place-self","safe end"]]),t("place-self-center-safe",[["place-self","safe center"]]),t("place-self-stretch",[["place-self","stretch"]]),t("self-auto",[["align-self","auto"]]),t("self-start",[["align-self","flex-start"]]),t("self-end",[["align-self","flex-end"]]),t("self-center",[["align-self","center"]]),t("self-end-safe",[["align-self","safe flex-end"]]),t("self-center-safe",[["align-self","safe center"]]),t("self-stretch",[["align-self","stretch"]]),t("self-baseline",[["align-self","baseline"]]),t("self-baseline-last",[["align-self","last baseline"]]),t("justify-self-auto",[["justify-self","auto"]]),t("justify-self-start",[["justify-self","flex-start"]]),t("justify-self-end",[["justify-self","flex-end"]]),t("justify-self-center",[["justify-self","center"]]),t("justify-self-end-safe",[["justify-self","safe flex-end"]]),t("justify-self-center-safe",[["justify-self","safe center"]]),t("justify-self-stretch",[["justify-self","stretch"]]);for(let s of["auto","hidden","clip","visible","scroll"])t(`overflow-${s}`,[["overflow",s]]),t(`overflow-x-${s}`,[["overflow-x",s]]),t(`overflow-y-${s}`,[["overflow-y",s]]);for(let s of["auto","contain","none"])t(`overscroll-${s}`,[["overscroll-behavior",s]]),t(`overscroll-x-${s}`,[["overscroll-behavior-x",s]]),t(`overscroll-y-${s}`,[["overscroll-behavior-y",s]]);t("scroll-auto",[["scroll-behavior","auto"]]),t("scroll-smooth",[["scroll-behavior","smooth"]]),t("truncate",[["overflow","hidden"],["text-overflow","ellipsis"],["white-space","nowrap"]]),t("text-ellipsis",[["text-overflow","ellipsis"]]),t("text-clip",[["text-overflow","clip"]]),t("hyphens-none",[["-webkit-hyphens","none"],["hyphens","none"]]),t("hyphens-manual",[["-webkit-hyphens","manual"],["hyphens","manual"]]),t("hyphens-auto",[["-webkit-hyphens","auto"],["hyphens","auto"]]),t("whitespace-normal",[["white-space","normal"]]),t("whitespace-nowrap",[["white-space","nowrap"]]),t("whitespace-pre",[["white-space","pre"]]),t("whitespace-pre-line",[["white-space","pre-line"]]),t("whitespace-pre-wrap",[["white-space","pre-wrap"]]),t("whitespace-break-spaces",[["white-space","break-spaces"]]),t("text-wrap",[["text-wrap","wrap"]]),t("text-nowrap",[["text-wrap","nowrap"]]),t("text-balance",[["text-wrap","balance"]]),t("text-pretty",[["text-wrap","pretty"]]),t("break-normal",[["overflow-wrap","normal"],["word-break","normal"]]),t("break-all",[["word-break","break-all"]]),t("break-keep",[["word-break","keep-all"]]),t("wrap-anywhere",[["overflow-wrap","anywhere"]]),t("wrap-break-word",[["overflow-wrap","break-word"]]),t("wrap-normal",[["overflow-wrap","normal"]]);for(let[s,g]of[["rounded",["border-radius"]],["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]],["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]])n(s,{themeKeys:["--radius"],handle:v=>g.map(C=>a(C,v)),staticValues:{none:g.map(v=>a(v,"0")),full:g.map(v=>a(v,"calc(infinity * 1px)"))}});t("border-solid",[["--tw-border-style","solid"],["border-style","solid"]]),t("border-dashed",[["--tw-border-style","dashed"],["border-style","dashed"]]),t("border-dotted",[["--tw-border-style","dotted"],["border-style","dotted"]]),t("border-double",[["--tw-border-style","double"],["border-style","double"]]),t("border-hidden",[["--tw-border-style","hidden"],["border-style","hidden"]]),t("border-none",[["--tw-border-style","none"],["border-style","none"]]);{let g=function(v,C){r.functional(v,b=>{if(!b.value){if(b.modifier)return;let T=e.get(["--default-border-width"])??"1px",D=C.width(T);return D?[s(),...D]:void 0}if(b.value.kind==="arbitrary"){let T=b.value.value;switch(b.value.dataType??Q(T,["color","line-width","length"])){case"line-width":case"length":{if(b.modifier)return;let E=C.width(T);return E?[s(),...E]:void 0}default:return T=X(T,b.modifier,e),T===null?void 0:C.color(T)}}{let T=te(b,e,["--border-color","--color"]);if(T)return C.color(T)}{if(b.modifier)return;let T=e.resolve(b.value.value,["--border-width"]);if(T){let D=C.width(T);return D?[s(),...D]:void 0}if(O(b.value.value)){let D=C.width(`${b.value.value}px`);return D?[s(),...D]:void 0}}}),i(v,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--border-color","--color"],modifiers:Array.from({length:21},(b,T)=>`${T*5}`),hasDefaultValue:!0},{values:["0","2","4","8"],valueThemeKeys:["--border-width"]}])};var I=g;let s=()=>W([$("--tw-border-style","solid")]);g("border",{width:v=>[a("border-style","var(--tw-border-style)"),a("border-width",v)],color:v=>[a("border-color",v)]}),g("border-x",{width:v=>[a("border-inline-style","var(--tw-border-style)"),a("border-inline-width",v)],color:v=>[a("border-inline-color",v)]}),g("border-y",{width:v=>[a("border-block-style","var(--tw-border-style)"),a("border-block-width",v)],color:v=>[a("border-block-color",v)]}),g("border-s",{width:v=>[a("border-inline-start-style","var(--tw-border-style)"),a("border-inline-start-width",v)],color:v=>[a("border-inline-start-color",v)]}),g("border-e",{width:v=>[a("border-inline-end-style","var(--tw-border-style)"),a("border-inline-end-width",v)],color:v=>[a("border-inline-end-color",v)]}),g("border-t",{width:v=>[a("border-top-style","var(--tw-border-style)"),a("border-top-width",v)],color:v=>[a("border-top-color",v)]}),g("border-r",{width:v=>[a("border-right-style","var(--tw-border-style)"),a("border-right-width",v)],color:v=>[a("border-right-color",v)]}),g("border-b",{width:v=>[a("border-bottom-style","var(--tw-border-style)"),a("border-bottom-width",v)],color:v=>[a("border-bottom-color",v)]}),g("border-l",{width:v=>[a("border-left-style","var(--tw-border-style)"),a("border-left-width",v)],color:v=>[a("border-left-color",v)]}),n("divide-x",{defaultValue:e.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:v})=>O(v)?`${v}px`:null,handle:v=>[W([$("--tw-divide-x-reverse","0")]),q(":where(& > :not(:last-child))",[a("--tw-sort","divide-x-width"),s(),a("--tw-divide-x-reverse","0"),a("border-inline-style","var(--tw-border-style)"),a("border-inline-start-width",`calc(${v} * var(--tw-divide-x-reverse))`),a("border-inline-end-width",`calc(${v} * calc(1 - var(--tw-divide-x-reverse)))`)])]}),n("divide-y",{defaultValue:e.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:v})=>O(v)?`${v}px`:null,handle:v=>[W([$("--tw-divide-y-reverse","0")]),q(":where(& > :not(:last-child))",[a("--tw-sort","divide-y-width"),s(),a("--tw-divide-y-reverse","0"),a("border-bottom-style","var(--tw-border-style)"),a("border-top-style","var(--tw-border-style)"),a("border-top-width",`calc(${v} * var(--tw-divide-y-reverse))`),a("border-bottom-width",`calc(${v} * calc(1 - var(--tw-divide-y-reverse)))`)])]}),i("divide-x",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),i("divide-y",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),t("divide-x-reverse",[()=>W([$("--tw-divide-x-reverse","0")]),()=>q(":where(& > :not(:last-child))",[a("--tw-divide-x-reverse","1")])]),t("divide-y-reverse",[()=>W([$("--tw-divide-y-reverse","0")]),()=>q(":where(& > :not(:last-child))",[a("--tw-divide-y-reverse","1")])]);for(let v of["solid","dashed","dotted","double","none"])t(`divide-${v}`,[()=>q(":where(& > :not(:last-child))",[a("--tw-sort","divide-style"),a("--tw-border-style",v),a("border-style",v)])])}t("bg-auto",[["background-size","auto"]]),t("bg-cover",[["background-size","cover"]]),t("bg-contain",[["background-size","contain"]]),n("bg-size",{handle(s){if(s)return[a("background-size",s)]}}),t("bg-fixed",[["background-attachment","fixed"]]),t("bg-local",[["background-attachment","local"]]),t("bg-scroll",[["background-attachment","scroll"]]),t("bg-top",[["background-position","top"]]),t("bg-top-left",[["background-position","left top"]]),t("bg-top-right",[["background-position","right top"]]),t("bg-bottom",[["background-position","bottom"]]),t("bg-bottom-left",[["background-position","left bottom"]]),t("bg-bottom-right",[["background-position","right bottom"]]),t("bg-left",[["background-position","left"]]),t("bg-right",[["background-position","right"]]),t("bg-center",[["background-position","center"]]),n("bg-position",{handle(s){if(s)return[a("background-position",s)]}}),t("bg-repeat",[["background-repeat","repeat"]]),t("bg-no-repeat",[["background-repeat","no-repeat"]]),t("bg-repeat-x",[["background-repeat","repeat-x"]]),t("bg-repeat-y",[["background-repeat","repeat-y"]]),t("bg-repeat-round",[["background-repeat","round"]]),t("bg-repeat-space",[["background-repeat","space"]]),t("bg-none",[["background-image","none"]]);{let v=function(T){let D="in oklab";if(T?.kind==="named")switch(T.value){case"longer":case"shorter":case"increasing":case"decreasing":D=`in oklch ${T.value} hue`;break;default:D=`in ${T.value}`}else T?.kind==="arbitrary"&&(D=T.value);return D},C=function({negative:T}){return D=>{if(!D.value)return;if(D.value.kind==="arbitrary"){if(D.modifier)return;let j=D.value.value;switch(D.value.dataType??Q(j,["angle"])){case"angle":return j=T?`calc(${j} * -1)`:`${j}`,[a("--tw-gradient-position",j),a("background-image",`linear-gradient(var(--tw-gradient-stops,${j}))`)];default:return T?void 0:[a("--tw-gradient-position",j),a("background-image",`linear-gradient(var(--tw-gradient-stops,${j}))`)]}}let E=D.value.value;if(!T&&g.has(E))E=g.get(E);else if(O(E))E=T?`calc(${E}deg * -1)`:`${E}deg`;else return;let R=v(D.modifier);return[a("--tw-gradient-position",`${E}`),Z("@supports (background-image: linear-gradient(in lab, red, red))",[a("--tw-gradient-position",`${E} ${R}`)]),a("background-image","linear-gradient(var(--tw-gradient-stops))")]}},b=function({negative:T}){return D=>{if(D.value?.kind==="arbitrary"){if(D.modifier)return;let j=D.value.value;return[a("--tw-gradient-position",j),a("background-image",`conic-gradient(var(--tw-gradient-stops,${j}))`)]}let E=v(D.modifier);if(!D.value)return[a("--tw-gradient-position",E),a("background-image","conic-gradient(var(--tw-gradient-stops))")];let R=D.value.value;if(O(R))return R=T?`calc(${R}deg * -1)`:`${R}deg`,[a("--tw-gradient-position",`from ${R} ${E}`),a("background-image","conic-gradient(var(--tw-gradient-stops))")]}};var M=v,Y=C,G=b;let s=["oklab","oklch","srgb","hsl","longer","shorter","increasing","decreasing"],g=new Map([["to-t","to top"],["to-tr","to top right"],["to-r","to right"],["to-br","to bottom right"],["to-b","to bottom"],["to-bl","to bottom left"],["to-l","to left"],["to-tl","to top left"]]);r.functional("-bg-linear",C({negative:!0})),r.functional("bg-linear",C({negative:!1})),i("bg-linear",()=>[{values:[...g.keys()],modifiers:s},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:s}]),r.functional("-bg-conic",b({negative:!0})),r.functional("bg-conic",b({negative:!1})),i("bg-conic",()=>[{hasDefaultValue:!0,modifiers:s},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:s}]),r.functional("bg-radial",T=>{if(!T.value){let D=v(T.modifier);return[a("--tw-gradient-position",D),a("background-image","radial-gradient(var(--tw-gradient-stops))")]}if(T.value.kind==="arbitrary"){if(T.modifier)return;let D=T.value.value;return[a("--tw-gradient-position",D),a("background-image",`radial-gradient(var(--tw-gradient-stops,${D}))`)]}}),i("bg-radial",()=>[{hasDefaultValue:!0,modifiers:s}])}r.functional("bg",s=>{if(s.value){if(s.value.kind==="arbitrary"){let g=s.value.value;switch(s.value.dataType??Q(g,["image","color","percentage","position","bg-size","length","url"])){case"percentage":case"position":return s.modifier?void 0:[a("background-position",g)];case"bg-size":case"length":case"size":return s.modifier?void 0:[a("background-size",g)];case"image":case"url":return s.modifier?void 0:[a("background-image",g)];default:return g=X(g,s.modifier,e),g===null?void 0:[a("background-color",g)]}}{let g=te(s,e,["--background-color","--color"]);if(g)return[a("background-color",g)]}{if(s.modifier)return;let g=e.resolve(s.value.value,["--background-image"]);if(g)return[a("background-image",g)]}}}),i("bg",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(s,g)=>`${g*5}`)},{values:[],valueThemeKeys:["--background-image"]}]);let h=()=>W([$("--tw-gradient-position"),$("--tw-gradient-from","#0000","<color>"),$("--tw-gradient-via","#0000","<color>"),$("--tw-gradient-to","#0000","<color>"),$("--tw-gradient-stops"),$("--tw-gradient-via-stops"),$("--tw-gradient-from-position","0%","<length-percentage>"),$("--tw-gradient-via-position","50%","<length-percentage>"),$("--tw-gradient-to-position","100%","<length-percentage>")]);function w(s,g){r.functional(s,v=>{if(v.value){if(v.value.kind==="arbitrary"){let C=v.value.value;switch(v.value.dataType??Q(C,["color","length","percentage"])){case"length":case"percentage":return v.modifier?void 0:g.position(C);default:return C=X(C,v.modifier,e),C===null?void 0:g.color(C)}}{let C=te(v,e,["--background-color","--color"]);if(C)return g.color(C)}{if(v.modifier)return;let C=e.resolve(v.value.value,["--gradient-color-stop-positions"]);if(C)return g.position(C);if(v.value.value[v.value.value.length-1]==="%"&&O(v.value.value.slice(0,-1)))return g.position(v.value.value)}}}),i(s,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(v,C)=>`${C*5}`)},{values:Array.from({length:21},(v,C)=>`${C*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}])}w("from",{color:s=>[h(),a("--tw-sort","--tw-gradient-from"),a("--tw-gradient-from",s),a("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:s=>[h(),a("--tw-gradient-from-position",s)]}),t("via-none",[["--tw-gradient-via-stops","initial"]]),w("via",{color:s=>[h(),a("--tw-sort","--tw-gradient-via"),a("--tw-gradient-via",s),a("--tw-gradient-via-stops","var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position)"),a("--tw-gradient-stops","var(--tw-gradient-via-stops)")],position:s=>[h(),a("--tw-gradient-via-position",s)]}),w("to",{color:s=>[h(),a("--tw-sort","--tw-gradient-to"),a("--tw-gradient-to",s),a("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:s=>[h(),a("--tw-gradient-to-position",s)]}),t("mask-none",[["mask-image","none"]]),r.functional("mask",s=>{if(!s.value||s.modifier||s.value.kind!=="arbitrary")return;let g=s.value.value;switch(s.value.dataType??Q(g,["image","percentage","position","bg-size","length","url"])){case"percentage":case"position":return s.modifier?void 0:[a("mask-position",g)];case"bg-size":case"length":case"size":return[a("mask-size",g)];case"image":case"url":default:return[a("mask-image",g)]}}),t("mask-add",[["mask-composite","add"]]),t("mask-subtract",[["mask-composite","subtract"]]),t("mask-intersect",[["mask-composite","intersect"]]),t("mask-exclude",[["mask-composite","exclude"]]),t("mask-alpha",[["mask-mode","alpha"]]),t("mask-luminance",[["mask-mode","luminance"]]),t("mask-match",[["mask-mode","match-source"]]),t("mask-type-alpha",[["mask-type","alpha"]]),t("mask-type-luminance",[["mask-type","luminance"]]),t("mask-auto",[["mask-size","auto"]]),t("mask-cover",[["mask-size","cover"]]),t("mask-contain",[["mask-size","contain"]]),n("mask-size",{handle(s){if(s)return[a("mask-size",s)]}}),t("mask-top",[["mask-position","top"]]),t("mask-top-left",[["mask-position","left top"]]),t("mask-top-right",[["mask-position","right top"]]),t("mask-bottom",[["mask-position","bottom"]]),t("mask-bottom-left",[["mask-position","left bottom"]]),t("mask-bottom-right",[["mask-position","right bottom"]]),t("mask-left",[["mask-position","left"]]),t("mask-right",[["mask-position","right"]]),t("mask-center",[["mask-position","center"]]),n("mask-position",{handle(s){if(s)return[a("mask-position",s)]}}),t("mask-repeat",[["mask-repeat","repeat"]]),t("mask-no-repeat",[["mask-repeat","no-repeat"]]),t("mask-repeat-x",[["mask-repeat","repeat-x"]]),t("mask-repeat-y",[["mask-repeat","repeat-y"]]),t("mask-repeat-round",[["mask-repeat","round"]]),t("mask-repeat-space",[["mask-repeat","space"]]),t("mask-clip-border",[["mask-clip","border-box"]]),t("mask-clip-padding",[["mask-clip","padding-box"]]),t("mask-clip-content",[["mask-clip","content-box"]]),t("mask-clip-fill",[["mask-clip","fill-box"]]),t("mask-clip-stroke",[["mask-clip","stroke-box"]]),t("mask-clip-view",[["mask-clip","view-box"]]),t("mask-no-clip",[["mask-clip","no-clip"]]),t("mask-origin-border",[["mask-origin","border-box"]]),t("mask-origin-padding",[["mask-origin","padding-box"]]),t("mask-origin-content",[["mask-origin","content-box"]]),t("mask-origin-fill",[["mask-origin","fill-box"]]),t("mask-origin-stroke",[["mask-origin","stroke-box"]]),t("mask-origin-view",[["mask-origin","view-box"]]);let x=()=>W([$("--tw-mask-linear","linear-gradient(#fff, #fff)"),$("--tw-mask-radial","linear-gradient(#fff, #fff)"),$("--tw-mask-conic","linear-gradient(#fff, #fff)")]);function S(s,g){r.functional(s,v=>{if(v.value){if(v.value.kind==="arbitrary"){let C=v.value.value;switch(v.value.dataType??Q(C,["length","percentage","color"])){case"color":return C=X(C,v.modifier,e),C===null?void 0:g.color(C);case"percentage":return v.modifier||!O(C.slice(0,-1))?void 0:g.position(C);default:return v.modifier?void 0:g.position(C)}}{let C=te(v,e,["--background-color","--color"]);if(C)return g.color(C)}{if(v.modifier)return;let C=Q(v.value.value,["number","percentage"]);if(!C)return;switch(C){case"number":{let b=e.resolve(null,["--spacing"]);return!b||!ne(v.value.value)?void 0:g.position(`calc(${b} * ${v.value.value})`)}case"percentage":return O(v.value.value.slice(0,-1))?g.position(v.value.value):void 0;default:return}}}}),i(s,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(v,C)=>`${C*5}`)},{values:Array.from({length:21},(v,C)=>`${C*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}]),i(s,()=>[{values:Array.from({length:21},(v,C)=>`${C*5}%`)},{values:e.get(["--spacing"])?bt:[]},{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(v,C)=>`${C*5}`)}])}let A=()=>W([$("--tw-mask-left","linear-gradient(#fff, #fff)"),$("--tw-mask-right","linear-gradient(#fff, #fff)"),$("--tw-mask-bottom","linear-gradient(#fff, #fff)"),$("--tw-mask-top","linear-gradient(#fff, #fff)")]);function y(s,g,v){S(s,{color(C){let b=[x(),A(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-linear","var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top)")];for(let T of["top","right","bottom","left"])v[T]&&(b.push(a(`--tw-mask-${T}`,`linear-gradient(to ${T}, var(--tw-mask-${T}-from-color) var(--tw-mask-${T}-from-position), var(--tw-mask-${T}-to-color) var(--tw-mask-${T}-to-position))`)),b.push(W([$(`--tw-mask-${T}-from-position`,"0%"),$(`--tw-mask-${T}-to-position`,"100%"),$(`--tw-mask-${T}-from-color`,"black"),$(`--tw-mask-${T}-to-color`,"transparent")])),b.push(a(`--tw-mask-${T}-${g}-color`,C)));return b},position(C){let b=[x(),A(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-linear","var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top)")];for(let T of["top","right","bottom","left"])v[T]&&(b.push(a(`--tw-mask-${T}`,`linear-gradient(to ${T}, var(--tw-mask-${T}-from-color) var(--tw-mask-${T}-from-position), var(--tw-mask-${T}-to-color) var(--tw-mask-${T}-to-position))`)),b.push(W([$(`--tw-mask-${T}-from-position`,"0%"),$(`--tw-mask-${T}-to-position`,"100%"),$(`--tw-mask-${T}-from-color`,"black"),$(`--tw-mask-${T}-to-color`,"transparent")])),b.push(a(`--tw-mask-${T}-${g}-position`,C)));return b}})}y("mask-x-from","from",{top:!1,right:!0,bottom:!1,left:!0}),y("mask-x-to","to",{top:!1,right:!0,bottom:!1,left:!0}),y("mask-y-from","from",{top:!0,right:!1,bottom:!0,left:!1}),y("mask-y-to","to",{top:!0,right:!1,bottom:!0,left:!1}),y("mask-t-from","from",{top:!0,right:!1,bottom:!1,left:!1}),y("mask-t-to","to",{top:!0,right:!1,bottom:!1,left:!1}),y("mask-r-from","from",{top:!1,right:!0,bottom:!1,left:!1}),y("mask-r-to","to",{top:!1,right:!0,bottom:!1,left:!1}),y("mask-b-from","from",{top:!1,right:!1,bottom:!0,left:!1}),y("mask-b-to","to",{top:!1,right:!1,bottom:!0,left:!1}),y("mask-l-from","from",{top:!1,right:!1,bottom:!1,left:!0}),y("mask-l-to","to",{top:!1,right:!1,bottom:!1,left:!0});let K=()=>W([$("--tw-mask-linear-position","0deg"),$("--tw-mask-linear-from-position","0%"),$("--tw-mask-linear-to-position","100%"),$("--tw-mask-linear-from-color","black"),$("--tw-mask-linear-to-color","transparent")]);n("mask-linear",{defaultValue:null,supportsNegative:!0,supportsFractions:!1,handleBareValue(s){return O(s.value)?`calc(1deg * ${s.value})`:null},handleNegativeBareValue(s){return O(s.value)?`calc(1deg * -${s.value})`:null},handle:s=>[x(),K(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops, var(--tw-mask-linear-position)))"),a("--tw-mask-linear-position",s)]}),i("mask-linear",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"]}]),S("mask-linear-from",{color:s=>[x(),K(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),a("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),a("--tw-mask-linear-from-color",s)],position:s=>[x(),K(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),a("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),a("--tw-mask-linear-from-position",s)]}),S("mask-linear-to",{color:s=>[x(),K(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),a("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),a("--tw-mask-linear-to-color",s)],position:s=>[x(),K(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),a("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),a("--tw-mask-linear-to-position",s)]});let N=()=>W([$("--tw-mask-radial-from-position","0%"),$("--tw-mask-radial-to-position","100%"),$("--tw-mask-radial-from-color","black"),$("--tw-mask-radial-to-color","transparent"),$("--tw-mask-radial-shape","ellipse"),$("--tw-mask-radial-size","farthest-corner"),$("--tw-mask-radial-position","center")]);t("mask-circle",[["--tw-mask-radial-shape","circle"]]),t("mask-ellipse",[["--tw-mask-radial-shape","ellipse"]]),t("mask-radial-closest-side",[["--tw-mask-radial-size","closest-side"]]),t("mask-radial-farthest-side",[["--tw-mask-radial-size","farthest-side"]]),t("mask-radial-closest-corner",[["--tw-mask-radial-size","closest-corner"]]),t("mask-radial-farthest-corner",[["--tw-mask-radial-size","farthest-corner"]]),t("mask-radial-at-top",[["--tw-mask-radial-position","top"]]),t("mask-radial-at-top-left",[["--tw-mask-radial-position","top left"]]),t("mask-radial-at-top-right",[["--tw-mask-radial-position","top right"]]),t("mask-radial-at-bottom",[["--tw-mask-radial-position","bottom"]]),t("mask-radial-at-bottom-left",[["--tw-mask-radial-position","bottom left"]]),t("mask-radial-at-bottom-right",[["--tw-mask-radial-position","bottom right"]]),t("mask-radial-at-left",[["--tw-mask-radial-position","left"]]),t("mask-radial-at-right",[["--tw-mask-radial-position","right"]]),t("mask-radial-at-center",[["--tw-mask-radial-position","center"]]),n("mask-radial-at",{defaultValue:null,supportsNegative:!1,supportsFractions:!1,handle:s=>[a("--tw-mask-radial-position",s)]}),n("mask-radial",{defaultValue:null,supportsNegative:!1,supportsFractions:!1,handle:s=>[x(),N(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops, var(--tw-mask-radial-size)))"),a("--tw-mask-radial-size",s)]}),S("mask-radial-from",{color:s=>[x(),N(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),a("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),a("--tw-mask-radial-from-color",s)],position:s=>[x(),N(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),a("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),a("--tw-mask-radial-from-position",s)]}),S("mask-radial-to",{color:s=>[x(),N(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),a("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),a("--tw-mask-radial-to-color",s)],position:s=>[x(),N(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),a("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),a("--tw-mask-radial-to-position",s)]});let P=()=>W([$("--tw-mask-conic-position","0deg"),$("--tw-mask-conic-from-position","0%"),$("--tw-mask-conic-to-position","100%"),$("--tw-mask-conic-from-color","black"),$("--tw-mask-conic-to-color","transparent")]);n("mask-conic",{defaultValue:null,supportsNegative:!0,supportsFractions:!1,handleBareValue(s){return O(s.value)?`calc(1deg * ${s.value})`:null},handleNegativeBareValue(s){return O(s.value)?`calc(1deg * -${s.value})`:null},handle:s=>[x(),P(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops, var(--tw-mask-conic-position)))"),a("--tw-mask-conic-position",s)]}),i("mask-conic",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"]}]),S("mask-conic-from",{color:s=>[x(),P(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),a("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),a("--tw-mask-conic-from-color",s)],position:s=>[x(),P(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),a("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),a("--tw-mask-conic-from-position",s)]}),S("mask-conic-to",{color:s=>[x(),P(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),a("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),a("--tw-mask-conic-to-color",s)],position:s=>[x(),P(),a("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),a("mask-composite","intersect"),a("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),a("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),a("--tw-mask-conic-to-position",s)]}),t("box-decoration-slice",[["-webkit-box-decoration-break","slice"],["box-decoration-break","slice"]]),t("box-decoration-clone",[["-webkit-box-decoration-break","clone"],["box-decoration-break","clone"]]),t("bg-clip-text",[["background-clip","text"]]),t("bg-clip-border",[["background-clip","border-box"]]),t("bg-clip-padding",[["background-clip","padding-box"]]),t("bg-clip-content",[["background-clip","content-box"]]),t("bg-origin-border",[["background-origin","border-box"]]),t("bg-origin-padding",[["background-origin","padding-box"]]),t("bg-origin-content",[["background-origin","content-box"]]);for(let s of["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"])t(`bg-blend-${s}`,[["background-blend-mode",s]]),t(`mix-blend-${s}`,[["mix-blend-mode",s]]);t("mix-blend-plus-darker",[["mix-blend-mode","plus-darker"]]),t("mix-blend-plus-lighter",[["mix-blend-mode","plus-lighter"]]),t("fill-none",[["fill","none"]]),r.functional("fill",s=>{if(!s.value)return;if(s.value.kind==="arbitrary"){let v=X(s.value.value,s.modifier,e);return v===null?void 0:[a("fill",v)]}let g=te(s,e,["--fill","--color"]);if(g)return[a("fill",g)]}),i("fill",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--fill","--color"],modifiers:Array.from({length:21},(s,g)=>`${g*5}`)}]),t("stroke-none",[["stroke","none"]]),r.functional("stroke",s=>{if(s.value){if(s.value.kind==="arbitrary"){let g=s.value.value;switch(s.value.dataType??Q(g,["color","number","length","percentage"])){case"number":case"length":case"percentage":return s.modifier?void 0:[a("stroke-width",g)];default:return g=X(s.value.value,s.modifier,e),g===null?void 0:[a("stroke",g)]}}{let g=te(s,e,["--stroke","--color"]);if(g)return[a("stroke",g)]}{let g=e.resolve(s.value.value,["--stroke-width"]);if(g)return[a("stroke-width",g)];if(O(s.value.value))return[a("stroke-width",s.value.value)]}}}),i("stroke",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--stroke","--color"],modifiers:Array.from({length:21},(s,g)=>`${g*5}`)},{values:["0","1","2","3"],valueThemeKeys:["--stroke-width"]}]),t("object-contain",[["object-fit","contain"]]),t("object-cover",[["object-fit","cover"]]),t("object-fill",[["object-fit","fill"]]),t("object-none",[["object-fit","none"]]),t("object-scale-down",[["object-fit","scale-down"]]),n("object",{themeKeys:["--object-position"],handle:s=>[a("object-position",s)],staticValues:{top:[a("object-position","top")],"top-left":[a("object-position","left top")],"top-right":[a("object-position","right top")],bottom:[a("object-position","bottom")],"bottom-left":[a("object-position","left bottom")],"bottom-right":[a("object-position","right bottom")],left:[a("object-position","left")],right:[a("object-position","right")],center:[a("object-position","center")]}});for(let[s,g]of[["p","padding"],["px","padding-inline"],["py","padding-block"],["ps","padding-inline-start"],["pe","padding-inline-end"],["pt","padding-top"],["pr","padding-right"],["pb","padding-bottom"],["pl","padding-left"]])o(s,["--padding","--spacing"],v=>[a(g,v)]);t("text-left",[["text-align","left"]]),t("text-center",[["text-align","center"]]),t("text-right",[["text-align","right"]]),t("text-justify",[["text-align","justify"]]),t("text-start",[["text-align","start"]]),t("text-end",[["text-align","end"]]),o("indent",["--text-indent","--spacing"],s=>[a("text-indent",s)],{supportsNegative:!0}),t("align-baseline",[["vertical-align","baseline"]]),t("align-top",[["vertical-align","top"]]),t("align-middle",[["vertical-align","middle"]]),t("align-bottom",[["vertical-align","bottom"]]),t("align-text-top",[["vertical-align","text-top"]]),t("align-text-bottom",[["vertical-align","text-bottom"]]),t("align-sub",[["vertical-align","sub"]]),t("align-super",[["vertical-align","super"]]),n("align",{themeKeys:[],handle:s=>[a("vertical-align",s)]}),r.functional("font",s=>{if(!(!s.value||s.modifier)){if(s.value.kind==="arbitrary"){let g=s.value.value;switch(s.value.dataType??Q(g,["number","generic-name","family-name"])){case"generic-name":case"family-name":return[a("font-family",g)];default:return[W([$("--tw-font-weight")]),a("--tw-font-weight",g),a("font-weight",g)]}}{let g=e.resolveWith(s.value.value,["--font"],["--font-feature-settings","--font-variation-settings"]);if(g){let[v,C={}]=g;return[a("font-family",v),a("font-feature-settings",C["--font-feature-settings"]),a("font-variation-settings",C["--font-variation-settings"])]}}{let g=e.resolve(s.value.value,["--font-weight"]);if(g)return[W([$("--tw-font-weight")]),a("--tw-font-weight",g),a("font-weight",g)]}}}),i("font",()=>[{values:[],valueThemeKeys:["--font"]},{values:[],valueThemeKeys:["--font-weight"]}]),t("uppercase",[["text-transform","uppercase"]]),t("lowercase",[["text-transform","lowercase"]]),t("capitalize",[["text-transform","capitalize"]]),t("normal-case",[["text-transform","none"]]),t("italic",[["font-style","italic"]]),t("not-italic",[["font-style","normal"]]),t("underline",[["text-decoration-line","underline"]]),t("overline",[["text-decoration-line","overline"]]),t("line-through",[["text-decoration-line","line-through"]]),t("no-underline",[["text-decoration-line","none"]]),t("font-stretch-normal",[["font-stretch","normal"]]),t("font-stretch-ultra-condensed",[["font-stretch","ultra-condensed"]]),t("font-stretch-extra-condensed",[["font-stretch","extra-condensed"]]),t("font-stretch-condensed",[["font-stretch","condensed"]]),t("font-stretch-semi-condensed",[["font-stretch","semi-condensed"]]),t("font-stretch-semi-expanded",[["font-stretch","semi-expanded"]]),t("font-stretch-expanded",[["font-stretch","expanded"]]),t("font-stretch-extra-expanded",[["font-stretch","extra-expanded"]]),t("font-stretch-ultra-expanded",[["font-stretch","ultra-expanded"]]),n("font-stretch",{handleBareValue:({value:s})=>{if(!s.endsWith("%"))return null;let g=Number(s.slice(0,-1));return!O(g)||Number.isNaN(g)||g<50||g>200?null:s},handle:s=>[a("font-stretch",s)]}),i("font-stretch",()=>[{values:["50%","75%","90%","95%","100%","105%","110%","125%","150%","200%"]}]),l("placeholder",{themeKeys:["--background-color","--color"],handle:s=>[q("&::placeholder",[a("--tw-sort","placeholder-color"),a("color",s)])]}),t("decoration-solid",[["text-decoration-style","solid"]]),t("decoration-double",[["text-decoration-style","double"]]),t("decoration-dotted",[["text-decoration-style","dotted"]]),t("decoration-dashed",[["text-decoration-style","dashed"]]),t("decoration-wavy",[["text-decoration-style","wavy"]]),t("decoration-auto",[["text-decoration-thickness","auto"]]),t("decoration-from-font",[["text-decoration-thickness","from-font"]]),r.functional("decoration",s=>{if(s.value){if(s.value.kind==="arbitrary"){let g=s.value.value;switch(s.value.dataType??Q(g,["color","length","percentage"])){case"length":case"percentage":return s.modifier?void 0:[a("text-decoration-thickness",g)];default:return g=X(g,s.modifier,e),g===null?void 0:[a("text-decoration-color",g)]}}{let g=e.resolve(s.value.value,["--text-decoration-thickness"]);if(g)return s.modifier?void 0:[a("text-decoration-thickness",g)];if(O(s.value.value))return s.modifier?void 0:[a("text-decoration-thickness",`${s.value.value}px`)]}{let g=te(s,e,["--text-decoration-color","--color"]);if(g)return[a("text-decoration-color",g)]}}}),i("decoration",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-decoration-color","--color"],modifiers:Array.from({length:21},(s,g)=>`${g*5}`)},{values:["0","1","2"],valueThemeKeys:["--text-decoration-thickness"]}]),n("animate",{themeKeys:["--animate"],handle:s=>[a("animation",s)],staticValues:{none:[a("animation","none")]}});{let s=["var(--tw-blur,)","var(--tw-brightness,)","var(--tw-contrast,)","var(--tw-grayscale,)","var(--tw-hue-rotate,)","var(--tw-invert,)","var(--tw-saturate,)","var(--tw-sepia,)","var(--tw-drop-shadow,)"].join(" "),g=["var(--tw-backdrop-blur,)","var(--tw-backdrop-brightness,)","var(--tw-backdrop-contrast,)","var(--tw-backdrop-grayscale,)","var(--tw-backdrop-hue-rotate,)","var(--tw-backdrop-invert,)","var(--tw-backdrop-opacity,)","var(--tw-backdrop-saturate,)","var(--tw-backdrop-sepia,)"].join(" "),v=()=>W([$("--tw-blur"),$("--tw-brightness"),$("--tw-contrast"),$("--tw-grayscale"),$("--tw-hue-rotate"),$("--tw-invert"),$("--tw-opacity"),$("--tw-saturate"),$("--tw-sepia"),$("--tw-drop-shadow"),$("--tw-drop-shadow-color"),$("--tw-drop-shadow-alpha","100%","<percentage>"),$("--tw-drop-shadow-size")]),C=()=>W([$("--tw-backdrop-blur"),$("--tw-backdrop-brightness"),$("--tw-backdrop-contrast"),$("--tw-backdrop-grayscale"),$("--tw-backdrop-hue-rotate"),$("--tw-backdrop-invert"),$("--tw-backdrop-opacity"),$("--tw-backdrop-saturate"),$("--tw-backdrop-sepia")]);r.functional("filter",b=>{if(!b.modifier){if(b.value===null)return[v(),a("filter",s)];if(b.value.kind==="arbitrary")return[a("filter",b.value.value)];switch(b.value.value){case"none":return[a("filter","none")]}}}),r.functional("backdrop-filter",b=>{if(!b.modifier){if(b.value===null)return[C(),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)];if(b.value.kind==="arbitrary")return[a("-webkit-backdrop-filter",b.value.value),a("backdrop-filter",b.value.value)];switch(b.value.value){case"none":return[a("-webkit-backdrop-filter","none"),a("backdrop-filter","none")]}}}),n("blur",{themeKeys:["--blur"],handle:b=>[v(),a("--tw-blur",`blur(${b})`),a("filter",s)],staticValues:{none:[v(),a("--tw-blur"," "),a("filter",s)]}}),n("backdrop-blur",{themeKeys:["--backdrop-blur","--blur"],handle:b=>[C(),a("--tw-backdrop-blur",`blur(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)],staticValues:{none:[C(),a("--tw-backdrop-blur"," "),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}}),n("brightness",{themeKeys:["--brightness"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,handle:b=>[v(),a("--tw-brightness",`brightness(${b})`),a("filter",s)]}),n("backdrop-brightness",{themeKeys:["--backdrop-brightness","--brightness"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,handle:b=>[C(),a("--tw-backdrop-brightness",`brightness(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}),i("brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--brightness"]}]),i("backdrop-brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--backdrop-brightness","--brightness"]}]),n("contrast",{themeKeys:["--contrast"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,handle:b=>[v(),a("--tw-contrast",`contrast(${b})`),a("filter",s)]}),n("backdrop-contrast",{themeKeys:["--backdrop-contrast","--contrast"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,handle:b=>[C(),a("--tw-backdrop-contrast",`contrast(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}),i("contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--contrast"]}]),i("backdrop-contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--backdrop-contrast","--contrast"]}]),n("grayscale",{themeKeys:["--grayscale"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[v(),a("--tw-grayscale",`grayscale(${b})`),a("filter",s)]}),n("backdrop-grayscale",{themeKeys:["--backdrop-grayscale","--grayscale"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[C(),a("--tw-backdrop-grayscale",`grayscale(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}),i("grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--grayscale"],hasDefaultValue:!0}]),i("backdrop-grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-grayscale","--grayscale"],hasDefaultValue:!0}]),n("hue-rotate",{supportsNegative:!0,themeKeys:["--hue-rotate"],handleBareValue:({value:b})=>O(b)?`${b}deg`:null,handle:b=>[v(),a("--tw-hue-rotate",`hue-rotate(${b})`),a("filter",s)]}),n("backdrop-hue-rotate",{supportsNegative:!0,themeKeys:["--backdrop-hue-rotate","--hue-rotate"],handleBareValue:({value:b})=>O(b)?`${b}deg`:null,handle:b=>[C(),a("--tw-backdrop-hue-rotate",`hue-rotate(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}),i("hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--hue-rotate"]}]),i("backdrop-hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--backdrop-hue-rotate","--hue-rotate"]}]),n("invert",{themeKeys:["--invert"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[v(),a("--tw-invert",`invert(${b})`),a("filter",s)]}),n("backdrop-invert",{themeKeys:["--backdrop-invert","--invert"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[C(),a("--tw-backdrop-invert",`invert(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}),i("invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--invert"],hasDefaultValue:!0}]),i("backdrop-invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-invert","--invert"],hasDefaultValue:!0}]),n("saturate",{themeKeys:["--saturate"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,handle:b=>[v(),a("--tw-saturate",`saturate(${b})`),a("filter",s)]}),n("backdrop-saturate",{themeKeys:["--backdrop-saturate","--saturate"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,handle:b=>[C(),a("--tw-backdrop-saturate",`saturate(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}),i("saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--saturate"]}]),i("backdrop-saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--backdrop-saturate","--saturate"]}]),n("sepia",{themeKeys:["--sepia"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[v(),a("--tw-sepia",`sepia(${b})`),a("filter",s)]}),n("backdrop-sepia",{themeKeys:["--backdrop-sepia","--sepia"],handleBareValue:({value:b})=>O(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[C(),a("--tw-backdrop-sepia",`sepia(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}),i("sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--sepia"],hasDefaultValue:!0}]),i("backdrop-sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--backdrop-sepia","--sepia"],hasDefaultValue:!0}]),t("drop-shadow-none",[v,["--tw-drop-shadow"," "],["filter",s]]),r.functional("drop-shadow",b=>{let T;if(b.modifier&&(b.modifier.kind==="arbitrary"?T=b.modifier.value:O(b.modifier.value)&&(T=`${b.modifier.value}%`)),!b.value){let D=e.get(["--drop-shadow"]),E=e.resolve(null,["--drop-shadow"]);return D===null||E===null?void 0:[v(),a("--tw-drop-shadow-alpha",T),...yt("--tw-drop-shadow-size",D,T,R=>`var(--tw-drop-shadow-color, ${R})`),a("--tw-drop-shadow",L(E,",").map(R=>`drop-shadow(${R})`).join(" ")),a("filter",s)]}if(b.value.kind==="arbitrary"){let D=b.value.value;switch(b.value.dataType??Q(D,["color"])){case"color":return D=X(D,b.modifier,e),D===null?void 0:[v(),a("--tw-drop-shadow-color",J(D,"var(--tw-drop-shadow-alpha)")),a("--tw-drop-shadow","var(--tw-drop-shadow-size)")];default:return b.modifier&&!T?void 0:[v(),a("--tw-drop-shadow-alpha",T),...yt("--tw-drop-shadow-size",D,T,R=>`var(--tw-drop-shadow-color, ${R})`),a("--tw-drop-shadow","var(--tw-drop-shadow-size)"),a("filter",s)]}}{let D=e.get([`--drop-shadow-${b.value.value}`]),E=e.resolve(b.value.value,["--drop-shadow"]);if(D&&E)return b.modifier&&!T?void 0:T?[v(),a("--tw-drop-shadow-alpha",T),...yt("--tw-drop-shadow-size",D,T,R=>`var(--tw-drop-shadow-color, ${R})`),a("--tw-drop-shadow","var(--tw-drop-shadow-size)"),a("filter",s)]:[v(),a("--tw-drop-shadow-alpha",T),...yt("--tw-drop-shadow-size",D,T,R=>`var(--tw-drop-shadow-color, ${R})`),a("--tw-drop-shadow",L(E,",").map(R=>`drop-shadow(${R})`).join(" ")),a("filter",s)]}{let D=te(b,e,["--drop-shadow-color","--color"]);if(D)return D==="inherit"?[v(),a("--tw-drop-shadow-color","inherit"),a("--tw-drop-shadow","var(--tw-drop-shadow-size)")]:[v(),a("--tw-drop-shadow-color",J(D,"var(--tw-drop-shadow-alpha)")),a("--tw-drop-shadow","var(--tw-drop-shadow-size)")]}}),i("drop-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--drop-shadow-color","--color"],modifiers:Array.from({length:21},(b,T)=>`${T*5}`)},{valueThemeKeys:["--drop-shadow"]}]),n("backdrop-opacity",{themeKeys:["--backdrop-opacity","--opacity"],handleBareValue:({value:b})=>wt(b)?`${b}%`:null,handle:b=>[C(),a("--tw-backdrop-opacity",`opacity(${b})`),a("-webkit-backdrop-filter",g),a("backdrop-filter",g)]}),i("backdrop-opacity",()=>[{values:Array.from({length:21},(b,T)=>`${T*5}`),valueThemeKeys:["--backdrop-opacity","--opacity"]}])}{let s=`var(--tw-ease, ${e.resolve(null,["--default-transition-timing-function"])??"ease"})`,g=`var(--tw-duration, ${e.resolve(null,["--default-transition-duration"])??"0s"})`;n("transition",{defaultValue:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events",themeKeys:["--transition-property"],handle:v=>[a("transition-property",v),a("transition-timing-function",s),a("transition-duration",g)],staticValues:{none:[a("transition-property","none")],all:[a("transition-property","all"),a("transition-timing-function",s),a("transition-duration",g)],colors:[a("transition-property","color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to"),a("transition-timing-function",s),a("transition-duration",g)],opacity:[a("transition-property","opacity"),a("transition-timing-function",s),a("transition-duration",g)],shadow:[a("transition-property","box-shadow"),a("transition-timing-function",s),a("transition-duration",g)],transform:[a("transition-property","transform, translate, scale, rotate"),a("transition-timing-function",s),a("transition-duration",g)]}}),t("transition-discrete",[["transition-behavior","allow-discrete"]]),t("transition-normal",[["transition-behavior","normal"]]),n("delay",{handleBareValue:({value:v})=>O(v)?`${v}ms`:null,themeKeys:["--transition-delay"],handle:v=>[a("transition-delay",v)]});{let v=()=>W([$("--tw-duration")]);t("duration-initial",[v,["--tw-duration","initial"]]),r.functional("duration",C=>{if(C.modifier||!C.value)return;let b=null;if(C.value.kind==="arbitrary"?b=C.value.value:(b=e.resolve(C.value.fraction??C.value.value,["--transition-duration"]),b===null&&O(C.value.value)&&(b=`${C.value.value}ms`)),b!==null)return[v(),a("--tw-duration",b),a("transition-duration",b)]})}i("delay",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-delay"]}]),i("duration",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-duration"]}])}{let s=()=>W([$("--tw-ease")]);n("ease",{themeKeys:["--ease"],handle:g=>[s(),a("--tw-ease",g),a("transition-timing-function",g)],staticValues:{initial:[s(),a("--tw-ease","initial")],linear:[s(),a("--tw-ease","linear"),a("transition-timing-function","linear")]}})}t("will-change-auto",[["will-change","auto"]]),t("will-change-scroll",[["will-change","scroll-position"]]),t("will-change-contents",[["will-change","contents"]]),t("will-change-transform",[["will-change","transform"]]),n("will-change",{themeKeys:[],handle:s=>[a("will-change",s)]}),t("content-none",[["--tw-content","none"],["content","none"]]),n("content",{themeKeys:["--content"],handle:s=>[W([$("--tw-content",'""')]),a("--tw-content",s),a("content","var(--tw-content)")]});{let s="var(--tw-contain-size,) var(--tw-contain-layout,) var(--tw-contain-paint,) var(--tw-contain-style,)",g=()=>W([$("--tw-contain-size"),$("--tw-contain-layout"),$("--tw-contain-paint"),$("--tw-contain-style")]);t("contain-none",[["contain","none"]]),t("contain-content",[["contain","content"]]),t("contain-strict",[["contain","strict"]]),t("contain-size",[g,["--tw-contain-size","size"],["contain",s]]),t("contain-inline-size",[g,["--tw-contain-size","inline-size"],["contain",s]]),t("contain-layout",[g,["--tw-contain-layout","layout"],["contain",s]]),t("contain-paint",[g,["--tw-contain-paint","paint"],["contain",s]]),t("contain-style",[g,["--tw-contain-style","style"],["contain",s]]),n("contain",{themeKeys:[],handle:v=>[a("contain",v)]})}t("forced-color-adjust-none",[["forced-color-adjust","none"]]),t("forced-color-adjust-auto",[["forced-color-adjust","auto"]]),o("leading",["--leading","--spacing"],s=>[W([$("--tw-leading")]),a("--tw-leading",s),a("line-height",s)],{staticValues:{none:[W([$("--tw-leading")]),a("--tw-leading","1"),a("line-height","1")]}}),n("tracking",{supportsNegative:!0,themeKeys:["--tracking"],handle:s=>[W([$("--tw-tracking")]),a("--tw-tracking",s),a("letter-spacing",s)]}),t("antialiased",[["-webkit-font-smoothing","antialiased"],["-moz-osx-font-smoothing","grayscale"]]),t("subpixel-antialiased",[["-webkit-font-smoothing","auto"],["-moz-osx-font-smoothing","auto"]]);{let s="var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)",g=()=>W([$("--tw-ordinal"),$("--tw-slashed-zero"),$("--tw-numeric-figure"),$("--tw-numeric-spacing"),$("--tw-numeric-fraction")]);t("normal-nums",[["font-variant-numeric","normal"]]),t("ordinal",[g,["--tw-ordinal","ordinal"],["font-variant-numeric",s]]),t("slashed-zero",[g,["--tw-slashed-zero","slashed-zero"],["font-variant-numeric",s]]),t("lining-nums",[g,["--tw-numeric-figure","lining-nums"],["font-variant-numeric",s]]),t("oldstyle-nums",[g,["--tw-numeric-figure","oldstyle-nums"],["font-variant-numeric",s]]),t("proportional-nums",[g,["--tw-numeric-spacing","proportional-nums"],["font-variant-numeric",s]]),t("tabular-nums",[g,["--tw-numeric-spacing","tabular-nums"],["font-variant-numeric",s]]),t("diagonal-fractions",[g,["--tw-numeric-fraction","diagonal-fractions"],["font-variant-numeric",s]]),t("stacked-fractions",[g,["--tw-numeric-fraction","stacked-fractions"],["font-variant-numeric",s]])}{let s=()=>W([$("--tw-outline-style","solid")]);r.static("outline-hidden",()=>[a("--tw-outline-style","none"),a("outline-style","none"),F("@media","(forced-colors: active)",[a("outline","2px solid transparent"),a("outline-offset","2px")])]),t("outline-none",[["--tw-outline-style","none"],["outline-style","none"]]),t("outline-solid",[["--tw-outline-style","solid"],["outline-style","solid"]]),t("outline-dashed",[["--tw-outline-style","dashed"],["outline-style","dashed"]]),t("outline-dotted",[["--tw-outline-style","dotted"],["outline-style","dotted"]]),t("outline-double",[["--tw-outline-style","double"],["outline-style","double"]]),r.functional("outline",g=>{if(g.value===null){if(g.modifier)return;let v=e.get(["--default-outline-width"])??"1px";return[s(),a("outline-style","var(--tw-outline-style)"),a("outline-width",v)]}if(g.value.kind==="arbitrary"){let v=g.value.value;switch(g.value.dataType??Q(v,["color","length","number","percentage"])){case"length":case"number":case"percentage":return g.modifier?void 0:[s(),a("outline-style","var(--tw-outline-style)"),a("outline-width",v)];default:return v=X(v,g.modifier,e),v===null?void 0:[a("outline-color",v)]}}{let v=te(g,e,["--outline-color","--color"]);if(v)return[a("outline-color",v)]}{if(g.modifier)return;let v=e.resolve(g.value.value,["--outline-width"]);if(v)return[s(),a("outline-style","var(--tw-outline-style)"),a("outline-width",v)];if(O(g.value.value))return[s(),a("outline-style","var(--tw-outline-style)"),a("outline-width",`${g.value.value}px`)]}}),i("outline",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--outline-color","--color"],modifiers:Array.from({length:21},(g,v)=>`${v*5}`),hasDefaultValue:!0},{values:["0","1","2","4","8"],valueThemeKeys:["--outline-width"]}]),n("outline-offset",{supportsNegative:!0,themeKeys:["--outline-offset"],handleBareValue:({value:g})=>O(g)?`${g}px`:null,handle:g=>[a("outline-offset",g)]}),i("outline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--outline-offset"]}])}n("opacity",{themeKeys:["--opacity"],handleBareValue:({value:s})=>wt(s)?`${s}%`:null,handle:s=>[a("opacity",s)]}),i("opacity",()=>[{values:Array.from({length:21},(s,g)=>`${g*5}`),valueThemeKeys:["--opacity"]}]),n("underline-offset",{supportsNegative:!0,themeKeys:["--text-underline-offset"],handleBareValue:({value:s})=>O(s)?`${s}px`:null,handle:s=>[a("text-underline-offset",s)],staticValues:{auto:[a("text-underline-offset","auto")]}}),i("underline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--text-underline-offset"]}]),r.functional("text",s=>{if(s.value){if(s.value.kind==="arbitrary"){let g=s.value.value;switch(s.value.dataType??Q(g,["color","length","percentage","absolute-size","relative-size"])){case"size":case"length":case"percentage":case"absolute-size":case"relative-size":{if(s.modifier){let C=s.modifier.kind==="arbitrary"?s.modifier.value:e.resolve(s.modifier.value,["--leading"]);if(!C&&ne(s.modifier.value)){let b=e.resolve(null,["--spacing"]);if(!b)return null;C=`calc(${b} * ${s.modifier.value})`}return!C&&s.modifier.value==="none"&&(C="1"),C?[a("font-size",g),a("line-height",C)]:null}return[a("font-size",g)]}default:return g=X(g,s.modifier,e),g===null?void 0:[a("color",g)]}}{let g=te(s,e,["--text-color","--color"]);if(g)return[a("color",g)]}{let g=e.resolveWith(s.value.value,["--text"],["--line-height","--letter-spacing","--font-weight"]);if(g){let[v,C={}]=Array.isArray(g)?g:[g];if(s.modifier){let b=s.modifier.kind==="arbitrary"?s.modifier.value:e.resolve(s.modifier.value,["--leading"]);if(!b&&ne(s.modifier.value)){let D=e.resolve(null,["--spacing"]);if(!D)return null;b=`calc(${D} * ${s.modifier.value})`}if(!b&&s.modifier.value==="none"&&(b="1"),!b)return null;let T=[a("font-size",v)];return b&&T.push(a("line-height",b)),T}return typeof C=="string"?[a("font-size",v),a("line-height",C)]:[a("font-size",v),a("line-height",C["--line-height"]?`var(--tw-leading, ${C["--line-height"]})`:void 0),a("letter-spacing",C["--letter-spacing"]?`var(--tw-tracking, ${C["--letter-spacing"]})`:void 0),a("font-weight",C["--font-weight"]?`var(--tw-font-weight, ${C["--font-weight"]})`:void 0)]}}}}),i("text",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-color","--color"],modifiers:Array.from({length:21},(s,g)=>`${g*5}`)},{values:[],valueThemeKeys:["--text"],modifiers:[],modifierThemeKeys:["--leading"]}]);let z=()=>W([$("--tw-text-shadow-color"),$("--tw-text-shadow-alpha","100%","<percentage>")]);t("text-shadow-initial",[z,["--tw-text-shadow-color","initial"]]),r.functional("text-shadow",s=>{let g;if(s.modifier&&(s.modifier.kind==="arbitrary"?g=s.modifier.value:O(s.modifier.value)&&(g=`${s.modifier.value}%`)),!s.value){let v=e.get(["--text-shadow"]);return v===null?void 0:[z(),a("--tw-text-shadow-alpha",g),...ye("text-shadow",v,g,C=>`var(--tw-text-shadow-color, ${C})`)]}if(s.value.kind==="arbitrary"){let v=s.value.value;switch(s.value.dataType??Q(v,["color"])){case"color":return v=X(v,s.modifier,e),v===null?void 0:[z(),a("--tw-text-shadow-color",J(v,"var(--tw-text-shadow-alpha)"))];default:return[z(),a("--tw-text-shadow-alpha",g),...ye("text-shadow",v,g,b=>`var(--tw-text-shadow-color, ${b})`)]}}switch(s.value.value){case"none":return s.modifier?void 0:[z(),a("text-shadow","none")];case"inherit":return s.modifier?void 0:[z(),a("--tw-text-shadow-color","inherit")]}{let v=e.get([`--text-shadow-${s.value.value}`]);if(v)return[z(),a("--tw-text-shadow-alpha",g),...ye("text-shadow",v,g,C=>`var(--tw-text-shadow-color, ${C})`)]}{let v=te(s,e,["--text-shadow-color","--color"]);if(v)return[z(),a("--tw-text-shadow-color",J(v,"var(--tw-text-shadow-alpha)"))]}}),i("text-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-shadow-color","--color"],modifiers:Array.from({length:21},(s,g)=>`${g*5}`)},{values:["none"]},{valueThemeKeys:["--text-shadow"],modifiers:Array.from({length:21},(s,g)=>`${g*5}`),hasDefaultValue:e.get(["--text-shadow"])!==null}]);{let b=function(E){return`var(--tw-ring-inset,) 0 0 0 calc(${E} + var(--tw-ring-offset-width)) var(--tw-ring-color, ${C})`},T=function(E){return`inset 0 0 0 ${E} var(--tw-inset-ring-color, currentcolor)`};var ae=b,le=T;let s=["var(--tw-inset-shadow)","var(--tw-inset-ring-shadow)","var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow)"].join(", "),g="0 0 #0000",v=()=>W([$("--tw-shadow",g),$("--tw-shadow-color"),$("--tw-shadow-alpha","100%","<percentage>"),$("--tw-inset-shadow",g),$("--tw-inset-shadow-color"),$("--tw-inset-shadow-alpha","100%","<percentage>"),$("--tw-ring-color"),$("--tw-ring-shadow",g),$("--tw-inset-ring-color"),$("--tw-inset-ring-shadow",g),$("--tw-ring-inset"),$("--tw-ring-offset-width","0px","<length>"),$("--tw-ring-offset-color","#fff"),$("--tw-ring-offset-shadow",g)]);t("shadow-initial",[v,["--tw-shadow-color","initial"]]),r.functional("shadow",E=>{let R;if(E.modifier&&(E.modifier.kind==="arbitrary"?R=E.modifier.value:O(E.modifier.value)&&(R=`${E.modifier.value}%`)),!E.value){let j=e.get(["--shadow"]);return j===null?void 0:[v(),a("--tw-shadow-alpha",R),...ye("--tw-shadow",j,R,pe=>`var(--tw-shadow-color, ${pe})`),a("box-shadow",s)]}if(E.value.kind==="arbitrary"){let j=E.value.value;switch(E.value.dataType??Q(j,["color"])){case"color":return j=X(j,E.modifier,e),j===null?void 0:[v(),a("--tw-shadow-color",J(j,"var(--tw-shadow-alpha)"))];default:return[v(),a("--tw-shadow-alpha",R),...ye("--tw-shadow",j,R,Dt=>`var(--tw-shadow-color, ${Dt})`),a("box-shadow",s)]}}switch(E.value.value){case"none":return E.modifier?void 0:[v(),a("--tw-shadow",g),a("box-shadow",s)];case"inherit":return E.modifier?void 0:[v(),a("--tw-shadow-color","inherit")]}{let j=e.get([`--shadow-${E.value.value}`]);if(j)return[v(),a("--tw-shadow-alpha",R),...ye("--tw-shadow",j,R,pe=>`var(--tw-shadow-color, ${pe})`),a("box-shadow",s)]}{let j=te(E,e,["--box-shadow-color","--color"]);if(j)return[v(),a("--tw-shadow-color",J(j,"var(--tw-shadow-alpha)"))]}}),i("shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(E,R)=>`${R*5}`)},{values:["none"]},{valueThemeKeys:["--shadow"],modifiers:Array.from({length:21},(E,R)=>`${R*5}`),hasDefaultValue:e.get(["--shadow"])!==null}]),t("inset-shadow-initial",[v,["--tw-inset-shadow-color","initial"]]),r.functional("inset-shadow",E=>{let R;if(E.modifier&&(E.modifier.kind==="arbitrary"?R=E.modifier.value:O(E.modifier.value)&&(R=`${E.modifier.value}%`)),!E.value){let j=e.get(["--inset-shadow"]);return j===null?void 0:[v(),a("--tw-inset-shadow-alpha",R),...ye("--tw-inset-shadow",j,R,pe=>`var(--tw-inset-shadow-color, ${pe})`),a("box-shadow",s)]}if(E.value.kind==="arbitrary"){let j=E.value.value;switch(E.value.dataType??Q(j,["color"])){case"color":return j=X(j,E.modifier,e),j===null?void 0:[v(),a("--tw-inset-shadow-color",J(j,"var(--tw-inset-shadow-alpha)"))];default:return[v(),a("--tw-inset-shadow-alpha",R),...ye("--tw-inset-shadow",j,R,Dt=>`var(--tw-inset-shadow-color, ${Dt})`,"inset "),a("box-shadow",s)]}}switch(E.value.value){case"none":return E.modifier?void 0:[v(),a("--tw-inset-shadow",g),a("box-shadow",s)];case"inherit":return E.modifier?void 0:[v(),a("--tw-inset-shadow-color","inherit")]}{let j=e.get([`--inset-shadow-${E.value.value}`]);if(j)return[v(),a("--tw-inset-shadow-alpha",R),...ye("--tw-inset-shadow",j,R,pe=>`var(--tw-inset-shadow-color, ${pe})`),a("box-shadow",s)]}{let j=te(E,e,["--box-shadow-color","--color"]);if(j)return[v(),a("--tw-inset-shadow-color",J(j,"var(--tw-inset-shadow-alpha)"))]}}),i("inset-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(E,R)=>`${R*5}`)},{values:["none"]},{valueThemeKeys:["--inset-shadow"],modifiers:Array.from({length:21},(E,R)=>`${R*5}`),hasDefaultValue:e.get(["--inset-shadow"])!==null}]),t("ring-inset",[v,["--tw-ring-inset","inset"]]);let C=e.get(["--default-ring-color"])??"currentcolor";r.functional("ring",E=>{if(!E.value){if(E.modifier)return;let R=e.get(["--default-ring-width"])??"1px";return[v(),a("--tw-ring-shadow",b(R)),a("box-shadow",s)]}if(E.value.kind==="arbitrary"){let R=E.value.value;switch(E.value.dataType??Q(R,["color","length"])){case"length":return E.modifier?void 0:[v(),a("--tw-ring-shadow",b(R)),a("box-shadow",s)];default:return R=X(R,E.modifier,e),R===null?void 0:[a("--tw-ring-color",R)]}}{let R=te(E,e,["--ring-color","--color"]);if(R)return[a("--tw-ring-color",R)]}{if(E.modifier)return;let R=e.resolve(E.value.value,["--ring-width"]);if(R===null&&O(E.value.value)&&(R=`${E.value.value}px`),R)return[v(),a("--tw-ring-shadow",b(R)),a("box-shadow",s)]}}),i("ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(E,R)=>`${R*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]),r.functional("inset-ring",E=>{if(!E.value)return E.modifier?void 0:[v(),a("--tw-inset-ring-shadow",T("1px")),a("box-shadow",s)];if(E.value.kind==="arbitrary"){let R=E.value.value;switch(E.value.dataType??Q(R,["color","length"])){case"length":return E.modifier?void 0:[v(),a("--tw-inset-ring-shadow",T(R)),a("box-shadow",s)];default:return R=X(R,E.modifier,e),R===null?void 0:[a("--tw-inset-ring-color",R)]}}{let R=te(E,e,["--ring-color","--color"]);if(R)return[a("--tw-inset-ring-color",R)]}{if(E.modifier)return;let R=e.resolve(E.value.value,["--ring-width"]);if(R===null&&O(E.value.value)&&(R=`${E.value.value}px`),R)return[v(),a("--tw-inset-ring-shadow",T(R)),a("box-shadow",s)]}}),i("inset-ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(E,R)=>`${R*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]);let D="var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)";r.functional("ring-offset",E=>{if(E.value){if(E.value.kind==="arbitrary"){let R=E.value.value;switch(E.value.dataType??Q(R,["color","length"])){case"length":return E.modifier?void 0:[a("--tw-ring-offset-width",R),a("--tw-ring-offset-shadow",D)];default:return R=X(R,E.modifier,e),R===null?void 0:[a("--tw-ring-offset-color",R)]}}{let R=e.resolve(E.value.value,["--ring-offset-width"]);if(R)return E.modifier?void 0:[a("--tw-ring-offset-width",R),a("--tw-ring-offset-shadow",D)];if(O(E.value.value))return E.modifier?void 0:[a("--tw-ring-offset-width",`${E.value.value}px`),a("--tw-ring-offset-shadow",D)]}{let R=te(E,e,["--ring-offset-color","--color"]);if(R)return[a("--tw-ring-offset-color",R)]}}})}return i("ring-offset",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-offset-color","--color"],modifiers:Array.from({length:21},(s,g)=>`${g*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-offset-width"]}]),r.functional("@container",s=>{let g=null;if(s.value===null?g="inline-size":s.value.kind==="arbitrary"?g=s.value.value:s.value.kind==="named"&&s.value.value==="normal"?g="normal":!1,g!==null)return s.modifier?[a("container-type",g),a("container-name",s.modifier.value)]:[a("container-type",g)]}),i("@container",()=>[{values:["normal"],valueThemeKeys:[],hasDefaultValue:!0}]),r}var Xt=["number","integer","ratio","percentage"];function Jr(e){let r=e.params;return so.test(r)?i=>{let t={"--value":{usedSpacingInteger:!1,usedSpacingNumber:!1,themeKeys:new Set,literals:new Set},"--modifier":{usedSpacingInteger:!1,usedSpacingNumber:!1,themeKeys:new Set,literals:new Set}};_(e.nodes,n=>{if(n.kind!=="declaration"||!n.value||!n.value.includes("--value(")&&!n.value.includes("--modifier("))return;let l=B(n.value);_(l,o=>{if(o.kind!=="function")return;if(o.value==="--spacing"&&!(t["--modifier"].usedSpacingNumber&&t["--value"].usedSpacingNumber))return _(o.nodes,u=>{if(u.kind!=="function"||u.value!=="--value"&&u.value!=="--modifier")return;let c=u.value;for(let m of u.nodes)if(m.kind==="word"){if(m.value==="integer")t[c].usedSpacingInteger||=!0;else if(m.value==="number"&&(t[c].usedSpacingNumber||=!0,t["--modifier"].usedSpacingNumber&&t["--value"].usedSpacingNumber))return V.Stop}}),V.Continue;if(o.value!=="--value"&&o.value!=="--modifier")return;let f=L(H(o.nodes),",");for(let[u,c]of f.entries())c=c.replace(/\\\*/g,"*"),c=c.replace(/--(.*?)\s--(.*?)/g,"--$1-*--$2"),c=c.replace(/\s+/g,""),c=c.replace(/(-\*){2,}/g,"-*"),c[0]==="-"&&c[1]==="-"&&!c.includes("-*")&&(c+="-*"),f[u]=c;o.nodes=B(f.join(","));for(let u of o.nodes)if(u.kind==="word"&&(u.value[0]==='"'||u.value[0]==="'")&&u.value[0]===u.value[u.value.length-1]){let c=u.value.slice(1,-1);t[o.value].literals.add(c)}else if(u.kind==="word"&&u.value[0]==="-"&&u.value[1]==="-"){let c=u.value.replace(/-\*.*$/g,"");t[o.value].themeKeys.add(c)}else if(u.kind==="word"&&!(u.value[0]==="["&&u.value[u.value.length-1]==="]")&&!Xt.includes(u.value)){console.warn(`Unsupported bare value data type: "${u.value}".
+Only valid data types are: ${Xt.map(w=>`"${w}"`).join(", ")}.
+`);let c=u.value,m=structuredClone(o),d="\xB6";_(m.nodes,w=>{if(w.kind==="word"&&w.value===c)return V.ReplaceSkip({kind:"word",value:d})});let p="^".repeat(H([u]).length),k=H([m]).indexOf(d),h=["```css",H([o])," ".repeat(k)+p,"```"].join(`
+`);console.warn(h)}}),n.value=H(l)}),i.utilities.functional(r.slice(0,-2),n=>{let l=ee(e),o=n.value,f=n.modifier;if(o===null)return;let u=!1,c=!1,m=!1,d=!1,p=new Map,k=!1;if(_([l],(h,w)=>{let x=w.parent;if(x?.kind!=="rule"&&x?.kind!=="at-rule"||h.kind!=="declaration"||!h.value)return;let S=!1,A=B(h.value);if(_(A,y=>{if(y.kind==="function"){if(y.value==="--value"){u=!0;let K=Gr(o,y,i);return K?(c=!0,K.ratio?k=!0:p.set(h,x),V.ReplaceSkip(K.nodes)):(u||=!1,S=!0,V.Stop)}else if(y.value==="--modifier"){if(f===null)return S=!0,V.Stop;m=!0;let K=Gr(f,y,i);return K?(d=!0,V.ReplaceSkip(K.nodes)):(m||=!1,S=!0,V.Stop)}}}),S)return V.ReplaceSkip([]);h.value=H(A)}),u&&!c||m&&!d||k&&d||f&&!k&&!d)return null;if(k)for(let[h,w]of p){let x=w.nodes.indexOf(h);x!==-1&&w.nodes.splice(x,1)}return l.nodes}),i.utilities.suggest(r.slice(0,-2),()=>{let n=[],l=[];for(let[o,{literals:f,usedSpacingNumber:u,usedSpacingInteger:c,themeKeys:m}]of[[n,t["--value"]],[l,t["--modifier"]]]){for(let d of f)o.push(d);if(u)o.push(...bt);else if(c)for(let d of bt)O(d)&&o.push(d);for(let d of i.theme.keysInNamespaces(m))o.push(d.replace(Zr,(p,k,h)=>`${k}.${h}`))}return[{values:n,modifiers:l}]})}:lo.test(r)?i=>{i.utilities.static(r,()=>e.nodes.map(ee))}:null}function Gr(e,r,i){for(let t of r.nodes){if(e.kind==="named"&&t.kind==="word"&&(t.value[0]==="'"||t.value[0]==='"')&&t.value[t.value.length-1]===t.value[0]&&t.value.slice(1,-1)===e.value)return{nodes:B(e.value)};if(e.kind==="named"&&t.kind==="word"&&t.value[0]==="-"&&t.value[1]==="-"){let n=t.value;if(n.endsWith("-*")){n=n.slice(0,-2);let l=i.theme.resolve(e.value,[n]);if(l)return{nodes:B(l)}}else{let l=n.split("-*");if(l.length<=1)continue;let o=[l.shift()],f=i.theme.resolveWith(e.value,o,l);if(f){let[,u={}]=f;{let c=u[l.pop()];if(c)return{nodes:B(c)}}}}}else if(e.kind==="named"&&t.kind==="word"){if(!Xt.includes(t.value))continue;let n=t.value==="ratio"&&"fraction"in e?e.fraction:e.value;if(!n)continue;let l=Q(n,[t.value]);if(l===null)continue;if(l==="ratio"){let[o,f]=L(n,"/");if(!O(o)||!O(f))continue}else{if(l==="number"&&!ne(n))continue;if(l==="percentage"&&!O(n.slice(0,-1)))continue}return{nodes:B(n),ratio:l==="ratio"}}else if(e.kind==="arbitrary"&&t.kind==="word"&&t.value[0]==="["&&t.value[t.value.length-1]==="]"){let n=t.value.slice(1,-1);if(n==="*")return{nodes:B(e.value)};if("dataType"in e&&e.dataType&&e.dataType!==n)continue;if("dataType"in e&&e.dataType)return{nodes:B(e.value)};if(Q(e.value,[n])!==null)return{nodes:B(e.value)}}}}function ye(e,r,i,t,n=""){let l=!1,o=nt(r,u=>i==null?t(u):u.startsWith("current")?t(J(u,i)):((u.startsWith("var(")||i.startsWith("var("))&&(l=!0),t(Hr(u,i))));function f(u){return n?L(u,",").map(c=>n+c).join(","):u}return l?[a(e,f(nt(r,t))),Z("@supports (color: lab(from red l a b))",[a(e,f(o))])]:[a(e,f(o))]}function yt(e,r,i,t,n=""){let l=!1,o=L(r,",").map(f=>nt(f,u=>i==null?t(u):u.startsWith("current")?t(J(u,i)):((u.startsWith("var(")||i.startsWith("var("))&&(l=!0),t(Hr(u,i))))).map(f=>`drop-shadow(${f})`).join(" ");return l?[a(e,n+L(r,",").map(f=>`drop-shadow(${nt(f,t)})`).join(" ")),Z("@supports (color: lab(from red l a b))",[a(e,n+o)])]:[a(e,n+o)]}var er={"--alpha":uo,"--spacing":co,"--theme":fo,theme:po};function uo(e,r,i,...t){let[n,l]=L(i,"/").map(o=>o.trim());if(!n||!l)throw new Error(`The --alpha(\u2026) function requires a color and an alpha value, e.g.: \`--alpha(${n||"var(--my-color)"} / ${l||"50%"})\``);if(t.length>0)throw new Error(`The --alpha(\u2026) function only accepts one argument, e.g.: \`--alpha(${n||"var(--my-color)"} / ${l||"50%"})\``);return J(n,l)}function co(e,r,i,...t){if(!i)throw new Error("The --spacing(\u2026) function requires an argument, but received none.");if(t.length>0)throw new Error(`The --spacing(\u2026) function only accepts a single argument, but received ${t.length+1}.`);let n=e.theme.resolve(null,["--spacing"]);if(!n)throw new Error("The --spacing(\u2026) function requires that the `--spacing` theme variable exists, but it was not found.");return`calc(${n} * ${i})`}function fo(e,r,i,...t){if(!i.startsWith("--"))throw new Error("The --theme(\u2026) function can only be used with CSS variables from your theme.");let n=!1;i.endsWith(" inline")&&(n=!0,i=i.slice(0,-7)),r.kind==="at-rule"&&(n=!0);let l=e.resolveThemeValue(i,n);if(!l){if(t.length>0)return t.join(", ");throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the variable name is correct or provide a fallback value to silence this error.`)}if(t.length===0)return l;let o=t.join(", ");if(o==="initial")return l;if(l==="initial")return o;if(l.startsWith("var(")||l.startsWith("theme(")||l.startsWith("--theme(")){let f=B(l);return go(f,o),H(f)}return l}function po(e,r,i,...t){i=mo(i);let n=e.resolveThemeValue(i);if(!n&&t.length>0)return t.join(", ");if(!n)throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the path is correct or provide a fallback value to silence this error.`);return n}var Xr=new RegExp(Object.keys(er).map(e=>`${e}\\(`).join("|"));function Fe(e,r){let i=0;return _(e,t=>{if(t.kind==="declaration"&&t.value&&Xr.test(t.value)){i|=8,t.value=ei(t.value,t,r);return}t.kind==="at-rule"&&(t.name==="@media"||t.name==="@custom-media"||t.name==="@container"||t.name==="@supports")&&Xr.test(t.params)&&(i|=8,t.params=ei(t.params,t,r))}),i}function ei(e,r,i){let t=B(e);return _(t,n=>{if(n.kind==="function"&&n.value in er){let l=L(H(n.nodes).trim(),",").map(f=>f.trim()),o=er[n.value](i,r,...l);return V.Replace(B(o))}}),H(t)}function mo(e){if(e[0]!=="'"&&e[0]!=='"')return e;let r="",i=e[0];for(let t=1;t<e.length-1;t++){let n=e[t],l=e[t+1];n==="\\"&&(l===i||l==="\\")?(r+=l,t++):r+=n}return r}function go(e,r){_(e,i=>{if(i.kind==="function"&&!(i.value!=="var"&&i.value!=="theme"&&i.value!=="--theme"))if(i.nodes.length===1)i.nodes.push({kind:"word",value:`, ${r}`});else{let t=i.nodes[i.nodes.length-1];t.kind==="word"&&t.value==="initial"&&(t.value=r)}})}function xt(e,r){let i=e.length,t=r.length,n=i<t?i:t;for(let l=0;l<n;l++){let o=e.charCodeAt(l),f=r.charCodeAt(l);if(o>=48&&o<=57&&f>=48&&f<=57){let u=l,c=l+1,m=l,d=l+1;for(o=e.charCodeAt(c);o>=48&&o<=57;)o=e.charCodeAt(++c);for(f=r.charCodeAt(d);f>=48&&f<=57;)f=r.charCodeAt(++d);let p=e.slice(u,c),k=r.slice(m,d),h=Number(p)-Number(k);if(h)return h;if(p<k)return-1;if(p>k)return 1;continue}if(o!==f)return o-f}return e.length-r.length}function ti(e){if(e[0]!=="["||e[e.length-1]!=="]")return null;let r=1,i=r,t=e.length-1;for(;We(e.charCodeAt(r));)r++;{for(i=r;r<t;r++){let m=e.charCodeAt(r);if(m===92){r++;continue}if(!(m>=65&&m<=90)&&!(m>=97&&m<=122)&&!(m>=48&&m<=57)&&!(m===45||m===95))break}if(i===r)return null}let n=e.slice(i,r);for(;We(e.charCodeAt(r));)r++;if(r===t)return{attribute:n,operator:null,quote:null,value:null,sensitivity:null};let l=null,o=e.charCodeAt(r);if(o===61)l="=",r++;else if((o===126||o===124||o===94||o===36||o===42)&&e.charCodeAt(r+1)===61)l=e[r]+"=",r+=2;else return null;for(;We(e.charCodeAt(r));)r++;if(r===t)return null;let f="",u=null;if(o=e.charCodeAt(r),o===39||o===34){u=e[r],r++,i=r;for(let m=r;m<t;m++){let d=e.charCodeAt(m);d===o?r=m+1:d===92&&m++}f=e.slice(i,r-1)}else{for(i=r;r<t&&!We(e.charCodeAt(r));)r++;f=e.slice(i,r)}for(;We(e.charCodeAt(r));)r++;if(r===t)return{attribute:n,operator:l,quote:u,value:f,sensitivity:null};let c=null;switch(e.charCodeAt(r)){case 105:case 73:{c="i",r++;break}case 115:case 83:{c="s",r++;break}default:return null}for(;We(e.charCodeAt(r));)r++;return r!==t?null:{attribute:n,operator:l,quote:u,value:f,sensitivity:c}}function We(e){switch(e){case 32:case 9:case 10:case 13:return!0;default:return!1}}function Be(e,r=null){return Array.isArray(e)&&e.length===2&&typeof e[1]=="object"&&typeof e[1]!==null?r?e[1][r]??null:e[0]:Array.isArray(e)&&r===null?e.join(", "):typeof e=="string"&&r===null?e:null}function ri(e,{theme:r},i){for(let t of i){let n=Ye([t]);n&&e.theme.clearNamespace(`--${n}`,4)}for(let[t,n]of vo(r)){if(typeof n!="string"&&typeof n!="number")continue;if(typeof n=="string"&&(n=n.replace(/<alpha-value>/g,"1")),t[0]==="opacity"&&(typeof n=="number"||typeof n=="string")){let o=typeof n=="string"?parseFloat(n):n;o>=0&&o<=1&&(n=o*100+"%")}let l=Ye(t);l&&e.theme.add(`--${l}`,""+n,7)}if(Object.hasOwn(r,"fontFamily")){let t=5;{let n=Be(r.fontFamily.sans);n&&e.theme.hasDefault("--font-sans")&&(e.theme.add("--default-font-family",n,t),e.theme.add("--default-font-feature-settings",Be(r.fontFamily.sans,"fontFeatureSettings")??"normal",t),e.theme.add("--default-font-variation-settings",Be(r.fontFamily.sans,"fontVariationSettings")??"normal",t))}{let n=Be(r.fontFamily.mono);n&&e.theme.hasDefault("--font-mono")&&(e.theme.add("--default-mono-font-family",n,t),e.theme.add("--default-mono-font-feature-settings",Be(r.fontFamily.mono,"fontFeatureSettings")??"normal",t),e.theme.add("--default-mono-font-variation-settings",Be(r.fontFamily.mono,"fontVariationSettings")??"normal",t))}}return r}function vo(e){let r=[];return ii(e,[],(i,t)=>{if(bo(i))return r.push([t,i]),1;if(xo(i)){r.push([t,i[0]]);for(let n of Reflect.ownKeys(i[1]))r.push([[...t,`-${n}`],i[1][n]]);return 1}if(Array.isArray(i)&&i.every(n=>typeof n=="string"))return t[0]==="fontSize"?(r.push([t,i[0]]),i.length>=2&&r.push([[...t,"-line-height"],i[1]])):r.push([t,i.join(", ")]),1}),r}var ko={borderWidth:"border-width",outlineWidth:"outline-width",ringColor:"ring-color",ringWidth:"ring-width",transitionDuration:"transition-duration",transitionTimingFunction:"transition-timing-function"},wo={animation:"animate",aspectRatio:"aspect",borderRadius:"radius",boxShadow:"shadow",colors:"color",containers:"container",fontFamily:"font",fontSize:"text",letterSpacing:"tracking",lineHeight:"leading",maxWidth:"container",screens:"breakpoint",transitionTimingFunction:"ease"},yo=/^[a-zA-Z0-9-_%/\.]+$/;function Ye(e){let r=ko[e[0]];if(r&&e[1]==="DEFAULT")return`default-${r}`;if(e[0]==="container")return null;for(let t of e)if(!yo.test(t))return null;let i=wo[e[0]];return i&&(e=e.slice(),e[0]=i),e.map((t,n,l)=>t==="1"&&n!==l.length-1?"":t).map((t,n)=>(t=t.replaceAll(".","_"),(n===0||t.startsWith("-")||t==="lineHeight")&&(t=t.replace(/([a-z])([A-Z])/g,(o,f,u)=>`${f}-${u.toLowerCase()}`)),t)).filter((t,n)=>t!=="DEFAULT"||n!==e.length-1).join("-")}function bo(e){return typeof e=="number"||typeof e=="string"}function xo(e){if(!Array.isArray(e)||e.length!==2||typeof e[0]!="string"&&typeof e[0]!="number"||e[1]===void 0||e[1]===null||typeof e[1]!="object")return!1;for(let r of Reflect.ownKeys(e[1]))if(typeof r!="string"||typeof e[1][r]!="string"&&typeof e[1][r]!="number")return!1;return!0}function ii(e,r=[],i){for(let t of Reflect.ownKeys(e)){let n=e[t];if(n==null)continue;let l=[...r,t],o=i(n,l)??0;if(o!==1){if(o===2)return 2;if(!(!Array.isArray(n)&&typeof n!="object")&&ii(n,l,i)===2)return 2}}}var Ao=/^(?<value>[-+]?(?:\d*\.)?\d+)(?<unit>[a-z]+|%)?$/i,_e=new U(e=>{let r=Ao.exec(e);if(!r)return null;let i=r.groups?.value;if(i===void 0)return null;let t=Number(i);if(Number.isNaN(t))return null;let n=r.groups?.unit;return n===void 0?[t,null]:[t,n]});function At(e,r=null){let i=!1,t=B(e);return _(t,{exit(n){if(n.kind==="word"&&n.value!=="0"){let l=Co(n.value,r);return l===null||l===n.value?void 0:(i=!0,V.ReplaceSkip(oe(l)))}else if(n.kind==="function"&&(n.value==="calc"||n.value==="")){if(n.nodes.length!==5)return;let l=_e.get(n.nodes[0].value),o=n.nodes[2].value,f=_e.get(n.nodes[4].value);if(o==="*"&&(l?.[0]===0&&l?.[1]===null||f?.[0]===0&&f?.[1]===null))return i=!0,V.ReplaceSkip(oe("0"));if(l===null||f===null)return;switch(o){case"*":{if(l[1]===f[1]||l[1]===null&&f[1]!==null||l[1]!==null&&f[1]===null)return i=!0,V.ReplaceSkip(oe(`${l[0]*f[0]}${l[1]??""}`));break}case"+":{if(l[1]===f[1])return i=!0,V.ReplaceSkip(oe(`${l[0]+f[0]}${l[1]??""}`));break}case"-":{if(l[1]===f[1])return i=!0,V.ReplaceSkip(oe(`${l[0]-f[0]}${l[1]??""}`));break}case"/":{if(f[0]!==0&&(l[1]===null&&f[1]===null||l[1]!==null&&f[1]===null))return i=!0,V.ReplaceSkip(oe(`${l[0]/f[0]}${l[1]??""}`));break}}}}}),i?H(t):e}function Co(e,r=null){let i=_e.get(e);if(i===null)return null;let[t,n]=i;if(n===null)return`${t}`;if(t===0&&je(e))return"0";switch(n.toLowerCase()){case"in":return`${t*96}px`;case"cm":return`${t*96/2.54}px`;case"mm":return`${t*96/2.54/10}px`;case"q":return`${t*96/2.54/10/4}px`;case"pc":return`${t*96/6}px`;case"pt":return`${t*96/72}px`;case"rem":return r!==null?`${t*r}px`:null;case"grad":return`${t*.9}deg`;case"rad":return`${t*180/Math.PI}deg`;case"turn":return`${t*360}deg`;case"ms":return`${t/1e3}s`;case"khz":return`${t*1e3}hz`;default:return`${t}${n}`}}function ni(e,r="top",i="right",t="bottom",n="left"){return si(`${e}-${r}`,`${e}-${i}`,`${e}-${t}`,`${e}-${n}`)}function si(e="top",r="right",i="bottom",t="left"){return{1:[[e,0],[r,0],[i,0],[t,0]],2:[[e,0],[r,1],[i,0],[t,1]],3:[[e,0],[r,1],[i,2],[t,1]],4:[[e,0],[r,1],[i,2],[t,3]]}}function Ie(e,r){return{1:[[e,0],[r,0]],2:[[e,0],[r,1]]}}var oi={inset:si(),margin:ni("margin"),padding:ni("padding"),gap:Ie("row-gap","column-gap")},ai={"inset-block":Ie("top","bottom"),"inset-inline":Ie("left","right"),"margin-block":Ie("margin-top","margin-bottom"),"margin-inline":Ie("margin-left","margin-right"),"padding-block":Ie("padding-top","padding-bottom"),"padding-inline":Ie("padding-left","padding-right")},li={"border-block":["border-bottom","border-top"],"border-block-color":["border-bottom-color","border-top-color"],"border-block-style":["border-bottom-style","border-top-style"],"border-block-width":["border-bottom-width","border-top-width"],"border-inline":["border-left","border-right"],"border-inline-color":["border-left-color","border-right-color"],"border-inline-style":["border-left-style","border-right-style"],"border-inline-width":["border-left-width","border-right-width"]};function ui(e,r){if(r&2){if(e.property in ai){let i=L(e.value," ");return ai[e.property][i.length]?.map(([t,n])=>a(t,i[n],e.important))}if(e.property in li)return li[e.property]?.map(i=>a(i,e.value,e.important))}if(e.property in oi){let i=L(e.value," ");return oi[e.property][i.length]?.map(([t,n])=>a(t,i[n],e.important))}return null}function So(e){return{kind:"combinator",value:e}}function $o(e,r){return{kind:"function",value:e,nodes:r}}function Se(e){return{kind:"selector",value:e}}function To(e){return{kind:"separator",value:e}}function Eo(e){return{kind:"value",value:e}}function me(e){let r="";for(let i of e)switch(i.kind){case"combinator":case"selector":case"separator":case"value":{r+=i.value;break}case"function":r+=i.value+"("+me(i.nodes)+")"}return r}var ci=92,No=93,fi=41,Vo=58,pi=44,Ro=34,Oo=46,di=62,mi=10,Po=35,gi=91,hi=40,vi=43,_o=39,ki=32,wi=9,yi=126,Io=38,Do=42;function De(e){e=e.replaceAll(`\r
+`,`
+`);let r=[],i=[],t=null,n="",l;for(let o=0;o<e.length;o++){let f=e.charCodeAt(o);switch(f){case pi:case di:case mi:case ki:case vi:case wi:case yi:{if(n.length>0){let p=Se(n);t?t.nodes.push(p):r.push(p),n=""}let u=o,c=o+1;for(;c<e.length&&(l=e.charCodeAt(c),!(l!==pi&&l!==di&&l!==mi&&l!==ki&&l!==vi&&l!==wi&&l!==yi));c++);o=c-1;let m=e.slice(u,c),d=m.trim()===","?To(m):So(m);t?t.nodes.push(d):r.push(d);break}case hi:{let u=$o(n,[]);if(n="",u.value!==":not"&&u.value!==":where"&&u.value!==":has"&&u.value!==":is"){let c=o+1,m=0;for(let p=o+1;p<e.length;p++){if(l=e.charCodeAt(p),l===hi){m++;continue}if(l===fi){if(m===0){o=p;break}m--}}let d=o;u.nodes.push(Eo(e.slice(c,d))),n="",o=d,t?t.nodes.push(u):r.push(u);break}t?t.nodes.push(u):r.push(u),i.push(u),t=u;break}case fi:{let u=i.pop();if(n.length>0){let c=Se(n);u.nodes.push(c),n=""}i.length>0?t=i[i.length-1]:t=null;break}case Oo:case Vo:case Po:{if(n.length>0){let u=Se(n);t?t.nodes.push(u):r.push(u)}n=e[o];break}case gi:{if(n.length>0){let m=Se(n);t?t.nodes.push(m):r.push(m)}n="";let u=o,c=0;for(let m=o+1;m<e.length;m++){if(l=e.charCodeAt(m),l===gi){c++;continue}if(l===No){if(c===0){o=m;break}c--}}n+=e.slice(u,o+1);break}case _o:case Ro:{let u=o;for(let c=o+1;c<e.length;c++)if(l=e.charCodeAt(c),l===ci)c+=1;else if(l===f){o=c;break}n+=e.slice(u,o+1);break}case Io:case Do:{if(n.length>0){let u=Se(n);t?t.nodes.push(u):r.push(u),n=""}t?t.nodes.push(Se(e[o])):r.push(Se(e[o]));break}case ci:{n+=e[o]+e[o+1],o+=1;break}default:n+=e[o]}}return n.length>0&&r.push(Se(n)),r}function ce(e,r){for(let i in e)delete e[i];return Object.assign(e,r)}function Ue(e){let r=[];for(let i of L(e,".")){if(!i.includes("[")){r.push(i);continue}let t=0;for(;;){let n=i.indexOf("[",t),l=i.indexOf("]",n);if(n===-1||l===-1)break;n>t&&r.push(i.slice(t,n)),r.push(i.slice(n+1,l)),t=l+1}t<=i.length-1&&r.push(i.slice(t))}return r}function tr(e,r){let i=e;return i.storage[Ci]??=Uo(),i.storage[Si]??=Ko(i),i.storage[$i]??=jo(),i.storage[Ti]??=Wo(),i.storage[Ei]??=Yo(),i.storage[ir]??=Qo(i),i.storage[$t]??=ea(i,r),i.storage[ge]??=pa(i),i.storage[nr]??=ma(),i.storage[Tt]??=ga(i),i.storage[or]??=ha(i),i.storage[Nt]??=va(i),i.storage[Ri]??=ka(i),i}var Ci=Symbol();function Uo(){return new U(e=>new U(r=>({rem:e,features:r})))}function Lo(e,r){let i=0;return r?.collapse&&(i|=1),r?.logicalToPhysical&&(i|=2),tr(e,r).storage[Ci].get(r?.rem??null).get(i)}var Si=Symbol();function Ko(e){return new U(r=>new U(i=>({features:i,designSystem:e,signatureOptions:r})))}function zo(e,r,i){let t=0;return i?.collapse&&(t|=1),tr(e).storage[Si].get(r).get(t)}function rr(e,r,i){let t=Lo(e,i),n=zo(e,t,i),l=tr(e),o=new Set,f=l.storage[$i].get(n);for(let u of r)o.add(f.get(u));return o.size<=1||!(n.features&1)?Array.from(o):Mo(n,Array.from(o))}function Mo(e,r){if(r.length<=1)return r;let i=e.designSystem,t=new U(f=>new U(u=>new Set)),n=e.designSystem.theme.prefix?`${e.designSystem.theme.prefix}:`:"";for(let f of r){let u=L(f,":"),c=u.pop(),m=c.endsWith("!");m&&(c=c.slice(0,-1));let d=u.length>0?`${u.join(":")}:`:"",p=m?"!":"";t.get(d).get(p).add(`${n}${c}`)}let l=new Set;for(let[f,u]of t.entries())for(let[c,m]of u.entries())for(let d of o(Array.from(m)))n&&d.startsWith(n)&&(d=d.slice(n.length)),l.add(`${f}${d}${c}`);return Array.from(l);function o(f){let u=e.signatureOptions,c=i.storage[Tt].get(u),m=i.storage[nr].get(u),d=f.map(S=>c.get(S));if(d.some(S=>S.has("line-height"))){let S=i.theme.keysInNamespaces(["--text"]);if(S.length>0){let A=new Set,y=new Set;for(let N of d)for(let P of N.get("line-height")){if(y.has(P))continue;y.add(P);let z=i.storage[$t]?.get(P)??null;if(z!==null)if(ne(z)){A.add(z);for(let I of S)c.get(`text-${I}/${z}`)}else{A.add(P);for(let I of S)c.get(`text-${I}/[${P}]`)}}let K=new Set;for(let N of d)for(let P of N.get("font-size"))if(!K.has(P)){K.add(P);for(let z of A)ne(z)?c.get(`text-[${P}]/${z}`):c.get(`text-[${P}]/[${z}]`)}}}let p=d.map(S=>{let A=null;for(let y of S.keys()){let K=new Set;for(let N of m.get(y).values())for(let P of N)K.add(P);if(A===null?A=K:A=Ai(A,K),A.size===0)return A}return A}),k=new U(S=>new Set([S]));for(let S=0;S<p.length;S++){let A=p[S];for(let y=S+1;y<p.length;y++){let K=p[y];for(let N of A)if(K.has(N)){k.get(S).add(y),k.get(y).add(S);break}}}if(k.size===0)return f;let h=new U(S=>S.split(",").map(Number));for(let S of k.values()){let A=Array.from(S).sort((y,K)=>y-K);h.get(A.join(","))}let w=new Set(f),x=new Set;for(let S of h.values())for(let A of ya(S)){if(A.some(N=>x.has(f[N])))continue;let y=A.flatMap(N=>p[N]).reduce(Ai),K=i.storage[ge].get(u).get(A.map(N=>f[N]).sort((N,P)=>N.localeCompare(P)).join(" "));for(let N of y)if(i.storage[ge].get(u).get(N)===K){for(let z of A)x.add(f[z]);w.add(N);break}}for(let S of x)w.delete(S);return Array.from(w)}}var $i=Symbol();function jo(){return new U(e=>{let r=e.designSystem,i=r.theme.prefix?`${r.theme.prefix}:`:"",t=r.storage[Ti].get(e),n=r.storage[Ei].get(e);return new U((l,o)=>{for(let f of r.parseCandidate(l)){let u=f.variants.slice().reverse().flatMap(d=>t.get(d)),c=f.important;if(c||u.length>0){let p=o.get(r.printCandidate({...f,variants:[],important:!1}));return r.theme.prefix!==null&&u.length>0&&(p=p.slice(i.length)),u.length>0&&(p=`${u.map(k=>r.printVariant(k)).join(":")}:${p}`),c&&(p+="!"),r.theme.prefix!==null&&u.length>0&&(p=`${i}${p}`),p}let m=n.get(l);if(m!==l)return m}return l})})}var Fo=[Zo,ua,ca,aa],Ti=Symbol();function Wo(){return new U(e=>new U(r=>{let i=[r];for(let t of Fo)for(let n of i.splice(0)){let l=t(Me(n),e);if(Array.isArray(l)){i.push(...l);continue}else i.push(l)}return i}))}var Bo=[Go,Ho,ta,ia,oa,la,sa,fa],Ei=Symbol();function Yo(){return new U(e=>{let r=e.designSystem;return new U(i=>{for(let t of r.parseCandidate(i)){let n=Lr(t);for(let o of Bo)n=o(n,e);let l=r.printCandidate(n);if(i!==l)return l}return i})})}var qo=["t","tr","r","br","b","bl","l","tl"];function Go(e){if(e.kind==="static"&&e.root.startsWith("bg-gradient-to-")){let r=e.root.slice(15);return qo.includes(r)&&(e.root=`bg-linear-to-${r}`),e}return e}function Ho(e,r){let i=r.designSystem.storage[ir];if(e.kind==="arbitrary"){let[t,n]=i(e.value,e.modifier===null?1:0);t!==e.value&&(e.value=t,n!==null&&(e.modifier=n))}else if(e.kind==="functional"&&e.value?.kind==="arbitrary"){let[t,n]=i(e.value.value,e.modifier===null?1:0);t!==e.value.value&&(e.value.value=t,n!==null&&(e.modifier=n))}return e}function Zo(e,r){let i=r.designSystem.storage[ir],t=Et(e);for(let[n]of t)if(n.kind==="arbitrary"){let[l]=i(n.selector,2);l!==n.selector&&(n.selector=l)}else if(n.kind==="functional"&&n.value?.kind==="arbitrary"){let[l]=i(n.value.value,2);l!==n.value.value&&(n.value.value=l)}return e}var ir=Symbol();function Qo(e){return r(e);function r(i){function t(f,u=0){let c=B(f);if(u&2)return[Ct(c,o),null];let m=0,d=0;if(_(c,h=>{h.kind==="function"&&h.value==="theme"&&(m+=1,_(h.nodes,w=>w.kind==="separator"&&w.value.includes(",")?V.Stop:w.kind==="word"&&w.value==="/"?(d+=1,V.Stop):V.Skip))}),m===0)return[f,null];if(d===0)return[Ct(c,l),null];if(d>1)return[Ct(c,o),null];let p=null;return[Ct(c,(h,w)=>{let x=L(h,"/").map(S=>S.trim());if(x.length>2)return null;if(c.length===1&&x.length===2&&u&1){let[S,A]=x;if(/^\d+%$/.test(A))p={kind:"named",value:A.slice(0,-1)};else if(/^0?\.\d+$/.test(A)){let y=Number(A)*100;p={kind:Number.isInteger(y)?"named":"arbitrary",value:y.toString()}}else p={kind:"arbitrary",value:A};h=S}return l(h,w)||o(h,w)}),p]}function n(f,u=!0){let c=`--${Ye(Ue(f))}`;return i.theme.get([c])?u&&i.theme.prefix?`--${i.theme.prefix}-${c.slice(2)}`:c:null}function l(f,u){let c=n(f);if(c)return u?`var(${c}, ${u})`:`var(${c})`;let m=Ue(f);if(m[0]==="spacing"&&i.theme.get(["--spacing"])){let d=m[1];return ne(d)?`--spacing(${d})`:null}return null}function o(f,u){let c=L(f,"/").map(p=>p.trim());f=c.shift();let m=n(f,!1);if(!m)return null;let d=c.length>0?`/${c.join("/")}`:"";return u?`--theme(${m}${d}, ${u})`:`--theme(${m}${d})`}return t}}function Ct(e,r){return _(e,(i,t)=>{if(i.kind==="function"&&i.value==="theme"){if(i.nodes.length<1)return;i.nodes[0].kind==="separator"&&i.nodes[0].value.trim()===""&&i.nodes.shift();let n=i.nodes[0];if(n.kind!=="word")return;let l=n.value,o=1;for(let c=o;c<i.nodes.length&&!i.nodes[c].value.includes(",");c++)l+=H([i.nodes[c]]),o=c+1;l=Jo(l);let f=i.nodes.slice(o+1),u=f.length>0?r(l,H(f)):r(l);if(u===null)return;if(t.parent){let c=t.parent.nodes.indexOf(i)-1;for(;c!==-1;){let m=t.parent.nodes[c];if(m.kind==="separator"&&m.value.trim()===""){c-=1;continue}/^[-+*/]$/.test(m.value.trim())&&(u=`(${u})`);break}}return V.Replace(B(u))}}),H(e)}function Jo(e){if(e[0]!=="'"&&e[0]!=='"')return e;let r="",i=e[0];for(let t=1;t<e.length-1;t++){let n=e[t],l=e[t+1];n==="\\"&&(l===i||l==="\\")?(r+=l,t++):r+=n}return r}function*Et(e){function*r(i,t=null){yield[i,t],i.kind==="compound"&&(yield*r(i.variant,i))}yield*r(e,null)}function be(e,r){return e.parseCandidate(e.theme.prefix&&!r.startsWith(`${e.theme.prefix}:`)?`${e.theme.prefix}:${r}`:r)}function Xo(e,r){let i=e.printCandidate(r);return e.theme.prefix&&i.startsWith(`${e.theme.prefix}:`)?i.slice(e.theme.prefix.length+1):i}var $t=Symbol();function ea(e,r){let i=e.resolveThemeValue("--spacing");if(i===void 0)return null;i=At(i,r?.rem??null);let t=_e.get(i);if(!t)return null;let[n,l]=t;return new U(o=>{if(n===0)return null;let f=_e.get(At(o,r?.rem??null));if(!f)return null;let[u,c]=f;return c!==l?null:u/n})}function ta(e,r){if(e.kind!=="arbitrary"&&!(e.kind==="functional"&&e.value?.kind==="arbitrary"))return e;let i=r.designSystem,t=i.storage[or].get(r.signatureOptions),n=i.storage[ge].get(r.signatureOptions),l=i.printCandidate(e),o=n.get(l);if(typeof o!="string")return e;for(let u of f(o,e)){let c=i.printCandidate(u);if(n.get(c)===o&&ra(i,e,u))return u}return e;function*f(u,c){let m=t.get(u);if(!(m.length>1)){if(m.length===0&&c.modifier){let d={...c,modifier:null},p=n.get(i.printCandidate(d));if(typeof p=="string")for(let k of f(p,d))yield Object.assign({},k,{modifier:c.modifier})}if(m.length===1)for(let d of be(i,m[0]))yield d;else if(m.length===0){let d=c.kind==="arbitrary"?c.value:c.value?.value??null;if(d===null)return;if(r.signatureOptions.rem!==null&&c.kind==="functional"&&c.value?.kind==="arbitrary"){let h=i.storage[$t]?.get(d)??null;h!==null&&ne(h)&&(yield Object.assign({},c,{value:{kind:"named",value:h,fraction:null}}))}let p=i.storage[$t]?.get(d)??null,k="";p!==null&&p<0&&(k="-",p=Math.abs(p));for(let h of Array.from(i.utilities.keys("functional")).sort((w,x)=>+(w[0]==="-")-+(x[0]==="-"))){k&&(h=`${k}${h}`);for(let w of be(i,`${h}-${d}`))yield w;if(c.modifier)for(let w of be(i,`${h}-${d}${c.modifier}`))yield w;if(p!==null){for(let w of be(i,`${h}-${p}`))yield w;if(c.modifier)for(let w of be(i,`${h}-${p}${it(c.modifier)}`))yield w}for(let w of be(i,`${h}-[${d}]`))yield w;if(c.modifier)for(let w of be(i,`${h}-[${d}]${it(c.modifier)}`))yield w}}}}}function ra(e,r,i){let t=null;if(r.kind==="functional"&&r.value?.kind==="arbitrary"&&r.value.value.includes("var(--")?t=r.value.value:r.kind==="arbitrary"&&r.value.includes("var(--")&&(t=r.value),t===null)return!0;let n=e.candidatesToCss([e.printCandidate(i)]).join(`
+`),l=!0;return _(B(t),o=>{if(o.kind==="function"&&o.value==="var"){let f=o.nodes[0].value;if(!new RegExp(`var\\(${f}[,)]\\s*`,"g").test(n)||n.includes(`${f}:`))return l=!1,V.Stop}}),l}function ia(e,r){if(e.kind!=="functional"||e.value?.kind!=="named")return e;let i=r.designSystem,t=i.storage[or].get(r.signatureOptions),n=i.storage[ge].get(r.signatureOptions),l=i.printCandidate(e),o=n.get(l);if(typeof o!="string")return e;for(let u of f(o,e)){let c=i.printCandidate(u);if(n.get(c)===o)return u}return e;function*f(u,c){let m=t.get(u);if(!(m.length>1)){if(m.length===0&&c.modifier){let d={...c,modifier:null},p=n.get(i.printCandidate(d));if(typeof p=="string")for(let k of f(p,d))yield Object.assign({},k,{modifier:c.modifier})}if(m.length===1)for(let d of be(i,m[0]))yield d}}}var na=new Map([["order-none","order-0"],["break-words","wrap-break-word"]]);function oa(e,r){let i=r.designSystem,t=i.storage[ge].get(r.signatureOptions),n=Xo(i,e),l=na.get(n)??null;if(l===null)return e;let o=t.get(n);if(typeof o!="string")return e;let f=t.get(l);if(typeof f!="string"||o!==f)return e;let[u]=be(i,l);return u}function aa(e,r){let i=r.designSystem,t=i.storage[Nt],n=i.storage[Ri],l=Et(e);for(let[o]of l){if(o.kind==="compound")continue;let f=i.printVariant(o),u=t.get(f);if(typeof u!="string")continue;let c=n.get(u);if(c.length!==1)continue;let m=c[0],d=i.parseVariant(m);d!==null&&ce(o,d)}return e}function la(e,r){let i=r.designSystem,t=i.storage[ge].get(r.signatureOptions);if(e.kind==="functional"&&e.value?.kind==="arbitrary"&&e.value.dataType!==null){let n=i.printCandidate({...e,value:{...e.value,dataType:null}});t.get(i.printCandidate(e))===t.get(n)&&(e.value.dataType=null)}return e}function sa(e,r){if(e.kind!=="functional"||e.value?.kind!=="arbitrary")return e;let i=r.designSystem,t=i.storage[ge].get(r.signatureOptions),n=t.get(i.printCandidate(e));if(n===null)return e;for(let l of Ni(e))if(t.get(i.printCandidate({...e,value:l}))===n)return e.value=l,e;return e}function ua(e){let r=Et(e);for(let[i]of r)if(i.kind==="functional"&&i.root==="data"&&i.value?.kind==="arbitrary"&&!i.value.value.includes("="))i.value={kind:"named",value:i.value.value};else if(i.kind==="functional"&&i.root==="aria"&&i.value?.kind==="arbitrary"&&(i.value.value.endsWith("=true")||i.value.value.endsWith('="true"')||i.value.value.endsWith("='true'"))){let[t,n]=L(i.value.value,"=");if(t[t.length-1]==="~"||t[t.length-1]==="|"||t[t.length-1]==="^"||t[t.length-1]==="$"||t[t.length-1]==="*")continue;i.value={kind:"named",value:i.value.value.slice(0,i.value.value.indexOf("="))}}else i.kind==="functional"&&i.root==="supports"&&i.value?.kind==="arbitrary"&&/^[a-z-][a-z0-9-]*$/i.test(i.value.value)&&(i.value={kind:"named",value:i.value.value});return e}function*Ni(e,r=e.value?.value??"",i=new Set){if(i.has(r))return;if(i.add(r),yield{kind:"named",value:r,fraction:null},r.endsWith("%")&&ne(r.slice(0,-1))&&(yield{kind:"named",value:r.slice(0,-1),fraction:null}),r.includes("/")){let[l,o]=r.split("/");O(l)&&O(o)&&(yield{kind:"named",value:l,fraction:`${l}/${o}`})}let t=new Set;for(let l of r.matchAll(/(\d+\/\d+)|(\d+\.?\d+)/g))t.add(l[0].trim());let n=Array.from(t).sort((l,o)=>l.length-o.length);for(let l of n)yield*Ni(e,l,i)}function xi(e){return!e.some(r=>r.kind==="separator"&&r.value.trim()===",")}function St(e){let r=e.value.trim();return e.kind==="selector"&&r[0]==="["&&r[r.length-1]==="]"}function ca(e,r){let i=[e],t=r.designSystem,n=t.storage[Nt],l=Et(e);for(let[o,f]of l)if(o.kind==="compound"&&(o.root==="has"||o.root==="not"||o.root==="in")&&o.modifier!==null&&"modifier"in o.variant&&(o.variant.modifier=o.modifier,o.modifier=null),o.kind==="arbitrary"){if(o.relative)continue;let u=De(o.selector.trim());if(!xi(u))continue;if(f===null&&u.length===3&&u[0].kind==="selector"&&u[0].value==="&"&&u[1].kind==="combinator"&&u[1].value.trim()===">"&&u[2].kind==="selector"&&u[2].value==="*"){ce(o,t.parseVariant("*"));continue}if(f===null&&u.length===3&&u[0].kind==="selector"&&u[0].value==="&"&&u[1].kind==="combinator"&&u[1].value.trim()===""&&u[2].kind==="selector"&&u[2].value==="*"){ce(o,t.parseVariant("**"));continue}if(f===null&&u.length===3&&u[1].kind==="combinator"&&u[1].value.trim()===""&&u[2].kind==="selector"&&u[2].value==="&"){u.pop(),u.pop(),ce(o,t.parseVariant(`in-[${me(u)}]`));continue}if(f===null&&u[0].kind==="selector"&&(u[0].value==="@media"||u[0].value==="@supports")){let p=n.get(t.printVariant(o)),k=B(me(u)),h=!1;if(_(k,w=>{if(w.kind==="word"&&w.value==="not")return h=!0,V.Replace([])}),k=B(H(k)),_(k,w=>{w.kind==="separator"&&w.value!==" "&&w.value.trim()===""&&(w.value=" ")}),h){let w=t.parseVariant(`not-[${H(k)}]`);if(w===null)continue;let x=n.get(t.printVariant(w));if(p===x){ce(o,w);continue}}}let c=null;f===null&&u.length===3&&u[0].kind==="selector"&&u[0].value.trim()==="&"&&u[1].kind==="combinator"&&u[1].value.trim()===">"&&u[2].kind==="selector"&&(St(u[2])||u[2].value[0]===":")&&(u=[u[2]],c=t.parseVariant("*")),f===null&&u.length===3&&u[0].kind==="selector"&&u[0].value.trim()==="&"&&u[1].kind==="combinator"&&u[1].value.trim()===""&&u[2].kind==="selector"&&(St(u[2])||u[2].value[0]===":")&&(u=[u[2]],c=t.parseVariant("**"));let m=u.filter(p=>!(p.kind==="selector"&&p.value.trim()==="&"));if(m.length!==1)continue;let d=m[0];if(d.kind==="function"&&d.value===":is"){if(!xi(d.nodes)||d.nodes.length!==1||!St(d.nodes[0]))continue;d=d.nodes[0]}if(d.kind==="function"&&d.value[0]===":"||d.kind==="selector"&&d.value[0]===":"){let p=d,k=!1;if(p.kind==="function"&&p.value===":not"){if(k=!0,p.nodes.length!==1||p.nodes[0].kind!=="selector"&&p.nodes[0].kind!=="function"||p.nodes[0].value[0]!==":")continue;p=p.nodes[0]}let h=(x=>{if(x===":nth-child"&&p.kind==="function"&&p.nodes.length===1&&p.nodes[0].kind==="value"&&p.nodes[0].value==="odd")return k?(k=!1,"even"):"odd";if(x===":nth-child"&&p.kind==="function"&&p.nodes.length===1&&p.nodes[0].kind==="value"&&p.nodes[0].value==="even")return k?(k=!1,"odd"):"even";for(let[S,A]of[[":nth-child","nth"],[":nth-last-child","nth-last"],[":nth-of-type","nth-of-type"],[":nth-last-of-type","nth-of-last-type"]])if(x===S&&p.kind==="function"&&p.nodes.length===1)return p.nodes.length===1&&p.nodes[0].kind==="value"&&O(p.nodes[0].value)?`${A}-${p.nodes[0].value}`:`${A}-[${me(p.nodes)}]`;if(k){let S=n.get(t.printVariant(o)),A=n.get(`not-[${x}]`);if(S===A)return`[&${x}]`}return null})(p.value);if(h===null){if(c)return ce(o,{kind:"arbitrary",selector:d.value,relative:!1}),[c,o];continue}k&&(h=`not-${h}`);let w=t.parseVariant(h);if(w===null)continue;ce(o,w)}else if(St(d)){let p=ti(d.value);if(p===null)continue;if(p.attribute.startsWith("data-")){let k=p.attribute.slice(5);ce(o,{kind:"functional",root:"data",modifier:null,value:p.value===null?{kind:"named",value:k}:{kind:"arbitrary",value:`${k}${p.operator}${p.quote??""}${p.value}${p.quote??""}${p.sensitivity?` ${p.sensitivity}`:""}`}})}else if(p.attribute.startsWith("aria-")){let k=p.attribute.slice(5);ce(o,{kind:"functional",root:"aria",modifier:null,value:p.value===null?{kind:"arbitrary",value:k}:p.operator==="="&&p.value==="true"&&p.sensitivity===null?{kind:"named",value:k}:{kind:"arbitrary",value:`${p.attribute}${p.operator}${p.quote??""}${p.value}${p.quote??""}${p.sensitivity?` ${p.sensitivity}`:""}`}})}else ce(o,{kind:"arbitrary",selector:d.value,relative:!1})}if(c)return[c,o]}return i}function fa(e,r){if(e.kind!=="functional"&&e.kind!=="arbitrary"||e.modifier===null)return e;let i=r.designSystem,t=i.storage[ge].get(r.signatureOptions),n=t.get(i.printCandidate(e)),l=e.modifier;if(n===t.get(i.printCandidate({...e,modifier:null})))return e.modifier=null,e;{let o={kind:"named",value:l.value.endsWith("%")?l.value.includes(".")?`${Number(l.value.slice(0,-1))}`:l.value.slice(0,-1):l.value,fraction:null};if(n===t.get(i.printCandidate({...e,modifier:o})))return e.modifier=o,e}{let o={kind:"named",value:`${parseFloat(l.value)*100}`,fraction:null};if(n===t.get(i.printCandidate({...e,modifier:o})))return e.modifier=o,e}return e}var ge=Symbol();function pa(e){return new U(r=>new U(i=>{try{i=e.theme.prefix&&!i.startsWith(e.theme.prefix)?`${e.theme.prefix}:${i}`:i;let t=[q(".x",[F("@apply",i)])];return wa(e,()=>{for(let l of e.parseCandidate(i))e.compileAstNodes(l,1);$e(t,e)}),Vi(e,t,r),ie(t)}catch{return Symbol()}}))}function Vi(e,r,i){let{rem:t}=i;return _(r,{enter(n,l){if(n.kind==="declaration"){if(n.value===void 0||n.property==="--tw-sort")return V.Replace([]);if(n.property.startsWith("--tw-")&&(l.parent?.nodes??[]).some(o=>o.kind==="declaration"&&n.value===o.value&&n.important===o.important&&!o.property.startsWith("--tw-")))return V.Replace([]);if(i.features&1){let o=ui(n,i.features);if(o)return V.Replace(o)}n.value.includes("var(")&&(n.value=da(n.value,e)),n.value=At(n.value,t),n.value=Ce(n.value)}else{if(n.kind==="context"||n.kind==="at-root")return V.Replace(n.nodes);if(n.kind==="comment")return V.Replace([]);if(n.kind==="at-rule"&&n.name==="@property")return V.Replace([])}},exit(n){if(n.kind==="rule"||n.kind==="at-rule"){if(n.nodes.length>1){let l=new Set;for(let o=n.nodes.length-1;o>=0;o--){let f=n.nodes[o];f.kind==="declaration"&&f.value!==void 0&&(l.has(f.property)&&n.nodes.splice(o,1),l.add(f.property))}}n.nodes.sort((l,o)=>l.kind!=="declaration"||o.kind!=="declaration"?0:l.property.localeCompare(o.property))}}}),r}function da(e,r){let i=!1,t=B(e),n=new Set;return _(t,l=>{if(l.kind!=="function"||l.value!=="var"||l.nodes.length!==1&&l.nodes.length<3)return;let o=l.nodes[0].value;r.theme.prefix&&o.startsWith(`--${r.theme.prefix}-`)&&(o=o.slice(`--${r.theme.prefix}-`.length));let f=r.resolveThemeValue(o);if(!n.has(o)&&(n.add(o),f!==void 0&&(l.nodes.length===1&&(i=!0,l.nodes.push(...B(`,${f}`))),l.nodes.length>=3))){let u=H(l.nodes),c=`${l.nodes[0].value},${f}`;if(u===c)return i=!0,V.Replace(B(f))}}),i?H(t):e}var nr=Symbol();function ma(){return new U(e=>new U(r=>new U(i=>new Set)))}var Tt=Symbol();function ga(e){return new U(r=>new U(i=>{let t=new U(l=>new Set);e.theme.prefix&&!i.startsWith(e.theme.prefix)&&(i=`${e.theme.prefix}:${i}`);let n=e.parseCandidate(i);return n.length===0||_(Vi(e,e.compileAstNodes(n[0]).map(l=>ee(l.node)),r),l=>{l.kind==="declaration"&&(t.get(l.property).add(l.value),e.storage[nr].get(r).get(l.property).get(l.value).add(i))}),t}))}var or=Symbol();function ha(e){return new U(r=>{let i=e.storage[ge].get(r),t=new U(()=>[]);for(let[n,l]of e.getClassList()){let o=i.get(n);if(typeof o=="string"){if(n[0]==="-"&&n.endsWith("-0")){let f=i.get(n.slice(1));if(typeof f=="string"&&o===f)continue}t.get(o).push(n),e.storage[Tt].get(r).get(n);for(let f of l.modifiers){if(ne(f))continue;let u=`${n}/${f}`,c=i.get(u);typeof c=="string"&&(t.get(c).push(u),e.storage[Tt].get(r).get(u))}}}return t})}var Nt=Symbol();function va(e){return new U(r=>{try{r=e.theme.prefix&&!r.startsWith(e.theme.prefix)?`${e.theme.prefix}:${r}`:r;let i=[q(".x",[F("@apply",`${r}:flex`)])];return $e(i,e),_(i,n=>{if(n.kind==="at-rule"&&n.params.includes(" "))n.params=n.params.replaceAll(" ","");else if(n.kind==="rule"){let l=De(n.selector),o=!1;_(l,f=>{if(f.kind==="separator"&&f.value!==" ")f.value=f.value.trim(),o=!0;else if(f.kind==="function"&&f.value===":is"){if(f.nodes.length===1)return o=!0,V.Replace(f.nodes);if(f.nodes.length===2&&f.nodes[0].kind==="selector"&&f.nodes[0].value==="*"&&f.nodes[1].kind==="selector"&&f.nodes[1].value[0]===":")return o=!0,V.Replace(f.nodes[1])}else f.kind==="function"&&f.value[0]===":"&&f.nodes[0]?.kind==="selector"&&f.nodes[0]?.value[0]===":"&&(o=!0,f.nodes.unshift({kind:"selector",value:"*"}))}),o&&(n.selector=me(l))}}),ie(i)}catch{return Symbol()}})}var Ri=Symbol();function ka(e){let r=e.storage[Nt],i=new U(()=>[]);for(let[t,n]of e.variants.entries())if(n.kind==="static"){let l=r.get(t);if(typeof l!="string")continue;i.get(l).push(t)}return i}function wa(e,r){let i=e.theme.values.get,t=new Set;e.theme.values.get=n=>{let l=i.call(e.theme.values,n);return l===void 0||l.options&1&&(t.add(l),l.options&=-2),l};try{return r()}finally{e.theme.values.get=i;for(let n of t)n.options|=1}}function*ya(e){let r=e.length,i=1n<<BigInt(r);for(let t=r;t>=2;t--){let n=(1n<<BigInt(t))-1n;for(;n<i;){let l=[];for(let u=0;u<r;u++)n>>BigInt(u)&1n&&l.push(e[u]);yield l;let o=n&-n,f=n+o;n=((f^n)>>2n)/o|f}}}function Ai(e,r){if(typeof e.intersection=="function")return e.intersection(r);if(e.size===0||r.size===0)return new Set;let i=new Set(e);for(let t of r)i.has(t)||i.delete(t);return i}var xa=/^\d+\/\d+$/;function Oi(e){let r=new U(n=>({name:n,utility:n,fraction:!1,modifiers:[]}));for(let n of e.utilities.keys("static")){if(e.utilities.getCompletions(n).length===0)continue;let o=r.get(n);o.fraction=!1,o.modifiers=[]}for(let n of e.utilities.keys("functional")){let l=e.utilities.getCompletions(n);for(let o of l)for(let f of o.values){let u=f!==null&&xa.test(f),c=f===null?n:`${n}-${f}`,m=r.get(c);if(m.utility=n,m.fraction||=u,m.modifiers.push(...o.modifiers),o.supportsNegative){let d=r.get(`-${c}`);d.utility=`-${n}`,d.fraction||=u,d.modifiers.push(...o.modifiers)}m.modifiers=Array.from(new Set(m.modifiers))}}if(r.size===0)return[];let i=Array.from(r.values());return i.sort((n,l)=>xt(n.name,l.name)),Aa(i)}function Aa(e){let r=[],i=null,t=new Map,n=new U(()=>[]);for(let o of e){let{utility:f,fraction:u}=o;i||(i={utility:f,items:[]},t.set(f,i)),f!==i.utility&&(r.push(i),i={utility:f,items:[]},t.set(f,i)),u?n.get(f).push(o):i.items.push(o)}i&&r[r.length-1]!==i&&r.push(i);for(let[o,f]of n){let u=t.get(o);u&&u.items.push(...f)}let l=[];for(let o of r)for(let f of o.items)l.push([f.name,{modifiers:f.modifiers}]);return l}function Pi(e){let r=[];for(let[t,n]of e.variants.entries()){let f=function({value:u,modifier:c}={}){let m=t;u&&(m+=l?`-${u}`:u),c&&(m+=`/${c}`);let d=e.parseVariant(m);if(!d)return[];let p=q(".__placeholder__",[]);if(qe(p,d,e.variants)===null)return[];let k=[];return _(p.nodes,{exit(h,w){if(h.kind!=="rule"&&h.kind!=="at-rule"||h.nodes.length>0)return;let x=w.path();x.push(h),x.sort((y,K)=>{let N=y.kind==="at-rule",P=K.kind==="at-rule";return N&&!P?-1:!N&&P?1:0});let S=x.flatMap(y=>y.kind==="rule"?y.selector==="&"?[]:[y.selector]:y.kind==="at-rule"?[`${y.name} ${y.params}`]:[]),A="";for(let y=S.length-1;y>=0;y--)A=A===""?S[y]:`${S[y]} { ${A} }`;k.push(A)}}),k};var i=f;if(n.kind==="arbitrary")continue;let l=t!=="@",o=e.variants.getCompletions(t);switch(n.kind){case"static":{r.push({name:t,values:o,isArbitrary:!1,hasDash:l,selectors:f});break}case"functional":{r.push({name:t,values:o,isArbitrary:!0,hasDash:l,selectors:f});break}case"compound":{r.push({name:t,values:o,isArbitrary:!0,hasDash:l,selectors:f});break}}}return r}function _i(e,r){let{astNodes:i,nodeSorting:t}=Te(Array.from(r),e),n=new Map(r.map(o=>[o,null])),l=0n;for(let o of i){let f=t.get(o)?.candidate;f&&n.set(f,n.get(f)??l++)}return r.map(o=>[o,n.get(o)??null])}var Vt=/^@?[a-z0-9][a-zA-Z0-9_-]*(?<![_-])$/;var ar=class{compareFns=new Map;variants=new Map;completions=new Map;groupOrder=null;lastOrder=0;static(r,i,{compounds:t,order:n}={}){this.set(r,{kind:"static",applyFn:i,compoundsWith:0,compounds:t??2,order:n})}fromAst(r,i,t){let n=[],l=!1;_(i,o=>{o.kind==="rule"?n.push(o.selector):o.kind==="at-rule"&&o.name==="@variant"?l=!0:o.kind==="at-rule"&&o.name!=="@slot"&&n.push(`${o.name} ${o.params}`)}),this.static(r,o=>{let f=i.map(ee);l&&ot(f,t),lr(f,o.nodes),o.nodes=f},{compounds:Le(n)})}functional(r,i,{compounds:t,order:n}={}){this.set(r,{kind:"functional",applyFn:i,compoundsWith:0,compounds:t??2,order:n})}compound(r,i,t,{compounds:n,order:l}={}){this.set(r,{kind:"compound",applyFn:t,compoundsWith:i,compounds:n??2,order:l})}group(r,i){this.groupOrder=this.nextOrder(),i&&this.compareFns.set(this.groupOrder,i),r(),this.groupOrder=null}has(r){return this.variants.has(r)}get(r){return this.variants.get(r)}kind(r){return this.variants.get(r)?.kind}compoundsWith(r,i){let t=this.variants.get(r),n=typeof i=="string"?this.variants.get(i):i.kind==="arbitrary"?{compounds:Le([i.selector])}:this.variants.get(i.root);return!(!t||!n||t.kind!=="compound"||n.compounds===0||t.compoundsWith===0||(t.compoundsWith&n.compounds)===0)}suggest(r,i){this.completions.set(r,i)}getCompletions(r){return this.completions.get(r)?.()??[]}compare(r,i){if(r===i)return 0;if(r===null)return-1;if(i===null)return 1;if(r.kind==="arbitrary"&&i.kind==="arbitrary")return r.selector<i.selector?-1:1;if(r.kind==="arbitrary")return 1;if(i.kind==="arbitrary")return-1;let t=this.variants.get(r.root).order,n=this.variants.get(i.root).order,l=t-n;if(l!==0)return l;if(r.kind==="compound"&&i.kind==="compound"){let c=this.compare(r.variant,i.variant);return c!==0?c:r.modifier&&i.modifier?r.modifier.value<i.modifier.value?-1:1:r.modifier?1:i.modifier?-1:0}let o=this.compareFns.get(t);if(o!==void 0)return o(r,i);if(r.root!==i.root)return r.root<i.root?-1:1;let f=r.value,u=i.value;return f===null?-1:u===null||f.kind==="arbitrary"&&u.kind!=="arbitrary"?1:f.kind!=="arbitrary"&&u.kind==="arbitrary"||f.value<u.value?-1:1}keys(){return this.variants.keys()}entries(){return this.variants.entries()}set(r,{kind:i,applyFn:t,compounds:n,compoundsWith:l,order:o}){let f=this.variants.get(r);f?Object.assign(f,{kind:i,applyFn:t,compounds:n}):(o===void 0&&(this.lastOrder=this.nextOrder(),o=this.lastOrder),this.variants.set(r,{kind:i,applyFn:t,order:o,compoundsWith:l,compounds:n}))}nextOrder(){return this.groupOrder??this.lastOrder+1}};function Le(e){let r=0;for(let i of e){if(i[0]==="@"){if(!i.startsWith("@media")&&!i.startsWith("@supports")&&!i.startsWith("@container"))return 0;r|=1;continue}if(i.includes("::"))return 0;r|=2}return r}function Di(e){let r=new ar;function i(c,m,{compounds:d}={}){d=d??Le(m),r.static(c,p=>{p.nodes=m.map(k=>Z(k,p.nodes))},{compounds:d})}i("*",[":is(& > *)"],{compounds:0}),i("**",[":is(& *)"],{compounds:0});function t(c,m){return m.map(d=>{d=d.trim();let p=L(d," ");return p[0]==="not"?p.slice(1).join(" "):c==="@container"?p[0][0]==="("?`not ${d}`:p[1]==="not"?`${p[0]} ${p.slice(2).join(" ")}`:`${p[0]} not ${p.slice(1).join(" ")}`:`not ${d}`})}let n=["@media","@supports","@container"];function l(c){for(let m of n){if(m!==c.name)continue;let d=L(c.params,",");return d.length>1?null:(d=t(c.name,d),F(c.name,d.join(", ")))}return null}function o(c){return c.includes("::")?null:`&:not(${L(c,",").map(d=>(d=d.replaceAll("&","*"),d)).join(", ")})`}r.compound("not",3,(c,m)=>{if(m.variant.kind==="arbitrary"&&m.variant.relative||m.modifier)return null;let d=!1;if(_([c],(p,k)=>{if(p.kind!=="rule"&&p.kind!=="at-rule")return V.Continue;if(p.nodes.length>0)return V.Continue;let h=[],w=[],x=k.path();x.push(p);for(let A of x)A.kind==="at-rule"?h.push(A):A.kind==="rule"&&w.push(A);if(h.length>1)return V.Stop;if(w.length>1)return V.Stop;let S=[];for(let A of w){let y=o(A.selector);if(!y)return d=!1,V.Stop;S.push(q(y,[]))}for(let A of h){let y=l(A);if(!y)return d=!1,V.Stop;S.push(y)}return Object.assign(c,q("&",S)),d=!0,V.Skip}),c.kind==="rule"&&c.selector==="&"&&c.nodes.length===1&&Object.assign(c,c.nodes[0]),!d)return null}),r.suggest("not",()=>Array.from(r.keys()).filter(c=>r.compoundsWith("not",c))),r.compound("group",2,(c,m)=>{if(m.variant.kind==="arbitrary"&&m.variant.relative)return null;let d=m.modifier?`:where(.${e.prefix?`${e.prefix}\\:`:""}group\\/${m.modifier.value})`:`:where(.${e.prefix?`${e.prefix}\\:`:""}group)`,p=!1;if(_([c],(k,h)=>{if(k.kind!=="rule")return V.Continue;for(let x of h.path())if(x.kind==="rule")return p=!1,V.Stop;let w=k.selector.replaceAll("&",d);L(w,",").length>1&&(w=`:is(${w})`),k.selector=`&:is(${w} *)`,p=!0}),!p)return null}),r.suggest("group",()=>Array.from(r.keys()).filter(c=>r.compoundsWith("group",c))),r.compound("peer",2,(c,m)=>{if(m.variant.kind==="arbitrary"&&m.variant.relative)return null;let d=m.modifier?`:where(.${e.prefix?`${e.prefix}\\:`:""}peer\\/${m.modifier.value})`:`:where(.${e.prefix?`${e.prefix}\\:`:""}peer)`,p=!1;if(_([c],(k,h)=>{if(k.kind!=="rule")return V.Continue;for(let x of h.path())if(x.kind==="rule")return p=!1,V.Stop;let w=k.selector.replaceAll("&",d);L(w,",").length>1&&(w=`:is(${w})`),k.selector=`&:is(${w} ~ *)`,p=!0}),!p)return null}),r.suggest("peer",()=>Array.from(r.keys()).filter(c=>r.compoundsWith("peer",c))),i("first-letter",["&::first-letter"]),i("first-line",["&::first-line"]),i("marker",["& *::marker","&::marker","& *::-webkit-details-marker","&::-webkit-details-marker"]),i("selection",["& *::selection","&::selection"]),i("file",["&::file-selector-button"]),i("placeholder",["&::placeholder"]),i("backdrop",["&::backdrop"]),i("details-content",["&::details-content"]);{let c=function(){return W([F("@property","--tw-content",[a("syntax",'"*"'),a("initial-value",'""'),a("inherits","false")])])};var f=c;r.static("before",m=>{m.nodes=[q("&::before",[c(),a("content","var(--tw-content)"),...m.nodes])]},{compounds:0}),r.static("after",m=>{m.nodes=[q("&::after",[c(),a("content","var(--tw-content)"),...m.nodes])]},{compounds:0})}i("first",["&:first-child"]),i("last",["&:last-child"]),i("only",["&:only-child"]),i("odd",["&:nth-child(odd)"]),i("even",["&:nth-child(even)"]),i("first-of-type",["&:first-of-type"]),i("last-of-type",["&:last-of-type"]),i("only-of-type",["&:only-of-type"]),i("visited",["&:visited"]),i("target",["&:target"]),i("open",["&:is([open], :popover-open, :open)"]),i("default",["&:default"]),i("checked",["&:checked"]),i("indeterminate",["&:indeterminate"]),i("placeholder-shown",["&:placeholder-shown"]),i("autofill",["&:autofill"]),i("optional",["&:optional"]),i("required",["&:required"]),i("valid",["&:valid"]),i("invalid",["&:invalid"]),i("user-valid",["&:user-valid"]),i("user-invalid",["&:user-invalid"]),i("in-range",["&:in-range"]),i("out-of-range",["&:out-of-range"]),i("read-only",["&:read-only"]),i("empty",["&:empty"]),i("focus-within",["&:focus-within"]),r.static("hover",c=>{c.nodes=[q("&:hover",[F("@media","(hover: hover)",c.nodes)])]}),i("focus",["&:focus"]),i("focus-visible",["&:focus-visible"]),i("active",["&:active"]),i("enabled",["&:enabled"]),i("disabled",["&:disabled"]),i("inert",["&:is([inert], [inert] *)"]),r.compound("in",2,(c,m)=>{if(m.modifier)return null;let d=!1;if(_([c],(p,k)=>{if(p.kind!=="rule")return V.Continue;for(let h of k.path())if(h.kind==="rule")return d=!1,V.Stop;p.selector=`:where(${p.selector.replaceAll("&","*")}) &`,d=!0}),!d)return null}),r.suggest("in",()=>Array.from(r.keys()).filter(c=>r.compoundsWith("in",c))),r.compound("has",2,(c,m)=>{if(m.modifier)return null;let d=!1;if(_([c],(p,k)=>{if(p.kind!=="rule")return V.Continue;for(let h of k.path())if(h.kind==="rule")return d=!1,V.Stop;p.selector=`&:has(${p.selector.replaceAll("&","*")})`,d=!0}),!d)return null}),r.suggest("has",()=>Array.from(r.keys()).filter(c=>r.compoundsWith("has",c))),r.functional("aria",(c,m)=>{if(!m.value||m.modifier)return null;m.value.kind==="arbitrary"?c.nodes=[q(`&[aria-${Ii(m.value.value)}]`,c.nodes)]:c.nodes=[q(`&[aria-${m.value.value}="true"]`,c.nodes)]}),r.suggest("aria",()=>["busy","checked","disabled","expanded","hidden","pressed","readonly","required","selected"]),r.functional("data",(c,m)=>{if(!m.value||m.modifier)return null;c.nodes=[q(`&[data-${Ii(m.value.value)}]`,c.nodes)]}),r.functional("nth",(c,m)=>{if(!m.value||m.modifier||m.value.kind==="named"&&!O(m.value.value))return null;c.nodes=[q(`&:nth-child(${m.value.value})`,c.nodes)]}),r.functional("nth-last",(c,m)=>{if(!m.value||m.modifier||m.value.kind==="named"&&!O(m.value.value))return null;c.nodes=[q(`&:nth-last-child(${m.value.value})`,c.nodes)]}),r.functional("nth-of-type",(c,m)=>{if(!m.value||m.modifier||m.value.kind==="named"&&!O(m.value.value))return null;c.nodes=[q(`&:nth-of-type(${m.value.value})`,c.nodes)]}),r.functional("nth-last-of-type",(c,m)=>{if(!m.value||m.modifier||m.value.kind==="named"&&!O(m.value.value))return null;c.nodes=[q(`&:nth-last-of-type(${m.value.value})`,c.nodes)]}),r.functional("supports",(c,m)=>{if(!m.value||m.modifier)return null;let d=m.value.value;if(d===null)return null;if(/^[\w-]*\s*\(/.test(d)){let p=d.replace(/\b(and|or|not)\b/g," $1 ");c.nodes=[F("@supports",p,c.nodes)];return}d.includes(":")||(d=`${d}: var(--tw)`),(d[0]!=="("||d[d.length-1]!==")")&&(d=`(${d})`),c.nodes=[F("@supports",d,c.nodes)]},{compounds:1}),i("motion-safe",["@media (prefers-reduced-motion: no-preference)"]),i("motion-reduce",["@media (prefers-reduced-motion: reduce)"]),i("contrast-more",["@media (prefers-contrast: more)"]),i("contrast-less",["@media (prefers-contrast: less)"]);{let c=function(m,d,p,k){if(m===d)return 0;let h=k.get(m);if(h===null)return p==="asc"?-1:1;let w=k.get(d);return w===null?p==="asc"?1:-1:Oe(h,w,p)};var u=c;{let m=e.namespace("--breakpoint"),d=new U(p=>{switch(p.kind){case"static":return e.resolveValue(p.root,["--breakpoint"])??null;case"functional":{if(!p.value||p.modifier)return null;let k=null;return p.value.kind==="arbitrary"?k=p.value.value:p.value.kind==="named"&&(k=e.resolveValue(p.value.value,["--breakpoint"])),!k||k.includes("var(")?null:k}case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("max",(p,k)=>{if(k.modifier)return null;let h=d.get(k);if(h===null)return null;p.nodes=[F("@media",`(width < ${h})`,p.nodes)]},{compounds:1})},(p,k)=>c(p,k,"desc",d)),r.suggest("max",()=>Array.from(m.keys()).filter(p=>p!==null)),r.group(()=>{for(let[p,k]of e.namespace("--breakpoint"))p!==null&&r.static(p,h=>{h.nodes=[F("@media",`(width >= ${k})`,h.nodes)]},{compounds:1});r.functional("min",(p,k)=>{if(k.modifier)return null;let h=d.get(k);if(h===null)return null;p.nodes=[F("@media",`(width >= ${h})`,p.nodes)]},{compounds:1})},(p,k)=>c(p,k,"asc",d)),r.suggest("min",()=>Array.from(m.keys()).filter(p=>p!==null))}{let m=e.namespace("--container"),d=new U(p=>{switch(p.kind){case"functional":{if(p.value===null)return null;let k=null;return p.value.kind==="arbitrary"?k=p.value.value:p.value.kind==="named"&&(k=e.resolveValue(p.value.value,["--container"])),!k||k.includes("var(")?null:k}case"static":case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("@max",(p,k)=>{let h=d.get(k);if(h===null)return null;p.nodes=[F("@container",k.modifier?`${k.modifier.value} (width < ${h})`:`(width < ${h})`,p.nodes)]},{compounds:1})},(p,k)=>c(p,k,"desc",d)),r.suggest("@max",()=>Array.from(m.keys()).filter(p=>p!==null)),r.group(()=>{r.functional("@",(p,k)=>{let h=d.get(k);if(h===null)return null;p.nodes=[F("@container",k.modifier?`${k.modifier.value} (width >= ${h})`:`(width >= ${h})`,p.nodes)]},{compounds:1}),r.functional("@min",(p,k)=>{let h=d.get(k);if(h===null)return null;p.nodes=[F("@container",k.modifier?`${k.modifier.value} (width >= ${h})`:`(width >= ${h})`,p.nodes)]},{compounds:1})},(p,k)=>c(p,k,"asc",d)),r.suggest("@min",()=>Array.from(m.keys()).filter(p=>p!==null)),r.suggest("@",()=>Array.from(m.keys()).filter(p=>p!==null))}}return i("portrait",["@media (orientation: portrait)"]),i("landscape",["@media (orientation: landscape)"]),i("ltr",['&:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *)']),i("rtl",['&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *)']),i("dark",["@media (prefers-color-scheme: dark)"]),i("starting",["@starting-style"]),i("print",["@media print"]),i("forced-colors",["@media (forced-colors: active)"]),i("inverted-colors",["@media (inverted-colors: inverted)"]),i("pointer-none",["@media (pointer: none)"]),i("pointer-coarse",["@media (pointer: coarse)"]),i("pointer-fine",["@media (pointer: fine)"]),i("any-pointer-none",["@media (any-pointer: none)"]),i("any-pointer-coarse",["@media (any-pointer: coarse)"]),i("any-pointer-fine",["@media (any-pointer: fine)"]),i("noscript",["@media (scripting: none)"]),r}function Ii(e){if(e.includes("=")){let[r,...i]=L(e,"="),t=i.join("=").trim();if(t[0]==="'"||t[0]==='"')return e;if(t.length>1){let n=t[t.length-1];if(t[t.length-2]===" "&&(n==="i"||n==="I"||n==="s"||n==="S"))return`${r}="${t.slice(0,-2)}" ${n}`}return`${r}="${t}"`}return e}function lr(e,r){_(e,i=>{if(i.kind==="at-rule"&&i.name==="@slot")return V.Replace(r);if(i.kind==="at-rule"&&(i.name==="@keyframes"||i.name==="@property"))return Object.assign(i,W([F(i.name,i.params,i.nodes)])),V.Skip})}function ot(e,r){let i=0;return _(e,t=>{if(t.kind!=="at-rule"||t.name!=="@variant")return;let n=q("&",t.nodes),l=t.params,o=r.parseVariant(l);if(o===null)throw new Error(`Cannot use \`@variant\` with unknown variant: ${l}`);if(qe(n,o,r.variants)===null)throw new Error(`Cannot use \`@variant\` with variant: ${l}`);return i|=32,V.Replace(n)}),i}function Ui(e,r){let i=Qr(e),t=Di(e),n=new U(d=>zr(d,m)),l=new U(d=>Array.from(Kr(d,m))),o=new U(d=>new U(p=>{let k=Li(p,m,d);try{Fe(k.map(({node:h})=>h),m),ot(k.map(({node:h})=>h),m)}catch{return[]}return k})),f=new U(d=>{for(let p of gt(d))e.markUsedVariable(p)});function u(d){let p=[];for(let k of d){let h=!0,{astNodes:w}=Te([k],m,{onInvalidCandidate(){h=!1}});r&&_(w,x=>(x.src??=r,V.Continue)),w=Re(w,m,0),p.push(h?w:[])}return p}function c(d){return u(d).map(p=>p.length>0?ie(p):null)}let m={theme:e,utilities:i,variants:t,invalidCandidates:new Set,important:!1,candidatesToCss:c,candidatesToAst:u,getClassOrder(d){return _i(this,d)},getClassList(){return Oi(this)},getVariants(){return Pi(this)},parseCandidate(d){return l.get(d)},parseVariant(d){return n.get(d)},compileAstNodes(d,p=1){return o.get(p).get(d)},printCandidate(d){return jr(m,d)},printVariant(d){return kt(d)},getVariantOrder(){let d=Array.from(n.values());d.sort((w,x)=>this.variants.compare(w,x));let p=new Map,k,h=0;for(let w of d)w!==null&&(k!==void 0&&this.variants.compare(k,w)!==0&&h++,p.set(w,h),k=w);return p},resolveThemeValue(d,p=!0){let k=d.lastIndexOf("/"),h=null;k!==-1&&(h=d.slice(k+1).trim(),d=d.slice(0,k).trim());let w=e.resolve(null,[d],p?1:0)??void 0;return h&&w?J(w,h):w},trackUsedVariables(d){f.get(d)},canonicalizeCandidates(d,p){return rr(this,d,p)},storage:{}};return m}var sr=["container-type","pointer-events","visibility","position","inset","inset-inline","inset-block","inset-inline-start","inset-inline-end","top","right","bottom","left","isolation","z-index","order","grid-column","grid-column-start","grid-column-end","grid-row","grid-row-start","grid-row-end","float","clear","--tw-container-component","margin","margin-inline","margin-block","margin-inline-start","margin-inline-end","margin-top","margin-right","margin-bottom","margin-left","box-sizing","display","field-sizing","aspect-ratio","height","max-height","min-height","width","max-width","min-width","flex","flex-shrink","flex-grow","flex-basis","table-layout","caption-side","border-collapse","border-spacing","transform-origin","translate","--tw-translate-x","--tw-translate-y","--tw-translate-z","scale","--tw-scale-x","--tw-scale-y","--tw-scale-z","rotate","--tw-rotate-x","--tw-rotate-y","--tw-rotate-z","--tw-skew-x","--tw-skew-y","transform","animation","cursor","touch-action","--tw-pan-x","--tw-pan-y","--tw-pinch-zoom","resize","scroll-snap-type","--tw-scroll-snap-strictness","scroll-snap-align","scroll-snap-stop","scroll-margin","scroll-margin-inline","scroll-margin-block","scroll-margin-inline-start","scroll-margin-inline-end","scroll-margin-top","scroll-margin-right","scroll-margin-bottom","scroll-margin-left","scroll-padding","scroll-padding-inline","scroll-padding-block","scroll-padding-inline-start","scroll-padding-inline-end","scroll-padding-top","scroll-padding-right","scroll-padding-bottom","scroll-padding-left","list-style-position","list-style-type","list-style-image","appearance","columns","break-before","break-inside","break-after","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-template-columns","grid-template-rows","flex-direction","flex-wrap","place-content","place-items","align-content","align-items","justify-content","justify-items","gap","column-gap","row-gap","--tw-space-x-reverse","--tw-space-y-reverse","divide-x-width","divide-y-width","--tw-divide-y-reverse","divide-style","divide-color","place-self","align-self","justify-self","overflow","overflow-x","overflow-y","overscroll-behavior","overscroll-behavior-x","overscroll-behavior-y","scroll-behavior","border-radius","border-start-radius","border-end-radius","border-top-radius","border-right-radius","border-bottom-radius","border-left-radius","border-start-start-radius","border-start-end-radius","border-end-end-radius","border-end-start-radius","border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius","border-width","border-inline-width","border-block-width","border-inline-start-width","border-inline-end-width","border-top-width","border-right-width","border-bottom-width","border-left-width","border-style","border-inline-style","border-block-style","border-inline-start-style","border-inline-end-style","border-top-style","border-right-style","border-bottom-style","border-left-style","border-color","border-inline-color","border-block-color","border-inline-start-color","border-inline-end-color","border-top-color","border-right-color","border-bottom-color","border-left-color","background-color","background-image","--tw-gradient-position","--tw-gradient-stops","--tw-gradient-via-stops","--tw-gradient-from","--tw-gradient-from-position","--tw-gradient-via","--tw-gradient-via-position","--tw-gradient-to","--tw-gradient-to-position","mask-image","--tw-mask-top","--tw-mask-top-from-color","--tw-mask-top-from-position","--tw-mask-top-to-color","--tw-mask-top-to-position","--tw-mask-right","--tw-mask-right-from-color","--tw-mask-right-from-position","--tw-mask-right-to-color","--tw-mask-right-to-position","--tw-mask-bottom","--tw-mask-bottom-from-color","--tw-mask-bottom-from-position","--tw-mask-bottom-to-color","--tw-mask-bottom-to-position","--tw-mask-left","--tw-mask-left-from-color","--tw-mask-left-from-position","--tw-mask-left-to-color","--tw-mask-left-to-position","--tw-mask-linear","--tw-mask-linear-position","--tw-mask-linear-from-color","--tw-mask-linear-from-position","--tw-mask-linear-to-color","--tw-mask-linear-to-position","--tw-mask-radial","--tw-mask-radial-shape","--tw-mask-radial-size","--tw-mask-radial-position","--tw-mask-radial-from-color","--tw-mask-radial-from-position","--tw-mask-radial-to-color","--tw-mask-radial-to-position","--tw-mask-conic","--tw-mask-conic-position","--tw-mask-conic-from-color","--tw-mask-conic-from-position","--tw-mask-conic-to-color","--tw-mask-conic-to-position","box-decoration-break","background-size","background-attachment","background-clip","background-position","background-repeat","background-origin","mask-composite","mask-mode","mask-type","mask-size","mask-clip","mask-position","mask-repeat","mask-origin","fill","stroke","stroke-width","object-fit","object-position","padding","padding-inline","padding-block","padding-inline-start","padding-inline-end","padding-top","padding-right","padding-bottom","padding-left","text-align","text-indent","vertical-align","font-family","font-size","line-height","font-weight","letter-spacing","text-wrap","overflow-wrap","word-break","text-overflow","hyphens","white-space","color","text-transform","font-style","font-stretch","font-variant-numeric","text-decoration-line","text-decoration-color","text-decoration-style","text-decoration-thickness","text-underline-offset","-webkit-font-smoothing","placeholder-color","caret-color","accent-color","color-scheme","opacity","background-blend-mode","mix-blend-mode","box-shadow","--tw-shadow","--tw-shadow-color","--tw-ring-shadow","--tw-ring-color","--tw-inset-shadow","--tw-inset-shadow-color","--tw-inset-ring-shadow","--tw-inset-ring-color","--tw-ring-offset-width","--tw-ring-offset-color","outline","outline-width","outline-offset","outline-color","--tw-blur","--tw-brightness","--tw-contrast","--tw-drop-shadow","--tw-grayscale","--tw-hue-rotate","--tw-invert","--tw-saturate","--tw-sepia","filter","--tw-backdrop-blur","--tw-backdrop-brightness","--tw-backdrop-contrast","--tw-backdrop-grayscale","--tw-backdrop-hue-rotate","--tw-backdrop-invert","--tw-backdrop-opacity","--tw-backdrop-saturate","--tw-backdrop-sepia","backdrop-filter","transition-property","transition-behavior","transition-delay","transition-duration","transition-timing-function","will-change","contain","content","forced-color-adjust"];function Te(e,r,{onInvalidCandidate:i,respectImportant:t}={}){let n=new Map,l=[],o=new Map;for(let c of e){if(r.invalidCandidates.has(c)){i?.(c);continue}let m=r.parseCandidate(c);if(m.length===0){i?.(c);continue}o.set(c,m)}let f=0;(t??!0)&&(f|=1);let u=r.getVariantOrder();for(let[c,m]of o){let d=!1;for(let p of m){let k=r.compileAstNodes(p,f);if(k.length!==0){d=!0;for(let{node:h,propertySort:w}of k){let x=0n;for(let S of p.variants)x|=1n<<BigInt(u.get(S));n.set(h,{properties:w,variants:x,candidate:c}),l.push(h)}}}d||i?.(c)}return l.sort((c,m)=>{let d=n.get(c),p=n.get(m);if(d.variants-p.variants!==0n)return Number(d.variants-p.variants);let k=0;for(;k<d.properties.order.length&&k<p.properties.order.length&&d.properties.order[k]===p.properties.order[k];)k+=1;return(d.properties.order[k]??1/0)-(p.properties.order[k]??1/0)||p.properties.count-d.properties.count||xt(d.candidate,p.candidate)}),{astNodes:l,nodeSorting:n}}function Li(e,r,i){let t=Ca(e,r);if(t.length===0)return[];let n=r.important&&!!(i&1),l=[],o=`.${xe(e.raw)}`;for(let f of t){let u=Sa(f);(e.important||n)&&zi(f);let c={kind:"rule",selector:o,nodes:f};for(let m of e.variants)if(qe(c,m,r.variants)===null)return[];l.push({node:c,propertySort:u})}return l}function qe(e,r,i,t=0){if(r.kind==="arbitrary"){if(r.relative&&t===0)return null;e.nodes=[Z(r.selector,e.nodes)];return}let{applyFn:n}=i.get(r.root);if(r.kind==="compound"){let o=F("@slot");if(qe(o,r.variant,i,t+1)===null||r.root==="not"&&o.nodes.length>1)return null;for(let u of o.nodes)if(u.kind!=="rule"&&u.kind!=="at-rule"||n(u,r)===null)return null;_(o.nodes,u=>{if((u.kind==="rule"||u.kind==="at-rule")&&u.nodes.length<=0)return u.nodes=e.nodes,V.Skip}),e.nodes=o.nodes;return}if(n(e,r)===null)return null}function Ki(e){let r=e.options?.types??[];return r.length>1&&r.includes("any")}function Ca(e,r){if(e.kind==="arbitrary"){let o=e.value;return e.modifier&&(o=X(o,e.modifier,r.theme)),o===null?[]:[[a(e.property,o)]]}let i=r.utilities.get(e.root)??[],t=[],n=i.filter(o=>!Ki(o));for(let o of n){if(o.kind!==e.kind)continue;let f=o.compileFn(e);if(f!==void 0){if(f===null)return t;t.push(f)}}if(t.length>0)return t;let l=i.filter(o=>Ki(o));for(let o of l){if(o.kind!==e.kind)continue;let f=o.compileFn(e);if(f!==void 0){if(f===null)return t;t.push(f)}}return t}function zi(e){for(let r of e)r.kind!=="at-root"&&(r.kind==="declaration"?r.important=!0:(r.kind==="rule"||r.kind==="at-rule")&&zi(r.nodes))}function Sa(e){let r=new Set,i=0,t=e.slice(),n=!1;for(;t.length>0;){let l=t.shift();if(l.kind==="declaration"){if(l.value===void 0||(i++,n))continue;if(l.property==="--tw-sort"){let f=sr.indexOf(l.value??"");if(f!==-1){r.add(f),n=!0;continue}}let o=sr.indexOf(l.property);o!==-1&&r.add(o)}else if(l.kind==="rule"||l.kind==="at-rule")for(let o of l.nodes)t.push(o)}return{order:Array.from(r).sort((l,o)=>l-o),count:i}}function $e(e,r){let i=0,t=Z("&",e),n=new Set,l=new U(()=>new Set),o=new U(()=>new Set);_([t],(d,p)=>{if(d.kind==="at-rule"){if(d.name==="@keyframes")return _(d.nodes,k=>{if(k.kind==="at-rule"&&k.name==="@apply")throw new Error("You cannot use `@apply` inside `@keyframes`.")}),V.Skip;if(d.name==="@utility"){let k=d.params.replace(/-\*$/,"");o.get(k).add(d),_(d.nodes,h=>{if(!(h.kind!=="at-rule"||h.name!=="@apply")){n.add(d);for(let w of Mi(h,r))l.get(d).add(w)}});return}if(d.name==="@apply"){if(p.parent===null)return;i|=1,n.add(p.parent);for(let k of Mi(d,r))for(let h of p.path())n.has(h)&&l.get(h).add(k)}}});let f=new Set,u=[],c=new Set;function m(d,p=[]){if(!f.has(d)){if(c.has(d)){let k=p[(p.indexOf(d)+1)%p.length];throw d.kind==="at-rule"&&d.name==="@utility"&&k.kind==="at-rule"&&k.name==="@utility"&&_(d.nodes,h=>{if(h.kind!=="at-rule"||h.name!=="@apply")return;let w=h.params.split(/\s+/g);for(let x of w)for(let S of r.parseCandidate(x))switch(S.kind){case"arbitrary":break;case"static":case"functional":if(k.params.replace(/-\*$/,"")===S.root)throw new Error(`You cannot \`@apply\` the \`${x}\` utility here because it creates a circular dependency.`);break;default:}}),new Error(`Circular dependency detected:
+
+${ie([d])}
+Relies on:
+
+${ie([k])}`)}c.add(d);for(let k of l.get(d))for(let h of o.get(k))p.push(d),m(h,p),p.pop();f.add(d),c.delete(d),u.push(d)}}for(let d of n)m(d);for(let d of u)"nodes"in d&&_(d.nodes,p=>{if(p.kind!=="at-rule"||p.name!=="@apply")return;let k=p.params.split(/(\s+)/g),h={},w=0;for(let[x,S]of k.entries())x%2===0&&(h[S]=w),w+=S.length;{let x=Object.keys(h),S=Te(x,r,{respectImportant:!1,onInvalidCandidate:N=>{if(r.theme.prefix&&!N.startsWith(r.theme.prefix))throw new Error(`Cannot apply unprefixed utility class \`${N}\`. Did you mean \`${r.theme.prefix}:${N}\`?`);if(r.invalidCandidates.has(N))throw new Error(`Cannot apply utility class \`${N}\` because it has been explicitly disabled: https://tailwindcss.com/docs/detecting-classes-in-source-files#explicitly-excluding-classes`);let P=L(N,":");if(P.length>1){let z=P.pop();if(r.candidatesToCss([z])[0]){let I=r.candidatesToCss(P.map(Y=>`${Y}:[--tw-variant-check:1]`)),M=P.filter((Y,G)=>I[G]===null);if(M.length>0){if(M.length===1)throw new Error(`Cannot apply utility class \`${N}\` because the ${M.map(Y=>`\`${Y}\``)} variant does not exist.`);{let Y=new Intl.ListFormat("en",{style:"long",type:"conjunction"});throw new Error(`Cannot apply utility class \`${N}\` because the ${Y.format(M.map(G=>`\`${G}\``))} variants do not exist.`)}}}}throw r.theme.size===0?new Error(`Cannot apply unknown utility class \`${N}\`. Are you using CSS modules or similar and missing \`@reference\`? https://tailwindcss.com/docs/functions-and-directives#reference-directive`):new Error(`Cannot apply unknown utility class \`${N}\``)}}),A=p.src,y=S.astNodes.map(N=>{let P=S.nodeSorting.get(N)?.candidate,z=P?h[P]:void 0;if(N=ee(N),!A||!P||z===void 0)return _([N],M=>{M.src=A}),N;let I=[A[0],A[1],A[2]];return I[1]+=7+z,I[2]=I[1]+P.length,_([N],M=>{M.src=I}),N}),K=[];for(let N of y)if(N.kind==="rule")for(let P of N.nodes)K.push(P);else K.push(N);return V.Replace(K)}});return i}function*Mi(e,r){for(let i of e.params.split(/\s+/g))for(let t of r.parseCandidate(i))switch(t.kind){case"arbitrary":break;case"static":case"functional":yield t.root;break;default:}}async function ur(e,r,i,t=0,n=!1){let l=0,o=[];return _(e,f=>{if(f.kind==="at-rule"&&(f.name==="@import"||f.name==="@reference")){let u=$a(B(f.params));if(u===null)return;f.name==="@reference"&&(u.media="reference"),l|=2;let{uri:c,layer:m,media:d,supports:p}=u;if(c.startsWith("data:")||c.startsWith("http://")||c.startsWith("https://"))return;let k=de({},[]);return o.push((async()=>{if(t>100)throw new Error(`Exceeded maximum recursion depth while resolving \`${c}\` in \`${r}\`)`);let h=await i(c,r),w=Ne(h.content,{from:n?h.path:void 0});await ur(w,h.base,i,t+1,n),k.nodes=Ta(f,[de({base:h.base},w)],m,d,p)})()),V.ReplaceSkip(k)}}),o.length>0&&await Promise.all(o),l}function $a(e){let r,i=null,t=null,n=null;for(let l=0;l<e.length;l++){let o=e[l];if(o.kind!=="separator"){if(o.kind==="word"&&!r){if(!o.value||o.value[0]!=='"'&&o.value[0]!=="'")return null;r=o.value.slice(1,-1);continue}if(o.kind==="function"&&o.value.toLowerCase()==="url"||!r)return null;if((o.kind==="word"||o.kind==="function")&&o.value.toLowerCase()==="layer"){if(i)return null;if(n)throw new Error("`layer(\u2026)` in an `@import` should come before any other functions or conditions");"nodes"in o?i=H(o.nodes):i="";continue}if(o.kind==="function"&&o.value.toLowerCase()==="supports"){if(n)return null;n=H(o.nodes);continue}t=H(e.slice(l));break}}return r?{uri:r,layer:i,media:t,supports:n}:null}function Ta(e,r,i,t,n){let l=r;if(i!==null){let o=F("@layer",i,l);o.src=e.src,l=[o]}if(t!==null){let o=F("@media",t,l);o.src=e.src,l=[o]}if(n!==null){let o=F("@supports",n[0]==="("?n:`(${n})`,l);o.src=e.src,l=[o]}return l}function Ge(e){if(Object.prototype.toString.call(e)!=="[object Object]")return!1;let r=Object.getPrototypeOf(e);return r===null||Object.getPrototypeOf(r)===null}function at(e,r,i,t=[]){for(let n of r)if(n!=null)for(let l of Reflect.ownKeys(n)){t.push(l);let o=i(e[l],n[l],t);o!==void 0?e[l]=o:!Ge(e[l])||!Ge(n[l])?e[l]=n[l]:e[l]=at({},[e[l],n[l]],i,t),t.pop()}return e}function Rt(e,r,i){return function(n,l){let o=n.lastIndexOf("/"),f=null;o!==-1&&(f=n.slice(o+1).trim(),n=n.slice(0,o).trim());let u=(()=>{let c=Ue(n),[m,d]=Ea(e.theme,c),p=i(ji(r()??{},c)??null);if(typeof p=="string"&&(p=p.replace("<alpha-value>","1")),typeof m!="object")return typeof d!="object"&&d&4?p??m:m;if(p!==null&&typeof p=="object"&&!Array.isArray(p)){let k=at({},[p],(h,w)=>w);if(m===null&&Object.hasOwn(p,"__CSS_VALUES__")){let h={};for(let w in p.__CSS_VALUES__)h[w]=p[w],delete k[w];m=h}for(let h in m)h!=="__CSS_VALUES__"&&(p?.__CSS_VALUES__?.[h]&4&&ji(k,h.split("-"))!==void 0||(k[Ve(h)]=m[h]));return k}if(Array.isArray(m)&&Array.isArray(d)&&Array.isArray(p)){let k=m[0],h=m[1];d[0]&4&&(k=p[0]??k);for(let w of Object.keys(h))d[1][w]&4&&(h[w]=p[1][w]??h[w]);return[k,h]}return m??p})();return f&&typeof u=="string"&&(u=J(u,f)),u??l}}function Ea(e,r){if(r.length===1&&r[0].startsWith("--"))return[e.get([r[0]]),e.getOptions(r[0])];let i=Ye(r),t=new Map,n=new U(()=>new Map),l=e.namespace(`--${i}`);if(l.size===0)return[null,0];let o=new Map;for(let[m,d]of l){if(!m||!m.includes("--")){t.set(m,d),o.set(m,e.getOptions(m?`--${i}-${m}`:`--${i}`));continue}let p=m.indexOf("--"),k=m.slice(0,p),h=m.slice(p+2);h=h.replace(/-([a-z])/g,(w,x)=>x.toUpperCase()),n.get(k===""?null:k).set(h,[d,e.getOptions(`--${i}${m}`)])}let f=e.getOptions(`--${i}`);for(let[m,d]of n){let p=t.get(m);if(typeof p!="string")continue;let k={},h={};for(let[w,[x,S]]of d)k[w]=x,h[w]=S;t.set(m,[p,k]),o.set(m,[f,h])}let u={},c={};for(let[m,d]of t)Fi(u,[m??"DEFAULT"],d);for(let[m,d]of o)Fi(c,[m??"DEFAULT"],d);return r[r.length-1]==="DEFAULT"?[u?.DEFAULT??null,c.DEFAULT??0]:"DEFAULT"in u&&Object.keys(u).length===1?[u.DEFAULT,c.DEFAULT??0]:(u.__CSS_VALUES__=c,[u,c])}function ji(e,r){for(let i=0;i<r.length;++i){let t=r[i];if(e?.[t]===void 0){if(r[i+1]===void 0)return;r[i+1]=`${t}-${r[i+1]}`;continue}if(typeof e=="string")return;e=e[t]}return e}function Fi(e,r,i){for(let t of r.slice(0,-1))e[t]===void 0&&(e[t]={}),e=e[t];e[r[r.length-1]]=i}var Wi=/^[a-z@][a-zA-Z0-9/%._-]*$/;function cr({designSystem:e,ast:r,resolvedConfig:i,featuresRef:t,referenceMode:n,src:l}){let o={addBase(f){if(n)return;let u=he(f);t.current|=Fe(u,e);let c=F("@layer","base",u);_([c],m=>{m.src=l}),r.push(c)},addVariant(f,u){if(!Vt.test(f))throw new Error(`\`addVariant('${f}')\` defines an invalid variant name. Variants should only contain alphanumeric, dashes, or underscore characters and start with a lowercase letter or number.`);if(typeof u=="string"){if(u.includes(":merge("))return}else if(Array.isArray(u)){if(u.some(m=>m.includes(":merge(")))return}else if(typeof u=="object"){let m=function(d,p){return Object.entries(d).some(([k,h])=>k.includes(p)||typeof h=="object"&&m(h,p))};var c=m;if(m(u,":merge("))return}typeof u=="string"||Array.isArray(u)?e.variants.static(f,m=>{m.nodes=Bi(u,m.nodes)},{compounds:Le(typeof u=="string"?[u]:u)}):typeof u=="object"&&e.variants.fromAst(f,he(u),e)},matchVariant(f,u,c){function m(p,k,h){let w=u(p,{modifier:k?.value??null});return Bi(w,h)}try{let p=u("a",{modifier:null});if(typeof p=="string"&&p.includes(":merge("))return;if(Array.isArray(p)&&p.some(k=>k.includes(":merge(")))return}catch{}let d=Object.keys(c?.values??{});e.variants.group(()=>{e.variants.functional(f,(p,k)=>{if(!k.value){if(c?.values&&"DEFAULT"in c.values){p.nodes=m(c.values.DEFAULT,k.modifier,p.nodes);return}return null}if(k.value.kind==="arbitrary")p.nodes=m(k.value.value,k.modifier,p.nodes);else if(k.value.kind==="named"&&c?.values){let h=c.values[k.value.value];if(typeof h!="string")return null;p.nodes=m(h,k.modifier,p.nodes)}else return null})},(p,k)=>{if(p.kind!=="functional"||k.kind!=="functional")return 0;let h=p.value?p.value.value:"DEFAULT",w=k.value?k.value.value:"DEFAULT",x=c?.values?.[h]??h,S=c?.values?.[w]??w;if(c&&typeof c.sort=="function")return c.sort({value:x,modifier:p.modifier?.value??null},{value:S,modifier:k.modifier?.value??null});let A=d.indexOf(h),y=d.indexOf(w);return A=A===-1?d.length:A,y=y===-1?d.length:y,A!==y?A-y:x<S?-1:1}),e.variants.suggest(f,()=>Object.keys(c?.values??{}).filter(p=>p!=="DEFAULT"))},addUtilities(f){f=Array.isArray(f)?f:[f];let u=f.flatMap(m=>Object.entries(m));u=u.flatMap(([m,d])=>L(m,",").map(p=>[p.trim(),d]));let c=new U(()=>[]);for(let[m,d]of u){if(m.startsWith("@keyframes ")){if(!n){let h=Z(m,he(d));_([h],w=>{w.src=l}),r.push(h)}continue}let p=De(m),k=!1;if(_(p,h=>{if(h.kind==="selector"&&h.value[0]==="."&&Wi.test(h.value.slice(1))){let w=h.value;h.value="&";let x=me(p),S=w.slice(1),A=x==="&"?he(d):[Z(x,he(d))];c.get(S).push(...A),k=!0,h.value=w;return}if(h.kind==="function"&&h.value===":not")return V.Skip}),!k)throw new Error(`\`addUtilities({ '${m}' : \u2026 })\` defines an invalid utility selector. Utilities must be a single class name and start with a lowercase letter, eg. \`.scrollbar-none\`.`)}for(let[m,d]of c)e.theme.prefix&&_(d,p=>{if(p.kind==="rule"){let k=De(p.selector);_(k,h=>{h.kind==="selector"&&h.value[0]==="."&&(h.value=`.${e.theme.prefix}\\:${h.value.slice(1)}`)}),p.selector=me(k)}}),e.utilities.static(m,p=>{let k=d.map(ee);return Yi(k,m,p.raw),t.current|=$e(k,e),k})},matchUtilities(f,u){let c=u?.type?Array.isArray(u?.type)?u.type:[u.type]:["any"];for(let[d,p]of Object.entries(f)){let k=function({negative:h}){return w=>{if(w.value?.kind==="arbitrary"&&c.length>0&&!c.includes("any")&&(w.value.dataType&&!c.includes(w.value.dataType)||!w.value.dataType&&!Q(w.value.value,c)))return;let x=c.includes("color"),S=null,A=!1;{let N=u?.values??{};x&&(N=Object.assign({inherit:"inherit",transparent:"transparent",current:"currentcolor"},N)),w.value?w.value.kind==="arbitrary"?S=w.value.value:w.value.fraction&&N[w.value.fraction]?(S=N[w.value.fraction],A=!0):N[w.value.value]?S=N[w.value.value]:N.__BARE_VALUE__&&(S=N.__BARE_VALUE__(w.value)??null,A=(w.value.fraction!==null&&S?.includes("/"))??!1):S=N.DEFAULT??null}if(S===null)return;let y;{let N=u?.modifiers??null;w.modifier?N==="any"||w.modifier.kind==="arbitrary"?y=w.modifier.value:N?.[w.modifier.value]?y=N[w.modifier.value]:x&&!Number.isNaN(Number(w.modifier.value))?y=`${w.modifier.value}%`:y=null:y=null}if(w.modifier&&y===null&&!A)return w.value?.kind==="arbitrary"?null:void 0;x&&y!==null&&(S=J(S,y)),h&&(S=`calc(${S} * -1)`);let K=he(p(S,{modifier:y}));return Yi(K,d,w.raw),t.current|=$e(K,e),K}};var m=k;if(!Wi.test(d))throw new Error(`\`matchUtilities({ '${d}' : \u2026 })\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter, eg. \`scrollbar\`.`);u?.supportsNegativeValues&&e.utilities.functional(`-${d}`,k({negative:!0}),{types:c}),e.utilities.functional(d,k({negative:!1}),{types:c}),e.utilities.suggest(d,()=>{let h=u?.values??{},w=new Set(Object.keys(h));w.delete("__BARE_VALUE__"),w.delete("__CSS_VALUES__"),w.has("DEFAULT")&&(w.delete("DEFAULT"),w.add(null));let x=u?.modifiers??{},S=x==="any"?[]:Object.keys(x);return[{supportsNegative:u?.supportsNegativeValues??!1,values:Array.from(w),modifiers:S}]})}},addComponents(f,u){this.addUtilities(f,u)},matchComponents(f,u){this.matchUtilities(f,u)},theme:Rt(e,()=>i.theme??{},f=>f),prefix(f){return f},config(f,u){let c=i;if(!f)return c;let m=Ue(f);for(let d=0;d<m.length;++d){let p=m[d];if(c[p]===void 0)return u;c=c[p]}return c??u}};return o.addComponents=o.addComponents.bind(o),o.matchComponents=o.matchComponents.bind(o),o}function he(e){let r=[];e=Array.isArray(e)?e:[e];let i=e.flatMap(t=>Object.entries(t));for(let[t,n]of i)if(n!=null&&n!==!1)if(typeof n!="object"){if(!t.startsWith("--")){if(n==="@slot"){r.push(Z(t,[F("@slot")]));continue}t=t.replace(/([A-Z])/g,"-$1").toLowerCase()}r.push(a(t,String(n)))}else if(Array.isArray(n))for(let l of n)typeof l=="string"?r.push(a(t,l)):r.push(Z(t,he(l)));else r.push(Z(t,he(n)));return r}function Bi(e,r){return(typeof e=="string"?[e]:e).flatMap(t=>{if(t.trim().endsWith("}")){let n=t.replace("}","{@slot}}"),l=Ne(n);return lr(l,r),l}else return Z(t,r)})}function Yi(e,r,i){_(e,t=>{if(t.kind==="rule"){let n=De(t.selector);_(n,l=>{l.kind==="selector"&&l.value===`.${r}`&&(l.value=`.${xe(i)}`)}),t.selector=me(n)}})}function qi(e,r){for(let i of Na(r))e.theme.addKeyframes(i)}function Na(e){let r=[];if("keyframes"in e.theme)for(let[i,t]of Object.entries(e.theme.keyframes))r.push(F("@keyframes",i,he(t)));return r}var Ot={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};function Ke(e){return{__BARE_VALUE__:e}}var fe=Ke(e=>{if(O(e.value))return e.value}),re=Ke(e=>{if(O(e.value))return`${e.value}%`}),Ee=Ke(e=>{if(O(e.value))return`${e.value}px`}),Gi=Ke(e=>{if(O(e.value))return`${e.value}ms`}),Pt=Ke(e=>{if(O(e.value))return`${e.value}deg`}),Va=Ke(e=>{if(e.fraction===null)return;let[r,i]=L(e.fraction,"/");if(!(!O(r)||!O(i)))return e.fraction}),Hi=Ke(e=>{if(O(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),Zi={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...Va},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...re}),backdropContrast:({theme:e})=>({...e("contrast"),...re}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...re}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...Pt}),backdropInvert:({theme:e})=>({...e("invert"),...re}),backdropOpacity:({theme:e})=>({...e("opacity"),...re}),backdropSaturate:({theme:e})=>({...e("saturate"),...re}),backdropSepia:({theme:e})=>({...e("sepia"),...re}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...Ee},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...re},caretColor:({theme:e})=>e("colors"),colors:()=>({...Ot}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...fe},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...re},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...Ee}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...fe},flexShrink:{0:"0",DEFAULT:"1",...fe},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...re},grayscale:{0:"0",DEFAULT:"100%",...re},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...fe},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...fe},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...fe},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...fe},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...Hi},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...Hi},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...Pt},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...re},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...fe},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...re},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...fe},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...Ee},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...Ee},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...Ee},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...Ee},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...Pt},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...re},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...re},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...re},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...Pt},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...fe},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...Ee},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...Ee},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...Gi},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...Gi},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...fe}};function Qi(e){return{theme:{...Zi,colors:({theme:r})=>r("color",{}),extend:{fontSize:({theme:r})=>({...r("text",{})}),boxShadow:({theme:r})=>({...r("shadow",{})}),animation:({theme:r})=>({...r("animate",{})}),aspectRatio:({theme:r})=>({...r("aspect",{})}),borderRadius:({theme:r})=>({...r("radius",{})}),screens:({theme:r})=>({...r("breakpoint",{})}),letterSpacing:({theme:r})=>({...r("tracking",{})}),lineHeight:({theme:r})=>({...r("leading",{})}),transitionDuration:{DEFAULT:e.get(["--default-transition-duration"])??null},transitionTimingFunction:{DEFAULT:e.get(["--default-transition-timing-function"])??null},maxWidth:({theme:r})=>({...r("container",{})})}}}}var Ra={blocklist:[],future:{},experimental:{},prefix:"",important:!1,darkMode:null,theme:{},plugins:[],content:{files:[]}};function pr(e,r){let i={design:e,configs:[],plugins:[],content:{files:[]},theme:{},extend:{},result:structuredClone(Ra)};for(let n of r)fr(i,n);for(let n of i.configs)"darkMode"in n&&n.darkMode!==void 0&&(i.result.darkMode=n.darkMode??null),"prefix"in n&&n.prefix!==void 0&&(i.result.prefix=n.prefix??""),"blocklist"in n&&n.blocklist!==void 0&&(i.result.blocklist=n.blocklist??[]),"important"in n&&n.important!==void 0&&(i.result.important=n.important??!1);let t=Pa(i);return{resolvedConfig:{...i.result,content:i.content,theme:i.theme,plugins:i.plugins},replacedThemeKeys:t}}function Oa(e,r){if(Array.isArray(e)&&Ge(e[0]))return e.concat(r);if(Array.isArray(r)&&Ge(r[0])&&Ge(e))return[e,...r];if(Array.isArray(r))return r}function fr(e,{config:r,base:i,path:t,reference:n,src:l}){let o=[];for(let c of r.plugins??[])"__isOptionsFunction"in c?o.push({...c(),reference:n,src:l}):"handler"in c?o.push({...c,reference:n,src:l}):o.push({handler:c,reference:n,src:l});if(Array.isArray(r.presets)&&r.presets.length===0)throw new Error("Error in the config file/plugin/preset. An empty preset (`preset: []`) is not currently supported.");for(let c of r.presets??[])fr(e,{path:t,base:i,config:c,reference:n,src:l});for(let c of o)e.plugins.push(c),c.config&&fr(e,{path:t,base:i,config:c.config,reference:!!c.reference,src:c.src??l});let f=r.content??[],u=Array.isArray(f)?f:f.files;for(let c of u)e.content.files.push(typeof c=="object"?c:{base:i,pattern:c});e.configs.push(r)}function Pa(e){let r=new Set,i=Rt(e.design,()=>e.theme,n),t=Object.assign(i,{theme:i,colors:Ot});function n(l){return typeof l=="function"?l(t)??null:l??null}for(let l of e.configs){let o=l.theme??{},f=o.extend??{};for(let u in o)u!=="extend"&&r.add(u);Object.assign(e.theme,o);for(let u in f)e.extend[u]??=[],e.extend[u].push(f[u])}delete e.theme.extend;for(let l in e.extend){let o=[e.theme[l],...e.extend[l]];e.theme[l]=()=>{let f=o.map(n);return at({},f,Oa)}}for(let l in e.theme)e.theme[l]=n(e.theme[l]);if(e.theme.screens&&typeof e.theme.screens=="object")for(let l of Object.keys(e.theme.screens)){let o=e.theme.screens[l];o&&typeof o=="object"&&("raw"in o||"max"in o||"min"in o&&(e.theme.screens[l]=o.min))}return r}function Ji(e,r){let i=e.theme.container||{};if(typeof i!="object"||i===null)return;let t=_a(i,r);t.length!==0&&r.utilities.static("container",()=>t.map(ee))}function _a({center:e,padding:r,screens:i},t){let n=[],l=null;if(e&&n.push(a("margin-inline","auto")),(typeof r=="string"||typeof r=="object"&&r!==null&&"DEFAULT"in r)&&n.push(a("padding-inline",typeof r=="string"?r:r.DEFAULT)),typeof i=="object"&&i!==null){l=new Map;let o=Array.from(t.theme.namespace("--breakpoint").entries());if(o.sort((f,u)=>Oe(f[1],u[1],"asc")),o.length>0){let[f]=o[0];n.push(F("@media",`(width >= --theme(--breakpoint-${f}))`,[a("max-width","none")]))}for(let[f,u]of Object.entries(i)){if(typeof u=="object")if("min"in u)u=u.min;else continue;l.set(f,F("@media",`(width >= ${u})`,[a("max-width",u)]))}}if(typeof r=="object"&&r!==null){let o=Object.entries(r).filter(([f])=>f!=="DEFAULT").map(([f,u])=>[f,t.theme.resolveValue(f,["--breakpoint"]),u]).filter(Boolean);o.sort((f,u)=>Oe(f[1],u[1],"asc"));for(let[f,,u]of o)if(l&&l.has(f))l.get(f).nodes.push(a("padding-inline",u));else{if(l)continue;n.push(F("@media",`(width >= theme(--breakpoint-${f}))`,[a("padding-inline",u)]))}}if(l)for(let[,o]of l)n.push(o);return n}function Xi({addVariant:e,config:r}){let i=r("darkMode",null),[t,n=".dark"]=Array.isArray(i)?i:[i];if(t==="variant"){let l;if(Array.isArray(n)||typeof n=="function"?l=n:typeof n=="string"&&(l=[n]),Array.isArray(l))for(let o of l)o===".dark"?(t=!1,console.warn('When using `variant` for `darkMode`, you must provide a selector.\nExample: `darkMode: ["variant", ".your-selector &"]`')):o.includes("&")||(t=!1,console.warn('When using `variant` for `darkMode`, your selector must contain `&`.\nExample `darkMode: ["variant", ".your-selector &"]`'));n=l}t===null||(t==="selector"?e("dark",`&:where(${n}, ${n} *)`):t==="media"?e("dark","@media (prefers-color-scheme: dark)"):t==="variant"?e("dark",n):t==="class"&&e("dark",`&:is(${n} *)`))}function en(e){for(let[r,i]of[["t","top"],["tr","top right"],["r","right"],["br","bottom right"],["b","bottom"],["bl","bottom left"],["l","left"],["tl","top left"]])e.utilities.suggest(`bg-gradient-to-${r}`,()=>[]),e.utilities.static(`bg-gradient-to-${r}`,()=>[a("--tw-gradient-position",`to ${i} in oklab`),a("background-image","linear-gradient(var(--tw-gradient-stops))")]);e.utilities.suggest("bg-left-top",()=>[]),e.utilities.static("bg-left-top",()=>[a("background-position","left top")]),e.utilities.suggest("bg-right-top",()=>[]),e.utilities.static("bg-right-top",()=>[a("background-position","right top")]),e.utilities.suggest("bg-left-bottom",()=>[]),e.utilities.static("bg-left-bottom",()=>[a("background-position","left bottom")]),e.utilities.suggest("bg-right-bottom",()=>[]),e.utilities.static("bg-right-bottom",()=>[a("background-position","right bottom")]),e.utilities.suggest("object-left-top",()=>[]),e.utilities.static("object-left-top",()=>[a("object-position","left top")]),e.utilities.suggest("object-right-top",()=>[]),e.utilities.static("object-right-top",()=>[a("object-position","right top")]),e.utilities.suggest("object-left-bottom",()=>[]),e.utilities.static("object-left-bottom",()=>[a("object-position","left bottom")]),e.utilities.suggest("object-right-bottom",()=>[]),e.utilities.static("object-right-bottom",()=>[a("object-position","right bottom")]),e.utilities.suggest("max-w-screen",()=>[]),e.utilities.functional("max-w-screen",r=>{if(!r.value||r.value.kind==="arbitrary")return;let i=e.theme.resolve(r.value.value,["--breakpoint"]);if(i)return[a("max-width",i)]}),e.utilities.suggest("overflow-ellipsis",()=>[]),e.utilities.static("overflow-ellipsis",()=>[a("text-overflow","ellipsis")]),e.utilities.suggest("decoration-slice",()=>[]),e.utilities.static("decoration-slice",()=>[a("-webkit-box-decoration-break","slice"),a("box-decoration-break","slice")]),e.utilities.suggest("decoration-clone",()=>[]),e.utilities.static("decoration-clone",()=>[a("-webkit-box-decoration-break","clone"),a("box-decoration-break","clone")]),e.utilities.suggest("flex-shrink",()=>[]),e.utilities.functional("flex-shrink",r=>{if(!r.modifier){if(!r.value)return[a("flex-shrink","1")];if(r.value.kind==="arbitrary")return[a("flex-shrink",r.value.value)];if(O(r.value.value))return[a("flex-shrink",r.value.value)]}}),e.utilities.suggest("flex-grow",()=>[]),e.utilities.functional("flex-grow",r=>{if(!r.modifier){if(!r.value)return[a("flex-grow","1")];if(r.value.kind==="arbitrary")return[a("flex-grow",r.value.value)];if(O(r.value.value))return[a("flex-grow",r.value.value)]}}),e.utilities.suggest("order-none",()=>[]),e.utilities.static("order-none",()=>[a("order","0")]),e.utilities.suggest("break-words",()=>[]),e.utilities.static("break-words",()=>[a("overflow-wrap","break-word")])}function tn(e,r){let i=e.theme.screens||{},t=r.variants.get("min")?.order??0,n=[];for(let[o,f]of Object.entries(i)){let p=function(k){r.variants.static(o,h=>{h.nodes=[F("@media",d,h.nodes)]},{order:k})};var l=p;let u=r.variants.get(o),c=r.theme.resolveValue(o,["--breakpoint"]);if(u&&c&&!r.theme.hasDefault(`--breakpoint-${o}`))continue;let m=!0;typeof f=="string"&&(m=!1);let d=Ia(f);m?n.push(p):p(t)}if(n.length!==0){for(let[,o]of r.variants.variants)o.order>t&&(o.order+=n.length);r.variants.compareFns=new Map(Array.from(r.variants.compareFns).map(([o,f])=>(o>t&&(o+=n.length),[o,f])));for(let[o,f]of n.entries())f(t+o+1)}}function Ia(e){return(Array.isArray(e)?e:[e]).map(i=>typeof i=="string"?{min:i}:i&&typeof i=="object"?i:null).map(i=>{if(i===null)return null;if("raw"in i)return i.raw;let t="";return i.max!==void 0&&(t+=`${i.max} >= `),t+="width",i.min!==void 0&&(t+=` >= ${i.min}`),`(${t})`}).filter(Boolean).join(", ")}function rn(e,r){let i=e.theme.aria||{},t=e.theme.supports||{},n=e.theme.data||{};if(Object.keys(i).length>0){let l=r.variants.get("aria"),o=l?.applyFn,f=l?.compounds;r.variants.functional("aria",(u,c)=>{let m=c.value;return m&&m.kind==="named"&&m.value in i?o?.(u,{...c,value:{kind:"arbitrary",value:i[m.value]}}):o?.(u,c)},{compounds:f})}if(Object.keys(t).length>0){let l=r.variants.get("supports"),o=l?.applyFn,f=l?.compounds;r.variants.functional("supports",(u,c)=>{let m=c.value;return m&&m.kind==="named"&&m.value in t?o?.(u,{...c,value:{kind:"arbitrary",value:t[m.value]}}):o?.(u,c)},{compounds:f})}if(Object.keys(n).length>0){let l=r.variants.get("data"),o=l?.applyFn,f=l?.compounds;r.variants.functional("data",(u,c)=>{let m=c.value;return m&&m.kind==="named"&&m.value in n?o?.(u,{...c,value:{kind:"arbitrary",value:n[m.value]}}):o?.(u,c)},{compounds:f})}}var Da=/^[a-z]+$/;async function on({designSystem:e,base:r,ast:i,loadModule:t,sources:n}){let l=0,o=[],f=[];_(i,(d,p)=>{if(d.kind!=="at-rule")return;let k=et(p);if(d.name==="@plugin"){if(k.parent!==null)throw new Error("`@plugin` cannot be nested.");let h=d.params.slice(1,-1);if(h.length===0)throw new Error("`@plugin` must have a path.");let w={};for(let x of d.nodes??[]){if(x.kind!=="declaration")throw new Error(`Unexpected \`@plugin\` option:
+
+${ie([x])}
+
+\`@plugin\` options must be a flat list of declarations.`);if(x.value===void 0)continue;let S=x.value,A=L(S,",").map(y=>{if(y=y.trim(),y==="null")return null;if(y==="true")return!0;if(y==="false")return!1;if(Number.isNaN(Number(y))){if(y[0]==='"'&&y[y.length-1]==='"'||y[0]==="'"&&y[y.length-1]==="'")return y.slice(1,-1);if(y[0]==="{"&&y[y.length-1]==="}")throw new Error(`Unexpected \`@plugin\` option: Value of declaration \`${ie([x]).trim()}\` is not supported.
+
+Using an object as a plugin option is currently only supported in JavaScript configuration files.`)}else return Number(y);return y});w[x.property]=A.length===1?A[0]:A}return o.push([{id:h,base:k.context.base,reference:!!k.context.reference,src:d.src},Object.keys(w).length>0?w:null]),l|=4,V.Replace([])}if(d.name==="@config"){if(d.nodes.length>0)throw new Error("`@config` cannot have a body.");if(k.parent!==null)throw new Error("`@config` cannot be nested.");return f.push({id:d.params.slice(1,-1),base:k.context.base,reference:!!k.context.reference,src:d.src}),l|=4,V.Replace([])}}),en(e);let u=e.resolveThemeValue;if(e.resolveThemeValue=function(p,k){return p.startsWith("--")?u(p,k):(l|=nn({designSystem:e,base:r,ast:i,sources:n,configs:[],pluginDetails:[]}),e.resolveThemeValue(p,k))},!o.length&&!f.length)return 0;let[c,m]=await Promise.all([Promise.all(f.map(async({id:d,base:p,reference:k,src:h})=>{let w=await t(d,p,"config");return{path:d,base:w.base,config:w.module,reference:k,src:h}})),Promise.all(o.map(async([{id:d,base:p,reference:k,src:h},w])=>{let x=await t(d,p,"plugin");return{path:d,base:x.base,plugin:x.module,options:w,reference:k,src:h}}))]);return l|=nn({designSystem:e,base:r,ast:i,sources:n,configs:c,pluginDetails:m}),l}function nn({designSystem:e,base:r,ast:i,sources:t,configs:n,pluginDetails:l}){let o=0,u=[...l.map(w=>{if(!w.options)return{config:{plugins:[w.plugin]},base:w.base,reference:w.reference,src:w.src};if("__isOptionsFunction"in w.plugin)return{config:{plugins:[w.plugin(w.options)]},base:w.base,reference:w.reference,src:w.src};throw new Error(`The plugin "${w.path}" does not accept options`)}),...n],{resolvedConfig:c}=pr(e,[{config:Qi(e.theme),base:r,reference:!0,src:void 0},...u,{config:{plugins:[Xi]},base:r,reference:!0,src:void 0}]),{resolvedConfig:m,replacedThemeKeys:d}=pr(e,u),p={designSystem:e,ast:i,resolvedConfig:c,featuresRef:{set current(w){o|=w}}},k=cr({...p,referenceMode:!1,src:void 0}),h=e.resolveThemeValue;e.resolveThemeValue=function(x,S){if(x[0]==="-"&&x[1]==="-")return h(x,S);let A=k.theme(x,void 0);if(Array.isArray(A)&&A.length===2)return A[0];if(Array.isArray(A))return A.join(", ");if(typeof A=="object"&&A!==null&&"DEFAULT"in A)return A.DEFAULT;if(typeof A=="string")return A};for(let{handler:w,reference:x,src:S}of c.plugins){let A=cr({...p,referenceMode:x??!1,src:S});w(A)}if(ri(e,m,d),qi(e,m),rn(m,e),tn(m,e),Ji(m,e),!e.theme.prefix&&c.prefix){if(c.prefix.endsWith("-")&&(c.prefix=c.prefix.slice(0,-1),console.warn(`The prefix "${c.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only and is written as a variant before all utilities. We have fixed up the prefix for you. Remove the trailing \`-\` to silence this warning.`)),!Da.test(c.prefix))throw new Error(`The prefix "${c.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);e.theme.prefix=c.prefix}if(!e.important&&c.important===!0&&(e.important=!0),typeof c.important=="string"){let w=c.important;_(i,(x,S)=>{if(x.kind!=="at-rule"||x.name!=="@tailwind"||x.params!=="utilities")return;let A=et(S);return A.parent?.kind==="rule"&&A.parent.selector===w?V.Stop:V.ReplaceStop(q(w,[x]))})}for(let w of c.blocklist)e.invalidCandidates.add(w);for(let w of c.content.files){if("raw"in w)throw new Error(`Error in the config file/plugin/preset. The \`content\` key contains a \`raw\` entry:
+
+${JSON.stringify(w,null,2)}
+
+This feature is not currently supported.`);let x=!1;w.pattern[0]=="!"&&(x=!0,w.pattern=w.pattern.slice(1)),t.push({...w,negated:x})}return o}function an({ast:e}){let r=new U(n=>st(n.code)),i=new U(n=>({url:n.file,content:n.code,ignore:!1})),t={file:null,sources:[],mappings:[]};_(e,n=>{if(!n.src||!n.dst)return;let l=i.get(n.src[0]);if(!l.content)return;let o=r.get(n.src[0]),f=r.get(n.dst[0]),u=l.content.slice(n.src[1],n.src[2]),c=0;for(let p of u.split(`
+`)){if(p.trim()!==""){let k=o.find(n.src[1]+c),h=f.find(n.dst[1]);t.mappings.push({name:null,originalPosition:{source:l,...k},generatedPosition:h})}c+=p.length,c+=1}let m=o.find(n.src[2]),d=f.find(n.dst[2]);t.mappings.push({name:null,originalPosition:{source:l,...m},generatedPosition:d})});for(let n of r.keys())t.sources.push(i.get(n));return t.mappings.sort((n,l)=>n.generatedPosition.line-l.generatedPosition.line||n.generatedPosition.column-l.generatedPosition.column||(n.originalPosition?.line??0)-(l.originalPosition?.line??0)||(n.originalPosition?.column??0)-(l.originalPosition?.column??0)),t}var ln=/^(-?\d+)\.\.(-?\d+)(?:\.\.(-?\d+))?$/;function _t(e){let r=e.indexOf("{");if(r===-1)return[e];let i=[],t=e.slice(0,r),n=e.slice(r),l=0,o=n.lastIndexOf("}");for(let d=0;d<n.length;d++){let p=n[d];if(p==="{")l++;else if(p==="}"&&(l--,l===0)){o=d;break}}if(o===-1)throw new Error(`The pattern \`${e}\` is not balanced.`);let f=n.slice(1,o),u=n.slice(o+1),c;Ua(f)?c=La(f):c=L(f,","),c=c.flatMap(d=>_t(d));let m=_t(u);for(let d of m)for(let p of c)i.push(t+p+d);return i}function Ua(e){return ln.test(e)}function La(e){let r=e.match(ln);if(!r)return[e];let[,i,t,n]=r,l=n?parseInt(n,10):void 0,o=[];if(/^-?\d+$/.test(i)&&/^-?\d+$/.test(t)){let f=parseInt(i,10),u=parseInt(t,10);if(l===void 0&&(l=f<=u?1:-1),l===0)throw new Error("Step cannot be zero in sequence expansion.");let c=f<u;c&&l<0&&(l=-l),!c&&l>0&&(l=-l);for(let m=f;c?m<=u:m>=u;m+=l)o.push(m.toString())}return o}function sn(e,r){let i=new Set,t=new Set,n=[];function l(o,f=[]){if(e.has(o)&&!i.has(o)){t.has(o)&&r.onCircularDependency?.(f,o),t.add(o);for(let u of e.get(o)??[])f.push(o),l(u,f),f.pop();i.add(o),t.delete(o),n.push(o)}}for(let o of e.keys())l(o);return n}var Ka=/^[a-z]+$/,ht=(n=>(n[n.None=0]="None",n[n.AtProperty=1]="AtProperty",n[n.ColorMix=2]="ColorMix",n[n.All=3]="All",n))(ht||{});function za(){throw new Error("No `loadModule` function provided to `compile`")}function Ma(){throw new Error("No `loadStylesheet` function provided to `compile`")}function ja(e){let r=0,i=null;for(let t of L(e," "))t==="reference"?r|=2:t==="inline"?r|=1:t==="default"?r|=4:t==="static"?r|=8:t.startsWith("prefix(")&&t.endsWith(")")&&(i=t.slice(7,-1));return[r,i]}var Pe=(u=>(u[u.None=0]="None",u[u.AtApply=1]="AtApply",u[u.AtImport=2]="AtImport",u[u.JsPluginCompat=4]="JsPluginCompat",u[u.ThemeFunction=8]="ThemeFunction",u[u.Utilities=16]="Utilities",u[u.Variants=32]="Variants",u[u.AtTheme=64]="AtTheme",u))(Pe||{});async function un(e,{base:r="",from:i,loadModule:t=za,loadStylesheet:n=Ma}={}){let l=0;e=[de({base:r},e)],l|=await ur(e,r,n,0,i!==void 0);let o=null,f=new mt,u=new Map,c=new Map,m=[],d=null,p=null,k=[],h=[],w=[],x=[],S=null;_(e,(y,K)=>{if(y.kind!=="at-rule")return;let N=et(K);if(y.name==="@tailwind"&&(y.params==="utilities"||y.params.startsWith("utilities"))){if(p!==null)return V.Replace([]);if(N.context.reference)return V.Replace([]);let P=L(y.params," ");for(let z of P)if(z.startsWith("source(")){let I=z.slice(7,-1);if(I==="none"){S=I;continue}if(I[0]==='"'&&I[I.length-1]!=='"'||I[0]==="'"&&I[I.length-1]!=="'"||I[0]!=="'"&&I[0]!=='"')throw new Error("`source(\u2026)` paths must be quoted.");S={base:N.context.sourceBase??N.context.base,pattern:I.slice(1,-1)}}p=y,l|=16}if(y.name==="@utility"){if(N.parent!==null)throw new Error("`@utility` cannot be nested.");if(y.nodes.length===0)throw new Error(`\`@utility ${y.params}\` is empty. Utilities should include at least one property.`);let P=Jr(y);if(P===null){if(!y.params.endsWith("-*")){if(y.params.endsWith("*"))throw new Error(`\`@utility ${y.params}\` defines an invalid utility name. A functional utility must end in \`-*\`.`);if(y.params.includes("*"))throw new Error(`\`@utility ${y.params}\` defines an invalid utility name. The dynamic portion marked by \`-*\` must appear once at the end.`)}throw new Error(`\`@utility ${y.params}\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter.`)}m.push(P)}if(y.name==="@source"){if(y.nodes.length>0)throw new Error("`@source` cannot have a body.");if(N.parent!==null)throw new Error("`@source` cannot be nested.");let P=!1,z=!1,I=y.params;if(I[0]==="n"&&I.startsWith("not ")&&(P=!0,I=I.slice(4)),I[0]==="i"&&I.startsWith("inline(")&&(z=!0,I=I.slice(7,-1)),I[0]==='"'&&I[I.length-1]!=='"'||I[0]==="'"&&I[I.length-1]!=="'"||I[0]!=="'"&&I[0]!=='"')throw new Error("`@source` paths must be quoted.");let M=I.slice(1,-1);if(z){let Y=P?x:w,G=L(M," ");for(let ae of G)for(let le of _t(ae))Y.push(le)}else h.push({base:N.context.base,pattern:M,negated:P});return V.ReplaceSkip([])}if(y.name==="@variant"&&(N.parent===null?y.nodes.length===0?y.name="@custom-variant":(_(y.nodes,P=>{if(P.kind==="at-rule"&&P.name==="@slot")return y.name="@custom-variant",V.Stop}),y.name==="@variant"&&k.push(y)):k.push(y)),y.name==="@custom-variant"){if(N.parent!==null)throw new Error("`@custom-variant` cannot be nested.");let[P,z]=L(y.params," ");if(!Vt.test(P))throw new Error(`\`@custom-variant ${P}\` defines an invalid variant name. Variants should only contain alphanumeric, dashes, or underscore characters and start with a lowercase letter or number.`);if(y.nodes.length>0&&z)throw new Error(`\`@custom-variant ${P}\` cannot have both a selector and a body.`);if(y.nodes.length===0){if(!z)throw new Error(`\`@custom-variant ${P}\` has no selector or body.`);let I=L(z.slice(1,-1),",");if(I.length===0||I.some(G=>G.trim()===""))throw new Error(`\`@custom-variant ${P} (${I.join(",")})\` selector is invalid.`);let M=[],Y=[];for(let G of I)G=G.trim(),G[0]==="@"?M.push(G):Y.push(G);u.set(P,G=>{G.variants.static(P,ae=>{let le=[];Y.length>0&&le.push(q(Y.join(", "),ae.nodes));for(let s of M)le.push(Z(s,ae.nodes));ae.nodes=le},{compounds:Le([...Y,...M])})}),c.set(P,new Set)}else{let I=new Set;_(y.nodes,M=>{M.kind==="at-rule"&&M.name==="@variant"&&I.add(M.params)}),u.set(P,M=>{M.variants.fromAst(P,y.nodes,M)}),c.set(P,I)}return V.ReplaceSkip([])}if(y.name==="@media"){let P=L(y.params," "),z=[];for(let I of P)if(I.startsWith("source(")){let M=I.slice(7,-1);_(y.nodes,Y=>{if(Y.kind==="at-rule"&&Y.name==="@tailwind"&&Y.params==="utilities")return Y.params+=` source(${M})`,V.ReplaceStop([de({sourceBase:N.context.base},[Y])])})}else if(I.startsWith("theme(")){let M=I.slice(6,-1),Y=M.includes("reference");_(y.nodes,G=>{if(G.kind!=="context"){if(G.kind!=="at-rule"){if(Y)throw new Error('Files imported with `@import "\u2026" theme(reference)` must only contain `@theme` blocks.\nUse `@reference "\u2026";` instead.');return V.Continue}if(G.name==="@theme")return G.params+=" "+M,V.Skip}})}else if(I.startsWith("prefix(")){let M=I.slice(7,-1);_(y.nodes,Y=>{if(Y.kind==="at-rule"&&Y.name==="@theme")return Y.params+=` prefix(${M})`,V.Skip})}else I==="important"?o=!0:I==="reference"?y.nodes=[de({reference:!0},y.nodes)]:z.push(I);if(z.length>0)y.params=z.join(" ");else if(P.length>0)return V.Replace(y.nodes);return V.Continue}if(y.name==="@theme"){let[P,z]=ja(y.params);if(l|=64,N.context.reference&&(P|=2),z){if(!Ka.test(z))throw new Error(`The prefix "${z}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);f.prefix=z}return _(y.nodes,I=>{if(I.kind==="at-rule"&&I.name==="@keyframes")return f.addKeyframes(I),V.Skip;if(I.kind==="comment")return;if(I.kind==="declaration"&&I.property.startsWith("--")){f.add(Ve(I.property),I.value??"",P,I.src);return}let M=ie([F(y.name,y.params,[I])]).split(`
+`).map((Y,G,ae)=>`${G===0||G>=ae.length-2?" ":">"} ${Y}`).join(`
+`);throw new Error(`\`@theme\` blocks must only contain custom properties or \`@keyframes\`.
+
+${M}`)}),d?V.ReplaceSkip([]):(d=q(":root, :host",[]),d.src=y.src,V.ReplaceSkip(d))}});let A=Ui(f,p?.src);if(o&&(A.important=o),x.length>0)for(let y of x)A.invalidCandidates.add(y);l|=await on({designSystem:A,base:r,ast:e,loadModule:t,sources:h});for(let y of u.keys())A.variants.static(y,()=>{});for(let y of sn(c,{onCircularDependency(K,N){let P=ie(K.map((z,I)=>F("@custom-variant",z,[F("@variant",K[I+1]??N,[])]))).replaceAll(";"," { \u2026 }").replace(`@custom-variant ${N} {`,`@custom-variant ${N} { /* \u2190 */`);throw new Error(`Circular dependency detected in custom variants:
+
+${P}`)}}))u.get(y)?.(A);for(let y of m)y(A);if(d){let y=[];for(let[N,P]of A.theme.entries()){if(P.options&2)continue;let z=a(xe(N),P.value);z.src=P.src,y.push(z)}let K=A.theme.getKeyframes();for(let N of K)e.push(de({theme:!0},[W([N])]));d.nodes=[de({theme:!0},y)]}if(l|=ot(e,A),l|=Fe(e,A),l|=$e(e,A),p){let y=p;y.kind="context",y.context={}}return _(e,y=>{if(y.kind==="at-rule")return y.name==="@utility"?V.Replace([]):V.Skip}),{designSystem:A,ast:e,sources:h,root:S,utilitiesNode:p,features:l,inlineCandidates:w}}async function cn(e,r={}){let{designSystem:i,ast:t,sources:n,root:l,utilitiesNode:o,features:f,inlineCandidates:u}=await un(e,r);t.unshift(dt(`! tailwindcss v${dr} | MIT License | https://tailwindcss.com `));function c(h){i.invalidCandidates.add(h)}let m=new Set,d=null,p=0,k=!1;for(let h of u)i.invalidCandidates.has(h)||(m.add(h),k=!0);return{sources:n,root:l,features:f,build(h){if(f===0)return e;if(!o)return d??=Re(t,i,r.polyfills),d;let w=k,x=!1;k=!1;let S=m.size;for(let y of h)if(!i.invalidCandidates.has(y))if(y[0]==="-"&&y[1]==="-"){let K=i.theme.markUsedVariable(y);w||=K,x||=K}else m.add(y),w||=m.size!==S;if(!w)return d??=Re(t,i,r.polyfills),d;let A=Te(m,i,{onInvalidCandidate:c}).astNodes;return r.from&&_(A,y=>{y.src??=o.src}),!x&&p===A.length?(d??=Re(t,i,r.polyfills),d):(p=A.length,o.nodes=A,d=Re(t,i,r.polyfills),d)}}}async function Fa(e,r={}){let i=Ne(e,{from:r.from}),t=await cn(i,r),n=i,l=e;return{...t,build(o){let f=t.build(o);return f===n||(l=ie(f,!!r.from),n=f),l},buildSourceMap(){return an({ast:n})}}}async function Wa(e,r={}){return(await un(Ne(e,{from:r.from}),r)).designSystem}function lt(){throw new Error("It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration.")}for(let e in It)e!=="default"&&(lt[e]=It[e]);module.exports=lt;
Index: node_modules/tailwindcss/dist/lib.mjs
===================================================================
--- node_modules/tailwindcss/dist/lib.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/lib.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+import{a,b,c,d,e,f}from"./chunk-CT46QCH7.mjs";import"./chunk-GFBUASX3.mjs";import"./chunk-HTB5LLOP.mjs";export{b as Features,a as Polyfills,e as __unstable__loadDesignSystem,d as compile,c as compileAst,f as default};
Index: node_modules/tailwindcss/dist/plugin.d.mts
===================================================================
--- node_modules/tailwindcss/dist/plugin.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/plugin.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,11 @@
+export { P as PluginUtils } from './resolve-config-QUZ9b-Gn.mjs';
+import { a as PluginFn, C as Config, b as PluginWithConfig, c as PluginWithOptions } from './types-CJYAW1ql.mjs';
+export { d as PluginAPI, P as PluginsConfig, T as ThemeConfig } from './types-CJYAW1ql.mjs';
+import './colors.mjs';
+
+declare function createPlugin(handler: PluginFn, config?: Partial<Config>): PluginWithConfig;
+declare namespace createPlugin {
+    var withOptions: <T>(pluginFunction: (options?: T) => PluginFn, configFunction?: (options?: T) => Partial<Config>) => PluginWithOptions<T>;
+}
+
+export { Config, PluginFn as PluginCreator, createPlugin as default };
Index: node_modules/tailwindcss/dist/plugin.d.ts
===================================================================
--- node_modules/tailwindcss/dist/plugin.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/plugin.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,134 @@
+import { N as NamedUtilityValue, P as PluginUtils } from './resolve-config-BIFUA2FY.js';
+import './colors-b_6i0Oi7.js';
+
+/**
+ * The source code for one or more nodes in the AST
+ *
+ * This generally corresponds to a stylesheet
+ */
+interface Source {
+    /**
+     * The path to the file that contains the referenced source code
+     *
+     * If this references the *output* source code, this is `null`.
+     */
+    file: string | null;
+    /**
+     * The referenced source code
+     */
+    code: string;
+}
+/**
+ * The file and offsets within it that this node covers
+ *
+ * This can represent either:
+ * - A location in the original CSS which caused this node to be created
+ * - A location in the output CSS where this node resides
+ */
+type SourceLocation = [source: Source, start: number, end: number];
+
+type Config = UserConfig;
+type PluginFn = (api: PluginAPI) => void;
+type PluginWithConfig = {
+    handler: PluginFn;
+    config?: UserConfig;
+    /** @internal */
+    reference?: boolean;
+    src?: SourceLocation | undefined;
+};
+type PluginWithOptions<T> = {
+    (options?: T): PluginWithConfig;
+    __isOptionsFunction: true;
+};
+type Plugin = PluginFn | PluginWithConfig | PluginWithOptions<any>;
+type PluginAPI = {
+    addBase(base: CssInJs): void;
+    addVariant(name: string, variant: string | string[] | CssInJs): void;
+    matchVariant<T = string>(name: string, cb: (value: T | string, extra: {
+        modifier: string | null;
+    }) => string | string[], options?: {
+        values?: Record<string, T>;
+        sort?(a: {
+            value: T | string;
+            modifier: string | null;
+        }, b: {
+            value: T | string;
+            modifier: string | null;
+        }): number;
+    }): void;
+    addUtilities(utilities: Record<string, CssInJs | CssInJs[]> | Record<string, CssInJs | CssInJs[]>[], options?: {}): void;
+    matchUtilities(utilities: Record<string, (value: string, extra: {
+        modifier: string | null;
+    }) => CssInJs | CssInJs[]>, options?: Partial<{
+        type: string | string[];
+        supportsNegativeValues: boolean;
+        values: Record<string, string> & {
+            __BARE_VALUE__?: (value: NamedUtilityValue) => string | undefined;
+        };
+        modifiers: 'any' | Record<string, string>;
+    }>): void;
+    addComponents(utilities: Record<string, CssInJs> | Record<string, CssInJs>[], options?: {}): void;
+    matchComponents(utilities: Record<string, (value: string, extra: {
+        modifier: string | null;
+    }) => CssInJs>, options?: Partial<{
+        type: string | string[];
+        supportsNegativeValues: boolean;
+        values: Record<string, string> & {
+            __BARE_VALUE__?: (value: NamedUtilityValue) => string | undefined;
+        };
+        modifiers: 'any' | Record<string, string>;
+    }>): void;
+    theme(path: string, defaultValue?: any): any;
+    config(path?: string, defaultValue?: any): any;
+    prefix(className: string): string;
+};
+type CssInJs = {
+    [key: string]: string | string[] | CssInJs | CssInJs[];
+};
+
+type ResolvableTo<T> = T | ((utils: PluginUtils) => T);
+type ThemeValue = ResolvableTo<Record<string, unknown>> | null | undefined;
+type ThemeConfig = Record<string, ThemeValue> & {
+    extend?: Record<string, ThemeValue>;
+};
+type ContentFile = string | {
+    raw: string;
+    extension?: string;
+};
+type DarkModeStrategy = false | 'media' | 'class' | ['class', string] | 'selector' | ['selector', string] | ['variant', string | string[]];
+interface UserConfig {
+    presets?: UserConfig[];
+    theme?: ThemeConfig;
+    plugins?: Plugin[];
+}
+interface UserConfig {
+    content?: ContentFile[] | {
+        relative?: boolean;
+        files: ContentFile[];
+    };
+}
+interface UserConfig {
+    darkMode?: DarkModeStrategy;
+}
+interface UserConfig {
+    prefix?: string;
+}
+interface UserConfig {
+    blocklist?: string[];
+}
+interface UserConfig {
+    important?: boolean | string;
+}
+interface UserConfig {
+    future?: 'all' | Record<string, boolean>;
+}
+interface UserConfig {
+    experimental?: 'all' | Record<string, boolean>;
+}
+
+declare function createPlugin(handler: PluginFn, config?: Partial<Config>): PluginWithConfig;
+declare namespace createPlugin {
+    var withOptions: <T>(pluginFunction: (options?: T) => PluginFn, configFunction?: (options?: T) => Partial<Config>) => PluginWithOptions<T>;
+}
+
+export { createPlugin as default };
Index: node_modules/tailwindcss/dist/plugin.js
===================================================================
--- node_modules/tailwindcss/dist/plugin.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/plugin.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+"use strict";function g(i,n){return{handler:i,config:n}}g.withOptions=function(i,n=()=>({})){function t(o){return{handler:i(o),config:n(o)}}return t.__isOptionsFunction=!0,t};var u=g;module.exports=u;
Index: node_modules/tailwindcss/dist/plugin.mjs
===================================================================
--- node_modules/tailwindcss/dist/plugin.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/plugin.mjs	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+function g(i,n){return{handler:i,config:n}}g.withOptions=function(i,n=()=>({})){function t(o){return{handler:i(o),config:n(o)}}return t.__isOptionsFunction=!0,t};var u=g;export{u as default};
Index: node_modules/tailwindcss/dist/resolve-config-BIFUA2FY.d.ts
===================================================================
--- node_modules/tailwindcss/dist/resolve-config-BIFUA2FY.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/resolve-config-BIFUA2FY.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,29 @@
+import { _ as _default } from './colors-b_6i0Oi7.js';
+
+type NamedUtilityValue = {
+    kind: 'named';
+    /**
+     * ```
+     * bg-red-500
+     *    ^^^^^^^
+     *
+     * w-1/2
+     *   ^
+     * ```
+     */
+    value: string;
+    /**
+     * ```
+     * w-1/2
+     *   ^^^
+     * ```
+     */
+    fraction: string | null;
+};
+
+type PluginUtils = {
+    theme: (keypath: string, defaultValue?: any) => any;
+    colors: typeof _default;
+};
+
+export type { NamedUtilityValue as N, PluginUtils as P };
Index: node_modules/tailwindcss/dist/resolve-config-QUZ9b-Gn.d.mts
===================================================================
--- node_modules/tailwindcss/dist/resolve-config-QUZ9b-Gn.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/resolve-config-QUZ9b-Gn.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,190 @@
+import _default from './colors.mjs';
+
+type ArbitraryUtilityValue = {
+    kind: 'arbitrary';
+    /**
+     * ```
+     * bg-[color:var(--my-color)]
+     *     ^^^^^
+     *
+     * bg-(color:--my-color)
+     *     ^^^^^
+     * ```
+     */
+    dataType: string | null;
+    /**
+     * ```
+     * bg-[#0088cc]
+     *     ^^^^^^^
+     *
+     * bg-[var(--my_variable)]
+     *     ^^^^^^^^^^^^^^^^^^
+     *
+     * bg-(--my_variable)
+     *     ^^^^^^^^^^^^^^
+     * ```
+     */
+    value: string;
+};
+type NamedUtilityValue = {
+    kind: 'named';
+    /**
+     * ```
+     * bg-red-500
+     *    ^^^^^^^
+     *
+     * w-1/2
+     *   ^
+     * ```
+     */
+    value: string;
+    /**
+     * ```
+     * w-1/2
+     *   ^^^
+     * ```
+     */
+    fraction: string | null;
+};
+type ArbitraryModifier = {
+    kind: 'arbitrary';
+    /**
+     * ```
+     * bg-red-500/[50%]
+     *             ^^^
+     * ```
+     */
+    value: string;
+};
+type NamedModifier = {
+    kind: 'named';
+    /**
+     * ```
+     * bg-red-500/50
+     *            ^^
+     * ```
+     */
+    value: string;
+};
+type ArbitraryVariantValue = {
+    kind: 'arbitrary';
+    value: string;
+};
+type NamedVariantValue = {
+    kind: 'named';
+    value: string;
+};
+type Variant = 
+/**
+ * Arbitrary variants are variants that take a selector and generate a variant
+ * on the fly.
+ *
+ * E.g.: `[&_p]`
+ */
+{
+    kind: 'arbitrary';
+    selector: string;
+    relative: boolean;
+}
+/**
+ * Static variants are variants that don't take any arguments.
+ *
+ * E.g.: `hover`
+ */
+ | {
+    kind: 'static';
+    root: string;
+}
+/**
+ * Functional variants are variants that can take an argument. The argument is
+ * either a named variant value or an arbitrary variant value.
+ *
+ * E.g.:
+ *
+ * - `aria-disabled`
+ * - `aria-[disabled]`
+ * - `@container-size`          -> @container, with named value `size`
+ * - `@container-[inline-size]` -> @container, with arbitrary variant value `inline-size`
+ * - `@container`               -> @container, with no value
+ */
+ | {
+    kind: 'functional';
+    root: string;
+    value: ArbitraryVariantValue | NamedVariantValue | null;
+    modifier: ArbitraryModifier | NamedModifier | null;
+}
+/**
+ * Compound variants are variants that take another variant as an argument.
+ *
+ * E.g.:
+ *
+ * - `has-[&_p]`
+ * - `group-*`
+ * - `peer-*`
+ */
+ | {
+    kind: 'compound';
+    root: string;
+    modifier: ArbitraryModifier | NamedModifier | null;
+    variant: Variant;
+};
+type Candidate = 
+/**
+ * Arbitrary candidates are candidates that register utilities on the fly with
+ * a property and a value.
+ *
+ * E.g.:
+ *
+ * - `[color:red]`
+ * - `[color:red]/50`
+ * - `[color:red]/50!`
+ */
+{
+    kind: 'arbitrary';
+    property: string;
+    value: string;
+    modifier: ArbitraryModifier | NamedModifier | null;
+    variants: Variant[];
+    important: boolean;
+    raw: string;
+}
+/**
+ * Static candidates are candidates that don't take any arguments.
+ *
+ * E.g.:
+ *
+ * - `underline`
+ * - `box-border`
+ */
+ | {
+    kind: 'static';
+    root: string;
+    variants: Variant[];
+    important: boolean;
+    raw: string;
+}
+/**
+ * Functional candidates are candidates that can take an argument.
+ *
+ * E.g.:
+ *
+ * - `bg-red-500`
+ * - `bg-[#0088cc]`
+ * - `w-1/2`
+ */
+ | {
+    kind: 'functional';
+    root: string;
+    value: ArbitraryUtilityValue | NamedUtilityValue | null;
+    modifier: ArbitraryModifier | NamedModifier | null;
+    variants: Variant[];
+    important: boolean;
+    raw: string;
+};
+
+type PluginUtils = {
+    theme: (keypath: string, defaultValue?: any) => any;
+    colors: typeof _default;
+};
+
+export type { Candidate as C, NamedUtilityValue as N, PluginUtils as P, Variant as V };
Index: node_modules/tailwindcss/dist/types-CJYAW1ql.d.mts
===================================================================
--- node_modules/tailwindcss/dist/types-CJYAW1ql.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/dist/types-CJYAW1ql.d.mts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,128 @@
+import { N as NamedUtilityValue, P as PluginUtils } from './resolve-config-QUZ9b-Gn.mjs';
+
+/**
+ * The source code for one or more nodes in the AST
+ *
+ * This generally corresponds to a stylesheet
+ */
+interface Source {
+    /**
+     * The path to the file that contains the referenced source code
+     *
+     * If this references the *output* source code, this is `null`.
+     */
+    file: string | null;
+    /**
+     * The referenced source code
+     */
+    code: string;
+}
+/**
+ * The file and offsets within it that this node covers
+ *
+ * This can represent either:
+ * - A location in the original CSS which caused this node to be created
+ * - A location in the output CSS where this node resides
+ */
+type SourceLocation = [source: Source, start: number, end: number];
+
+type Config = UserConfig;
+type PluginFn = (api: PluginAPI) => void;
+type PluginWithConfig = {
+    handler: PluginFn;
+    config?: UserConfig;
+    /** @internal */
+    reference?: boolean;
+    src?: SourceLocation | undefined;
+};
+type PluginWithOptions<T> = {
+    (options?: T): PluginWithConfig;
+    __isOptionsFunction: true;
+};
+type Plugin = PluginFn | PluginWithConfig | PluginWithOptions<any>;
+type PluginAPI = {
+    addBase(base: CssInJs): void;
+    addVariant(name: string, variant: string | string[] | CssInJs): void;
+    matchVariant<T = string>(name: string, cb: (value: T | string, extra: {
+        modifier: string | null;
+    }) => string | string[], options?: {
+        values?: Record<string, T>;
+        sort?(a: {
+            value: T | string;
+            modifier: string | null;
+        }, b: {
+            value: T | string;
+            modifier: string | null;
+        }): number;
+    }): void;
+    addUtilities(utilities: Record<string, CssInJs | CssInJs[]> | Record<string, CssInJs | CssInJs[]>[], options?: {}): void;
+    matchUtilities(utilities: Record<string, (value: string, extra: {
+        modifier: string | null;
+    }) => CssInJs | CssInJs[]>, options?: Partial<{
+        type: string | string[];
+        supportsNegativeValues: boolean;
+        values: Record<string, string> & {
+            __BARE_VALUE__?: (value: NamedUtilityValue) => string | undefined;
+        };
+        modifiers: 'any' | Record<string, string>;
+    }>): void;
+    addComponents(utilities: Record<string, CssInJs> | Record<string, CssInJs>[], options?: {}): void;
+    matchComponents(utilities: Record<string, (value: string, extra: {
+        modifier: string | null;
+    }) => CssInJs>, options?: Partial<{
+        type: string | string[];
+        supportsNegativeValues: boolean;
+        values: Record<string, string> & {
+            __BARE_VALUE__?: (value: NamedUtilityValue) => string | undefined;
+        };
+        modifiers: 'any' | Record<string, string>;
+    }>): void;
+    theme(path: string, defaultValue?: any): any;
+    config(path?: string, defaultValue?: any): any;
+    prefix(className: string): string;
+};
+type CssInJs = {
+    [key: string]: string | string[] | CssInJs | CssInJs[];
+};
+
+type ResolvableTo<T> = T | ((utils: PluginUtils) => T);
+type ThemeValue = ResolvableTo<Record<string, unknown>> | null | undefined;
+type ThemeConfig = Record<string, ThemeValue> & {
+    extend?: Record<string, ThemeValue>;
+};
+type ContentFile = string | {
+    raw: string;
+    extension?: string;
+};
+type DarkModeStrategy = false | 'media' | 'class' | ['class', string] | 'selector' | ['selector', string] | ['variant', string | string[]];
+interface UserConfig {
+    presets?: UserConfig[];
+    theme?: ThemeConfig;
+    plugins?: Plugin[];
+}
+interface UserConfig {
+    content?: ContentFile[] | {
+        relative?: boolean;
+        files: ContentFile[];
+    };
+}
+interface UserConfig {
+    darkMode?: DarkModeStrategy;
+}
+interface UserConfig {
+    prefix?: string;
+}
+interface UserConfig {
+    blocklist?: string[];
+}
+interface UserConfig {
+    important?: boolean | string;
+}
+interface UserConfig {
+    future?: 'all' | Record<string, boolean>;
+}
+interface UserConfig {
+    experimental?: 'all' | Record<string, boolean>;
+}
+
+export type { Config as C, Plugin as P, SourceLocation as S, ThemeConfig as T, UserConfig as U, PluginFn as a, PluginWithConfig as b, PluginWithOptions as c, PluginAPI as d };
Index: node_modules/tailwindcss/index.css
===================================================================
--- node_modules/tailwindcss/index.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/index.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,896 @@
+@layer theme, base, components, utilities;
+
+@layer theme {
+  @theme default {
+    --font-sans:
+      ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
+      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+    --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
+    --font-mono:
+      ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
+      "Courier New", monospace;
+
+    --color-red-50: oklch(97.1% 0.013 17.38);
+    --color-red-100: oklch(93.6% 0.032 17.717);
+    --color-red-200: oklch(88.5% 0.062 18.334);
+    --color-red-300: oklch(80.8% 0.114 19.571);
+    --color-red-400: oklch(70.4% 0.191 22.216);
+    --color-red-500: oklch(63.7% 0.237 25.331);
+    --color-red-600: oklch(57.7% 0.245 27.325);
+    --color-red-700: oklch(50.5% 0.213 27.518);
+    --color-red-800: oklch(44.4% 0.177 26.899);
+    --color-red-900: oklch(39.6% 0.141 25.723);
+    --color-red-950: oklch(25.8% 0.092 26.042);
+
+    --color-orange-50: oklch(98% 0.016 73.684);
+    --color-orange-100: oklch(95.4% 0.038 75.164);
+    --color-orange-200: oklch(90.1% 0.076 70.697);
+    --color-orange-300: oklch(83.7% 0.128 66.29);
+    --color-orange-400: oklch(75% 0.183 55.934);
+    --color-orange-500: oklch(70.5% 0.213 47.604);
+    --color-orange-600: oklch(64.6% 0.222 41.116);
+    --color-orange-700: oklch(55.3% 0.195 38.402);
+    --color-orange-800: oklch(47% 0.157 37.304);
+    --color-orange-900: oklch(40.8% 0.123 38.172);
+    --color-orange-950: oklch(26.6% 0.079 36.259);
+
+    --color-amber-50: oklch(98.7% 0.022 95.277);
+    --color-amber-100: oklch(96.2% 0.059 95.617);
+    --color-amber-200: oklch(92.4% 0.12 95.746);
+    --color-amber-300: oklch(87.9% 0.169 91.605);
+    --color-amber-400: oklch(82.8% 0.189 84.429);
+    --color-amber-500: oklch(76.9% 0.188 70.08);
+    --color-amber-600: oklch(66.6% 0.179 58.318);
+    --color-amber-700: oklch(55.5% 0.163 48.998);
+    --color-amber-800: oklch(47.3% 0.137 46.201);
+    --color-amber-900: oklch(41.4% 0.112 45.904);
+    --color-amber-950: oklch(27.9% 0.077 45.635);
+
+    --color-yellow-50: oklch(98.7% 0.026 102.212);
+    --color-yellow-100: oklch(97.3% 0.071 103.193);
+    --color-yellow-200: oklch(94.5% 0.129 101.54);
+    --color-yellow-300: oklch(90.5% 0.182 98.111);
+    --color-yellow-400: oklch(85.2% 0.199 91.936);
+    --color-yellow-500: oklch(79.5% 0.184 86.047);
+    --color-yellow-600: oklch(68.1% 0.162 75.834);
+    --color-yellow-700: oklch(55.4% 0.135 66.442);
+    --color-yellow-800: oklch(47.6% 0.114 61.907);
+    --color-yellow-900: oklch(42.1% 0.095 57.708);
+    --color-yellow-950: oklch(28.6% 0.066 53.813);
+
+    --color-lime-50: oklch(98.6% 0.031 120.757);
+    --color-lime-100: oklch(96.7% 0.067 122.328);
+    --color-lime-200: oklch(93.8% 0.127 124.321);
+    --color-lime-300: oklch(89.7% 0.196 126.665);
+    --color-lime-400: oklch(84.1% 0.238 128.85);
+    --color-lime-500: oklch(76.8% 0.233 130.85);
+    --color-lime-600: oklch(64.8% 0.2 131.684);
+    --color-lime-700: oklch(53.2% 0.157 131.589);
+    --color-lime-800: oklch(45.3% 0.124 130.933);
+    --color-lime-900: oklch(40.5% 0.101 131.063);
+    --color-lime-950: oklch(27.4% 0.072 132.109);
+
+    --color-green-50: oklch(98.2% 0.018 155.826);
+    --color-green-100: oklch(96.2% 0.044 156.743);
+    --color-green-200: oklch(92.5% 0.084 155.995);
+    --color-green-300: oklch(87.1% 0.15 154.449);
+    --color-green-400: oklch(79.2% 0.209 151.711);
+    --color-green-500: oklch(72.3% 0.219 149.579);
+    --color-green-600: oklch(62.7% 0.194 149.214);
+    --color-green-700: oklch(52.7% 0.154 150.069);
+    --color-green-800: oklch(44.8% 0.119 151.328);
+    --color-green-900: oklch(39.3% 0.095 152.535);
+    --color-green-950: oklch(26.6% 0.065 152.934);
+
+    --color-emerald-50: oklch(97.9% 0.021 166.113);
+    --color-emerald-100: oklch(95% 0.052 163.051);
+    --color-emerald-200: oklch(90.5% 0.093 164.15);
+    --color-emerald-300: oklch(84.5% 0.143 164.978);
+    --color-emerald-400: oklch(76.5% 0.177 163.223);
+    --color-emerald-500: oklch(69.6% 0.17 162.48);
+    --color-emerald-600: oklch(59.6% 0.145 163.225);
+    --color-emerald-700: oklch(50.8% 0.118 165.612);
+    --color-emerald-800: oklch(43.2% 0.095 166.913);
+    --color-emerald-900: oklch(37.8% 0.077 168.94);
+    --color-emerald-950: oklch(26.2% 0.051 172.552);
+
+    --color-teal-50: oklch(98.4% 0.014 180.72);
+    --color-teal-100: oklch(95.3% 0.051 180.801);
+    --color-teal-200: oklch(91% 0.096 180.426);
+    --color-teal-300: oklch(85.5% 0.138 181.071);
+    --color-teal-400: oklch(77.7% 0.152 181.912);
+    --color-teal-500: oklch(70.4% 0.14 182.503);
+    --color-teal-600: oklch(60% 0.118 184.704);
+    --color-teal-700: oklch(51.1% 0.096 186.391);
+    --color-teal-800: oklch(43.7% 0.078 188.216);
+    --color-teal-900: oklch(38.6% 0.063 188.416);
+    --color-teal-950: oklch(27.7% 0.046 192.524);
+
+    --color-cyan-50: oklch(98.4% 0.019 200.873);
+    --color-cyan-100: oklch(95.6% 0.045 203.388);
+    --color-cyan-200: oklch(91.7% 0.08 205.041);
+    --color-cyan-300: oklch(86.5% 0.127 207.078);
+    --color-cyan-400: oklch(78.9% 0.154 211.53);
+    --color-cyan-500: oklch(71.5% 0.143 215.221);
+    --color-cyan-600: oklch(60.9% 0.126 221.723);
+    --color-cyan-700: oklch(52% 0.105 223.128);
+    --color-cyan-800: oklch(45% 0.085 224.283);
+    --color-cyan-900: oklch(39.8% 0.07 227.392);
+    --color-cyan-950: oklch(30.2% 0.056 229.695);
+
+    --color-sky-50: oklch(97.7% 0.013 236.62);
+    --color-sky-100: oklch(95.1% 0.026 236.824);
+    --color-sky-200: oklch(90.1% 0.058 230.902);
+    --color-sky-300: oklch(82.8% 0.111 230.318);
+    --color-sky-400: oklch(74.6% 0.16 232.661);
+    --color-sky-500: oklch(68.5% 0.169 237.323);
+    --color-sky-600: oklch(58.8% 0.158 241.966);
+    --color-sky-700: oklch(50% 0.134 242.749);
+    --color-sky-800: oklch(44.3% 0.11 240.79);
+    --color-sky-900: oklch(39.1% 0.09 240.876);
+    --color-sky-950: oklch(29.3% 0.066 243.157);
+
+    --color-blue-50: oklch(97% 0.014 254.604);
+    --color-blue-100: oklch(93.2% 0.032 255.585);
+    --color-blue-200: oklch(88.2% 0.059 254.128);
+    --color-blue-300: oklch(80.9% 0.105 251.813);
+    --color-blue-400: oklch(70.7% 0.165 254.624);
+    --color-blue-500: oklch(62.3% 0.214 259.815);
+    --color-blue-600: oklch(54.6% 0.245 262.881);
+    --color-blue-700: oklch(48.8% 0.243 264.376);
+    --color-blue-800: oklch(42.4% 0.199 265.638);
+    --color-blue-900: oklch(37.9% 0.146 265.522);
+    --color-blue-950: oklch(28.2% 0.091 267.935);
+
+    --color-indigo-50: oklch(96.2% 0.018 272.314);
+    --color-indigo-100: oklch(93% 0.034 272.788);
+    --color-indigo-200: oklch(87% 0.065 274.039);
+    --color-indigo-300: oklch(78.5% 0.115 274.713);
+    --color-indigo-400: oklch(67.3% 0.182 276.935);
+    --color-indigo-500: oklch(58.5% 0.233 277.117);
+    --color-indigo-600: oklch(51.1% 0.262 276.966);
+    --color-indigo-700: oklch(45.7% 0.24 277.023);
+    --color-indigo-800: oklch(39.8% 0.195 277.366);
+    --color-indigo-900: oklch(35.9% 0.144 278.697);
+    --color-indigo-950: oklch(25.7% 0.09 281.288);
+
+    --color-violet-50: oklch(96.9% 0.016 293.756);
+    --color-violet-100: oklch(94.3% 0.029 294.588);
+    --color-violet-200: oklch(89.4% 0.057 293.283);
+    --color-violet-300: oklch(81.1% 0.111 293.571);
+    --color-violet-400: oklch(70.2% 0.183 293.541);
+    --color-violet-500: oklch(60.6% 0.25 292.717);
+    --color-violet-600: oklch(54.1% 0.281 293.009);
+    --color-violet-700: oklch(49.1% 0.27 292.581);
+    --color-violet-800: oklch(43.2% 0.232 292.759);
+    --color-violet-900: oklch(38% 0.189 293.745);
+    --color-violet-950: oklch(28.3% 0.141 291.089);
+
+    --color-purple-50: oklch(97.7% 0.014 308.299);
+    --color-purple-100: oklch(94.6% 0.033 307.174);
+    --color-purple-200: oklch(90.2% 0.063 306.703);
+    --color-purple-300: oklch(82.7% 0.119 306.383);
+    --color-purple-400: oklch(71.4% 0.203 305.504);
+    --color-purple-500: oklch(62.7% 0.265 303.9);
+    --color-purple-600: oklch(55.8% 0.288 302.321);
+    --color-purple-700: oklch(49.6% 0.265 301.924);
+    --color-purple-800: oklch(43.8% 0.218 303.724);
+    --color-purple-900: oklch(38.1% 0.176 304.987);
+    --color-purple-950: oklch(29.1% 0.149 302.717);
+
+    --color-fuchsia-50: oklch(97.7% 0.017 320.058);
+    --color-fuchsia-100: oklch(95.2% 0.037 318.852);
+    --color-fuchsia-200: oklch(90.3% 0.076 319.62);
+    --color-fuchsia-300: oklch(83.3% 0.145 321.434);
+    --color-fuchsia-400: oklch(74% 0.238 322.16);
+    --color-fuchsia-500: oklch(66.7% 0.295 322.15);
+    --color-fuchsia-600: oklch(59.1% 0.293 322.896);
+    --color-fuchsia-700: oklch(51.8% 0.253 323.949);
+    --color-fuchsia-800: oklch(45.2% 0.211 324.591);
+    --color-fuchsia-900: oklch(40.1% 0.17 325.612);
+    --color-fuchsia-950: oklch(29.3% 0.136 325.661);
+
+    --color-pink-50: oklch(97.1% 0.014 343.198);
+    --color-pink-100: oklch(94.8% 0.028 342.258);
+    --color-pink-200: oklch(89.9% 0.061 343.231);
+    --color-pink-300: oklch(82.3% 0.12 346.018);
+    --color-pink-400: oklch(71.8% 0.202 349.761);
+    --color-pink-500: oklch(65.6% 0.241 354.308);
+    --color-pink-600: oklch(59.2% 0.249 0.584);
+    --color-pink-700: oklch(52.5% 0.223 3.958);
+    --color-pink-800: oklch(45.9% 0.187 3.815);
+    --color-pink-900: oklch(40.8% 0.153 2.432);
+    --color-pink-950: oklch(28.4% 0.109 3.907);
+
+    --color-rose-50: oklch(96.9% 0.015 12.422);
+    --color-rose-100: oklch(94.1% 0.03 12.58);
+    --color-rose-200: oklch(89.2% 0.058 10.001);
+    --color-rose-300: oklch(81% 0.117 11.638);
+    --color-rose-400: oklch(71.2% 0.194 13.428);
+    --color-rose-500: oklch(64.5% 0.246 16.439);
+    --color-rose-600: oklch(58.6% 0.253 17.585);
+    --color-rose-700: oklch(51.4% 0.222 16.935);
+    --color-rose-800: oklch(45.5% 0.188 13.697);
+    --color-rose-900: oklch(41% 0.159 10.272);
+    --color-rose-950: oklch(27.1% 0.105 12.094);
+
+    --color-slate-50: oklch(98.4% 0.003 247.858);
+    --color-slate-100: oklch(96.8% 0.007 247.896);
+    --color-slate-200: oklch(92.9% 0.013 255.508);
+    --color-slate-300: oklch(86.9% 0.022 252.894);
+    --color-slate-400: oklch(70.4% 0.04 256.788);
+    --color-slate-500: oklch(55.4% 0.046 257.417);
+    --color-slate-600: oklch(44.6% 0.043 257.281);
+    --color-slate-700: oklch(37.2% 0.044 257.287);
+    --color-slate-800: oklch(27.9% 0.041 260.031);
+    --color-slate-900: oklch(20.8% 0.042 265.755);
+    --color-slate-950: oklch(12.9% 0.042 264.695);
+
+    --color-gray-50: oklch(98.5% 0.002 247.839);
+    --color-gray-100: oklch(96.7% 0.003 264.542);
+    --color-gray-200: oklch(92.8% 0.006 264.531);
+    --color-gray-300: oklch(87.2% 0.01 258.338);
+    --color-gray-400: oklch(70.7% 0.022 261.325);
+    --color-gray-500: oklch(55.1% 0.027 264.364);
+    --color-gray-600: oklch(44.6% 0.03 256.802);
+    --color-gray-700: oklch(37.3% 0.034 259.733);
+    --color-gray-800: oklch(27.8% 0.033 256.848);
+    --color-gray-900: oklch(21% 0.034 264.665);
+    --color-gray-950: oklch(13% 0.028 261.692);
+
+    --color-zinc-50: oklch(98.5% 0 0);
+    --color-zinc-100: oklch(96.7% 0.001 286.375);
+    --color-zinc-200: oklch(92% 0.004 286.32);
+    --color-zinc-300: oklch(87.1% 0.006 286.286);
+    --color-zinc-400: oklch(70.5% 0.015 286.067);
+    --color-zinc-500: oklch(55.2% 0.016 285.938);
+    --color-zinc-600: oklch(44.2% 0.017 285.786);
+    --color-zinc-700: oklch(37% 0.013 285.805);
+    --color-zinc-800: oklch(27.4% 0.006 286.033);
+    --color-zinc-900: oklch(21% 0.006 285.885);
+    --color-zinc-950: oklch(14.1% 0.005 285.823);
+
+    --color-neutral-50: oklch(98.5% 0 0);
+    --color-neutral-100: oklch(97% 0 0);
+    --color-neutral-200: oklch(92.2% 0 0);
+    --color-neutral-300: oklch(87% 0 0);
+    --color-neutral-400: oklch(70.8% 0 0);
+    --color-neutral-500: oklch(55.6% 0 0);
+    --color-neutral-600: oklch(43.9% 0 0);
+    --color-neutral-700: oklch(37.1% 0 0);
+    --color-neutral-800: oklch(26.9% 0 0);
+    --color-neutral-900: oklch(20.5% 0 0);
+    --color-neutral-950: oklch(14.5% 0 0);
+
+    --color-stone-50: oklch(98.5% 0.001 106.423);
+    --color-stone-100: oklch(97% 0.001 106.424);
+    --color-stone-200: oklch(92.3% 0.003 48.717);
+    --color-stone-300: oklch(86.9% 0.005 56.366);
+    --color-stone-400: oklch(70.9% 0.01 56.259);
+    --color-stone-500: oklch(55.3% 0.013 58.071);
+    --color-stone-600: oklch(44.4% 0.011 73.639);
+    --color-stone-700: oklch(37.4% 0.01 67.558);
+    --color-stone-800: oklch(26.8% 0.007 34.298);
+    --color-stone-900: oklch(21.6% 0.006 56.043);
+    --color-stone-950: oklch(14.7% 0.004 49.25);
+
+    --color-black: #000;
+    --color-white: #fff;
+
+    --spacing: 0.25rem;
+
+    --breakpoint-sm: 40rem;
+    --breakpoint-md: 48rem;
+    --breakpoint-lg: 64rem;
+    --breakpoint-xl: 80rem;
+    --breakpoint-2xl: 96rem;
+
+    --container-3xs: 16rem;
+    --container-2xs: 18rem;
+    --container-xs: 20rem;
+    --container-sm: 24rem;
+    --container-md: 28rem;
+    --container-lg: 32rem;
+    --container-xl: 36rem;
+    --container-2xl: 42rem;
+    --container-3xl: 48rem;
+    --container-4xl: 56rem;
+    --container-5xl: 64rem;
+    --container-6xl: 72rem;
+    --container-7xl: 80rem;
+
+    --text-xs: 0.75rem;
+    --text-xs--line-height: calc(1 / 0.75);
+    --text-sm: 0.875rem;
+    --text-sm--line-height: calc(1.25 / 0.875);
+    --text-base: 1rem;
+    --text-base--line-height: calc(1.5 / 1);
+    --text-lg: 1.125rem;
+    --text-lg--line-height: calc(1.75 / 1.125);
+    --text-xl: 1.25rem;
+    --text-xl--line-height: calc(1.75 / 1.25);
+    --text-2xl: 1.5rem;
+    --text-2xl--line-height: calc(2 / 1.5);
+    --text-3xl: 1.875rem;
+    --text-3xl--line-height: calc(2.25 / 1.875);
+    --text-4xl: 2.25rem;
+    --text-4xl--line-height: calc(2.5 / 2.25);
+    --text-5xl: 3rem;
+    --text-5xl--line-height: 1;
+    --text-6xl: 3.75rem;
+    --text-6xl--line-height: 1;
+    --text-7xl: 4.5rem;
+    --text-7xl--line-height: 1;
+    --text-8xl: 6rem;
+    --text-8xl--line-height: 1;
+    --text-9xl: 8rem;
+    --text-9xl--line-height: 1;
+
+    --font-weight-thin: 100;
+    --font-weight-extralight: 200;
+    --font-weight-light: 300;
+    --font-weight-normal: 400;
+    --font-weight-medium: 500;
+    --font-weight-semibold: 600;
+    --font-weight-bold: 700;
+    --font-weight-extrabold: 800;
+    --font-weight-black: 900;
+
+    --tracking-tighter: -0.05em;
+    --tracking-tight: -0.025em;
+    --tracking-normal: 0em;
+    --tracking-wide: 0.025em;
+    --tracking-wider: 0.05em;
+    --tracking-widest: 0.1em;
+
+    --leading-tight: 1.25;
+    --leading-snug: 1.375;
+    --leading-normal: 1.5;
+    --leading-relaxed: 1.625;
+    --leading-loose: 2;
+
+    --radius-xs: 0.125rem;
+    --radius-sm: 0.25rem;
+    --radius-md: 0.375rem;
+    --radius-lg: 0.5rem;
+    --radius-xl: 0.75rem;
+    --radius-2xl: 1rem;
+    --radius-3xl: 1.5rem;
+    --radius-4xl: 2rem;
+
+    --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);
+    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
+    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+    --shadow-md:
+      0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
+    --shadow-lg:
+      0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
+    --shadow-xl:
+      0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
+    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
+
+    --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);
+    --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
+    --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
+
+    --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);
+    --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
+    --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
+    --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
+    --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);
+    --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
+
+    --text-shadow-2xs: 0px 1px 0px rgb(0 0 0 / 0.15);
+    --text-shadow-xs: 0px 1px 1px rgb(0 0 0 / 0.2);
+    --text-shadow-sm:
+      0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075),
+      0px 2px 2px rgb(0 0 0 / 0.075);
+    --text-shadow-md:
+      0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1),
+      0px 2px 4px rgb(0 0 0 / 0.1);
+    --text-shadow-lg:
+      0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1),
+      0px 4px 8px rgb(0 0 0 / 0.1);
+
+    --ease-in: cubic-bezier(0.4, 0, 1, 1);
+    --ease-out: cubic-bezier(0, 0, 0.2, 1);
+    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
+
+    --animate-spin: spin 1s linear infinite;
+    --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
+    --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
+    --animate-bounce: bounce 1s infinite;
+
+    @keyframes spin {
+      to {
+        transform: rotate(360deg);
+      }
+    }
+
+    @keyframes ping {
+      75%,
+      100% {
+        transform: scale(2);
+        opacity: 0;
+      }
+    }
+
+    @keyframes pulse {
+      50% {
+        opacity: 0.5;
+      }
+    }
+
+    @keyframes bounce {
+      0%,
+      100% {
+        transform: translateY(-25%);
+        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
+      }
+
+      50% {
+        transform: none;
+        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
+      }
+    }
+
+    --blur-xs: 4px;
+    --blur-sm: 8px;
+    --blur-md: 12px;
+    --blur-lg: 16px;
+    --blur-xl: 24px;
+    --blur-2xl: 40px;
+    --blur-3xl: 64px;
+
+    --perspective-dramatic: 100px;
+    --perspective-near: 300px;
+    --perspective-normal: 500px;
+    --perspective-midrange: 800px;
+    --perspective-distant: 1200px;
+
+    --aspect-video: 16 / 9;
+
+    --default-transition-duration: 150ms;
+    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+    --default-font-family: --theme(--font-sans, initial);
+    --default-font-feature-settings: --theme(
+      --font-sans--font-feature-settings,
+      initial
+    );
+    --default-font-variation-settings: --theme(
+      --font-sans--font-variation-settings,
+      initial
+    );
+    --default-mono-font-family: --theme(--font-mono, initial);
+    --default-mono-font-feature-settings: --theme(
+      --font-mono--font-feature-settings,
+      initial
+    );
+    --default-mono-font-variation-settings: --theme(
+      --font-mono--font-variation-settings,
+      initial
+    );
+  }
+
+  /* Deprecated */
+  @theme default inline reference {
+    --blur: 8px;
+    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
+    --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
+    --radius: 0.25rem;
+    --max-width-prose: 65ch;
+  }
+}
+
+@layer base {
+  /*
+  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
+  2. Remove default margins and padding
+  3. Reset all borders.
+*/
+
+  *,
+  ::after,
+  ::before,
+  ::backdrop,
+  ::file-selector-button {
+    box-sizing: border-box; /* 1 */
+    margin: 0; /* 2 */
+    padding: 0; /* 2 */
+    border: 0 solid; /* 3 */
+  }
+
+  /*
+  1. Use a consistent sensible line-height in all browsers.
+  2. Prevent adjustments of font size after orientation changes in iOS.
+  3. Use a more readable tab size.
+  4. Use the user's configured `sans` font-family by default.
+  5. Use the user's configured `sans` font-feature-settings by default.
+  6. Use the user's configured `sans` font-variation-settings by default.
+  7. Disable tap highlights on iOS.
+*/
+
+  html,
+  :host {
+    line-height: 1.5; /* 1 */
+    -webkit-text-size-adjust: 100%; /* 2 */
+    tab-size: 4; /* 3 */
+    font-family: --theme(
+      --default-font-family,
+      ui-sans-serif,
+      system-ui,
+      sans-serif,
+      "Apple Color Emoji",
+      "Segoe UI Emoji",
+      "Segoe UI Symbol",
+      "Noto Color Emoji"
+    ); /* 4 */
+    font-feature-settings: --theme(
+      --default-font-feature-settings,
+      normal
+    ); /* 5 */
+    font-variation-settings: --theme(
+      --default-font-variation-settings,
+      normal
+    ); /* 6 */
+    -webkit-tap-highlight-color: transparent; /* 7 */
+  }
+
+  /*
+  1. Add the correct height in Firefox.
+  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
+  3. Reset the default border style to a 1px solid border.
+*/
+
+  hr {
+    height: 0; /* 1 */
+    color: inherit; /* 2 */
+    border-top-width: 1px; /* 3 */
+  }
+
+  /*
+  Add the correct text decoration in Chrome, Edge, and Safari.
+*/
+
+  abbr:where([title]) {
+    -webkit-text-decoration: underline dotted;
+    text-decoration: underline dotted;
+  }
+
+  /*
+  Remove the default font size and weight for headings.
+*/
+
+  h1,
+  h2,
+  h3,
+  h4,
+  h5,
+  h6 {
+    font-size: inherit;
+    font-weight: inherit;
+  }
+
+  /*
+  Reset links to optimize for opt-in styling instead of opt-out.
+*/
+
+  a {
+    color: inherit;
+    -webkit-text-decoration: inherit;
+    text-decoration: inherit;
+  }
+
+  /*
+  Add the correct font weight in Edge and Safari.
+*/
+
+  b,
+  strong {
+    font-weight: bolder;
+  }
+
+  /*
+  1. Use the user's configured `mono` font-family by default.
+  2. Use the user's configured `mono` font-feature-settings by default.
+  3. Use the user's configured `mono` font-variation-settings by default.
+  4. Correct the odd `em` font sizing in all browsers.
+*/
+
+  code,
+  kbd,
+  samp,
+  pre {
+    font-family: --theme(
+      --default-mono-font-family,
+      ui-monospace,
+      SFMono-Regular,
+      Menlo,
+      Monaco,
+      Consolas,
+      "Liberation Mono",
+      "Courier New",
+      monospace
+    ); /* 1 */
+    font-feature-settings: --theme(
+      --default-mono-font-feature-settings,
+      normal
+    ); /* 2 */
+    font-variation-settings: --theme(
+      --default-mono-font-variation-settings,
+      normal
+    ); /* 3 */
+    font-size: 1em; /* 4 */
+  }
+
+  /*
+  Add the correct font size in all browsers.
+*/
+
+  small {
+    font-size: 80%;
+  }
+
+  /*
+  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
+*/
+
+  sub,
+  sup {
+    font-size: 75%;
+    line-height: 0;
+    position: relative;
+    vertical-align: baseline;
+  }
+
+  sub {
+    bottom: -0.25em;
+  }
+
+  sup {
+    top: -0.5em;
+  }
+
+  /*
+  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
+  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
+  3. Remove gaps between table borders by default.
+*/
+
+  table {
+    text-indent: 0; /* 1 */
+    border-color: inherit; /* 2 */
+    border-collapse: collapse; /* 3 */
+  }
+
+  /*
+  Use the modern Firefox focus style for all focusable elements.
+*/
+
+  :-moz-focusring {
+    outline: auto;
+  }
+
+  /*
+  Add the correct vertical alignment in Chrome and Firefox.
+*/
+
+  progress {
+    vertical-align: baseline;
+  }
+
+  /*
+  Add the correct display in Chrome and Safari.
+*/
+
+  summary {
+    display: list-item;
+  }
+
+  /*
+  Make lists unstyled by default.
+*/
+
+  ol,
+  ul,
+  menu {
+    list-style: none;
+  }
+
+  /*
+  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
+  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
+      This can trigger a poorly considered lint error in some tools but is included by design.
+*/
+
+  img,
+  svg,
+  video,
+  canvas,
+  audio,
+  iframe,
+  embed,
+  object {
+    display: block; /* 1 */
+    vertical-align: middle; /* 2 */
+  }
+
+  /*
+  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
+*/
+
+  img,
+  video {
+    max-width: 100%;
+    height: auto;
+  }
+
+  /*
+  1. Inherit font styles in all browsers.
+  2. Remove border radius in all browsers.
+  3. Remove background color in all browsers.
+  4. Ensure consistent opacity for disabled states in all browsers.
+*/
+
+  button,
+  input,
+  select,
+  optgroup,
+  textarea,
+  ::file-selector-button {
+    font: inherit; /* 1 */
+    font-feature-settings: inherit; /* 1 */
+    font-variation-settings: inherit; /* 1 */
+    letter-spacing: inherit; /* 1 */
+    color: inherit; /* 1 */
+    border-radius: 0; /* 2 */
+    background-color: transparent; /* 3 */
+    opacity: 1; /* 4 */
+  }
+
+  /*
+  Restore default font weight.
+*/
+
+  :where(select:is([multiple], [size])) optgroup {
+    font-weight: bolder;
+  }
+
+  /*
+  Restore indentation.
+*/
+
+  :where(select:is([multiple], [size])) optgroup option {
+    padding-inline-start: 20px;
+  }
+
+  /*
+  Restore space after button.
+*/
+
+  ::file-selector-button {
+    margin-inline-end: 4px;
+  }
+
+  /*
+  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
+*/
+
+  ::placeholder {
+    opacity: 1;
+  }
+
+  /*
+  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
+  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
+*/
+
+  @supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
+    (contain-intrinsic-size: 1px) /* Safari 17+ */ {
+    ::placeholder {
+      color: color-mix(in oklab, currentcolor 50%, transparent);
+    }
+  }
+
+  /*
+  Prevent resizing textareas horizontally by default.
+*/
+
+  textarea {
+    resize: vertical;
+  }
+
+  /*
+  Remove the inner padding in Chrome and Safari on macOS.
+*/
+
+  ::-webkit-search-decoration {
+    -webkit-appearance: none;
+  }
+
+  /*
+  1. Ensure date/time inputs have the same height when empty in iOS Safari.
+  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
+*/
+
+  ::-webkit-date-and-time-value {
+    min-height: 1lh; /* 1 */
+    text-align: inherit; /* 2 */
+  }
+
+  /*
+  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
+*/
+
+  ::-webkit-datetime-edit {
+    display: inline-flex;
+  }
+
+  /*
+  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
+*/
+
+  ::-webkit-datetime-edit-fields-wrapper {
+    padding: 0;
+  }
+
+  ::-webkit-datetime-edit,
+  ::-webkit-datetime-edit-year-field,
+  ::-webkit-datetime-edit-month-field,
+  ::-webkit-datetime-edit-day-field,
+  ::-webkit-datetime-edit-hour-field,
+  ::-webkit-datetime-edit-minute-field,
+  ::-webkit-datetime-edit-second-field,
+  ::-webkit-datetime-edit-millisecond-field,
+  ::-webkit-datetime-edit-meridiem-field {
+    padding-block: 0;
+  }
+
+  /*
+  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
+*/
+
+  ::-webkit-calendar-picker-indicator {
+    line-height: 1;
+  }
+
+  /*
+  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
+*/
+
+  :-moz-ui-invalid {
+    box-shadow: none;
+  }
+
+  /*
+  Correct the inability to style the border radius in iOS Safari.
+*/
+
+  button,
+  input:where([type="button"], [type="reset"], [type="submit"]),
+  ::file-selector-button {
+    appearance: button;
+  }
+
+  /*
+  Correct the cursor style of increment and decrement buttons in Safari.
+*/
+
+  ::-webkit-inner-spin-button,
+  ::-webkit-outer-spin-button {
+    height: auto;
+  }
+
+  /*
+  Make elements with the HTML hidden attribute stay hidden by default.
+*/
+
+  [hidden]:where(:not([hidden="until-found"])) {
+    display: none !important;
+  }
+}
+
+@layer utilities {
+  @tailwind utilities;
+}
Index: node_modules/tailwindcss/package.json
===================================================================
--- node_modules/tailwindcss/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,89 @@
+{
+  "name": "tailwindcss",
+  "version": "4.1.18",
+  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
+  "license": "MIT",
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/tailwindlabs/tailwindcss.git",
+    "directory": "packages/tailwindcss"
+  },
+  "bugs": "https://github.com/tailwindlabs/tailwindcss/issues",
+  "homepage": "https://tailwindcss.com",
+  "exports": {
+    ".": {
+      "types": "./dist/lib.d.mts",
+      "style": "./index.css",
+      "require": "./dist/lib.js",
+      "import": "./dist/lib.mjs"
+    },
+    "./plugin": {
+      "require": "./dist/plugin.js",
+      "import": "./dist/plugin.mjs"
+    },
+    "./plugin.js": {
+      "require": "./dist/plugin.js",
+      "import": "./dist/plugin.mjs"
+    },
+    "./defaultTheme": {
+      "require": "./dist/default-theme.js",
+      "import": "./dist/default-theme.mjs"
+    },
+    "./defaultTheme.js": {
+      "require": "./dist/default-theme.js",
+      "import": "./dist/default-theme.mjs"
+    },
+    "./colors": {
+      "require": "./dist/colors.js",
+      "import": "./dist/colors.mjs"
+    },
+    "./colors.js": {
+      "require": "./dist/colors.js",
+      "import": "./dist/colors.mjs"
+    },
+    "./lib/util/flattenColorPalette": {
+      "require": "./dist/flatten-color-palette.js",
+      "import": "./dist/flatten-color-palette.mjs"
+    },
+    "./lib/util/flattenColorPalette.js": {
+      "require": "./dist/flatten-color-palette.js",
+      "import": "./dist/flatten-color-palette.mjs"
+    },
+    "./package.json": "./package.json",
+    "./index.css": "./index.css",
+    "./index": "./index.css",
+    "./preflight.css": "./preflight.css",
+    "./preflight": "./preflight.css",
+    "./theme.css": "./theme.css",
+    "./theme": "./theme.css",
+    "./utilities.css": "./utilities.css",
+    "./utilities": "./utilities.css"
+  },
+  "publishConfig": {
+    "provenance": true,
+    "access": "public"
+  },
+  "style": "index.css",
+  "files": [
+    "dist",
+    "index.css",
+    "preflight.css",
+    "theme.css",
+    "utilities.css"
+  ],
+  "devDependencies": {
+    "@jridgewell/remapping": "^2.3.4",
+    "@types/node": "^20.19.0",
+    "dedent": "1.7.0",
+    "lightningcss": "1.30.2",
+    "magic-string": "^0.30.21",
+    "source-map-js": "^1.2.1",
+    "@tailwindcss/oxide": "^4.1.18"
+  },
+  "scripts": {
+    "lint": "tsc --noEmit",
+    "build": "tsup-node --env.NODE_ENV production",
+    "dev": "tsup-node --env.NODE_ENV development --watch",
+    "test:ui": "playwright test"
+  }
+}
Index: node_modules/tailwindcss/preflight.css
===================================================================
--- node_modules/tailwindcss/preflight.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/preflight.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,393 @@
+/*
+  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
+  2. Remove default margins and padding
+  3. Reset all borders.
+*/
+
+*,
+::after,
+::before,
+::backdrop,
+::file-selector-button {
+  box-sizing: border-box; /* 1 */
+  margin: 0; /* 2 */
+  padding: 0; /* 2 */
+  border: 0 solid; /* 3 */
+}
+
+/*
+  1. Use a consistent sensible line-height in all browsers.
+  2. Prevent adjustments of font size after orientation changes in iOS.
+  3. Use a more readable tab size.
+  4. Use the user's configured `sans` font-family by default.
+  5. Use the user's configured `sans` font-feature-settings by default.
+  6. Use the user's configured `sans` font-variation-settings by default.
+  7. Disable tap highlights on iOS.
+*/
+
+html,
+:host {
+  line-height: 1.5; /* 1 */
+  -webkit-text-size-adjust: 100%; /* 2 */
+  tab-size: 4; /* 3 */
+  font-family: --theme(
+    --default-font-family,
+    ui-sans-serif,
+    system-ui,
+    sans-serif,
+    'Apple Color Emoji',
+    'Segoe UI Emoji',
+    'Segoe UI Symbol',
+    'Noto Color Emoji'
+  ); /* 4 */
+  font-feature-settings: --theme(--default-font-feature-settings, normal); /* 5 */
+  font-variation-settings: --theme(--default-font-variation-settings, normal); /* 6 */
+  -webkit-tap-highlight-color: transparent; /* 7 */
+}
+
+/*
+  1. Add the correct height in Firefox.
+  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
+  3. Reset the default border style to a 1px solid border.
+*/
+
+hr {
+  height: 0; /* 1 */
+  color: inherit; /* 2 */
+  border-top-width: 1px; /* 3 */
+}
+
+/*
+  Add the correct text decoration in Chrome, Edge, and Safari.
+*/
+
+abbr:where([title]) {
+  -webkit-text-decoration: underline dotted;
+  text-decoration: underline dotted;
+}
+
+/*
+  Remove the default font size and weight for headings.
+*/
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+  font-size: inherit;
+  font-weight: inherit;
+}
+
+/*
+  Reset links to optimize for opt-in styling instead of opt-out.
+*/
+
+a {
+  color: inherit;
+  -webkit-text-decoration: inherit;
+  text-decoration: inherit;
+}
+
+/*
+  Add the correct font weight in Edge and Safari.
+*/
+
+b,
+strong {
+  font-weight: bolder;
+}
+
+/*
+  1. Use the user's configured `mono` font-family by default.
+  2. Use the user's configured `mono` font-feature-settings by default.
+  3. Use the user's configured `mono` font-variation-settings by default.
+  4. Correct the odd `em` font sizing in all browsers.
+*/
+
+code,
+kbd,
+samp,
+pre {
+  font-family: --theme(
+    --default-mono-font-family,
+    ui-monospace,
+    SFMono-Regular,
+    Menlo,
+    Monaco,
+    Consolas,
+    'Liberation Mono',
+    'Courier New',
+    monospace
+  ); /* 1 */
+  font-feature-settings: --theme(--default-mono-font-feature-settings, normal); /* 2 */
+  font-variation-settings: --theme(--default-mono-font-variation-settings, normal); /* 3 */
+  font-size: 1em; /* 4 */
+}
+
+/*
+  Add the correct font size in all browsers.
+*/
+
+small {
+  font-size: 80%;
+}
+
+/*
+  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
+*/
+
+sub,
+sup {
+  font-size: 75%;
+  line-height: 0;
+  position: relative;
+  vertical-align: baseline;
+}
+
+sub {
+  bottom: -0.25em;
+}
+
+sup {
+  top: -0.5em;
+}
+
+/*
+  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
+  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
+  3. Remove gaps between table borders by default.
+*/
+
+table {
+  text-indent: 0; /* 1 */
+  border-color: inherit; /* 2 */
+  border-collapse: collapse; /* 3 */
+}
+
+/*
+  Use the modern Firefox focus style for all focusable elements.
+*/
+
+:-moz-focusring {
+  outline: auto;
+}
+
+/*
+  Add the correct vertical alignment in Chrome and Firefox.
+*/
+
+progress {
+  vertical-align: baseline;
+}
+
+/*
+  Add the correct display in Chrome and Safari.
+*/
+
+summary {
+  display: list-item;
+}
+
+/*
+  Make lists unstyled by default.
+*/
+
+ol,
+ul,
+menu {
+  list-style: none;
+}
+
+/*
+  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
+  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
+      This can trigger a poorly considered lint error in some tools but is included by design.
+*/
+
+img,
+svg,
+video,
+canvas,
+audio,
+iframe,
+embed,
+object {
+  display: block; /* 1 */
+  vertical-align: middle; /* 2 */
+}
+
+/*
+  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
+*/
+
+img,
+video {
+  max-width: 100%;
+  height: auto;
+}
+
+/*
+  1. Inherit font styles in all browsers.
+  2. Remove border radius in all browsers.
+  3. Remove background color in all browsers.
+  4. Ensure consistent opacity for disabled states in all browsers.
+*/
+
+button,
+input,
+select,
+optgroup,
+textarea,
+::file-selector-button {
+  font: inherit; /* 1 */
+  font-feature-settings: inherit; /* 1 */
+  font-variation-settings: inherit; /* 1 */
+  letter-spacing: inherit; /* 1 */
+  color: inherit; /* 1 */
+  border-radius: 0; /* 2 */
+  background-color: transparent; /* 3 */
+  opacity: 1; /* 4 */
+}
+
+/*
+  Restore default font weight.
+*/
+
+:where(select:is([multiple], [size])) optgroup {
+  font-weight: bolder;
+}
+
+/*
+  Restore indentation.
+*/
+
+:where(select:is([multiple], [size])) optgroup option {
+  padding-inline-start: 20px;
+}
+
+/*
+  Restore space after button.
+*/
+
+::file-selector-button {
+  margin-inline-end: 4px;
+}
+
+/*
+  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
+*/
+
+::placeholder {
+  opacity: 1;
+}
+
+/*
+  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
+  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
+*/
+
+@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
+  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
+  ::placeholder {
+    color: color-mix(in oklab, currentcolor 50%, transparent);
+  }
+}
+
+/*
+  Prevent resizing textareas horizontally by default.
+*/
+
+textarea {
+  resize: vertical;
+}
+
+/*
+  Remove the inner padding in Chrome and Safari on macOS.
+*/
+
+::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+
+/*
+  1. Ensure date/time inputs have the same height when empty in iOS Safari.
+  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
+*/
+
+::-webkit-date-and-time-value {
+  min-height: 1lh; /* 1 */
+  text-align: inherit; /* 2 */
+}
+
+/*
+  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
+*/
+
+::-webkit-datetime-edit {
+  display: inline-flex;
+}
+
+/*
+  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
+*/
+
+::-webkit-datetime-edit-fields-wrapper {
+  padding: 0;
+}
+
+::-webkit-datetime-edit,
+::-webkit-datetime-edit-year-field,
+::-webkit-datetime-edit-month-field,
+::-webkit-datetime-edit-day-field,
+::-webkit-datetime-edit-hour-field,
+::-webkit-datetime-edit-minute-field,
+::-webkit-datetime-edit-second-field,
+::-webkit-datetime-edit-millisecond-field,
+::-webkit-datetime-edit-meridiem-field {
+  padding-block: 0;
+}
+
+/*
+  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
+*/
+
+::-webkit-calendar-picker-indicator {
+  line-height: 1;
+}
+
+/*
+  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
+*/
+
+:-moz-ui-invalid {
+  box-shadow: none;
+}
+
+/*
+  Correct the inability to style the border radius in iOS Safari.
+*/
+
+button,
+input:where([type='button'], [type='reset'], [type='submit']),
+::file-selector-button {
+  appearance: button;
+}
+
+/*
+  Correct the cursor style of increment and decrement buttons in Safari.
+*/
+
+::-webkit-inner-spin-button,
+::-webkit-outer-spin-button {
+  height: auto;
+}
+
+/*
+  Make elements with the HTML hidden attribute stay hidden by default.
+*/
+
+[hidden]:where(:not([hidden='until-found'])) {
+  display: none !important;
+}
Index: node_modules/tailwindcss/theme.css
===================================================================
--- node_modules/tailwindcss/theme.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/theme.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,462 @@
+@theme default {
+  --font-sans:
+    ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
+    'Noto Color Emoji';
+  --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
+  --font-mono:
+    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
+    monospace;
+
+  --color-red-50: oklch(97.1% 0.013 17.38);
+  --color-red-100: oklch(93.6% 0.032 17.717);
+  --color-red-200: oklch(88.5% 0.062 18.334);
+  --color-red-300: oklch(80.8% 0.114 19.571);
+  --color-red-400: oklch(70.4% 0.191 22.216);
+  --color-red-500: oklch(63.7% 0.237 25.331);
+  --color-red-600: oklch(57.7% 0.245 27.325);
+  --color-red-700: oklch(50.5% 0.213 27.518);
+  --color-red-800: oklch(44.4% 0.177 26.899);
+  --color-red-900: oklch(39.6% 0.141 25.723);
+  --color-red-950: oklch(25.8% 0.092 26.042);
+
+  --color-orange-50: oklch(98% 0.016 73.684);
+  --color-orange-100: oklch(95.4% 0.038 75.164);
+  --color-orange-200: oklch(90.1% 0.076 70.697);
+  --color-orange-300: oklch(83.7% 0.128 66.29);
+  --color-orange-400: oklch(75% 0.183 55.934);
+  --color-orange-500: oklch(70.5% 0.213 47.604);
+  --color-orange-600: oklch(64.6% 0.222 41.116);
+  --color-orange-700: oklch(55.3% 0.195 38.402);
+  --color-orange-800: oklch(47% 0.157 37.304);
+  --color-orange-900: oklch(40.8% 0.123 38.172);
+  --color-orange-950: oklch(26.6% 0.079 36.259);
+
+  --color-amber-50: oklch(98.7% 0.022 95.277);
+  --color-amber-100: oklch(96.2% 0.059 95.617);
+  --color-amber-200: oklch(92.4% 0.12 95.746);
+  --color-amber-300: oklch(87.9% 0.169 91.605);
+  --color-amber-400: oklch(82.8% 0.189 84.429);
+  --color-amber-500: oklch(76.9% 0.188 70.08);
+  --color-amber-600: oklch(66.6% 0.179 58.318);
+  --color-amber-700: oklch(55.5% 0.163 48.998);
+  --color-amber-800: oklch(47.3% 0.137 46.201);
+  --color-amber-900: oklch(41.4% 0.112 45.904);
+  --color-amber-950: oklch(27.9% 0.077 45.635);
+
+  --color-yellow-50: oklch(98.7% 0.026 102.212);
+  --color-yellow-100: oklch(97.3% 0.071 103.193);
+  --color-yellow-200: oklch(94.5% 0.129 101.54);
+  --color-yellow-300: oklch(90.5% 0.182 98.111);
+  --color-yellow-400: oklch(85.2% 0.199 91.936);
+  --color-yellow-500: oklch(79.5% 0.184 86.047);
+  --color-yellow-600: oklch(68.1% 0.162 75.834);
+  --color-yellow-700: oklch(55.4% 0.135 66.442);
+  --color-yellow-800: oklch(47.6% 0.114 61.907);
+  --color-yellow-900: oklch(42.1% 0.095 57.708);
+  --color-yellow-950: oklch(28.6% 0.066 53.813);
+
+  --color-lime-50: oklch(98.6% 0.031 120.757);
+  --color-lime-100: oklch(96.7% 0.067 122.328);
+  --color-lime-200: oklch(93.8% 0.127 124.321);
+  --color-lime-300: oklch(89.7% 0.196 126.665);
+  --color-lime-400: oklch(84.1% 0.238 128.85);
+  --color-lime-500: oklch(76.8% 0.233 130.85);
+  --color-lime-600: oklch(64.8% 0.2 131.684);
+  --color-lime-700: oklch(53.2% 0.157 131.589);
+  --color-lime-800: oklch(45.3% 0.124 130.933);
+  --color-lime-900: oklch(40.5% 0.101 131.063);
+  --color-lime-950: oklch(27.4% 0.072 132.109);
+
+  --color-green-50: oklch(98.2% 0.018 155.826);
+  --color-green-100: oklch(96.2% 0.044 156.743);
+  --color-green-200: oklch(92.5% 0.084 155.995);
+  --color-green-300: oklch(87.1% 0.15 154.449);
+  --color-green-400: oklch(79.2% 0.209 151.711);
+  --color-green-500: oklch(72.3% 0.219 149.579);
+  --color-green-600: oklch(62.7% 0.194 149.214);
+  --color-green-700: oklch(52.7% 0.154 150.069);
+  --color-green-800: oklch(44.8% 0.119 151.328);
+  --color-green-900: oklch(39.3% 0.095 152.535);
+  --color-green-950: oklch(26.6% 0.065 152.934);
+
+  --color-emerald-50: oklch(97.9% 0.021 166.113);
+  --color-emerald-100: oklch(95% 0.052 163.051);
+  --color-emerald-200: oklch(90.5% 0.093 164.15);
+  --color-emerald-300: oklch(84.5% 0.143 164.978);
+  --color-emerald-400: oklch(76.5% 0.177 163.223);
+  --color-emerald-500: oklch(69.6% 0.17 162.48);
+  --color-emerald-600: oklch(59.6% 0.145 163.225);
+  --color-emerald-700: oklch(50.8% 0.118 165.612);
+  --color-emerald-800: oklch(43.2% 0.095 166.913);
+  --color-emerald-900: oklch(37.8% 0.077 168.94);
+  --color-emerald-950: oklch(26.2% 0.051 172.552);
+
+  --color-teal-50: oklch(98.4% 0.014 180.72);
+  --color-teal-100: oklch(95.3% 0.051 180.801);
+  --color-teal-200: oklch(91% 0.096 180.426);
+  --color-teal-300: oklch(85.5% 0.138 181.071);
+  --color-teal-400: oklch(77.7% 0.152 181.912);
+  --color-teal-500: oklch(70.4% 0.14 182.503);
+  --color-teal-600: oklch(60% 0.118 184.704);
+  --color-teal-700: oklch(51.1% 0.096 186.391);
+  --color-teal-800: oklch(43.7% 0.078 188.216);
+  --color-teal-900: oklch(38.6% 0.063 188.416);
+  --color-teal-950: oklch(27.7% 0.046 192.524);
+
+  --color-cyan-50: oklch(98.4% 0.019 200.873);
+  --color-cyan-100: oklch(95.6% 0.045 203.388);
+  --color-cyan-200: oklch(91.7% 0.08 205.041);
+  --color-cyan-300: oklch(86.5% 0.127 207.078);
+  --color-cyan-400: oklch(78.9% 0.154 211.53);
+  --color-cyan-500: oklch(71.5% 0.143 215.221);
+  --color-cyan-600: oklch(60.9% 0.126 221.723);
+  --color-cyan-700: oklch(52% 0.105 223.128);
+  --color-cyan-800: oklch(45% 0.085 224.283);
+  --color-cyan-900: oklch(39.8% 0.07 227.392);
+  --color-cyan-950: oklch(30.2% 0.056 229.695);
+
+  --color-sky-50: oklch(97.7% 0.013 236.62);
+  --color-sky-100: oklch(95.1% 0.026 236.824);
+  --color-sky-200: oklch(90.1% 0.058 230.902);
+  --color-sky-300: oklch(82.8% 0.111 230.318);
+  --color-sky-400: oklch(74.6% 0.16 232.661);
+  --color-sky-500: oklch(68.5% 0.169 237.323);
+  --color-sky-600: oklch(58.8% 0.158 241.966);
+  --color-sky-700: oklch(50% 0.134 242.749);
+  --color-sky-800: oklch(44.3% 0.11 240.79);
+  --color-sky-900: oklch(39.1% 0.09 240.876);
+  --color-sky-950: oklch(29.3% 0.066 243.157);
+
+  --color-blue-50: oklch(97% 0.014 254.604);
+  --color-blue-100: oklch(93.2% 0.032 255.585);
+  --color-blue-200: oklch(88.2% 0.059 254.128);
+  --color-blue-300: oklch(80.9% 0.105 251.813);
+  --color-blue-400: oklch(70.7% 0.165 254.624);
+  --color-blue-500: oklch(62.3% 0.214 259.815);
+  --color-blue-600: oklch(54.6% 0.245 262.881);
+  --color-blue-700: oklch(48.8% 0.243 264.376);
+  --color-blue-800: oklch(42.4% 0.199 265.638);
+  --color-blue-900: oklch(37.9% 0.146 265.522);
+  --color-blue-950: oklch(28.2% 0.091 267.935);
+
+  --color-indigo-50: oklch(96.2% 0.018 272.314);
+  --color-indigo-100: oklch(93% 0.034 272.788);
+  --color-indigo-200: oklch(87% 0.065 274.039);
+  --color-indigo-300: oklch(78.5% 0.115 274.713);
+  --color-indigo-400: oklch(67.3% 0.182 276.935);
+  --color-indigo-500: oklch(58.5% 0.233 277.117);
+  --color-indigo-600: oklch(51.1% 0.262 276.966);
+  --color-indigo-700: oklch(45.7% 0.24 277.023);
+  --color-indigo-800: oklch(39.8% 0.195 277.366);
+  --color-indigo-900: oklch(35.9% 0.144 278.697);
+  --color-indigo-950: oklch(25.7% 0.09 281.288);
+
+  --color-violet-50: oklch(96.9% 0.016 293.756);
+  --color-violet-100: oklch(94.3% 0.029 294.588);
+  --color-violet-200: oklch(89.4% 0.057 293.283);
+  --color-violet-300: oklch(81.1% 0.111 293.571);
+  --color-violet-400: oklch(70.2% 0.183 293.541);
+  --color-violet-500: oklch(60.6% 0.25 292.717);
+  --color-violet-600: oklch(54.1% 0.281 293.009);
+  --color-violet-700: oklch(49.1% 0.27 292.581);
+  --color-violet-800: oklch(43.2% 0.232 292.759);
+  --color-violet-900: oklch(38% 0.189 293.745);
+  --color-violet-950: oklch(28.3% 0.141 291.089);
+
+  --color-purple-50: oklch(97.7% 0.014 308.299);
+  --color-purple-100: oklch(94.6% 0.033 307.174);
+  --color-purple-200: oklch(90.2% 0.063 306.703);
+  --color-purple-300: oklch(82.7% 0.119 306.383);
+  --color-purple-400: oklch(71.4% 0.203 305.504);
+  --color-purple-500: oklch(62.7% 0.265 303.9);
+  --color-purple-600: oklch(55.8% 0.288 302.321);
+  --color-purple-700: oklch(49.6% 0.265 301.924);
+  --color-purple-800: oklch(43.8% 0.218 303.724);
+  --color-purple-900: oklch(38.1% 0.176 304.987);
+  --color-purple-950: oklch(29.1% 0.149 302.717);
+
+  --color-fuchsia-50: oklch(97.7% 0.017 320.058);
+  --color-fuchsia-100: oklch(95.2% 0.037 318.852);
+  --color-fuchsia-200: oklch(90.3% 0.076 319.62);
+  --color-fuchsia-300: oklch(83.3% 0.145 321.434);
+  --color-fuchsia-400: oklch(74% 0.238 322.16);
+  --color-fuchsia-500: oklch(66.7% 0.295 322.15);
+  --color-fuchsia-600: oklch(59.1% 0.293 322.896);
+  --color-fuchsia-700: oklch(51.8% 0.253 323.949);
+  --color-fuchsia-800: oklch(45.2% 0.211 324.591);
+  --color-fuchsia-900: oklch(40.1% 0.17 325.612);
+  --color-fuchsia-950: oklch(29.3% 0.136 325.661);
+
+  --color-pink-50: oklch(97.1% 0.014 343.198);
+  --color-pink-100: oklch(94.8% 0.028 342.258);
+  --color-pink-200: oklch(89.9% 0.061 343.231);
+  --color-pink-300: oklch(82.3% 0.12 346.018);
+  --color-pink-400: oklch(71.8% 0.202 349.761);
+  --color-pink-500: oklch(65.6% 0.241 354.308);
+  --color-pink-600: oklch(59.2% 0.249 0.584);
+  --color-pink-700: oklch(52.5% 0.223 3.958);
+  --color-pink-800: oklch(45.9% 0.187 3.815);
+  --color-pink-900: oklch(40.8% 0.153 2.432);
+  --color-pink-950: oklch(28.4% 0.109 3.907);
+
+  --color-rose-50: oklch(96.9% 0.015 12.422);
+  --color-rose-100: oklch(94.1% 0.03 12.58);
+  --color-rose-200: oklch(89.2% 0.058 10.001);
+  --color-rose-300: oklch(81% 0.117 11.638);
+  --color-rose-400: oklch(71.2% 0.194 13.428);
+  --color-rose-500: oklch(64.5% 0.246 16.439);
+  --color-rose-600: oklch(58.6% 0.253 17.585);
+  --color-rose-700: oklch(51.4% 0.222 16.935);
+  --color-rose-800: oklch(45.5% 0.188 13.697);
+  --color-rose-900: oklch(41% 0.159 10.272);
+  --color-rose-950: oklch(27.1% 0.105 12.094);
+
+  --color-slate-50: oklch(98.4% 0.003 247.858);
+  --color-slate-100: oklch(96.8% 0.007 247.896);
+  --color-slate-200: oklch(92.9% 0.013 255.508);
+  --color-slate-300: oklch(86.9% 0.022 252.894);
+  --color-slate-400: oklch(70.4% 0.04 256.788);
+  --color-slate-500: oklch(55.4% 0.046 257.417);
+  --color-slate-600: oklch(44.6% 0.043 257.281);
+  --color-slate-700: oklch(37.2% 0.044 257.287);
+  --color-slate-800: oklch(27.9% 0.041 260.031);
+  --color-slate-900: oklch(20.8% 0.042 265.755);
+  --color-slate-950: oklch(12.9% 0.042 264.695);
+
+  --color-gray-50: oklch(98.5% 0.002 247.839);
+  --color-gray-100: oklch(96.7% 0.003 264.542);
+  --color-gray-200: oklch(92.8% 0.006 264.531);
+  --color-gray-300: oklch(87.2% 0.01 258.338);
+  --color-gray-400: oklch(70.7% 0.022 261.325);
+  --color-gray-500: oklch(55.1% 0.027 264.364);
+  --color-gray-600: oklch(44.6% 0.03 256.802);
+  --color-gray-700: oklch(37.3% 0.034 259.733);
+  --color-gray-800: oklch(27.8% 0.033 256.848);
+  --color-gray-900: oklch(21% 0.034 264.665);
+  --color-gray-950: oklch(13% 0.028 261.692);
+
+  --color-zinc-50: oklch(98.5% 0 0);
+  --color-zinc-100: oklch(96.7% 0.001 286.375);
+  --color-zinc-200: oklch(92% 0.004 286.32);
+  --color-zinc-300: oklch(87.1% 0.006 286.286);
+  --color-zinc-400: oklch(70.5% 0.015 286.067);
+  --color-zinc-500: oklch(55.2% 0.016 285.938);
+  --color-zinc-600: oklch(44.2% 0.017 285.786);
+  --color-zinc-700: oklch(37% 0.013 285.805);
+  --color-zinc-800: oklch(27.4% 0.006 286.033);
+  --color-zinc-900: oklch(21% 0.006 285.885);
+  --color-zinc-950: oklch(14.1% 0.005 285.823);
+
+  --color-neutral-50: oklch(98.5% 0 0);
+  --color-neutral-100: oklch(97% 0 0);
+  --color-neutral-200: oklch(92.2% 0 0);
+  --color-neutral-300: oklch(87% 0 0);
+  --color-neutral-400: oklch(70.8% 0 0);
+  --color-neutral-500: oklch(55.6% 0 0);
+  --color-neutral-600: oklch(43.9% 0 0);
+  --color-neutral-700: oklch(37.1% 0 0);
+  --color-neutral-800: oklch(26.9% 0 0);
+  --color-neutral-900: oklch(20.5% 0 0);
+  --color-neutral-950: oklch(14.5% 0 0);
+
+  --color-stone-50: oklch(98.5% 0.001 106.423);
+  --color-stone-100: oklch(97% 0.001 106.424);
+  --color-stone-200: oklch(92.3% 0.003 48.717);
+  --color-stone-300: oklch(86.9% 0.005 56.366);
+  --color-stone-400: oklch(70.9% 0.01 56.259);
+  --color-stone-500: oklch(55.3% 0.013 58.071);
+  --color-stone-600: oklch(44.4% 0.011 73.639);
+  --color-stone-700: oklch(37.4% 0.01 67.558);
+  --color-stone-800: oklch(26.8% 0.007 34.298);
+  --color-stone-900: oklch(21.6% 0.006 56.043);
+  --color-stone-950: oklch(14.7% 0.004 49.25);
+
+  --color-black: #000;
+  --color-white: #fff;
+
+  --spacing: 0.25rem;
+
+  --breakpoint-sm: 40rem;
+  --breakpoint-md: 48rem;
+  --breakpoint-lg: 64rem;
+  --breakpoint-xl: 80rem;
+  --breakpoint-2xl: 96rem;
+
+  --container-3xs: 16rem;
+  --container-2xs: 18rem;
+  --container-xs: 20rem;
+  --container-sm: 24rem;
+  --container-md: 28rem;
+  --container-lg: 32rem;
+  --container-xl: 36rem;
+  --container-2xl: 42rem;
+  --container-3xl: 48rem;
+  --container-4xl: 56rem;
+  --container-5xl: 64rem;
+  --container-6xl: 72rem;
+  --container-7xl: 80rem;
+
+  --text-xs: 0.75rem;
+  --text-xs--line-height: calc(1 / 0.75);
+  --text-sm: 0.875rem;
+  --text-sm--line-height: calc(1.25 / 0.875);
+  --text-base: 1rem;
+  --text-base--line-height: calc(1.5 / 1);
+  --text-lg: 1.125rem;
+  --text-lg--line-height: calc(1.75 / 1.125);
+  --text-xl: 1.25rem;
+  --text-xl--line-height: calc(1.75 / 1.25);
+  --text-2xl: 1.5rem;
+  --text-2xl--line-height: calc(2 / 1.5);
+  --text-3xl: 1.875rem;
+  --text-3xl--line-height: calc(2.25 / 1.875);
+  --text-4xl: 2.25rem;
+  --text-4xl--line-height: calc(2.5 / 2.25);
+  --text-5xl: 3rem;
+  --text-5xl--line-height: 1;
+  --text-6xl: 3.75rem;
+  --text-6xl--line-height: 1;
+  --text-7xl: 4.5rem;
+  --text-7xl--line-height: 1;
+  --text-8xl: 6rem;
+  --text-8xl--line-height: 1;
+  --text-9xl: 8rem;
+  --text-9xl--line-height: 1;
+
+  --font-weight-thin: 100;
+  --font-weight-extralight: 200;
+  --font-weight-light: 300;
+  --font-weight-normal: 400;
+  --font-weight-medium: 500;
+  --font-weight-semibold: 600;
+  --font-weight-bold: 700;
+  --font-weight-extrabold: 800;
+  --font-weight-black: 900;
+
+  --tracking-tighter: -0.05em;
+  --tracking-tight: -0.025em;
+  --tracking-normal: 0em;
+  --tracking-wide: 0.025em;
+  --tracking-wider: 0.05em;
+  --tracking-widest: 0.1em;
+
+  --leading-tight: 1.25;
+  --leading-snug: 1.375;
+  --leading-normal: 1.5;
+  --leading-relaxed: 1.625;
+  --leading-loose: 2;
+
+  --radius-xs: 0.125rem;
+  --radius-sm: 0.25rem;
+  --radius-md: 0.375rem;
+  --radius-lg: 0.5rem;
+  --radius-xl: 0.75rem;
+  --radius-2xl: 1rem;
+  --radius-3xl: 1.5rem;
+  --radius-4xl: 2rem;
+
+  --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);
+  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
+  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
+  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
+  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
+  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
+
+  --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);
+  --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
+  --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
+
+  --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);
+  --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
+  --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
+  --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
+  --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);
+  --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
+
+  --text-shadow-2xs: 0px 1px 0px rgb(0 0 0 / 0.15);
+  --text-shadow-xs: 0px 1px 1px rgb(0 0 0 / 0.2);
+  --text-shadow-sm:
+    0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075), 0px 2px 2px rgb(0 0 0 / 0.075);
+  --text-shadow-md:
+    0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1), 0px 2px 4px rgb(0 0 0 / 0.1);
+  --text-shadow-lg:
+    0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1), 0px 4px 8px rgb(0 0 0 / 0.1);
+
+  --ease-in: cubic-bezier(0.4, 0, 1, 1);
+  --ease-out: cubic-bezier(0, 0, 0.2, 1);
+  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
+
+  --animate-spin: spin 1s linear infinite;
+  --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
+  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
+  --animate-bounce: bounce 1s infinite;
+
+  @keyframes spin {
+    to {
+      transform: rotate(360deg);
+    }
+  }
+
+  @keyframes ping {
+    75%,
+    100% {
+      transform: scale(2);
+      opacity: 0;
+    }
+  }
+
+  @keyframes pulse {
+    50% {
+      opacity: 0.5;
+    }
+  }
+
+  @keyframes bounce {
+    0%,
+    100% {
+      transform: translateY(-25%);
+      animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
+    }
+
+    50% {
+      transform: none;
+      animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
+    }
+  }
+
+  --blur-xs: 4px;
+  --blur-sm: 8px;
+  --blur-md: 12px;
+  --blur-lg: 16px;
+  --blur-xl: 24px;
+  --blur-2xl: 40px;
+  --blur-3xl: 64px;
+
+  --perspective-dramatic: 100px;
+  --perspective-near: 300px;
+  --perspective-normal: 500px;
+  --perspective-midrange: 800px;
+  --perspective-distant: 1200px;
+
+  --aspect-video: 16 / 9;
+
+  --default-transition-duration: 150ms;
+  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+  --default-font-family: --theme(--font-sans, initial);
+  --default-font-feature-settings: --theme(--font-sans--font-feature-settings, initial);
+  --default-font-variation-settings: --theme(--font-sans--font-variation-settings, initial);
+  --default-mono-font-family: --theme(--font-mono, initial);
+  --default-mono-font-feature-settings: --theme(--font-mono--font-feature-settings, initial);
+  --default-mono-font-variation-settings: --theme(--font-mono--font-variation-settings, initial);
+}
+
+/* Deprecated */
+@theme default inline reference {
+  --blur: 8px;
+  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
+  --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
+  --radius: 0.25rem;
+  --max-width-prose: 65ch;
+}
Index: node_modules/tailwindcss/utilities.css
===================================================================
--- node_modules/tailwindcss/utilities.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/tailwindcss/utilities.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1 @@
+@tailwind utilities;
Index: node_modules/update-browserslist-db/LICENSE
===================================================================
--- node_modules/update-browserslist-db/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/update-browserslist-db/LICENSE	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2022 Andrey Sitnik <andrey@sitnik.ru> and other contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Index: node_modules/update-browserslist-db/README.md
===================================================================
--- node_modules/update-browserslist-db/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/update-browserslist-db/README.md	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,30 @@
+# Update Browserslist DB
+
+<img width="120" height="120" alt="Browserslist logo by Anton Popov"
+     src="https://browsersl.ist/logo.svg" align="right">
+
+CLI tool to update `caniuse-lite` with browsers DB
+from [Browserslist](https://github.com/browserslist/browserslist/) config.
+
+Some queries like `last 2 versions` or `>1%` depend on actual data
+from `caniuse-lite`.
+
+```sh
+npx update-browserslist-db@latest
+```
+Or if using `pnpm`:
+```sh
+pnpm exec update-browserslist-db latest
+```
+Or if using `yarn`:
+```sh
+yarn dlx update-browserslist-db@latest
+```
+
+<a href="https://evilmartians.com/?utm_source=update-browserslist-db">
+  <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
+       alt="Sponsored by Evil Martians" width="236" height="54">
+</a>
+
+## Docs
+Read full docs **[here](https://github.com/browserslist/update-db#readme)**.
Index: node_modules/update-browserslist-db/check-npm-version.js
===================================================================
--- node_modules/update-browserslist-db/check-npm-version.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/update-browserslist-db/check-npm-version.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,17 @@
+let { execSync } = require('child_process')
+let pico = require('picocolors')
+
+try {
+  let version = parseInt(execSync('npm -v'))
+  if (version <= 6) {
+    process.stderr.write(
+      pico.red(
+        'Update npm or call ' +
+          pico.yellow('npx browserslist@latest --update-db') +
+          '\n'
+      )
+    )
+    process.exit(1)
+  }
+  // eslint-disable-next-line no-unused-vars
+} catch (e) {}
Index: node_modules/update-browserslist-db/cli.js
===================================================================
--- node_modules/update-browserslist-db/cli.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/update-browserslist-db/cli.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,42 @@
+#!/usr/bin/env node
+
+let { readFileSync } = require('fs')
+let { join } = require('path')
+
+require('./check-npm-version')
+let updateDb = require('./')
+
+const ROOT = __dirname
+
+function getPackage() {
+  return JSON.parse(readFileSync(join(ROOT, 'package.json')))
+}
+
+let args = process.argv.slice(2)
+
+let USAGE = 'Usage:\n  npx update-browserslist-db\n'
+
+function isArg(arg) {
+  return args.some(i => i === arg)
+}
+
+function error(msg) {
+  process.stderr.write('update-browserslist-db: ' + msg + '\n')
+  process.exit(1)
+}
+
+if (isArg('--help') || isArg('-h')) {
+  process.stdout.write(getPackage().description + '.\n\n' + USAGE + '\n')
+} else if (isArg('--version') || isArg('-v')) {
+  process.stdout.write('browserslist-lint ' + getPackage().version + '\n')
+} else {
+  try {
+    updateDb()
+  } catch (e) {
+    if (e.name === 'BrowserslistUpdateError') {
+      error(e.message)
+    } else {
+      throw e
+    }
+  }
+}
Index: node_modules/update-browserslist-db/index.d.ts
===================================================================
--- node_modules/update-browserslist-db/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/update-browserslist-db/index.d.ts	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6 @@
+/**
+ * Run update and print output to terminal.
+ */
+declare function updateDb(print?: (str: string) => void): void
+
+export = updateDb
Index: node_modules/update-browserslist-db/index.js
===================================================================
--- node_modules/update-browserslist-db/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/update-browserslist-db/index.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,347 @@
+let { execSync } = require('child_process')
+let escalade = require('escalade/sync')
+let { existsSync, readFileSync, writeFileSync } = require('fs')
+let { join } = require('path')
+let pico = require('picocolors')
+
+const { detectEOL, detectIndent } = require('./utils')
+
+function BrowserslistUpdateError(message) {
+  this.name = 'BrowserslistUpdateError'
+  this.message = message
+  this.browserslist = true
+  if (Error.captureStackTrace) {
+    Error.captureStackTrace(this, BrowserslistUpdateError)
+  }
+}
+
+BrowserslistUpdateError.prototype = Error.prototype
+
+// Check if HADOOP_HOME is set to determine if this is running in a Hadoop environment
+const IsHadoopExists = !!process.env.HADOOP_HOME
+const yarnCommand = IsHadoopExists ? 'yarnpkg' : 'yarn'
+
+/* c8 ignore next 3 */
+function defaultPrint(str) {
+  process.stdout.write(str)
+}
+
+function detectLockfile() {
+  let packageDir = escalade('.', (dir, names) => {
+    return names.indexOf('package.json') !== -1 ? dir : ''
+  })
+
+  if (!packageDir) {
+    throw new BrowserslistUpdateError(
+      'Cannot find package.json. ' +
+        'Is this the right directory to run `npx update-browserslist-db` in?'
+    )
+  }
+
+  let lockfileNpm = join(packageDir, 'package-lock.json')
+  let lockfileShrinkwrap = join(packageDir, 'npm-shrinkwrap.json')
+  let lockfileYarn = join(packageDir, 'yarn.lock')
+  let lockfilePnpm = join(packageDir, 'pnpm-lock.yaml')
+  let lockfileBun = join(packageDir, 'bun.lock')
+  let lockfileBunBinary = join(packageDir, 'bun.lockb')
+
+  if (existsSync(lockfilePnpm)) {
+    return { file: lockfilePnpm, mode: 'pnpm' }
+  } else if (existsSync(lockfileBun) || existsSync(lockfileBunBinary)) {
+    return { file: lockfileBun, mode: 'bun' }
+  } else if (existsSync(lockfileNpm)) {
+    return { file: lockfileNpm, mode: 'npm' }
+  } else if (existsSync(lockfileYarn)) {
+    let lock = { file: lockfileYarn, mode: 'yarn' }
+    lock.content = readFileSync(lock.file).toString()
+    lock.version = /# yarn lockfile v1/.test(lock.content) ? 1 : 2
+    return lock
+  } else if (existsSync(lockfileShrinkwrap)) {
+    return { file: lockfileShrinkwrap, mode: 'npm' }
+  }
+  throw new BrowserslistUpdateError(
+    'No lockfile found. Run "npm install", "yarn install" or "pnpm install"'
+  )
+}
+
+function getLatestInfo(lock) {
+  if (lock.mode === 'yarn') {
+    if (lock.version === 1) {
+      return JSON.parse(
+        execSync(yarnCommand + ' info caniuse-lite --json').toString()
+      ).data
+    } else {
+      return JSON.parse(
+        execSync(yarnCommand + ' npm info caniuse-lite --json').toString()
+      )
+    }
+  }
+  if (lock.mode === 'pnpm') {
+    return JSON.parse(execSync('pnpm info caniuse-lite --json').toString())
+  }
+  if (lock.mode === 'bun') {
+    return JSON.parse(execSync(' bun info caniuse-lite --json').toString())
+  }
+
+  return JSON.parse(execSync('npm show caniuse-lite --json').toString())
+}
+
+function getBrowsers() {
+  let browserslist = require('browserslist')
+  return browserslist().reduce((result, entry) => {
+    if (!result[entry[0]]) {
+      result[entry[0]] = []
+    }
+    result[entry[0]].push(entry[1])
+    return result
+  }, {})
+}
+
+function diffBrowsers(old, current) {
+  let browsers = Object.keys(old).concat(
+    Object.keys(current).filter(browser => old[browser] === undefined)
+  )
+  return browsers
+    .map(browser => {
+      let oldVersions = old[browser] || []
+      let currentVersions = current[browser] || []
+      let common = oldVersions.filter(v => currentVersions.includes(v))
+      let added = currentVersions.filter(v => !common.includes(v))
+      let removed = oldVersions.filter(v => !common.includes(v))
+      return removed
+        .map(v => pico.red('- ' + browser + ' ' + v))
+        .concat(added.map(v => pico.green('+ ' + browser + ' ' + v)))
+    })
+    .reduce((result, array) => result.concat(array), [])
+    .join('\n')
+}
+
+function updateNpmLockfile(lock, latest) {
+  let metadata = { latest, versions: [] }
+  let content = deletePackage(JSON.parse(lock.content), metadata)
+  metadata.content = JSON.stringify(content, null, detectIndent(lock.content))
+  return metadata
+}
+
+function deletePackage(node, metadata) {
+  if (node.dependencies) {
+    if (node.dependencies['caniuse-lite']) {
+      let version = node.dependencies['caniuse-lite'].version
+      metadata.versions[version] = true
+      delete node.dependencies['caniuse-lite']
+    }
+    for (let i in node.dependencies) {
+      node.dependencies[i] = deletePackage(node.dependencies[i], metadata)
+    }
+  }
+  if (node.packages) {
+    for (let path in node.packages) {
+      if (path.endsWith('/caniuse-lite')) {
+        metadata.versions[node.packages[path].version] = true
+        delete node.packages[path]
+      }
+    }
+  }
+  return node
+}
+
+let yarnVersionRe = /version "(.*?)"/
+
+function updateYarnLockfile(lock, latest) {
+  let blocks = lock.content.split(/(\n{2,})/).map(block => {
+    return block.split('\n')
+  })
+  let versions = {}
+  blocks.forEach(lines => {
+    if (lines[0].indexOf('caniuse-lite@') !== -1) {
+      let match = yarnVersionRe.exec(lines[1])
+      versions[match[1]] = true
+      if (match[1] !== latest.version) {
+        lines[1] = lines[1].replace(
+          /version "[^"]+"/,
+          'version "' + latest.version + '"'
+        )
+        lines[2] = lines[2].replace(
+          /resolved "[^"]+"/,
+          'resolved "' + latest.dist.tarball + '"'
+        )
+        if (lines.length === 4) {
+          lines[3] = latest.dist.integrity
+            ? lines[3].replace(
+                /integrity .+/,
+                'integrity ' + latest.dist.integrity
+              )
+            : ''
+        }
+      }
+    }
+  })
+  let content = blocks.map(lines => lines.join('\n')).join('')
+  return { content, versions }
+}
+
+function updateLockfile(lock, latest) {
+  if (!lock.content) lock.content = readFileSync(lock.file).toString()
+
+  let updatedLockFile
+  if (lock.mode === 'yarn') {
+    updatedLockFile = updateYarnLockfile(lock, latest)
+  } else {
+    updatedLockFile = updateNpmLockfile(lock, latest)
+  }
+  updatedLockFile.content = updatedLockFile.content.replace(
+    /\n/g,
+    detectEOL(lock.content)
+  )
+  return updatedLockFile
+}
+
+function updatePackageManually(print, lock, latest) {
+  let lockfileData = updateLockfile(lock, latest)
+  let caniuseVersions = Object.keys(lockfileData.versions).sort()
+  if (caniuseVersions.length === 1 && caniuseVersions[0] === latest.version) {
+    print(
+      'Installed version:  ' +
+        pico.bold(pico.green(caniuseVersions[0])) +
+        '\n' +
+        pico.bold(pico.green('caniuse-lite is up to date')) +
+        '\n'
+    )
+    return
+  }
+
+  if (caniuseVersions.length === 0) {
+    caniuseVersions[0] = 'none'
+  }
+  print(
+    'Installed version' +
+      (caniuseVersions.length === 1 ? ':  ' : 's: ') +
+      pico.bold(pico.red(caniuseVersions.join(', '))) +
+      '\n' +
+      'Removing old caniuse-lite from lock file\n'
+  )
+  writeFileSync(lock.file, lockfileData.content)
+
+  let install =
+    lock.mode === 'yarn' ? yarnCommand + ' add -W' : lock.mode + ' install'
+  print(
+    'Installing new caniuse-lite version\n' +
+      pico.yellow('$ ' + install + ' caniuse-lite baseline-browser-mapping') +
+      '\n'
+  )
+  try {
+    execSync(install + ' caniuse-lite baseline-browser-mapping')
+  } catch (e) /* c8 ignore start */ {
+    print(
+      pico.red(
+        '\n' +
+          e.stack +
+          '\n\n' +
+          'Problem with `' +
+          install +
+          ' caniuse-lite` call. ' +
+          'Run it manually.\n'
+      )
+    )
+    process.exit(1)
+  } /* c8 ignore end */
+
+  let del =
+    lock.mode === 'yarn' ? yarnCommand + ' remove -W' : lock.mode + ' uninstall'
+  print(
+    'Cleaning package.json dependencies from caniuse-lite\n' +
+      pico.yellow('$ ' + del + ' caniuse-lite baseline-browser-mapping') +
+      '\n'
+  )
+  execSync(del + ' caniuse-lite baseline-browser-mapping')
+}
+
+function updateWith(print, cmd) {
+  print('Updating caniuse-lite version\n' + pico.yellow('$ ' + cmd) + '\n')
+  try {
+    execSync(cmd)
+  } catch (e) /* c8 ignore start */ {
+    print(pico.red(e.stdout.toString()))
+    print(
+      pico.red(
+        '\n' +
+          e.stack +
+          '\n\n' +
+          'Problem with `' +
+          cmd +
+          '` call. ' +
+          'Run it manually.\n'
+      )
+    )
+    process.exit(1)
+  } /* c8 ignore end */
+}
+
+module.exports = function updateDB(print = defaultPrint) {
+  let lock = detectLockfile()
+  let latest = getLatestInfo(lock)
+
+  let listError
+  let oldList
+  try {
+    oldList = getBrowsers()
+  } catch (e) {
+    listError = e
+  }
+
+  print('Latest version:     ' + pico.bold(pico.green(latest.version)) + '\n')
+
+  if (lock.mode === 'yarn' && lock.version !== 1) {
+    updateWith(
+      print,
+      yarnCommand + ' up -R caniuse-lite baseline-browser-mapping'
+    )
+  } else if (lock.mode === 'pnpm') {
+    let lockContent = readFileSync(lock.file).toString()
+    let packages = lockContent.includes('baseline-browser-mapping')
+      ? 'caniuse-lite baseline-browser-mapping'
+      : 'caniuse-lite'
+    updateWith(print, 'pnpm up --depth=Infinity --no-save ' + packages)
+  } else if (lock.mode === 'bun') {
+    updateWith(print, 'bun update caniuse-lite baseline-browser-mapping')
+  } else {
+    updatePackageManually(print, lock, latest)
+  }
+
+  print('caniuse-lite has been successfully updated\n')
+
+  let newList
+  if (!listError) {
+    try {
+      newList = getBrowsers()
+    } catch (e) /* c8 ignore start */ {
+      listError = e
+    } /* c8 ignore end */
+  }
+
+  if (listError) {
+    if (listError.message.includes("Cannot find module 'browserslist'")) {
+      print(
+        pico.gray(
+          'Install `browserslist` to your direct dependencies ' +
+            'to see target browser changes\n'
+        )
+      )
+    } else {
+      print(
+        pico.gray(
+          'Problem with browser list retrieval.\n' +
+            'Target browser changes won’t be shown.\n'
+        )
+      )
+    }
+  } else {
+    let changes = diffBrowsers(oldList, newList)
+    if (changes) {
+      print('\nTarget browser changes:\n')
+      print(changes + '\n')
+    } else {
+      print('\n' + pico.green('No target browser changes') + '\n')
+    }
+  }
+}
Index: node_modules/update-browserslist-db/package.json
===================================================================
--- node_modules/update-browserslist-db/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/update-browserslist-db/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,40 @@
+{
+  "name": "update-browserslist-db",
+  "version": "1.2.3",
+  "description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config",
+  "keywords": [
+    "caniuse",
+    "browsers",
+    "target"
+  ],
+  "funding": [
+    {
+      "type": "opencollective",
+      "url": "https://opencollective.com/browserslist"
+    },
+    {
+      "type": "tidelift",
+      "url": "https://tidelift.com/funding/github/npm/browserslist"
+    },
+    {
+      "type": "github",
+      "url": "https://github.com/sponsors/ai"
+    }
+  ],
+  "author": "Andrey Sitnik <andrey@sitnik.ru>",
+  "license": "MIT",
+  "repository": "browserslist/update-db",
+  "types": "./index.d.ts",
+  "exports": {
+    ".": "./index.js",
+    "./package.json": "./package.json"
+  },
+  "dependencies": {
+    "escalade": "^3.2.0",
+    "picocolors": "^1.1.1"
+  },
+  "peerDependencies": {
+    "browserslist": ">= 4.21.0"
+  },
+  "bin": "cli.js"
+}
Index: node_modules/update-browserslist-db/utils.js
===================================================================
--- node_modules/update-browserslist-db/utils.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ node_modules/update-browserslist-db/utils.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,25 @@
+const { EOL } = require('os')
+
+const getFirstRegexpMatchOrDefault = (text, regexp, defaultValue) => {
+  regexp.lastIndex = 0 // https://stackoverflow.com/a/11477448/4536543
+  let match = regexp.exec(text)
+  if (match !== null) {
+    return match[1]
+  } else {
+    return defaultValue
+  }
+}
+
+const DEFAULT_INDENT = '  '
+const INDENT_REGEXP = /^([ \t]+)[^\s]/m
+
+module.exports.detectIndent = text =>
+  getFirstRegexpMatchOrDefault(text, INDENT_REGEXP, DEFAULT_INDENT)
+module.exports.DEFAULT_INDENT = DEFAULT_INDENT
+
+const DEFAULT_EOL = EOL
+const EOL_REGEXP = /(\r\n|\n|\r)/g
+
+module.exports.detectEOL = text =>
+  getFirstRegexpMatchOrDefault(text, EOL_REGEXP, DEFAULT_EOL)
+module.exports.DEFAULT_EOL = DEFAULT_EOL
Index: package-lock.json
===================================================================
--- package-lock.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ package-lock.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,264 @@
+{
+  "name": "Proekt_Wazuh",
+  "lockfileVersion": 3,
+  "requires": true,
+  "packages": {
+    "": {
+      "devDependencies": {
+        "autoprefixer": "^10.4.23",
+        "postcss": "^8.5.6",
+        "tailwindcss": "^4.1.18"
+      }
+    },
+    "node_modules/autoprefixer": {
+      "version": "10.4.23",
+      "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.23.tgz",
+      "integrity": "sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/postcss/"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "dependencies": {
+        "browserslist": "^4.28.1",
+        "caniuse-lite": "^1.0.30001760",
+        "fraction.js": "^5.3.4",
+        "picocolors": "^1.1.1",
+        "postcss-value-parser": "^4.2.0"
+      },
+      "bin": {
+        "autoprefixer": "bin/autoprefixer"
+      },
+      "engines": {
+        "node": "^10 || ^12 || >=14"
+      },
+      "peerDependencies": {
+        "postcss": "^8.1.0"
+      }
+    },
+    "node_modules/baseline-browser-mapping": {
+      "version": "2.9.11",
+      "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz",
+      "integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==",
+      "dev": true,
+      "license": "Apache-2.0",
+      "bin": {
+        "baseline-browser-mapping": "dist/cli.js"
+      }
+    },
+    "node_modules/browserslist": {
+      "version": "4.28.1",
+      "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
+      "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/browserslist"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/browserslist"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "dependencies": {
+        "baseline-browser-mapping": "^2.9.0",
+        "caniuse-lite": "^1.0.30001759",
+        "electron-to-chromium": "^1.5.263",
+        "node-releases": "^2.0.27",
+        "update-browserslist-db": "^1.2.0"
+      },
+      "bin": {
+        "browserslist": "cli.js"
+      },
+      "engines": {
+        "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+      }
+    },
+    "node_modules/caniuse-lite": {
+      "version": "1.0.30001761",
+      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001761.tgz",
+      "integrity": "sha512-JF9ptu1vP2coz98+5051jZ4PwQgd2ni8A+gYSN7EA7dPKIMf0pDlSUxhdmVOaV3/fYK5uWBkgSXJaRLr4+3A6g==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/browserslist"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "CC-BY-4.0"
+    },
+    "node_modules/electron-to-chromium": {
+      "version": "1.5.267",
+      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz",
+      "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
+      "dev": true,
+      "license": "ISC"
+    },
+    "node_modules/escalade": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+      "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+      "dev": true,
+      "license": "MIT",
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/fraction.js": {
+      "version": "5.3.4",
+      "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
+      "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
+      "dev": true,
+      "license": "MIT",
+      "engines": {
+        "node": "*"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/rawify"
+      }
+    },
+    "node_modules/nanoid": {
+      "version": "3.3.11",
+      "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+      "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "bin": {
+        "nanoid": "bin/nanoid.cjs"
+      },
+      "engines": {
+        "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+      }
+    },
+    "node_modules/node-releases": {
+      "version": "2.0.27",
+      "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
+      "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
+      "dev": true,
+      "license": "MIT"
+    },
+    "node_modules/picocolors": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+      "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+      "dev": true,
+      "license": "ISC"
+    },
+    "node_modules/postcss": {
+      "version": "8.5.6",
+      "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+      "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/postcss/"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/postcss"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "dependencies": {
+        "nanoid": "^3.3.11",
+        "picocolors": "^1.1.1",
+        "source-map-js": "^1.2.1"
+      },
+      "engines": {
+        "node": "^10 || ^12 || >=14"
+      }
+    },
+    "node_modules/postcss-value-parser": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+      "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
+      "dev": true,
+      "license": "MIT"
+    },
+    "node_modules/source-map-js": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+      "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+      "dev": true,
+      "license": "BSD-3-Clause",
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/tailwindcss": {
+      "version": "4.1.18",
+      "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
+      "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
+      "dev": true,
+      "license": "MIT"
+    },
+    "node_modules/update-browserslist-db": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
+      "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/browserslist"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/funding/github/npm/browserslist"
+        },
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/ai"
+        }
+      ],
+      "license": "MIT",
+      "dependencies": {
+        "escalade": "^3.2.0",
+        "picocolors": "^1.1.1"
+      },
+      "bin": {
+        "update-browserslist-db": "cli.js"
+      },
+      "peerDependencies": {
+        "browserslist": ">= 4.21.0"
+      }
+    }
+  }
+}
Index: package.json
===================================================================
--- package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,7 @@
+{
+  "devDependencies": {
+    "autoprefixer": "^10.4.23",
+    "postcss": "^8.5.6",
+    "tailwindcss": "^4.1.18"
+  }
+}
Index: received_data_sysmon/Ilina-laptop/20251219_23.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20251219_23.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/Ilina-laptop/20251219_23.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,5549 @@
+[
+  {
+    "timestamp": "2025-12-19 23:09:00",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:09:00",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.89,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.36,
+      "disk_read_mb": 216873.73,
+      "disk_write_mb": 208535.91,
+      "network_sent_mb": 58.22,
+      "network_recv_mb": 1333.84,
+      "network_packets_sent": 571140,
+      "network_packets_recv": 725393,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.36,
+          "free_gb": 219.58,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-19 23:09:38",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:09:38",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.87,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.36,
+      "disk_read_mb": 216875.31,
+      "disk_write_mb": 208598.67,
+      "network_sent_mb": 58.28,
+      "network_recv_mb": 1333.95,
+      "network_packets_sent": 571347,
+      "network_packets_recv": 725653,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.36,
+          "free_gb": 219.58,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-19 23:10:15",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:10:15",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.95,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.36,
+      "disk_read_mb": 216875.89,
+      "disk_write_mb": 208611.02,
+      "network_sent_mb": 58.5,
+      "network_recv_mb": 1334.16,
+      "network_packets_sent": 571830,
+      "network_packets_recv": 726371,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.36,
+          "free_gb": 219.58,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-19 23:10:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:10:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.9,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.36,
+      "disk_read_mb": 216876.3,
+      "disk_write_mb": 208624.2,
+      "network_sent_mb": 58.56,
+      "network_recv_mb": 1334.34,
+      "network_packets_sent": 572581,
+      "network_packets_recv": 727623,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.36,
+          "free_gb": 219.58,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-19 23:11:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:11:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.8,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.36,
+      "disk_read_mb": 216876.48,
+      "disk_write_mb": 208632.79,
+      "network_sent_mb": 58.65,
+      "network_recv_mb": 1334.53,
+      "network_packets_sent": 573359,
+      "network_packets_recv": 728900,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.36,
+          "free_gb": 219.58,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-19 23:12:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:12:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.91,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.36,
+      "disk_read_mb": 216876.72,
+      "disk_write_mb": 208640.59,
+      "network_sent_mb": 58.73,
+      "network_recv_mb": 1334.72,
+      "network_packets_sent": 574181,
+      "network_packets_recv": 730233,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.36,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-19 23:12:39",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:12:39",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.07,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216877.67,
+      "disk_write_mb": 208709.06,
+      "network_sent_mb": 58.87,
+      "network_recv_mb": 1335.0,
+      "network_packets_sent": 575112,
+      "network_packets_recv": 731791,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-19 23:13:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:13:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216879.02,
+      "disk_write_mb": 208780.45,
+      "network_sent_mb": 58.97,
+      "network_recv_mb": 1335.2,
+      "network_packets_sent": 575992,
+      "network_packets_recv": 733256,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-19 23:13:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:13:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.16,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216893.83,
+      "disk_write_mb": 208790.9,
+      "network_sent_mb": 59.07,
+      "network_recv_mb": 1335.44,
+      "network_packets_sent": 576887,
+      "network_packets_recv": 734763,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-19 23:14:26",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:14:26",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.97,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216894.69,
+      "disk_write_mb": 208858.36,
+      "network_sent_mb": 59.22,
+      "network_recv_mb": 1335.58,
+      "network_packets_sent": 577427,
+      "network_packets_recv": 735642,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-19 23:15:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:15:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.15,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216896.64,
+      "disk_write_mb": 208949.67,
+      "network_sent_mb": 59.3,
+      "network_recv_mb": 1335.69,
+      "network_packets_sent": 577652,
+      "network_packets_recv": 735926,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-19 23:15:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:15:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.94,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216901.91,
+      "disk_write_mb": 209028.08,
+      "network_sent_mb": 59.36,
+      "network_recv_mb": 1335.75,
+      "network_packets_sent": 577853,
+      "network_packets_recv": 736162,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-19 23:16:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:16:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.8,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216903.4,
+      "disk_write_mb": 209088.05,
+      "network_sent_mb": 59.44,
+      "network_recv_mb": 1335.92,
+      "network_packets_sent": 578114,
+      "network_packets_recv": 736521,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-19 23:16:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:16:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.7,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216903.74,
+      "disk_write_mb": 209118.28,
+      "network_sent_mb": 59.54,
+      "network_recv_mb": 1336.04,
+      "network_packets_sent": 578345,
+      "network_packets_recv": 736830,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-19 23:17:27",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:17:27",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.63,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216905.06,
+      "disk_write_mb": 209129.91,
+      "network_sent_mb": 59.73,
+      "network_recv_mb": 1336.26,
+      "network_packets_sent": 578937,
+      "network_packets_recv": 737780,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-19 23:18:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:18:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.75,
+      "swap_usage": 6.6,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216908.87,
+      "disk_write_mb": 209144.37,
+      "network_sent_mb": 59.86,
+      "network_recv_mb": 1336.47,
+      "network_packets_sent": 579847,
+      "network_packets_recv": 739211,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-19 23:18:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:18:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.79,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216910.39,
+      "disk_write_mb": 209165.93,
+      "network_sent_mb": 60.05,
+      "network_recv_mb": 1336.67,
+      "network_packets_sent": 580479,
+      "network_packets_recv": 740226,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-19 23:19:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:19:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.64,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216910.56,
+      "disk_write_mb": 209240.78,
+      "network_sent_mb": 60.07,
+      "network_recv_mb": 1336.71,
+      "network_packets_sent": 580593,
+      "network_packets_recv": 740387,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-19 23:19:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:19:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.81,
+      "swap_usage": 6.7,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216913.88,
+      "disk_write_mb": 209271.4,
+      "network_sent_mb": 60.23,
+      "network_recv_mb": 1336.86,
+      "network_packets_sent": 580857,
+      "network_packets_recv": 740763,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-19 23:20:29",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:20:29",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.74,
+      "swap_usage": 6.6,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216917.39,
+      "disk_write_mb": 209286.49,
+      "network_sent_mb": 60.38,
+      "network_recv_mb": 1337.04,
+      "network_packets_sent": 581565,
+      "network_packets_recv": 741952,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-19 23:21:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:21:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.75,
+      "swap_usage": 6.6,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216924.37,
+      "disk_write_mb": 209318.81,
+      "network_sent_mb": 60.76,
+      "network_recv_mb": 1337.22,
+      "network_packets_sent": 582094,
+      "network_packets_recv": 742578,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-19 23:21:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:21:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.81,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216945.43,
+      "disk_write_mb": 209373.73,
+      "network_sent_mb": 60.91,
+      "network_recv_mb": 1337.39,
+      "network_packets_sent": 582440,
+      "network_packets_recv": 743008,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-19 23:22:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:22:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.08,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216974.91,
+      "disk_write_mb": 209421.67,
+      "network_sent_mb": 61.08,
+      "network_recv_mb": 1337.66,
+      "network_packets_sent": 582832,
+      "network_packets_recv": 743507,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-19 23:22:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:22:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216975.95,
+      "disk_write_mb": 209465.11,
+      "network_sent_mb": 61.27,
+      "network_recv_mb": 1337.75,
+      "network_packets_sent": 583078,
+      "network_packets_recv": 743877,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-19 23:23:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:23:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.89,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 216977.6,
+      "disk_write_mb": 209477.3,
+      "network_sent_mb": 61.35,
+      "network_recv_mb": 1337.8,
+      "network_packets_sent": 583290,
+      "network_packets_recv": 744126,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-19 23:24:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:24:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217014.5,
+      "disk_write_mb": 209548.12,
+      "network_sent_mb": 61.46,
+      "network_recv_mb": 1337.89,
+      "network_packets_sent": 583625,
+      "network_packets_recv": 744492,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-19 23:24:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:24:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.06,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217014.73,
+      "disk_write_mb": 209615.91,
+      "network_sent_mb": 61.53,
+      "network_recv_mb": 1338.02,
+      "network_packets_sent": 583889,
+      "network_packets_recv": 744798,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-19 23:25:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:25:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.06,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217017.47,
+      "disk_write_mb": 209626.59,
+      "network_sent_mb": 61.63,
+      "network_recv_mb": 1338.13,
+      "network_packets_sent": 584128,
+      "network_packets_recv": 745122,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-19 23:25:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:25:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.86,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217017.82,
+      "disk_write_mb": 209636.3,
+      "network_sent_mb": 61.71,
+      "network_recv_mb": 1338.18,
+      "network_packets_sent": 584225,
+      "network_packets_recv": 745319,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-19 23:26:31",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:26:31",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.86,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217028.22,
+      "disk_write_mb": 209663.09,
+      "network_sent_mb": 61.9,
+      "network_recv_mb": 1338.3,
+      "network_packets_sent": 584501,
+      "network_packets_recv": 745689,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-19 23:27:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:27:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.91,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217029.13,
+      "disk_write_mb": 209672.8,
+      "network_sent_mb": 62.03,
+      "network_recv_mb": 1338.6,
+      "network_packets_sent": 585472,
+      "network_packets_recv": 747486,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-19 23:27:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:27:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.83,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217029.78,
+      "disk_write_mb": 209684.05,
+      "network_sent_mb": 62.26,
+      "network_recv_mb": 1338.79,
+      "network_packets_sent": 586120,
+      "network_packets_recv": 748591,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-19 23:28:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:28:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217030.9,
+      "disk_write_mb": 209692.39,
+      "network_sent_mb": 62.37,
+      "network_recv_mb": 1339.11,
+      "network_packets_sent": 587377,
+      "network_packets_recv": 750818,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-19 23:28:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:28:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.91,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217033.08,
+      "disk_write_mb": 209729.23,
+      "network_sent_mb": 62.52,
+      "network_recv_mb": 1339.37,
+      "network_packets_sent": 587917,
+      "network_packets_recv": 751608,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-19 23:29:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:29:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.88,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217060.2,
+      "disk_write_mb": 209816.98,
+      "network_sent_mb": 62.56,
+      "network_recv_mb": 1339.39,
+      "network_packets_sent": 587987,
+      "network_packets_recv": 751710,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-19 23:30:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:30:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.92,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217061.9,
+      "disk_write_mb": 209847.1,
+      "network_sent_mb": 62.86,
+      "network_recv_mb": 1339.51,
+      "network_packets_sent": 588464,
+      "network_packets_recv": 752158,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-19 23:30:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:30:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.82,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217063.06,
+      "disk_write_mb": 209911.61,
+      "network_sent_mb": 62.91,
+      "network_recv_mb": 1339.56,
+      "network_packets_sent": 588620,
+      "network_packets_recv": 752357,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 67,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-19 23:31:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:31:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.78,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217063.39,
+      "disk_write_mb": 209968.29,
+      "network_sent_mb": 62.98,
+      "network_recv_mb": 1339.62,
+      "network_packets_sent": 588773,
+      "network_packets_recv": 752551,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-19 23:31:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:31:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.83,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217064.59,
+      "disk_write_mb": 210041.85,
+      "network_sent_mb": 63.05,
+      "network_recv_mb": 1339.66,
+      "network_packets_sent": 588905,
+      "network_packets_recv": 752758,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-19 23:32:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:32:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.82,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217064.71,
+      "disk_write_mb": 210094.93,
+      "network_sent_mb": 63.11,
+      "network_recv_mb": 1339.7,
+      "network_packets_sent": 589040,
+      "network_packets_recv": 752907,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-19 23:33:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:33:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.85,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217065.98,
+      "disk_write_mb": 210163.96,
+      "network_sent_mb": 63.18,
+      "network_recv_mb": 1339.74,
+      "network_packets_sent": 589226,
+      "network_packets_recv": 753107,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-19 23:33:42",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:33:42",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.79,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217066.2,
+      "disk_write_mb": 210199.55,
+      "network_sent_mb": 63.21,
+      "network_recv_mb": 1339.78,
+      "network_packets_sent": 589281,
+      "network_packets_recv": 753228,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-19 23:34:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-19 23:34:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.97,
+      "swap_usage": 6.5,
+      "disk_usage": 53.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 256.37,
+      "disk_read_mb": 217066.29,
+      "disk_write_mb": 210233.89,
+      "network_sent_mb": 63.29,
+      "network_recv_mb": 1339.88,
+      "network_packets_sent": 589537,
+      "network_packets_recv": 753485,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 16.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 256.37,
+          "free_gb": 219.57,
+          "percent_used": 53.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260119_19.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260119_19.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/Ilina-laptop/20260119_19.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,2969 @@
+[
+  {
+    "timestamp": "2026-01-19 19:25:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:25:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.38,
+      "swap_usage": 11.1,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 98938.81,
+      "disk_write_mb": 98943.26,
+      "network_sent_mb": 6.72,
+      "network_recv_mb": 50.45,
+      "network_packets_sent": 22559,
+      "network_packets_recv": 35984,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:26:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:26:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 85.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.41,
+      "swap_usage": 11.1,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 98965.24,
+      "disk_write_mb": 98989.85,
+      "network_sent_mb": 6.84,
+      "network_recv_mb": 50.86,
+      "network_packets_sent": 22932,
+      "network_packets_recv": 36471,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-19 19:27:06",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:27:06",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.26,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99272.73,
+      "disk_write_mb": 99362.76,
+      "network_sent_mb": 7.14,
+      "network_recv_mb": 52.49,
+      "network_packets_sent": 23824,
+      "network_packets_recv": 37555,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:27:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:27:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.33,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99357.65,
+      "disk_write_mb": 99392.61,
+      "network_sent_mb": 7.38,
+      "network_recv_mb": 52.67,
+      "network_packets_sent": 24332,
+      "network_packets_recv": 38146,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-19 19:28:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:28:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.24,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99359.96,
+      "disk_write_mb": 99402.88,
+      "network_sent_mb": 7.71,
+      "network_recv_mb": 52.76,
+      "network_packets_sent": 24760,
+      "network_packets_recv": 38552,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-19 19:29:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:29:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.32,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99360.96,
+      "disk_write_mb": 99411.32,
+      "network_sent_mb": 8.01,
+      "network_recv_mb": 52.92,
+      "network_packets_sent": 25317,
+      "network_packets_recv": 39193,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-19 19:29:42",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:29:42",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.42,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99361.9,
+      "disk_write_mb": 99419.77,
+      "network_sent_mb": 8.13,
+      "network_recv_mb": 53.14,
+      "network_packets_sent": 26259,
+      "network_packets_recv": 40460,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:30:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:30:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.37,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99400.99,
+      "disk_write_mb": 99428.75,
+      "network_sent_mb": 8.27,
+      "network_recv_mb": 53.27,
+      "network_packets_sent": 26716,
+      "network_packets_recv": 41079,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:31:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:31:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.88,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99675.34,
+      "disk_write_mb": 99438.79,
+      "network_sent_mb": 8.42,
+      "network_recv_mb": 53.4,
+      "network_packets_sent": 27031,
+      "network_packets_recv": 41458,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:31:39",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:31:39",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 89.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.95,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99676.66,
+      "disk_write_mb": 99447.72,
+      "network_sent_mb": 8.52,
+      "network_recv_mb": 53.49,
+      "network_packets_sent": 27330,
+      "network_packets_recv": 41819,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 67,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:32:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:32:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.86,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99678.07,
+      "disk_write_mb": 99460.66,
+      "network_sent_mb": 8.61,
+      "network_recv_mb": 53.57,
+      "network_packets_sent": 27530,
+      "network_packets_recv": 42080,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 67,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:32:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:32:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 88.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.88,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99681.27,
+      "disk_write_mb": 99469.72,
+      "network_sent_mb": 8.69,
+      "network_recv_mb": 53.65,
+      "network_packets_sent": 27703,
+      "network_packets_recv": 42331,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:33:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:33:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.82,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99681.74,
+      "disk_write_mb": 99477.3,
+      "network_sent_mb": 8.83,
+      "network_recv_mb": 53.79,
+      "network_packets_sent": 28185,
+      "network_packets_recv": 42971,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:34:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:34:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.82,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99682.39,
+      "disk_write_mb": 99485.98,
+      "network_sent_mb": 9.0,
+      "network_recv_mb": 53.93,
+      "network_packets_sent": 28923,
+      "network_packets_recv": 43879,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:34:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:34:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.87,
+      "swap_usage": 11.0,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99682.75,
+      "disk_write_mb": 99497.56,
+      "network_sent_mb": 9.23,
+      "network_recv_mb": 54.11,
+      "network_packets_sent": 29425,
+      "network_packets_recv": 44535,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:35:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:35:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.86,
+      "swap_usage": 11.1,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99683.26,
+      "disk_write_mb": 99521.58,
+      "network_sent_mb": 9.39,
+      "network_recv_mb": 54.25,
+      "network_packets_sent": 29984,
+      "network_packets_recv": 45293,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:36:07",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:36:07",
+      "is_sysmon_available": false,
+      "cpu_usage": 30.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.14,
+      "swap_usage": 11.1,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99684.66,
+      "disk_write_mb": 99533.01,
+      "network_sent_mb": 9.63,
+      "network_recv_mb": 54.44,
+      "network_packets_sent": 30450,
+      "network_packets_recv": 45853,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:36:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:36:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 88.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.83,
+      "swap_usage": 11.3,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99695.59,
+      "disk_write_mb": 99572.62,
+      "network_sent_mb": 10.42,
+      "network_recv_mb": 55.03,
+      "network_packets_sent": 31528,
+      "network_packets_recv": 47254,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:37:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:37:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 87.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.63,
+      "swap_usage": 11.3,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99721.54,
+      "disk_write_mb": 99584.43,
+      "network_sent_mb": 10.61,
+      "network_recv_mb": 55.26,
+      "network_packets_sent": 32220,
+      "network_packets_recv": 48227,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:38:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:38:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.96,
+      "swap_usage": 11.3,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99721.65,
+      "disk_write_mb": 99591.27,
+      "network_sent_mb": 10.7,
+      "network_recv_mb": 55.4,
+      "network_packets_sent": 32920,
+      "network_packets_recv": 49212,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:38:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:38:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.04,
+      "swap_usage": 11.3,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99721.9,
+      "disk_write_mb": 99597.97,
+      "network_sent_mb": 10.77,
+      "network_recv_mb": 55.54,
+      "network_packets_sent": 33569,
+      "network_packets_recv": 50173,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:39:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:39:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 89.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.98,
+      "swap_usage": 11.3,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99723.98,
+      "disk_write_mb": 99607.19,
+      "network_sent_mb": 10.84,
+      "network_recv_mb": 55.66,
+      "network_packets_sent": 34285,
+      "network_packets_recv": 51166,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-19 19:39:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-19 19:39:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 89.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.99,
+      "swap_usage": 11.3,
+      "disk_usage": 57.6,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 274.19,
+      "disk_read_mb": 99724.43,
+      "disk_write_mb": 99616.63,
+      "network_sent_mb": 10.95,
+      "network_recv_mb": 55.83,
+      "network_packets_sent": 35047,
+      "network_packets_recv": 52276,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 13.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 274.19,
+          "free_gb": 201.75,
+          "percent_used": 57.6
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260120_17.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260120_17.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/Ilina-laptop/20260120_17.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,2969 @@
+[
+  {
+    "timestamp": "2026-01-20 17:13:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:13:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.68,
+      "swap_usage": 11.2,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.92,
+      "disk_read_mb": 131558.36,
+      "disk_write_mb": 132561.02,
+      "network_sent_mb": 26.48,
+      "network_recv_mb": 149.53,
+      "network_packets_sent": 98090,
+      "network_packets_recv": 157744,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.92,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-20 17:13:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:13:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.92,
+      "swap_usage": 11.2,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.92,
+      "disk_read_mb": 131580.15,
+      "disk_write_mb": 132623.91,
+      "network_sent_mb": 27.08,
+      "network_recv_mb": 153.1,
+      "network_packets_sent": 100605,
+      "network_packets_recv": 161035,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.09,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.92,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-20 17:14:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:14:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.47,
+      "swap_usage": 11.2,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.93,
+      "disk_read_mb": 131621.42,
+      "disk_write_mb": 132720.63,
+      "network_sent_mb": 30.07,
+      "network_recv_mb": 178.71,
+      "network_packets_sent": 110231,
+      "network_packets_recv": 182202,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.93,
+          "free_gb": 172.01,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:14:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:14:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.29,
+      "swap_usage": 11.2,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.93,
+      "disk_read_mb": 131623.59,
+      "disk_write_mb": 132739.1,
+      "network_sent_mb": 30.23,
+      "network_recv_mb": 179.19,
+      "network_packets_sent": 110854,
+      "network_packets_recv": 183125,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.93,
+          "free_gb": 172.01,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:15:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:15:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 39.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.24,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 131647.94,
+      "disk_write_mb": 132835.75,
+      "network_sent_mb": 32.33,
+      "network_recv_mb": 224.66,
+      "network_packets_sent": 126849,
+      "network_packets_recv": 204605,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:16:15",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:16:15",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.08,
+      "swap_usage": 11.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131682.3,
+      "disk_write_mb": 132884.22,
+      "network_sent_mb": 32.94,
+      "network_recv_mb": 229.64,
+      "network_packets_sent": 129128,
+      "network_packets_recv": 209281,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:16:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:16:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.23,
+      "swap_usage": 11.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131691.33,
+      "disk_write_mb": 132907.34,
+      "network_sent_mb": 33.27,
+      "network_recv_mb": 231.17,
+      "network_packets_sent": 130263,
+      "network_packets_recv": 211564,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:17:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:17:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.2,
+      "swap_usage": 11.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131706.04,
+      "disk_write_mb": 132941.02,
+      "network_sent_mb": 34.22,
+      "network_recv_mb": 244.57,
+      "network_packets_sent": 136148,
+      "network_packets_recv": 218197,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:18:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:18:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.18,
+      "swap_usage": 11.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131726.68,
+      "disk_write_mb": 132964.45,
+      "network_sent_mb": 35.17,
+      "network_recv_mb": 245.85,
+      "network_packets_sent": 137789,
+      "network_packets_recv": 220535,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:18:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:18:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.82,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131729.15,
+      "disk_write_mb": 132978.9,
+      "network_sent_mb": 35.68,
+      "network_recv_mb": 246.12,
+      "network_packets_sent": 138769,
+      "network_packets_recv": 221545,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:19:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:19:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.25,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131730.79,
+      "disk_write_mb": 132991.52,
+      "network_sent_mb": 35.93,
+      "network_recv_mb": 246.27,
+      "network_packets_sent": 139497,
+      "network_packets_recv": 222343,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-20 17:20:06",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:20:06",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.35,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131740.42,
+      "disk_write_mb": 133034.44,
+      "network_sent_mb": 36.12,
+      "network_recv_mb": 246.43,
+      "network_packets_sent": 140128,
+      "network_packets_recv": 223143,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:20:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:20:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.37,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131743.42,
+      "disk_write_mb": 133045.37,
+      "network_sent_mb": 36.35,
+      "network_recv_mb": 246.59,
+      "network_packets_sent": 141052,
+      "network_packets_recv": 224219,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-20 17:21:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:21:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.26,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.92,
+      "disk_read_mb": 131743.67,
+      "disk_write_mb": 133055.3,
+      "network_sent_mb": 37.15,
+      "network_recv_mb": 246.68,
+      "network_packets_sent": 141887,
+      "network_packets_recv": 225042,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.92,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-20 17:21:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:21:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.51,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131825.4,
+      "disk_write_mb": 133075.99,
+      "network_sent_mb": 37.64,
+      "network_recv_mb": 246.97,
+      "network_packets_sent": 142683,
+      "network_packets_recv": 225988,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:22:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:22:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.34,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131854.08,
+      "disk_write_mb": 133088.98,
+      "network_sent_mb": 37.81,
+      "network_recv_mb": 247.29,
+      "network_packets_sent": 143809,
+      "network_packets_recv": 227519,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:23:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:23:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.47,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131855.15,
+      "disk_write_mb": 133106.02,
+      "network_sent_mb": 37.9,
+      "network_recv_mb": 247.55,
+      "network_packets_sent": 144703,
+      "network_packets_recv": 228832,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:23:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:23:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.13,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131855.38,
+      "disk_write_mb": 133115.59,
+      "network_sent_mb": 38.07,
+      "network_recv_mb": 247.66,
+      "network_packets_sent": 145322,
+      "network_packets_recv": 229622,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-20 17:24:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:24:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.25,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131855.77,
+      "disk_write_mb": 133124.22,
+      "network_sent_mb": 38.26,
+      "network_recv_mb": 247.78,
+      "network_packets_sent": 145934,
+      "network_packets_recv": 230361,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-20 17:25:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:25:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.31,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131855.92,
+      "disk_write_mb": 133133.67,
+      "network_sent_mb": 38.38,
+      "network_recv_mb": 247.94,
+      "network_packets_sent": 146790,
+      "network_packets_recv": 231474,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:25:38",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:25:38",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.36,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131856.45,
+      "disk_write_mb": 133143.59,
+      "network_sent_mb": 38.47,
+      "network_recv_mb": 248.05,
+      "network_packets_sent": 147539,
+      "network_packets_recv": 232416,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:26:15",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:26:15",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.52,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131857.52,
+      "disk_write_mb": 133152.57,
+      "network_sent_mb": 38.63,
+      "network_recv_mb": 248.19,
+      "network_packets_sent": 148298,
+      "network_packets_recv": 233340,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20 17:26:53",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20 17:26:53",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.33,
+      "swap_usage": 11.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 131888.71,
+      "disk_write_mb": 133178.97,
+      "network_sent_mb": 38.72,
+      "network_recv_mb": 248.26,
+      "network_packets_sent": 148527,
+      "network_packets_recv": 233665,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 11.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.03,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251217_14.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251217_14.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251217_14.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6323 @@
+[
+  {
+    "timestamp": "2025-12-17 14:29:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:29:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.51,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193655.44,
+      "disk_write_mb": 173253.91,
+      "network_sent_mb": 43.3,
+      "network_recv_mb": 250.38,
+      "network_packets_sent": 148493,
+      "network_packets_recv": 311081,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:30:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:30:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.69,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193656.53,
+      "disk_write_mb": 173298.54,
+      "network_sent_mb": 43.36,
+      "network_recv_mb": 250.5,
+      "network_packets_sent": 148664,
+      "network_packets_recv": 311545,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 14:31:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:31:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.69,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193656.79,
+      "disk_write_mb": 173332.39,
+      "network_sent_mb": 43.39,
+      "network_recv_mb": 250.57,
+      "network_packets_sent": 148757,
+      "network_packets_recv": 311961,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 14:31:39",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:31:39",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.55,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193656.89,
+      "disk_write_mb": 173342.27,
+      "network_sent_mb": 43.47,
+      "network_recv_mb": 250.73,
+      "network_packets_sent": 148961,
+      "network_packets_recv": 312514,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 14:32:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:32:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.4,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193661.63,
+      "disk_write_mb": 173356.57,
+      "network_sent_mb": 43.57,
+      "network_recv_mb": 250.91,
+      "network_packets_sent": 149178,
+      "network_packets_recv": 313103,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 14:32:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:32:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.38,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193661.64,
+      "disk_write_mb": 173368.13,
+      "network_sent_mb": 43.67,
+      "network_recv_mb": 251.02,
+      "network_packets_sent": 149294,
+      "network_packets_recv": 313619,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 14:33:31",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:33:31",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.44,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193662.14,
+      "disk_write_mb": 173377.43,
+      "network_sent_mb": 43.77,
+      "network_recv_mb": 251.12,
+      "network_packets_sent": 149566,
+      "network_packets_recv": 314315,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 14:34:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:34:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.53,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193664.1,
+      "disk_write_mb": 173390.51,
+      "network_sent_mb": 44.01,
+      "network_recv_mb": 251.39,
+      "network_packets_sent": 149925,
+      "network_packets_recv": 315191,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 14:34:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:34:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.57,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193664.17,
+      "disk_write_mb": 173402.75,
+      "network_sent_mb": 44.15,
+      "network_recv_mb": 251.52,
+      "network_packets_sent": 150215,
+      "network_packets_recv": 315870,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.56,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 14:35:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:35:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.53,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193665.75,
+      "disk_write_mb": 173413.05,
+      "network_sent_mb": 44.26,
+      "network_recv_mb": 251.65,
+      "network_packets_sent": 150452,
+      "network_packets_recv": 316419,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.57,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 14:35:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:35:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.52,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193665.75,
+      "disk_write_mb": 173422.21,
+      "network_sent_mb": 44.29,
+      "network_recv_mb": 251.71,
+      "network_packets_sent": 150526,
+      "network_packets_recv": 316841,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.58,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 14:36:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:36:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.49,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193666.24,
+      "disk_write_mb": 173452.27,
+      "network_sent_mb": 44.59,
+      "network_recv_mb": 251.87,
+      "network_packets_sent": 150682,
+      "network_packets_recv": 317425,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.59,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 14:37:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:37:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.48,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193668.26,
+      "disk_write_mb": 173464.29,
+      "network_sent_mb": 44.93,
+      "network_recv_mb": 251.93,
+      "network_packets_sent": 150806,
+      "network_packets_recv": 318035,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.6,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 14:37:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:37:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.15,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193668.34,
+      "disk_write_mb": 173475.57,
+      "network_sent_mb": 45.29,
+      "network_recv_mb": 252.02,
+      "network_packets_sent": 150975,
+      "network_packets_recv": 318641,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.61,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 14:38:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:38:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.21,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193668.45,
+      "disk_write_mb": 173488.25,
+      "network_sent_mb": 45.53,
+      "network_recv_mb": 252.19,
+      "network_packets_sent": 151095,
+      "network_packets_recv": 319301,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.62,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 14:39:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:39:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.22,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193669.12,
+      "disk_write_mb": 173500.7,
+      "network_sent_mb": 45.62,
+      "network_recv_mb": 252.36,
+      "network_packets_sent": 151591,
+      "network_packets_recv": 320426,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.63,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 14:39:39",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:39:39",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.29,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193669.25,
+      "disk_write_mb": 173510.7,
+      "network_sent_mb": 45.74,
+      "network_recv_mb": 252.48,
+      "network_packets_sent": 151971,
+      "network_packets_recv": 321353,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.64,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 14:40:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:40:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.37,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193777.58,
+      "disk_write_mb": 173563.94,
+      "network_sent_mb": 45.82,
+      "network_recv_mb": 252.72,
+      "network_packets_sent": 152184,
+      "network_packets_recv": 321978,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.65,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 14:40:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:40:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.5,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193794.97,
+      "disk_write_mb": 173597.47,
+      "network_sent_mb": 45.88,
+      "network_recv_mb": 252.81,
+      "network_packets_sent": 152298,
+      "network_packets_recv": 322541,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.66,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 14:41:27",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:41:27",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.44,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193796.63,
+      "disk_write_mb": 173647.54,
+      "network_sent_mb": 45.97,
+      "network_recv_mb": 252.89,
+      "network_packets_sent": 152440,
+      "network_packets_recv": 323176,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.67,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 14:42:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:42:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.4,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193796.96,
+      "disk_write_mb": 173686.79,
+      "network_sent_mb": 46.0,
+      "network_recv_mb": 252.98,
+      "network_packets_sent": 152544,
+      "network_packets_recv": 323694,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.68,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 14:42:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:42:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.38,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193797.53,
+      "disk_write_mb": 173697.77,
+      "network_sent_mb": 46.06,
+      "network_recv_mb": 253.14,
+      "network_packets_sent": 152707,
+      "network_packets_recv": 324337,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.69,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 14:43:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:43:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.6,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193803.72,
+      "disk_write_mb": 173710.96,
+      "network_sent_mb": 46.36,
+      "network_recv_mb": 253.43,
+      "network_packets_sent": 153078,
+      "network_packets_recv": 325341,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.7,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:43:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:43:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.6,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 193803.78,
+      "disk_write_mb": 173722.14,
+      "network_sent_mb": 46.43,
+      "network_recv_mb": 253.56,
+      "network_packets_sent": 153378,
+      "network_packets_recv": 326227,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.71,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 14:44:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:44:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.69,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193831.74,
+      "disk_write_mb": 173731.83,
+      "network_sent_mb": 46.65,
+      "network_recv_mb": 253.76,
+      "network_packets_sent": 153857,
+      "network_packets_recv": 327421,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.72,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 14:45:10",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:45:10",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.58,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193831.86,
+      "disk_write_mb": 173746.44,
+      "network_sent_mb": 46.7,
+      "network_recv_mb": 253.9,
+      "network_packets_sent": 154223,
+      "network_packets_recv": 328435,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.73,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 14:45:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:45:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.79,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193834.88,
+      "disk_write_mb": 173755.79,
+      "network_sent_mb": 46.84,
+      "network_recv_mb": 254.1,
+      "network_packets_sent": 154599,
+      "network_packets_recv": 329418,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.74,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 14:46:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:46:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.74,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193838.02,
+      "disk_write_mb": 173766.3,
+      "network_sent_mb": 46.91,
+      "network_recv_mb": 254.24,
+      "network_packets_sent": 154773,
+      "network_packets_recv": 330096,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 14:47:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:47:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.81,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193838.85,
+      "disk_write_mb": 173777.07,
+      "network_sent_mb": 47.26,
+      "network_recv_mb": 254.54,
+      "network_packets_sent": 155173,
+      "network_packets_recv": 331159,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.76,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 14:47:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:47:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 78.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.7,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193840.58,
+      "disk_write_mb": 173818.75,
+      "network_sent_mb": 47.62,
+      "network_recv_mb": 254.73,
+      "network_packets_sent": 155735,
+      "network_packets_recv": 332209,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 14:48:15",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:48:15",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.69,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193935.1,
+      "disk_write_mb": 173892.88,
+      "network_sent_mb": 47.74,
+      "network_recv_mb": 254.82,
+      "network_packets_sent": 155950,
+      "network_packets_recv": 332884,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 14:48:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:48:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.7,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193936.02,
+      "disk_write_mb": 173928.31,
+      "network_sent_mb": 47.83,
+      "network_recv_mb": 255.06,
+      "network_packets_sent": 156220,
+      "network_packets_recv": 333625,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.79,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 14:49:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:49:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.64,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193936.73,
+      "disk_write_mb": 173939.21,
+      "network_sent_mb": 47.89,
+      "network_recv_mb": 255.18,
+      "network_packets_sent": 156389,
+      "network_packets_recv": 334323,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:50:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:50:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.75,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193940.75,
+      "disk_write_mb": 173951.15,
+      "network_sent_mb": 47.95,
+      "network_recv_mb": 255.35,
+      "network_packets_sent": 156601,
+      "network_packets_recv": 334856,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 14:50:42",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:50:42",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.91,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 193942.7,
+      "disk_write_mb": 173964.38,
+      "network_sent_mb": 48.18,
+      "network_recv_mb": 255.57,
+      "network_packets_sent": 156942,
+      "network_packets_recv": 335672,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:51:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:51:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.38,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193953.38,
+      "disk_write_mb": 174000.49,
+      "network_sent_mb": 49.23,
+      "network_recv_mb": 261.91,
+      "network_packets_sent": 160543,
+      "network_packets_recv": 343194,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 33,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:51:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:51:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.49,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193963.99,
+      "disk_write_mb": 174019.23,
+      "network_sent_mb": 49.47,
+      "network_recv_mb": 263.23,
+      "network_packets_sent": 161577,
+      "network_packets_recv": 344884,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 33,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:52:38",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:52:38",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.29,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193967.47,
+      "disk_write_mb": 174036.25,
+      "network_sent_mb": 49.63,
+      "network_recv_mb": 263.48,
+      "network_packets_sent": 162021,
+      "network_packets_recv": 345756,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 33,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:53:16",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:53:16",
+      "is_sysmon_available": false,
+      "cpu_usage": 32.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.38,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193969.89,
+      "disk_write_mb": 174050.37,
+      "network_sent_mb": 50.0,
+      "network_recv_mb": 264.49,
+      "network_packets_sent": 163055,
+      "network_packets_recv": 347482,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 32,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:53:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:53:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 29.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.07,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193970.29,
+      "disk_write_mb": 174065.09,
+      "network_sent_mb": 50.2,
+      "network_recv_mb": 265.26,
+      "network_packets_sent": 163583,
+      "network_packets_recv": 348535,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 32,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:54:33",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:54:33",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.74,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193972.8,
+      "disk_write_mb": 174079.37,
+      "network_sent_mb": 50.39,
+      "network_recv_mb": 265.89,
+      "network_packets_sent": 163987,
+      "network_packets_recv": 349424,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 31,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:55:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:55:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.58,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193973.1,
+      "disk_write_mb": 174116.11,
+      "network_sent_mb": 50.45,
+      "network_recv_mb": 265.96,
+      "network_packets_sent": 164099,
+      "network_packets_recv": 349879,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 31,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:55:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:55:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.52,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193973.26,
+      "disk_write_mb": 174157.7,
+      "network_sent_mb": 50.56,
+      "network_recv_mb": 266.05,
+      "network_packets_sent": 164292,
+      "network_packets_recv": 350436,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 31,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:56:23",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:56:23",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.52,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 193973.94,
+      "disk_write_mb": 174179.35,
+      "network_sent_mb": 50.61,
+      "network_recv_mb": 266.14,
+      "network_packets_sent": 164459,
+      "network_packets_recv": 350934,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:56:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:56:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 36.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.55,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.5,
+      "disk_read_mb": 193975.72,
+      "disk_write_mb": 174200.91,
+      "network_sent_mb": 50.71,
+      "network_recv_mb": 266.78,
+      "network_packets_sent": 164790,
+      "network_packets_recv": 351654,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.5,
+          "free_gb": 222.44,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:57:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:57:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.77,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.51,
+      "disk_read_mb": 193980.46,
+      "disk_write_mb": 174227.02,
+      "network_sent_mb": 51.01,
+      "network_recv_mb": 267.81,
+      "network_packets_sent": 165943,
+      "network_packets_recv": 353323,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.51,
+          "free_gb": 222.43,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:58:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:58:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.99,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 193980.62,
+      "disk_write_mb": 174256.71,
+      "network_sent_mb": 51.41,
+      "network_recv_mb": 268.95,
+      "network_packets_sent": 167037,
+      "network_packets_recv": 354986,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:58:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:58:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 33.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.21,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 193998.19,
+      "disk_write_mb": 174284.09,
+      "network_sent_mb": 51.84,
+      "network_recv_mb": 271.26,
+      "network_packets_sent": 168197,
+      "network_packets_recv": 356790,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 14:59:27",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 14:59:27",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.15,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 193998.75,
+      "disk_write_mb": 174295.94,
+      "network_sent_mb": 51.97,
+      "network_recv_mb": 271.75,
+      "network_packets_sent": 168629,
+      "network_packets_recv": 357566,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251217_15.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251217_15.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251217_15.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,12773 @@
+[
+  {
+    "timestamp": "2025-12-17 15:00:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:00:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.26,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.51,
+      "disk_read_mb": 193999.57,
+      "disk_write_mb": 174309.32,
+      "network_sent_mb": 52.3,
+      "network_recv_mb": 273.15,
+      "network_packets_sent": 169499,
+      "network_packets_recv": 358915,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.51,
+          "free_gb": 222.43,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:00:42",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:00:42",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.25,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.51,
+      "disk_read_mb": 194000.7,
+      "disk_write_mb": 174358.49,
+      "network_sent_mb": 52.63,
+      "network_recv_mb": 273.95,
+      "network_packets_sent": 169854,
+      "network_packets_recv": 359893,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 7.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.51,
+          "free_gb": 222.43,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:01:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:01:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.16,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.51,
+      "disk_read_mb": 194000.82,
+      "disk_write_mb": 174368.95,
+      "network_sent_mb": 52.76,
+      "network_recv_mb": 274.08,
+      "network_packets_sent": 170260,
+      "network_packets_recv": 360820,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.51,
+          "free_gb": 222.43,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:01:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:01:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.11,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.51,
+      "disk_read_mb": 194001.92,
+      "disk_write_mb": 174378.49,
+      "network_sent_mb": 52.87,
+      "network_recv_mb": 274.18,
+      "network_packets_sent": 170425,
+      "network_packets_recv": 361381,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.51,
+          "free_gb": 222.43,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:02:35",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:02:35",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.26,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.51,
+      "disk_read_mb": 194002.36,
+      "disk_write_mb": 174391.46,
+      "network_sent_mb": 52.93,
+      "network_recv_mb": 274.32,
+      "network_packets_sent": 170661,
+      "network_packets_recv": 361891,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.51,
+          "free_gb": 222.43,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:03:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:03:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.24,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.51,
+      "disk_read_mb": 194002.68,
+      "disk_write_mb": 174404.05,
+      "network_sent_mb": 53.02,
+      "network_recv_mb": 274.42,
+      "network_packets_sent": 170806,
+      "network_packets_recv": 362344,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.03,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.51,
+          "free_gb": 222.43,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 15:03:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:03:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.26,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.51,
+      "disk_read_mb": 194005.45,
+      "disk_write_mb": 174413.64,
+      "network_sent_mb": 53.15,
+      "network_recv_mb": 274.61,
+      "network_packets_sent": 171301,
+      "network_packets_recv": 363459,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.04,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.51,
+          "free_gb": 222.43,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 15:04:26",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:04:26",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.46,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194011.52,
+      "disk_write_mb": 174479.79,
+      "network_sent_mb": 53.26,
+      "network_recv_mb": 274.84,
+      "network_packets_sent": 171676,
+      "network_packets_recv": 364193,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 15:05:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:05:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.27,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194011.58,
+      "disk_write_mb": 174498.54,
+      "network_sent_mb": 53.3,
+      "network_recv_mb": 274.91,
+      "network_packets_sent": 171803,
+      "network_packets_recv": 364617,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 25,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 15:05:42",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:05:42",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.34,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194011.72,
+      "disk_write_mb": 174506.94,
+      "network_sent_mb": 53.54,
+      "network_recv_mb": 275.13,
+      "network_packets_sent": 172225,
+      "network_packets_recv": 365609,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.07,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 25,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 15:06:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:06:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.45,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194012.04,
+      "disk_write_mb": 174517.41,
+      "network_sent_mb": 53.67,
+      "network_recv_mb": 275.25,
+      "network_packets_sent": 172469,
+      "network_packets_recv": 366417,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 25,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 15:06:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:06:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 57.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.35,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194012.9,
+      "disk_write_mb": 174525.56,
+      "network_sent_mb": 53.71,
+      "network_recv_mb": 275.31,
+      "network_packets_sent": 172564,
+      "network_packets_recv": 367002,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 24,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:07:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:07:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.36,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194013.26,
+      "disk_write_mb": 174576.86,
+      "network_sent_mb": 53.86,
+      "network_recv_mb": 275.45,
+      "network_packets_sent": 172836,
+      "network_packets_recv": 367975,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 24,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:08:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:08:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 25.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.51,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194028.36,
+      "disk_write_mb": 174595.07,
+      "network_sent_mb": 53.95,
+      "network_recv_mb": 275.62,
+      "network_packets_sent": 173263,
+      "network_packets_recv": 369072,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 24,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:08:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:08:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.28,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194028.46,
+      "disk_write_mb": 174642.64,
+      "network_sent_mb": 54.11,
+      "network_recv_mb": 275.76,
+      "network_packets_sent": 173575,
+      "network_packets_recv": 369872,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 23,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 15:09:26",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:09:26",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.26,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194028.77,
+      "disk_write_mb": 174652.4,
+      "network_sent_mb": 54.19,
+      "network_recv_mb": 275.95,
+      "network_packets_sent": 173802,
+      "network_packets_recv": 370752,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 23,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 15:10:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:10:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.25,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194028.78,
+      "disk_write_mb": 174659.51,
+      "network_sent_mb": 54.22,
+      "network_recv_mb": 276.02,
+      "network_packets_sent": 173909,
+      "network_packets_recv": 371291,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 23,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 15:10:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:10:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.25,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194029.97,
+      "disk_write_mb": 174669.82,
+      "network_sent_mb": 54.28,
+      "network_recv_mb": 276.11,
+      "network_packets_sent": 174068,
+      "network_packets_recv": 371883,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:11:16",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:11:16",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.22,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194029.98,
+      "disk_write_mb": 174678.81,
+      "network_sent_mb": 54.31,
+      "network_recv_mb": 276.17,
+      "network_packets_sent": 174159,
+      "network_packets_recv": 372372,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:11:53",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:11:53",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.16,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194030.05,
+      "disk_write_mb": 174686.68,
+      "network_sent_mb": 54.36,
+      "network_recv_mb": 276.27,
+      "network_packets_sent": 174300,
+      "network_packets_recv": 372982,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 15:12:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:12:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.17,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194030.18,
+      "disk_write_mb": 174696.11,
+      "network_sent_mb": 54.39,
+      "network_recv_mb": 276.42,
+      "network_packets_sent": 174397,
+      "network_packets_recv": 373565,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:13:07",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:13:07",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.17,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194030.25,
+      "disk_write_mb": 174703.32,
+      "network_sent_mb": 54.42,
+      "network_recv_mb": 276.49,
+      "network_packets_sent": 174494,
+      "network_packets_recv": 374053,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 21,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:13:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:13:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.18,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194030.32,
+      "disk_write_mb": 174710.32,
+      "network_sent_mb": 54.44,
+      "network_recv_mb": 276.56,
+      "network_packets_sent": 174557,
+      "network_packets_recv": 374573,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 21,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:14:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:14:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.25,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194030.54,
+      "disk_write_mb": 174718.42,
+      "network_sent_mb": 54.49,
+      "network_recv_mb": 276.64,
+      "network_packets_sent": 174688,
+      "network_packets_recv": 375143,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 21,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:14:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:14:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 44.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.54,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194033.22,
+      "disk_write_mb": 174727.62,
+      "network_sent_mb": 54.53,
+      "network_recv_mb": 276.75,
+      "network_packets_sent": 174844,
+      "network_packets_recv": 375680,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 20,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:15:35",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:15:35",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.28,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194033.77,
+      "disk_write_mb": 174738.78,
+      "network_sent_mb": 54.56,
+      "network_recv_mb": 276.8,
+      "network_packets_sent": 174941,
+      "network_packets_recv": 376042,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 20,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 15:16:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:16:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.24,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194033.93,
+      "disk_write_mb": 174744.77,
+      "network_sent_mb": 54.6,
+      "network_recv_mb": 276.85,
+      "network_packets_sent": 175053,
+      "network_packets_recv": 376409,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 20,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:16:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:16:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.25,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194034.4,
+      "disk_write_mb": 174755.78,
+      "network_sent_mb": 54.65,
+      "network_recv_mb": 276.97,
+      "network_packets_sent": 175216,
+      "network_packets_recv": 376904,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 20,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:17:26",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:17:26",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.2,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194034.72,
+      "disk_write_mb": 174791.11,
+      "network_sent_mb": 54.87,
+      "network_recv_mb": 277.1,
+      "network_packets_sent": 175565,
+      "network_packets_recv": 377482,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:18:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:18:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.29,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194034.79,
+      "disk_write_mb": 174803.46,
+      "network_sent_mb": 54.92,
+      "network_recv_mb": 277.21,
+      "network_packets_sent": 175727,
+      "network_packets_recv": 377931,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 15:18:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:18:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.17,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194034.86,
+      "disk_write_mb": 174810.73,
+      "network_sent_mb": 54.95,
+      "network_recv_mb": 277.26,
+      "network_packets_sent": 175815,
+      "network_packets_recv": 378303,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 15:19:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:19:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.21,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.0,
+      "disk_write_mb": 174817.1,
+      "network_sent_mb": 54.99,
+      "network_recv_mb": 277.32,
+      "network_packets_sent": 175923,
+      "network_packets_recv": 378695,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:19:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:19:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.23,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.07,
+      "disk_write_mb": 174825.57,
+      "network_sent_mb": 55.19,
+      "network_recv_mb": 277.39,
+      "network_packets_sent": 176157,
+      "network_packets_recv": 379192,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 18,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 15:20:31",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:20:31",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.33,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.08,
+      "disk_write_mb": 174834.85,
+      "network_sent_mb": 55.25,
+      "network_recv_mb": 277.51,
+      "network_packets_sent": 176359,
+      "network_packets_recv": 379701,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 18,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:21:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:21:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.21,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.15,
+      "disk_write_mb": 174842.7,
+      "network_sent_mb": 55.48,
+      "network_recv_mb": 277.56,
+      "network_packets_sent": 176476,
+      "network_packets_recv": 380152,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 18,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:21:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:21:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.22,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.16,
+      "disk_write_mb": 174850.3,
+      "network_sent_mb": 55.89,
+      "network_recv_mb": 277.64,
+      "network_packets_sent": 176629,
+      "network_packets_recv": 380849,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:22:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:22:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.29,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.29,
+      "disk_write_mb": 174861.32,
+      "network_sent_mb": 56.29,
+      "network_recv_mb": 277.81,
+      "network_packets_sent": 176869,
+      "network_packets_recv": 381626,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:22:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:22:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.33,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.31,
+      "disk_write_mb": 174870.43,
+      "network_sent_mb": 56.45,
+      "network_recv_mb": 278.06,
+      "network_packets_sent": 177319,
+      "network_packets_recv": 382664,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:23:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:23:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.24,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.31,
+      "disk_write_mb": 174879.15,
+      "network_sent_mb": 56.5,
+      "network_recv_mb": 278.26,
+      "network_packets_sent": 177967,
+      "network_packets_recv": 384059,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:24:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:24:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.24,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.57,
+      "disk_write_mb": 174886.43,
+      "network_sent_mb": 56.56,
+      "network_recv_mb": 278.42,
+      "network_packets_sent": 178635,
+      "network_packets_recv": 385397,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:24:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:24:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.32,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194035.67,
+      "disk_write_mb": 174895.32,
+      "network_sent_mb": 56.62,
+      "network_recv_mb": 278.6,
+      "network_packets_sent": 179328,
+      "network_packets_recv": 386769,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:25:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:25:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 67.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.58,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194037.09,
+      "disk_write_mb": 174908.56,
+      "network_sent_mb": 57.04,
+      "network_recv_mb": 279.11,
+      "network_packets_sent": 180027,
+      "network_packets_recv": 388254,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 15:26:02",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:26:02",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 66.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.43,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194037.16,
+      "disk_write_mb": 174919.73,
+      "network_sent_mb": 57.07,
+      "network_recv_mb": 279.16,
+      "network_packets_sent": 180090,
+      "network_packets_recv": 388688,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:26:39",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:26:39",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 67.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.6,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 194037.43,
+      "disk_write_mb": 174933.6,
+      "network_sent_mb": 57.99,
+      "network_recv_mb": 279.79,
+      "network_packets_sent": 180670,
+      "network_packets_recv": 390087,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:27:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:27:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 68.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.75,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194074.35,
+      "disk_write_mb": 174942.15,
+      "network_sent_mb": 58.0,
+      "network_recv_mb": 279.83,
+      "network_packets_sent": 180716,
+      "network_packets_recv": 390494,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:27:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:27:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 68.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.74,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194080.27,
+      "disk_write_mb": 174988.86,
+      "network_sent_mb": 58.07,
+      "network_recv_mb": 279.9,
+      "network_packets_sent": 180861,
+      "network_packets_recv": 390987,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 15:28:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:28:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 68.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.76,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194081.55,
+      "disk_write_mb": 175044.51,
+      "network_sent_mb": 58.14,
+      "network_recv_mb": 279.95,
+      "network_packets_sent": 180983,
+      "network_packets_recv": 391483,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 15:29:00",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:29:00",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.82,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194082.54,
+      "disk_write_mb": 175109.81,
+      "network_sent_mb": 58.23,
+      "network_recv_mb": 280.07,
+      "network_packets_sent": 181216,
+      "network_packets_recv": 392114,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:29:38",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:29:38",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.88,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194083.03,
+      "disk_write_mb": 175203.41,
+      "network_sent_mb": 58.32,
+      "network_recv_mb": 280.13,
+      "network_packets_sent": 181371,
+      "network_packets_recv": 392619,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:30:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:30:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.99,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194083.16,
+      "disk_write_mb": 175266.18,
+      "network_sent_mb": 58.39,
+      "network_recv_mb": 280.19,
+      "network_packets_sent": 181483,
+      "network_packets_recv": 393096,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 15:30:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:30:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.98,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194083.24,
+      "disk_write_mb": 175344.27,
+      "network_sent_mb": 58.49,
+      "network_recv_mb": 280.27,
+      "network_packets_sent": 181650,
+      "network_packets_recv": 393624,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 15:31:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:31:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.86,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194089.65,
+      "disk_write_mb": 175424.42,
+      "network_sent_mb": 58.56,
+      "network_recv_mb": 280.32,
+      "network_packets_sent": 181768,
+      "network_packets_recv": 394063,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 15:31:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:31:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 84.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.83,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194091.47,
+      "disk_write_mb": 175486.52,
+      "network_sent_mb": 58.62,
+      "network_recv_mb": 280.38,
+      "network_packets_sent": 181875,
+      "network_packets_recv": 394487,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 15:32:35",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:32:35",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.05,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194099.28,
+      "disk_write_mb": 175571.97,
+      "network_sent_mb": 58.71,
+      "network_recv_mb": 280.87,
+      "network_packets_sent": 182271,
+      "network_packets_recv": 395245,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.41,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:33:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:33:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.95,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194108.5,
+      "disk_write_mb": 175653.82,
+      "network_sent_mb": 58.83,
+      "network_recv_mb": 282.57,
+      "network_packets_sent": 183174,
+      "network_packets_recv": 396628,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:33:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:33:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 69.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.85,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194108.86,
+      "disk_write_mb": 175721.04,
+      "network_sent_mb": 58.88,
+      "network_recv_mb": 282.65,
+      "network_packets_sent": 183311,
+      "network_packets_recv": 397133,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 34
+  },
+  {
+    "timestamp": "2025-12-17 15:34:27",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:34:27",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.22,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194109.82,
+      "disk_write_mb": 175762.71,
+      "network_sent_mb": 59.03,
+      "network_recv_mb": 282.83,
+      "network_packets_sent": 183625,
+      "network_packets_recv": 397876,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 15:35:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:35:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.06,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194109.9,
+      "disk_write_mb": 175780.36,
+      "network_sent_mb": 59.15,
+      "network_recv_mb": 282.95,
+      "network_packets_sent": 183795,
+      "network_packets_recv": 398427,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.56,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 15:35:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:35:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.14,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194109.98,
+      "disk_write_mb": 175788.98,
+      "network_sent_mb": 59.22,
+      "network_recv_mb": 283.0,
+      "network_packets_sent": 183962,
+      "network_packets_recv": 398880,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.57,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 15:36:21",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:36:21",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.25,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194110.41,
+      "disk_write_mb": 175799.53,
+      "network_sent_mb": 59.47,
+      "network_recv_mb": 283.22,
+      "network_packets_sent": 184277,
+      "network_packets_recv": 399674,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.59,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:36:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:36:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.47,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194110.94,
+      "disk_write_mb": 175808.52,
+      "network_sent_mb": 59.51,
+      "network_recv_mb": 283.38,
+      "network_packets_sent": 184852,
+      "network_packets_recv": 400987,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.6,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 15:37:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:37:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.0,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194110.94,
+      "disk_write_mb": 175822.63,
+      "network_sent_mb": 59.6,
+      "network_recv_mb": 283.44,
+      "network_packets_sent": 184981,
+      "network_packets_recv": 401486,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.61,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:38:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:38:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.28,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194111.5,
+      "disk_write_mb": 175838.3,
+      "network_sent_mb": 59.68,
+      "network_recv_mb": 283.56,
+      "network_packets_sent": 185166,
+      "network_packets_recv": 402067,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.62,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 15:38:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:38:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.36,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194111.84,
+      "disk_write_mb": 175848.94,
+      "network_sent_mb": 59.96,
+      "network_recv_mb": 283.74,
+      "network_packets_sent": 185548,
+      "network_packets_recv": 402946,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.63,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:39:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:39:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.34,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194126.05,
+      "disk_write_mb": 175912.07,
+      "network_sent_mb": 60.02,
+      "network_recv_mb": 283.91,
+      "network_packets_sent": 185902,
+      "network_packets_recv": 403683,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.64,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 15:40:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:40:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.17,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194127.88,
+      "disk_write_mb": 175979.98,
+      "network_sent_mb": 60.14,
+      "network_recv_mb": 283.98,
+      "network_packets_sent": 186027,
+      "network_packets_recv": 404163,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.65,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:40:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:40:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.26,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194128.38,
+      "disk_write_mb": 176050.86,
+      "network_sent_mb": 60.24,
+      "network_recv_mb": 284.11,
+      "network_packets_sent": 186272,
+      "network_packets_recv": 404738,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.66,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 15:41:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:41:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 78.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.49,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194174.99,
+      "disk_write_mb": 176084.08,
+      "network_sent_mb": 60.34,
+      "network_recv_mb": 284.26,
+      "network_packets_sent": 186548,
+      "network_packets_recv": 405284,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.67,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 6,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:41:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:41:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.5,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.62,
+      "disk_read_mb": 194207.32,
+      "disk_write_mb": 176451.69,
+      "network_sent_mb": 61.36,
+      "network_recv_mb": 307.38,
+      "network_packets_sent": 197017,
+      "network_packets_recv": 417457,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.68,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.62,
+          "free_gb": 222.31,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:42:31",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:42:31",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.51,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.53,
+      "disk_read_mb": 194210.76,
+      "disk_write_mb": 176476.73,
+      "network_sent_mb": 61.42,
+      "network_recv_mb": 307.54,
+      "network_packets_sent": 197571,
+      "network_packets_recv": 418548,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.69,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.53,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 15:43:07",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:43:07",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.25,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194210.92,
+      "disk_write_mb": 176486.3,
+      "network_sent_mb": 61.53,
+      "network_recv_mb": 307.65,
+      "network_packets_sent": 197779,
+      "network_packets_recv": 419084,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.7,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 15:43:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:43:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.21,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194211.23,
+      "disk_write_mb": 176495.16,
+      "network_sent_mb": 61.62,
+      "network_recv_mb": 307.77,
+      "network_packets_sent": 198006,
+      "network_packets_recv": 419622,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.71,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 15:44:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:44:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.34,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194214.96,
+      "disk_write_mb": 176506.23,
+      "network_sent_mb": 61.76,
+      "network_recv_mb": 307.9,
+      "network_packets_sent": 198228,
+      "network_packets_recv": 420219,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.72,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 15:44:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:44:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.65,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194227.98,
+      "disk_write_mb": 176517.07,
+      "network_sent_mb": 61.82,
+      "network_recv_mb": 308.08,
+      "network_packets_sent": 198900,
+      "network_packets_recv": 421526,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.73,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 15:45:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:45:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.91,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194229.41,
+      "disk_write_mb": 176531.71,
+      "network_sent_mb": 62.01,
+      "network_recv_mb": 308.69,
+      "network_packets_sent": 200125,
+      "network_packets_recv": 423539,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.74,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-17 15:46:07",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:46:07",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.83,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194229.54,
+      "disk_write_mb": 176544.87,
+      "network_sent_mb": 62.08,
+      "network_recv_mb": 309.06,
+      "network_packets_sent": 200883,
+      "network_packets_recv": 424996,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:46:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:46:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.11,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194232.33,
+      "disk_write_mb": 176554.59,
+      "network_sent_mb": 62.18,
+      "network_recv_mb": 309.33,
+      "network_packets_sent": 201519,
+      "network_packets_recv": 426093,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.76,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:47:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:47:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.92,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194234.82,
+      "disk_write_mb": 176588.76,
+      "network_sent_mb": 62.38,
+      "network_recv_mb": 309.56,
+      "network_packets_sent": 202099,
+      "network_packets_recv": 426925,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:47:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:47:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 68.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.74,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194234.86,
+      "disk_write_mb": 176601.86,
+      "network_sent_mb": 62.58,
+      "network_recv_mb": 309.66,
+      "network_packets_sent": 202409,
+      "network_packets_recv": 427382,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 15:48:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:48:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.24,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.54,
+      "disk_read_mb": 194236.99,
+      "disk_write_mb": 176630.97,
+      "network_sent_mb": 63.58,
+      "network_recv_mb": 310.39,
+      "network_packets_sent": 203204,
+      "network_packets_recv": 428980,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.79,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.54,
+          "free_gb": 222.4,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 15:49:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:49:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.49,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.61,
+      "disk_read_mb": 194246.29,
+      "disk_write_mb": 176829.76,
+      "network_sent_mb": 63.92,
+      "network_recv_mb": 318.37,
+      "network_packets_sent": 207222,
+      "network_packets_recv": 433800,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.61,
+          "free_gb": 222.33,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 15:49:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:49:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.73,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.61,
+      "disk_read_mb": 194268.66,
+      "disk_write_mb": 176909.41,
+      "network_sent_mb": 63.99,
+      "network_recv_mb": 318.47,
+      "network_packets_sent": 207446,
+      "network_packets_recv": 434235,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.61,
+          "free_gb": 222.33,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 15:50:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:50:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.76,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.61,
+      "disk_read_mb": 194270.89,
+      "disk_write_mb": 176952.29,
+      "network_sent_mb": 64.13,
+      "network_recv_mb": 318.58,
+      "network_packets_sent": 207649,
+      "network_packets_recv": 434753,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.61,
+          "free_gb": 222.33,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 15:50:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:50:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 55.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.38,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194321.49,
+      "disk_write_mb": 177019.77,
+      "network_sent_mb": 64.18,
+      "network_recv_mb": 318.67,
+      "network_packets_sent": 207897,
+      "network_packets_recv": 435280,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 15:51:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:51:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.4,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194323.64,
+      "disk_write_mb": 177091.2,
+      "network_sent_mb": 64.26,
+      "network_recv_mb": 318.75,
+      "network_packets_sent": 208232,
+      "network_packets_recv": 435808,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 18,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-17 15:52:02",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:52:02",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.45,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194324.32,
+      "disk_write_mb": 177156.57,
+      "network_sent_mb": 64.48,
+      "network_recv_mb": 318.98,
+      "network_packets_sent": 208648,
+      "network_packets_recv": 436497,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:52:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:52:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.5,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194326.92,
+      "disk_write_mb": 177222.25,
+      "network_sent_mb": 64.56,
+      "network_recv_mb": 319.04,
+      "network_packets_sent": 208840,
+      "network_packets_recv": 436868,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-17 15:53:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:53:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.59,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194328.62,
+      "disk_write_mb": 177301.05,
+      "network_sent_mb": 64.69,
+      "network_recv_mb": 319.14,
+      "network_packets_sent": 209057,
+      "network_packets_recv": 437322,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:53:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:53:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.6,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194335.95,
+      "disk_write_mb": 177363.69,
+      "network_sent_mb": 64.85,
+      "network_recv_mb": 319.37,
+      "network_packets_sent": 209747,
+      "network_packets_recv": 438203,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 21,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 15:54:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:54:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.53,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194366.83,
+      "disk_write_mb": 177385.84,
+      "network_sent_mb": 65.01,
+      "network_recv_mb": 319.47,
+      "network_packets_sent": 209998,
+      "network_packets_recv": 438735,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 15:54:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:54:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 32.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.53,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194368.74,
+      "disk_write_mb": 177450.46,
+      "network_sent_mb": 65.04,
+      "network_recv_mb": 319.52,
+      "network_packets_sent": 210093,
+      "network_packets_recv": 439041,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:55:35",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:55:35",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.44,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194369.73,
+      "disk_write_mb": 177502.59,
+      "network_sent_mb": 65.1,
+      "network_recv_mb": 319.59,
+      "network_packets_sent": 210240,
+      "network_packets_recv": 439480,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 23,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:56:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:56:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.41,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194369.97,
+      "disk_write_mb": 177511.96,
+      "network_sent_mb": 65.2,
+      "network_recv_mb": 319.69,
+      "network_packets_sent": 210388,
+      "network_packets_recv": 440007,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 24,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:56:44",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:56:44",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.84,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194377.44,
+      "disk_write_mb": 177519.88,
+      "network_sent_mb": 65.25,
+      "network_recv_mb": 319.77,
+      "network_packets_sent": 210631,
+      "network_packets_recv": 440592,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 24,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 15:57:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:57:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.83,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194378.22,
+      "disk_write_mb": 177528.87,
+      "network_sent_mb": 65.38,
+      "network_recv_mb": 319.86,
+      "network_packets_sent": 210870,
+      "network_packets_recv": 441243,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 25,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 15:57:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:57:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.83,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194380.09,
+      "disk_write_mb": 177545.04,
+      "network_sent_mb": 65.44,
+      "network_recv_mb": 320.0,
+      "network_packets_sent": 211108,
+      "network_packets_recv": 441888,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 15:58:27",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:58:27",
+      "is_sysmon_available": false,
+      "cpu_usage": 31.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.86,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194380.84,
+      "disk_write_mb": 177559.65,
+      "network_sent_mb": 65.48,
+      "network_recv_mb": 320.08,
+      "network_packets_sent": 211257,
+      "network_packets_recv": 442353,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 15:59:02",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:59:02",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.88,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194381.16,
+      "disk_write_mb": 177630.19,
+      "network_sent_mb": 65.58,
+      "network_recv_mb": 320.15,
+      "network_packets_sent": 211439,
+      "network_packets_recv": 442902,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 15:59:37",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 15:59:37",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.91,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194382.24,
+      "disk_write_mb": 177708.21,
+      "network_sent_mb": 65.7,
+      "network_recv_mb": 320.24,
+      "network_packets_sent": 211702,
+      "network_packets_recv": 443490,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251217_16.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251217_16.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251217_16.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,6323 @@
+[
+  {
+    "timestamp": "2025-12-17 16:00:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:00:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.91,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194385.26,
+      "disk_write_mb": 177750.44,
+      "network_sent_mb": 65.98,
+      "network_recv_mb": 320.43,
+      "network_packets_sent": 212103,
+      "network_packets_recv": 444287,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 16:00:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:00:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.04,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194388.39,
+      "disk_write_mb": 177801.92,
+      "network_sent_mb": 66.19,
+      "network_recv_mb": 320.6,
+      "network_packets_sent": 212570,
+      "network_packets_recv": 445327,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 8.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 16:01:23",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:01:23",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.9,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194389.17,
+      "disk_write_mb": 177849.58,
+      "network_sent_mb": 66.28,
+      "network_recv_mb": 320.72,
+      "network_packets_sent": 212837,
+      "network_packets_recv": 445861,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 16:01:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:01:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.93,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194389.56,
+      "disk_write_mb": 177860.63,
+      "network_sent_mb": 66.43,
+      "network_recv_mb": 320.87,
+      "network_packets_sent": 213251,
+      "network_packets_recv": 446701,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 16:02:35",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:02:35",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.01,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194389.9,
+      "disk_write_mb": 177878.0,
+      "network_sent_mb": 66.48,
+      "network_recv_mb": 321.02,
+      "network_packets_sent": 213905,
+      "network_packets_recv": 447929,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 31,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 16:03:10",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:03:10",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.34,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194392.27,
+      "disk_write_mb": 177895.43,
+      "network_sent_mb": 67.87,
+      "network_recv_mb": 322.51,
+      "network_packets_sent": 215043,
+      "network_packets_recv": 450124,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.03,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 32,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 16:03:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:03:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.32,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194421.32,
+      "disk_write_mb": 177912.02,
+      "network_sent_mb": 68.25,
+      "network_recv_mb": 324.19,
+      "network_packets_sent": 216060,
+      "network_packets_recv": 451890,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.04,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 32,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-17 16:04:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:04:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.32,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194421.66,
+      "disk_write_mb": 177923.85,
+      "network_sent_mb": 68.46,
+      "network_recv_mb": 325.04,
+      "network_packets_sent": 216507,
+      "network_packets_recv": 452862,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 33,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 16:05:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:05:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.33,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194423.33,
+      "disk_write_mb": 177935.53,
+      "network_sent_mb": 68.7,
+      "network_recv_mb": 326.16,
+      "network_packets_sent": 216964,
+      "network_packets_recv": 453867,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 16:05:37",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:05:37",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.39,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194423.69,
+      "disk_write_mb": 177986.29,
+      "network_sent_mb": 68.89,
+      "network_recv_mb": 326.49,
+      "network_packets_sent": 217315,
+      "network_packets_recv": 454665,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.07,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 16:06:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:06:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.36,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194423.85,
+      "disk_write_mb": 178100.7,
+      "network_sent_mb": 68.99,
+      "network_recv_mb": 326.57,
+      "network_packets_sent": 217497,
+      "network_packets_recv": 455276,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 16:06:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:06:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.29,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194424.83,
+      "disk_write_mb": 178175.85,
+      "network_sent_mb": 69.05,
+      "network_recv_mb": 326.66,
+      "network_packets_sent": 217650,
+      "network_packets_recv": 455759,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.09,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 16:07:23",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:07:23",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.57,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194426.99,
+      "disk_write_mb": 178233.69,
+      "network_sent_mb": 69.29,
+      "network_recv_mb": 326.87,
+      "network_packets_sent": 218064,
+      "network_packets_recv": 456776,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 16:07:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:07:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.53,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194429.83,
+      "disk_write_mb": 178260.45,
+      "network_sent_mb": 69.4,
+      "network_recv_mb": 326.97,
+      "network_packets_sent": 218381,
+      "network_packets_recv": 457546,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 16:08:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:08:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.47,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194431.5,
+      "disk_write_mb": 178270.52,
+      "network_sent_mb": 69.46,
+      "network_recv_mb": 327.09,
+      "network_packets_sent": 218577,
+      "network_packets_recv": 458157,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 16:09:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:09:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.58,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194431.62,
+      "disk_write_mb": 178284.01,
+      "network_sent_mb": 70.45,
+      "network_recv_mb": 327.65,
+      "network_packets_sent": 219171,
+      "network_packets_recv": 459429,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 16:09:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:09:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.57,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194436.36,
+      "disk_write_mb": 178295.63,
+      "network_sent_mb": 70.62,
+      "network_recv_mb": 327.81,
+      "network_packets_sent": 219515,
+      "network_packets_recv": 460209,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 16:10:21",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:10:21",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.63,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194437.27,
+      "disk_write_mb": 178318.28,
+      "network_sent_mb": 70.71,
+      "network_recv_mb": 327.95,
+      "network_packets_sent": 219757,
+      "network_packets_recv": 460826,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 16:10:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:10:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.81,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194438.38,
+      "disk_write_mb": 178358.49,
+      "network_sent_mb": 70.79,
+      "network_recv_mb": 328.08,
+      "network_packets_sent": 219951,
+      "network_packets_recv": 461365,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 16:11:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:11:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.8,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194438.72,
+      "disk_write_mb": 178374.04,
+      "network_sent_mb": 71.12,
+      "network_recv_mb": 328.36,
+      "network_packets_sent": 220544,
+      "network_packets_recv": 462562,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 16:12:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:12:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 1.2,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194450.05,
+      "disk_write_mb": 178384.85,
+      "network_sent_mb": 71.28,
+      "network_recv_mb": 328.51,
+      "network_packets_sent": 220896,
+      "network_packets_recv": 463419,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 16:12:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:12:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.82,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194450.29,
+      "disk_write_mb": 178405.69,
+      "network_sent_mb": 71.42,
+      "network_recv_mb": 328.73,
+      "network_packets_sent": 221457,
+      "network_packets_recv": 464698,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 16:13:21",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:13:21",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.11,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194450.38,
+      "disk_write_mb": 178414.12,
+      "network_sent_mb": 71.48,
+      "network_recv_mb": 328.86,
+      "network_packets_sent": 221912,
+      "network_packets_recv": 465680,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 16:13:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:13:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.13,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194453.46,
+      "disk_write_mb": 178424.25,
+      "network_sent_mb": 71.62,
+      "network_recv_mb": 329.01,
+      "network_packets_sent": 222169,
+      "network_packets_recv": 466361,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 16:14:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:14:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.64,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194461.0,
+      "disk_write_mb": 178439.21,
+      "network_sent_mb": 71.77,
+      "network_recv_mb": 329.17,
+      "network_packets_sent": 222478,
+      "network_packets_recv": 467120,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 16:15:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:15:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.75,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194469.53,
+      "disk_write_mb": 178475.39,
+      "network_sent_mb": 71.99,
+      "network_recv_mb": 333.71,
+      "network_packets_sent": 224273,
+      "network_packets_recv": 471476,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 16:15:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:15:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.67,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194470.15,
+      "disk_write_mb": 178529.27,
+      "network_sent_mb": 72.15,
+      "network_recv_mb": 333.85,
+      "network_packets_sent": 224625,
+      "network_packets_recv": 472152,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 16:16:21",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:16:21",
+      "is_sysmon_available": false,
+      "cpu_usage": 39.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.68,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194470.5,
+      "disk_write_mb": 178574.58,
+      "network_sent_mb": 72.2,
+      "network_recv_mb": 333.97,
+      "network_packets_sent": 224832,
+      "network_packets_recv": 472510,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-17 16:16:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:16:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.57,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194471.51,
+      "disk_write_mb": 178623.54,
+      "network_sent_mb": 72.24,
+      "network_recv_mb": 334.14,
+      "network_packets_sent": 224996,
+      "network_packets_recv": 472906,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.28,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 16:18:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:18:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.3,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194472.48,
+      "disk_write_mb": 178680.36,
+      "network_sent_mb": 72.5,
+      "network_recv_mb": 334.39,
+      "network_packets_sent": 225537,
+      "network_packets_recv": 474020,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.28,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 16:18:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:18:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194473.2,
+      "disk_write_mb": 178720.89,
+      "network_sent_mb": 72.6,
+      "network_recv_mb": 334.54,
+      "network_packets_sent": 225870,
+      "network_packets_recv": 474606,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 16:19:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:19:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.6,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194475.33,
+      "disk_write_mb": 178767.58,
+      "network_sent_mb": 72.64,
+      "network_recv_mb": 334.61,
+      "network_packets_sent": 225971,
+      "network_packets_recv": 474943,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 16:20:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:20:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.51,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194475.48,
+      "disk_write_mb": 178777.16,
+      "network_sent_mb": 72.69,
+      "network_recv_mb": 334.7,
+      "network_packets_sent": 226150,
+      "network_packets_recv": 475438,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 36
+  },
+  {
+    "timestamp": "2025-12-17 16:20:38",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:20:38",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.42,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194475.86,
+      "disk_write_mb": 178800.15,
+      "network_sent_mb": 72.73,
+      "network_recv_mb": 334.76,
+      "network_packets_sent": 226303,
+      "network_packets_recv": 475807,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.28,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 16:21:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:21:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.5,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194475.97,
+      "disk_write_mb": 178808.79,
+      "network_sent_mb": 72.81,
+      "network_recv_mb": 334.87,
+      "network_packets_sent": 226525,
+      "network_packets_recv": 476278,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.28,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 16:21:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:21:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.54,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194476.23,
+      "disk_write_mb": 178822.25,
+      "network_sent_mb": 72.93,
+      "network_recv_mb": 334.95,
+      "network_packets_sent": 226740,
+      "network_packets_recv": 476789,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.28,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 16:22:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:22:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.59,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194476.64,
+      "disk_write_mb": 178831.55,
+      "network_sent_mb": 73.05,
+      "network_recv_mb": 335.1,
+      "network_packets_sent": 227015,
+      "network_packets_recv": 477489,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.28,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 16:23:00",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:23:00",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.41,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194476.8,
+      "disk_write_mb": 178842.56,
+      "network_sent_mb": 73.16,
+      "network_recv_mb": 335.18,
+      "network_packets_sent": 227296,
+      "network_packets_recv": 478119,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.28,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 16:23:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:23:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.4,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.66,
+      "disk_read_mb": 194476.95,
+      "disk_write_mb": 178850.21,
+      "network_sent_mb": 73.22,
+      "network_recv_mb": 335.24,
+      "network_packets_sent": 227485,
+      "network_packets_recv": 478552,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.66,
+          "free_gb": 222.28,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 16:24:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:24:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.24,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194489.5,
+      "disk_write_mb": 178901.86,
+      "network_sent_mb": 75.13,
+      "network_recv_mb": 359.24,
+      "network_packets_sent": 242332,
+      "network_packets_recv": 500373,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 16:24:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:24:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.3,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.68,
+      "disk_read_mb": 194499.1,
+      "disk_write_mb": 178983.41,
+      "network_sent_mb": 77.62,
+      "network_recv_mb": 398.64,
+      "network_packets_sent": 262533,
+      "network_packets_recv": 534071,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.68,
+          "free_gb": 222.26,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-17 16:25:26",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:25:26",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.88,
+      "swap_usage": 1.3,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.69,
+      "disk_read_mb": 194503.36,
+      "disk_write_mb": 179038.76,
+      "network_sent_mb": 78.42,
+      "network_recv_mb": 414.7,
+      "network_packets_sent": 269455,
+      "network_packets_recv": 548001,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.69,
+          "free_gb": 222.25,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-17 16:26:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:26:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.1,
+      "swap_usage": 1.4,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.69,
+      "disk_read_mb": 194504.77,
+      "disk_write_mb": 179061.93,
+      "network_sent_mb": 78.86,
+      "network_recv_mb": 416.98,
+      "network_packets_sent": 270695,
+      "network_packets_recv": 550800,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.69,
+          "free_gb": 222.25,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 16:26:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:26:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.36,
+      "swap_usage": 1.4,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.69,
+      "disk_read_mb": 194536.13,
+      "disk_write_mb": 179095.36,
+      "network_sent_mb": 79.64,
+      "network_recv_mb": 426.52,
+      "network_packets_sent": 274847,
+      "network_packets_recv": 559624,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.69,
+          "free_gb": 222.24,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 16:27:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:27:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.28,
+      "swap_usage": 1.4,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194538.83,
+      "disk_write_mb": 179163.32,
+      "network_sent_mb": 79.76,
+      "network_recv_mb": 426.72,
+      "network_packets_sent": 275210,
+      "network_packets_recv": 560336,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 16:27:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:27:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.14,
+      "swap_usage": 1.4,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194539.28,
+      "disk_write_mb": 179205.8,
+      "network_sent_mb": 79.83,
+      "network_recv_mb": 426.99,
+      "network_packets_sent": 275482,
+      "network_packets_recv": 560899,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-17 16:28:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:28:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.21,
+      "swap_usage": 1.4,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194539.89,
+      "disk_write_mb": 179215.68,
+      "network_sent_mb": 79.93,
+      "network_recv_mb": 427.48,
+      "network_packets_sent": 275838,
+      "network_packets_recv": 561609,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 16:29:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:29:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.64,
+      "swap_usage": 1.4,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194540.21,
+      "disk_write_mb": 179224.05,
+      "network_sent_mb": 80.03,
+      "network_recv_mb": 427.56,
+      "network_packets_sent": 276081,
+      "network_packets_recv": 562167,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 16:29:44",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.232",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 16:29:44",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.8,
+      "swap_usage": 1.4,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.67,
+      "disk_read_mb": 194547.72,
+      "disk_write_mb": 179237.14,
+      "network_sent_mb": 80.21,
+      "network_recv_mb": 427.66,
+      "network_packets_sent": 276449,
+      "network_packets_recv": 562834,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 9.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.67,
+          "free_gb": 222.27,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.232",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251217_20.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251217_20.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251217_20.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,9677 @@
+[
+  {
+    "timestamp": "2025-12-17 20:06:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:06:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.95,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195254.34,
+      "disk_write_mb": 181571.32,
+      "network_sent_mb": 8.95,
+      "network_recv_mb": 19.28,
+      "network_packets_sent": 25098,
+      "network_packets_recv": 38744,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:07:35",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:07:35",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.96,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195254.48,
+      "disk_write_mb": 181613.2,
+      "network_sent_mb": 8.98,
+      "network_recv_mb": 19.31,
+      "network_packets_sent": 25204,
+      "network_packets_recv": 38835,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 20:08:10",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:08:10",
+      "is_sysmon_available": false,
+      "cpu_usage": 32.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.97,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195255.52,
+      "disk_write_mb": 181643.72,
+      "network_sent_mb": 9.04,
+      "network_recv_mb": 19.42,
+      "network_packets_sent": 25380,
+      "network_packets_recv": 39076,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 20:08:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:08:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.82,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.0,
+      "disk_write_mb": 181671.84,
+      "network_sent_mb": 9.07,
+      "network_recv_mb": 19.45,
+      "network_packets_sent": 25487,
+      "network_packets_recv": 39192,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 20:09:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:09:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.64,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.07,
+      "disk_write_mb": 181684.39,
+      "network_sent_mb": 9.13,
+      "network_recv_mb": 19.57,
+      "network_packets_sent": 25694,
+      "network_packets_recv": 39456,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-17 20:10:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:10:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.71,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.46,
+      "disk_write_mb": 181693.86,
+      "network_sent_mb": 9.27,
+      "network_recv_mb": 19.66,
+      "network_packets_sent": 25991,
+      "network_packets_recv": 39944,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 20:10:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:10:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.73,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.48,
+      "disk_write_mb": 181702.01,
+      "network_sent_mb": 9.36,
+      "network_recv_mb": 19.86,
+      "network_packets_sent": 26879,
+      "network_packets_recv": 41540,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 20:11:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:11:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.8,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.56,
+      "disk_write_mb": 181710.3,
+      "network_sent_mb": 9.42,
+      "network_recv_mb": 20.04,
+      "network_packets_sent": 27686,
+      "network_packets_recv": 43078,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 20:11:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:11:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.79,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.64,
+      "disk_write_mb": 181718.95,
+      "network_sent_mb": 9.54,
+      "network_recv_mb": 20.24,
+      "network_packets_sent": 28545,
+      "network_packets_recv": 44650,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 20:12:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:12:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.8,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.64,
+      "disk_write_mb": 181728.77,
+      "network_sent_mb": 9.65,
+      "network_recv_mb": 20.41,
+      "network_packets_sent": 29381,
+      "network_packets_recv": 46170,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 20:13:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:13:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.77,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.71,
+      "disk_write_mb": 181736.59,
+      "network_sent_mb": 9.73,
+      "network_recv_mb": 20.59,
+      "network_packets_sent": 30167,
+      "network_packets_recv": 47670,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 20:13:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:13:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.67,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.71,
+      "disk_write_mb": 181745.86,
+      "network_sent_mb": 9.82,
+      "network_recv_mb": 20.77,
+      "network_packets_sent": 30789,
+      "network_packets_recv": 48759,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:14:26",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:14:26",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.77,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.77,
+      "disk_write_mb": 181754.81,
+      "network_sent_mb": 9.88,
+      "network_recv_mb": 20.87,
+      "network_packets_sent": 31034,
+      "network_packets_recv": 49137,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 20:15:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:15:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.75,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.84,
+      "disk_write_mb": 181764.22,
+      "network_sent_mb": 9.98,
+      "network_recv_mb": 21.07,
+      "network_packets_sent": 31848,
+      "network_packets_recv": 50690,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:15:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:15:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.75,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.84,
+      "disk_write_mb": 181771.61,
+      "network_sent_mb": 10.09,
+      "network_recv_mb": 21.25,
+      "network_packets_sent": 32688,
+      "network_packets_recv": 52200,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 20:16:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:16:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 59.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.66,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195259.91,
+      "disk_write_mb": 181779.75,
+      "network_sent_mb": 10.21,
+      "network_recv_mb": 21.42,
+      "network_packets_sent": 33420,
+      "network_packets_recv": 53480,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:16:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:16:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.79,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195260.42,
+      "disk_write_mb": 181873.84,
+      "network_sent_mb": 10.3,
+      "network_recv_mb": 21.57,
+      "network_packets_sent": 33694,
+      "network_packets_recv": 53790,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 20:17:37",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:17:37",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.65,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195260.42,
+      "disk_write_mb": 181914.0,
+      "network_sent_mb": 10.32,
+      "network_recv_mb": 21.6,
+      "network_packets_sent": 33797,
+      "network_packets_recv": 53896,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:18:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:18:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.65,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195260.46,
+      "disk_write_mb": 181916.01,
+      "network_sent_mb": 10.34,
+      "network_recv_mb": 21.62,
+      "network_packets_sent": 33869,
+      "network_packets_recv": 53988,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 20:18:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:18:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.62,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195260.46,
+      "disk_write_mb": 181919.26,
+      "network_sent_mb": 10.37,
+      "network_recv_mb": 21.66,
+      "network_packets_sent": 33973,
+      "network_packets_recv": 54096,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.44,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 20:19:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:19:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.89,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195262.38,
+      "disk_write_mb": 181932.28,
+      "network_sent_mb": 10.53,
+      "network_recv_mb": 21.82,
+      "network_packets_sent": 34307,
+      "network_packets_recv": 54497,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:19:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:19:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.62,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195262.68,
+      "disk_write_mb": 181948.15,
+      "network_sent_mb": 10.66,
+      "network_recv_mb": 22.06,
+      "network_packets_sent": 35100,
+      "network_packets_recv": 55799,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 20:20:38",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:20:38",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.59,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195262.74,
+      "disk_write_mb": 181975.26,
+      "network_sent_mb": 10.8,
+      "network_recv_mb": 22.22,
+      "network_packets_sent": 35555,
+      "network_packets_recv": 56418,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:21:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:21:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.57,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195263.18,
+      "disk_write_mb": 181993.99,
+      "network_sent_mb": 10.92,
+      "network_recv_mb": 22.4,
+      "network_packets_sent": 36294,
+      "network_packets_recv": 57660,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:21:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:21:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.53,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195263.33,
+      "disk_write_mb": 182004.43,
+      "network_sent_mb": 10.98,
+      "network_recv_mb": 22.45,
+      "network_packets_sent": 36423,
+      "network_packets_recv": 57801,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 20:22:31",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:22:31",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.67,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195264.92,
+      "disk_write_mb": 182066.59,
+      "network_sent_mb": 11.12,
+      "network_recv_mb": 22.67,
+      "network_packets_sent": 36863,
+      "network_packets_recv": 58319,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 20:23:06",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:23:06",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.79,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195265.01,
+      "disk_write_mb": 182095.9,
+      "network_sent_mb": 11.18,
+      "network_recv_mb": 22.74,
+      "network_packets_sent": 37104,
+      "network_packets_recv": 58556,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 20:23:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:23:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.79,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195265.08,
+      "disk_write_mb": 182105.23,
+      "network_sent_mb": 11.25,
+      "network_recv_mb": 22.78,
+      "network_packets_sent": 37283,
+      "network_packets_recv": 58748,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 20:24:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:24:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.14,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195265.34,
+      "disk_write_mb": 182121.19,
+      "network_sent_mb": 11.54,
+      "network_recv_mb": 23.04,
+      "network_packets_sent": 37696,
+      "network_packets_recv": 59387,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 20:24:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:24:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 77.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.13,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195265.56,
+      "disk_write_mb": 182129.77,
+      "network_sent_mb": 11.66,
+      "network_recv_mb": 23.13,
+      "network_packets_sent": 38030,
+      "network_packets_recv": 59801,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 20:25:33",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:25:33",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 77.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.08,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195265.57,
+      "disk_write_mb": 182138.3,
+      "network_sent_mb": 11.7,
+      "network_recv_mb": 23.19,
+      "network_packets_sent": 38144,
+      "network_packets_recv": 59981,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 20:26:10",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:26:10",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.98,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195265.63,
+      "disk_write_mb": 182145.9,
+      "network_sent_mb": 11.73,
+      "network_recv_mb": 23.22,
+      "network_packets_sent": 38211,
+      "network_packets_recv": 60062,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 20:26:48",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:26:48",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.97,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195265.7,
+      "disk_write_mb": 182153.38,
+      "network_sent_mb": 11.79,
+      "network_recv_mb": 23.27,
+      "network_packets_sent": 38406,
+      "network_packets_recv": 60274,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 20:27:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:27:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.19,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195278.65,
+      "disk_write_mb": 182163.13,
+      "network_sent_mb": 11.89,
+      "network_recv_mb": 23.48,
+      "network_packets_sent": 38775,
+      "network_packets_recv": 60747,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:28:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:28:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.68,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 195336.5,
+      "disk_write_mb": 182248.47,
+      "network_sent_mb": 13.33,
+      "network_recv_mb": 32.44,
+      "network_packets_sent": 42688,
+      "network_packets_recv": 69438,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:28:42",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:28:42",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.54,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 195337.58,
+      "disk_write_mb": 182288.59,
+      "network_sent_mb": 13.59,
+      "network_recv_mb": 33.13,
+      "network_packets_sent": 43237,
+      "network_packets_recv": 70380,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:29:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:29:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.45,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.52,
+      "disk_read_mb": 195338.32,
+      "disk_write_mb": 182304.58,
+      "network_sent_mb": 13.66,
+      "network_recv_mb": 33.45,
+      "network_packets_sent": 43597,
+      "network_packets_recv": 70940,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.52,
+          "free_gb": 222.42,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:29:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:29:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.43,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 195338.57,
+      "disk_write_mb": 182319.04,
+      "network_sent_mb": 13.69,
+      "network_recv_mb": 33.49,
+      "network_packets_sent": 43727,
+      "network_packets_recv": 71132,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 20:30:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:30:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.38,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195339.49,
+      "disk_write_mb": 182328.24,
+      "network_sent_mb": 13.74,
+      "network_recv_mb": 33.58,
+      "network_packets_sent": 43888,
+      "network_packets_recv": 71368,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 20:31:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:31:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 78.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.33,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195339.6,
+      "disk_write_mb": 182337.68,
+      "network_sent_mb": 13.76,
+      "network_recv_mb": 33.6,
+      "network_packets_sent": 43978,
+      "network_packets_recv": 71490,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 20:31:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:31:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.37,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195339.67,
+      "disk_write_mb": 182345.88,
+      "network_sent_mb": 13.84,
+      "network_recv_mb": 33.72,
+      "network_packets_sent": 44230,
+      "network_packets_recv": 71808,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 20:32:29",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:32:29",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.55,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195342.3,
+      "disk_write_mb": 182362.21,
+      "network_sent_mb": 14.33,
+      "network_recv_mb": 37.39,
+      "network_packets_sent": 45903,
+      "network_packets_recv": 75273,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:33:06",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:33:06",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.6,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195344.27,
+      "disk_write_mb": 182380.36,
+      "network_sent_mb": 14.71,
+      "network_recv_mb": 42.73,
+      "network_packets_sent": 47198,
+      "network_packets_recv": 80093,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:33:44",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:33:44",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.64,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 195688.44,
+      "disk_write_mb": 182400.5,
+      "network_sent_mb": 15.16,
+      "network_recv_mb": 43.19,
+      "network_packets_sent": 47984,
+      "network_packets_recv": 81057,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:34:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:34:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.58,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 195688.8,
+      "disk_write_mb": 182423.01,
+      "network_sent_mb": 15.3,
+      "network_recv_mb": 43.32,
+      "network_packets_sent": 48254,
+      "network_packets_recv": 81398,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:35:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:35:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.84,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195695.61,
+      "disk_write_mb": 182439.35,
+      "network_sent_mb": 15.5,
+      "network_recv_mb": 43.86,
+      "network_packets_sent": 49064,
+      "network_packets_recv": 82340,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.56,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:35:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:35:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.75,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195705.22,
+      "disk_write_mb": 182450.67,
+      "network_sent_mb": 15.69,
+      "network_recv_mb": 44.08,
+      "network_packets_sent": 49563,
+      "network_packets_recv": 82876,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.57,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:36:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:36:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.76,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195705.28,
+      "disk_write_mb": 182458.61,
+      "network_sent_mb": 15.73,
+      "network_recv_mb": 44.18,
+      "network_packets_sent": 49771,
+      "network_packets_recv": 83132,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.58,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 20:36:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:36:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.72,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195706.99,
+      "disk_write_mb": 182468.86,
+      "network_sent_mb": 15.8,
+      "network_recv_mb": 44.48,
+      "network_packets_sent": 50040,
+      "network_packets_recv": 83451,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.6,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 20:37:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:37:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.76,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195707.31,
+      "disk_write_mb": 182478.54,
+      "network_sent_mb": 15.85,
+      "network_recv_mb": 44.57,
+      "network_packets_sent": 50257,
+      "network_packets_recv": 83686,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.61,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-17 20:38:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:38:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.71,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195707.38,
+      "disk_write_mb": 182486.04,
+      "network_sent_mb": 15.87,
+      "network_recv_mb": 44.6,
+      "network_packets_sent": 50342,
+      "network_packets_recv": 83816,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.62,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 20:38:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:38:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.63,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195709.51,
+      "disk_write_mb": 182494.65,
+      "network_sent_mb": 15.96,
+      "network_recv_mb": 44.77,
+      "network_packets_sent": 50646,
+      "network_packets_recv": 84172,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.63,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 20:39:29",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:39:29",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.1,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195713.78,
+      "disk_write_mb": 182524.02,
+      "network_sent_mb": 16.31,
+      "network_recv_mb": 53.25,
+      "network_packets_sent": 52421,
+      "network_packets_recv": 92015,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.64,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 20:40:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:40:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.22,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195722.9,
+      "disk_write_mb": 182557.03,
+      "network_sent_mb": 16.5,
+      "network_recv_mb": 55.97,
+      "network_packets_sent": 53125,
+      "network_packets_recv": 94490,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.65,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:40:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:40:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.11,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195727.1,
+      "disk_write_mb": 182573.79,
+      "network_sent_mb": 16.7,
+      "network_recv_mb": 57.66,
+      "network_packets_sent": 54229,
+      "network_packets_recv": 95893,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.66,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 20:41:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:41:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.06,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195727.36,
+      "disk_write_mb": 182582.85,
+      "network_sent_mb": 16.74,
+      "network_recv_mb": 57.72,
+      "network_packets_sent": 54382,
+      "network_packets_recv": 96090,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.67,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 20:42:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:42:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.95,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195727.45,
+      "disk_write_mb": 182593.17,
+      "network_sent_mb": 16.82,
+      "network_recv_mb": 57.8,
+      "network_packets_sent": 54620,
+      "network_packets_recv": 96326,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.68,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:42:39",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:42:39",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.96,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195727.52,
+      "disk_write_mb": 182600.05,
+      "network_sent_mb": 16.87,
+      "network_recv_mb": 57.84,
+      "network_packets_sent": 54782,
+      "network_packets_recv": 96499,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.69,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:43:16",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:43:16",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.95,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195727.58,
+      "disk_write_mb": 182607.34,
+      "network_sent_mb": 16.9,
+      "network_recv_mb": 57.88,
+      "network_packets_sent": 54848,
+      "network_packets_recv": 96622,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.7,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:43:53",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:43:53",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.91,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195729.34,
+      "disk_write_mb": 182614.44,
+      "network_sent_mb": 16.94,
+      "network_recv_mb": 57.93,
+      "network_packets_sent": 55007,
+      "network_packets_recv": 96798,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.71,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 20:44:31",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:44:31",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.11,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195729.5,
+      "disk_write_mb": 182626.5,
+      "network_sent_mb": 17.09,
+      "network_recv_mb": 59.83,
+      "network_packets_sent": 56092,
+      "network_packets_recv": 98153,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.72,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 20:45:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:45:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.07,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195730.57,
+      "disk_write_mb": 182648.73,
+      "network_sent_mb": 17.2,
+      "network_recv_mb": 60.23,
+      "network_packets_sent": 56475,
+      "network_packets_recv": 98610,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.73,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-17 20:45:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:45:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.06,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195730.68,
+      "disk_write_mb": 182657.63,
+      "network_sent_mb": 17.25,
+      "network_recv_mb": 60.55,
+      "network_packets_sent": 56740,
+      "network_packets_recv": 98979,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.74,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 20:46:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:46:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.47,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195730.75,
+      "disk_write_mb": 182664.65,
+      "network_sent_mb": 17.3,
+      "network_recv_mb": 60.65,
+      "network_packets_sent": 56920,
+      "network_packets_recv": 99221,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 20:47:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:47:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.53,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195730.75,
+      "disk_write_mb": 182671.48,
+      "network_sent_mb": 17.34,
+      "network_recv_mb": 60.68,
+      "network_packets_sent": 57042,
+      "network_packets_recv": 99342,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.76,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:47:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:47:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.57,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 195730.89,
+      "disk_write_mb": 182679.5,
+      "network_sent_mb": 17.36,
+      "network_recv_mb": 60.71,
+      "network_packets_sent": 57121,
+      "network_packets_recv": 99447,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 20:48:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:48:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.56,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195731.14,
+      "disk_write_mb": 182686.03,
+      "network_sent_mb": 17.38,
+      "network_recv_mb": 60.74,
+      "network_packets_sent": 57188,
+      "network_packets_recv": 99545,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 20:48:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:48:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.6,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195731.36,
+      "disk_write_mb": 182696.92,
+      "network_sent_mb": 17.5,
+      "network_recv_mb": 61.57,
+      "network_packets_sent": 57798,
+      "network_packets_recv": 100287,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 20:49:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:49:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.49,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195731.42,
+      "disk_write_mb": 182705.11,
+      "network_sent_mb": 17.53,
+      "network_recv_mb": 61.62,
+      "network_packets_sent": 57928,
+      "network_packets_recv": 100465,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:50:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:50:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.53,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195731.5,
+      "disk_write_mb": 182732.23,
+      "network_sent_mb": 17.6,
+      "network_recv_mb": 61.76,
+      "network_packets_sent": 58174,
+      "network_packets_recv": 100767,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 20:50:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:50:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.44,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195731.57,
+      "disk_write_mb": 182739.52,
+      "network_sent_mb": 17.65,
+      "network_recv_mb": 61.82,
+      "network_packets_sent": 58321,
+      "network_packets_recv": 100961,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 20:51:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:51:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.41,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195732.4,
+      "disk_write_mb": 182746.63,
+      "network_sent_mb": 17.7,
+      "network_recv_mb": 61.88,
+      "network_packets_sent": 58503,
+      "network_packets_recv": 101169,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-17 20:52:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:52:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.54,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195733.18,
+      "disk_write_mb": 182756.85,
+      "network_sent_mb": 17.76,
+      "network_recv_mb": 61.98,
+      "network_packets_sent": 58738,
+      "network_packets_recv": 101411,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 20:52:44",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:52:44",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.55,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195733.39,
+      "disk_write_mb": 182771.32,
+      "network_sent_mb": 17.8,
+      "network_recv_mb": 62.04,
+      "network_packets_sent": 58905,
+      "network_packets_recv": 101603,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-17 20:53:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 20:53:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.61,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.49,
+      "disk_read_mb": 195733.96,
+      "disk_write_mb": 182780.95,
+      "network_sent_mb": 17.86,
+      "network_recv_mb": 62.13,
+      "network_packets_sent": 59150,
+      "network_packets_recv": 101875,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.49,
+          "free_gb": 222.45,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251217_21.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251217_21.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251217_21.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,3227 @@
+[
+  {
+    "timestamp": "2025-12-17 21:20:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:20:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 38.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.47,
+      "disk_read_mb": 195845.74,
+      "disk_write_mb": 182849.58,
+      "network_sent_mb": 18.83,
+      "network_recv_mb": 65.53,
+      "network_packets_sent": 62444,
+      "network_packets_recv": 105463,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.47,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-17 21:21:33",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:21:33",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.21,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195934.96,
+      "disk_write_mb": 182970.24,
+      "network_sent_mb": 19.5,
+      "network_recv_mb": 73.79,
+      "network_packets_sent": 64867,
+      "network_packets_recv": 111920,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 21:22:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:22:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.94,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195951.7,
+      "disk_write_mb": 183009.82,
+      "network_sent_mb": 19.59,
+      "network_recv_mb": 74.73,
+      "network_packets_sent": 65460,
+      "network_packets_recv": 112609,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 21:22:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:22:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.92,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195952.56,
+      "disk_write_mb": 183021.23,
+      "network_sent_mb": 19.67,
+      "network_recv_mb": 75.03,
+      "network_packets_sent": 65847,
+      "network_packets_recv": 113141,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-17 21:23:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:23:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.94,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195952.82,
+      "disk_write_mb": 183031.79,
+      "network_sent_mb": 19.79,
+      "network_recv_mb": 75.31,
+      "network_packets_sent": 66171,
+      "network_packets_recv": 113601,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 21:24:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:24:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.85,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195952.83,
+      "disk_write_mb": 183041.33,
+      "network_sent_mb": 19.85,
+      "network_recv_mb": 75.38,
+      "network_packets_sent": 66370,
+      "network_packets_recv": 113815,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-17 21:24:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:24:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.97,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195953.51,
+      "disk_write_mb": 183052.96,
+      "network_sent_mb": 19.9,
+      "network_recv_mb": 75.49,
+      "network_packets_sent": 66607,
+      "network_packets_recv": 114095,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-17 21:25:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:25:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.13,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195953.74,
+      "disk_write_mb": 183066.54,
+      "network_sent_mb": 19.95,
+      "network_recv_mb": 75.6,
+      "network_packets_sent": 66794,
+      "network_packets_recv": 114372,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 21:26:07",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:26:07",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.74,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195953.91,
+      "disk_write_mb": 183076.43,
+      "network_sent_mb": 20.0,
+      "network_recv_mb": 75.71,
+      "network_packets_sent": 67010,
+      "network_packets_recv": 114634,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 21:26:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:26:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.49,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195954.12,
+      "disk_write_mb": 183091.33,
+      "network_sent_mb": 20.07,
+      "network_recv_mb": 75.79,
+      "network_packets_sent": 67268,
+      "network_packets_recv": 114923,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-17 21:27:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:27:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.74,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195962.08,
+      "disk_write_mb": 183110.91,
+      "network_sent_mb": 20.65,
+      "network_recv_mb": 77.85,
+      "network_packets_sent": 68749,
+      "network_packets_recv": 117347,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-17 21:28:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:28:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.81,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195962.97,
+      "disk_write_mb": 183125.98,
+      "network_sent_mb": 21.24,
+      "network_recv_mb": 78.64,
+      "network_packets_sent": 69895,
+      "network_packets_recv": 118714,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-17 21:28:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:28:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195963.17,
+      "disk_write_mb": 183136.53,
+      "network_sent_mb": 21.31,
+      "network_recv_mb": 78.77,
+      "network_packets_sent": 70163,
+      "network_packets_recv": 119041,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.47,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-17 21:29:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:29:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.7,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195963.22,
+      "disk_write_mb": 183146.24,
+      "network_sent_mb": 21.36,
+      "network_recv_mb": 78.86,
+      "network_packets_sent": 70369,
+      "network_packets_recv": 119313,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 21:29:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:29:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195963.53,
+      "disk_write_mb": 183156.15,
+      "network_sent_mb": 21.4,
+      "network_recv_mb": 78.97,
+      "network_packets_sent": 70578,
+      "network_packets_recv": 119616,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-17 21:30:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:30:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.67,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195963.55,
+      "disk_write_mb": 183165.34,
+      "network_sent_mb": 21.44,
+      "network_recv_mb": 79.05,
+      "network_packets_sent": 70737,
+      "network_packets_recv": 119836,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-17 21:31:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:31:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.42,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195963.98,
+      "disk_write_mb": 183177.89,
+      "network_sent_mb": 21.51,
+      "network_recv_mb": 79.18,
+      "network_packets_sent": 71059,
+      "network_packets_recv": 120197,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 21:31:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:31:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.42,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195964.11,
+      "disk_write_mb": 183187.33,
+      "network_sent_mb": 21.55,
+      "network_recv_mb": 79.25,
+      "network_packets_sent": 71242,
+      "network_packets_recv": 120446,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 21:32:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:32:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.48,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195965.6,
+      "disk_write_mb": 183201.37,
+      "network_sent_mb": 21.62,
+      "network_recv_mb": 79.34,
+      "network_packets_sent": 71466,
+      "network_packets_recv": 120693,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-17 21:33:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:33:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.51,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195966.8,
+      "disk_write_mb": 183222.28,
+      "network_sent_mb": 21.75,
+      "network_recv_mb": 79.78,
+      "network_packets_sent": 71974,
+      "network_packets_recv": 121355,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 41
+  },
+  {
+    "timestamp": "2025-12-17 21:33:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:33:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 31.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.5,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195971.9,
+      "disk_write_mb": 183238.32,
+      "network_sent_mb": 21.91,
+      "network_recv_mb": 80.36,
+      "network_packets_sent": 72526,
+      "network_packets_recv": 122121,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 21:34:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:34:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.86,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195972.11,
+      "disk_write_mb": 183249.5,
+      "network_sent_mb": 21.97,
+      "network_recv_mb": 80.42,
+      "network_packets_sent": 72711,
+      "network_packets_recv": 122331,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-17 21:35:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:35:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.86,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195972.27,
+      "disk_write_mb": 183264.33,
+      "network_sent_mb": 22.0,
+      "network_recv_mb": 80.48,
+      "network_packets_sent": 72845,
+      "network_packets_recv": 122513,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.56,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-17 21:35:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:35:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.83,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195972.37,
+      "disk_write_mb": 183272.2,
+      "network_sent_mb": 22.08,
+      "network_recv_mb": 80.63,
+      "network_packets_sent": 73138,
+      "network_packets_recv": 122848,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.57,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-17 21:36:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-17 21:36:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.76,
+      "swap_usage": 1.6,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.46,
+      "disk_read_mb": 195972.49,
+      "disk_write_mb": 183279.15,
+      "network_sent_mb": 22.11,
+      "network_recv_mb": 80.67,
+      "network_packets_sent": 73259,
+      "network_packets_recv": 123000,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 14.58,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.46,
+          "free_gb": 222.48,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.0.29",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251218_12.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251218_12.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251218_12.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,574 @@
+[
+  {
+    "timestamp": "2025-12-18 03:24:06",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "127.0.0.1",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 03:24:06",
+      "is_sysmon_available": false,
+      "cpu_usage": 98.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.35,
+      "swap_usage": 1.6,
+      "disk_usage": 55.2,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 262.85,
+      "disk_read_mb": 196011.46,
+      "disk_write_mb": 183351.21,
+      "network_sent_mb": 22.11,
+      "network_recv_mb": 80.67,
+      "network_packets_sent": 73259,
+      "network_packets_recv": 123000,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 5.58,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 262.85,
+          "free_gb": 213.09,
+          "percent_used": 55.2
+        }
+      ],
+      "network_interfaces": {
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.226.147",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-18 12:36:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 12:36:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.34,
+      "swap_usage": 1.5,
+      "disk_usage": 53.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.48,
+      "disk_read_mb": 196793.26,
+      "disk_write_mb": 183540.74,
+      "network_sent_mb": 22.73,
+      "network_recv_mb": 82.86,
+      "network_packets_sent": 75600,
+      "network_packets_recv": 125377,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 5.59,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.48,
+          "free_gb": 222.46,
+          "percent_used": 53.3
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 12:37:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 12:37:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.4,
+      "swap_usage": 1.5,
+      "disk_usage": 53.2,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.42,
+      "disk_read_mb": 196950.38,
+      "disk_write_mb": 183633.22,
+      "network_sent_mb": 23.26,
+      "network_recv_mb": 84.22,
+      "network_packets_sent": 76416,
+      "network_packets_recv": 126434,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 5.6,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.42,
+          "free_gb": 222.52,
+          "percent_used": 53.2
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 12:37:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 12:37:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.48,
+      "swap_usage": 1.5,
+      "disk_usage": 53.2,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.42,
+      "disk_read_mb": 197148.29,
+      "disk_write_mb": 183673.93,
+      "network_sent_mb": 23.32,
+      "network_recv_mb": 84.44,
+      "network_packets_sent": 76606,
+      "network_packets_recv": 126675,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 5.61,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.42,
+          "free_gb": 222.52,
+          "percent_used": 53.2
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 12:38:38",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 12:38:38",
+      "is_sysmon_available": false,
+      "cpu_usage": 36.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.56,
+      "swap_usage": 1.6,
+      "disk_usage": 53.2,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.42,
+      "disk_read_mb": 197166.05,
+      "disk_write_mb": 183721.13,
+      "network_sent_mb": 23.53,
+      "network_recv_mb": 84.9,
+      "network_packets_sent": 77215,
+      "network_packets_recv": 127317,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 5.62,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.42,
+          "free_gb": 222.52,
+          "percent_used": 53.2
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251218_17.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251218_17.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251218_17.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,1550 @@
+[
+  {
+    "timestamp": "2025-12-18 17:52:01",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:52:01",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.27,
+      "swap_usage": 1.4,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203195.57,
+      "disk_write_mb": 187865.99,
+      "network_sent_mb": 7.84,
+      "network_recv_mb": 31.43,
+      "network_packets_sent": 25192,
+      "network_packets_recv": 47877,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 17:52:40",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:52:40",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.2,
+      "swap_usage": 1.4,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203197.78,
+      "disk_write_mb": 187928.42,
+      "network_sent_mb": 7.88,
+      "network_recv_mb": 31.49,
+      "network_packets_sent": 25301,
+      "network_packets_recv": 48238,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-18 17:53:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:53:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.2,
+      "swap_usage": 1.4,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203202.07,
+      "disk_write_mb": 187939.17,
+      "network_sent_mb": 7.9,
+      "network_recv_mb": 31.53,
+      "network_packets_sent": 25377,
+      "network_packets_recv": 48550,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 40
+  },
+  {
+    "timestamp": "2025-12-18 17:53:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:53:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.19,
+      "swap_usage": 1.4,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203203.21,
+      "disk_write_mb": 187950.06,
+      "network_sent_mb": 7.93,
+      "network_recv_mb": 31.57,
+      "network_packets_sent": 25466,
+      "network_packets_recv": 48851,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-18 17:54:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:54:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.19,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203208.68,
+      "disk_write_mb": 187967.29,
+      "network_sent_mb": 8.2,
+      "network_recv_mb": 31.94,
+      "network_packets_sent": 25907,
+      "network_packets_recv": 49432,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-18 17:55:10",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:55:10",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.11,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203212.1,
+      "disk_write_mb": 187980.88,
+      "network_sent_mb": 8.23,
+      "network_recv_mb": 31.98,
+      "network_packets_sent": 25984,
+      "network_packets_recv": 49759,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  },
+  {
+    "timestamp": "2025-12-18 17:55:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:55:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203213.73,
+      "disk_write_mb": 187990.83,
+      "network_sent_mb": 8.27,
+      "network_recv_mb": 32.03,
+      "network_packets_sent": 26069,
+      "network_packets_recv": 50058,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 38
+  },
+  {
+    "timestamp": "2025-12-18 17:56:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:56:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203213.73,
+      "disk_write_mb": 187993.06,
+      "network_sent_mb": 8.29,
+      "network_recv_mb": 32.07,
+      "network_packets_sent": 26130,
+      "network_packets_recv": 50291,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-18 17:56:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:56:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203213.73,
+      "disk_write_mb": 187995.99,
+      "network_sent_mb": 8.3,
+      "network_recv_mb": 32.09,
+      "network_packets_sent": 26209,
+      "network_packets_recv": 50503,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-18 17:57:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:57:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203213.79,
+      "disk_write_mb": 187998.77,
+      "network_sent_mb": 8.33,
+      "network_recv_mb": 32.13,
+      "network_packets_sent": 26285,
+      "network_packets_recv": 50747,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-18 17:58:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:58:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.01,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203213.79,
+      "disk_write_mb": 188000.89,
+      "network_sent_mb": 8.35,
+      "network_recv_mb": 32.16,
+      "network_packets_sent": 26343,
+      "network_packets_recv": 50950,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-18 17:58:39",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 17:58:39",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.0,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203214.38,
+      "disk_write_mb": 188003.1,
+      "network_sent_mb": 8.38,
+      "network_recv_mb": 32.2,
+      "network_packets_sent": 26448,
+      "network_packets_recv": 51150,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 10.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 39
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251218_18.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251218_18.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251218_18.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,11870 @@
+[
+  {
+    "timestamp": "2025-12-18 18:08:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:08:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.36,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 203263.91,
+      "disk_write_mb": 188060.59,
+      "network_sent_mb": 8.71,
+      "network_recv_mb": 32.78,
+      "network_packets_sent": 27452,
+      "network_packets_recv": 52286,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:09:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:09:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.3,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 203264.05,
+      "disk_write_mb": 188065.75,
+      "network_sent_mb": 8.73,
+      "network_recv_mb": 32.82,
+      "network_packets_sent": 27516,
+      "network_packets_recv": 52512,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:09:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:09:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 30.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.54,
+      "swap_usage": 1.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 203276.63,
+      "disk_write_mb": 188092.22,
+      "network_sent_mb": 9.04,
+      "network_recv_mb": 33.38,
+      "network_packets_sent": 28288,
+      "network_packets_recv": 53531,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.83,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:10:38",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:10:38",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.29,
+      "swap_usage": 5.7,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.14,
+      "disk_read_mb": 203341.83,
+      "disk_write_mb": 188820.27,
+      "network_sent_mb": 10.28,
+      "network_recv_mb": 37.24,
+      "network_packets_sent": 30858,
+      "network_packets_recv": 57918,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.14,
+          "free_gb": 221.8,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:11:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:11:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.04,
+      "swap_usage": 6.0,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.14,
+      "disk_read_mb": 203343.88,
+      "disk_write_mb": 188897.17,
+      "network_sent_mb": 10.53,
+      "network_recv_mb": 37.48,
+      "network_packets_sent": 31324,
+      "network_packets_recv": 58656,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.14,
+          "free_gb": 221.8,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 67,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:11:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:11:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.04,
+      "swap_usage": 6.0,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 203346.06,
+      "disk_write_mb": 188914.59,
+      "network_sent_mb": 10.59,
+      "network_recv_mb": 37.66,
+      "network_packets_sent": 31507,
+      "network_packets_recv": 59099,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 67,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:12:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:12:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.1,
+      "swap_usage": 6.0,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 203423.86,
+      "disk_write_mb": 188955.24,
+      "network_sent_mb": 10.68,
+      "network_recv_mb": 38.1,
+      "network_packets_sent": 32005,
+      "network_packets_recv": 59904,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:13:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:13:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 6.0,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 203461.18,
+      "disk_write_mb": 188969.54,
+      "network_sent_mb": 10.72,
+      "network_recv_mb": 38.18,
+      "network_packets_sent": 32206,
+      "network_packets_recv": 60272,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-18 18:13:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:13:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 5.9,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203484.59,
+      "disk_write_mb": 188980.39,
+      "network_sent_mb": 10.76,
+      "network_recv_mb": 38.22,
+      "network_packets_sent": 32290,
+      "network_packets_recv": 60557,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 42
+  },
+  {
+    "timestamp": "2025-12-18 18:14:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:14:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.21,
+      "swap_usage": 5.9,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 203710.88,
+      "disk_write_mb": 189007.17,
+      "network_sent_mb": 10.83,
+      "network_recv_mb": 38.69,
+      "network_packets_sent": 32593,
+      "network_packets_recv": 61270,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:14:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:14:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 85.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.38,
+      "swap_usage": 5.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 204311.88,
+      "disk_write_mb": 189021.91,
+      "network_sent_mb": 10.9,
+      "network_recv_mb": 38.79,
+      "network_packets_sent": 32777,
+      "network_packets_recv": 61729,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:15:35",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:15:35",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 85.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.42,
+      "swap_usage": 5.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 204642.89,
+      "disk_write_mb": 189034.92,
+      "network_sent_mb": 10.94,
+      "network_recv_mb": 38.9,
+      "network_packets_sent": 32934,
+      "network_packets_recv": 62222,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-18 18:16:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:16:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.5,
+      "swap_usage": 5.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 204977.42,
+      "disk_write_mb": 189046.07,
+      "network_sent_mb": 11.0,
+      "network_recv_mb": 39.05,
+      "network_packets_sent": 33113,
+      "network_packets_recv": 62728,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-18 18:16:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:16:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.35,
+      "swap_usage": 5.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 204978.17,
+      "disk_write_mb": 189057.63,
+      "network_sent_mb": 11.07,
+      "network_recv_mb": 39.19,
+      "network_packets_sent": 33301,
+      "network_packets_recv": 63230,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-18 18:17:33",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:17:33",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.33,
+      "swap_usage": 5.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205027.49,
+      "disk_write_mb": 189070.01,
+      "network_sent_mb": 11.16,
+      "network_recv_mb": 39.37,
+      "network_packets_sent": 33562,
+      "network_packets_recv": 63821,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-18 18:18:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:18:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.38,
+      "swap_usage": 5.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205209.69,
+      "disk_write_mb": 189080.7,
+      "network_sent_mb": 11.19,
+      "network_recv_mb": 39.43,
+      "network_packets_sent": 33645,
+      "network_packets_recv": 64191,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-18 18:18:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:18:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.07,
+      "swap_usage": 5.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205431.64,
+      "disk_write_mb": 189096.43,
+      "network_sent_mb": 11.28,
+      "network_recv_mb": 39.83,
+      "network_packets_sent": 33924,
+      "network_packets_recv": 64905,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-18 18:19:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:19:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.17,
+      "swap_usage": 5.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205668.86,
+      "disk_write_mb": 189107.96,
+      "network_sent_mb": 11.32,
+      "network_recv_mb": 39.9,
+      "network_packets_sent": 34031,
+      "network_packets_recv": 65295,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:20:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:20:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 5.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205668.93,
+      "disk_write_mb": 189115.38,
+      "network_sent_mb": 11.33,
+      "network_recv_mb": 39.93,
+      "network_packets_sent": 34074,
+      "network_packets_recv": 65642,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-18 18:20:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:20:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.02,
+      "swap_usage": 5.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205669.06,
+      "disk_write_mb": 189122.76,
+      "network_sent_mb": 11.39,
+      "network_recv_mb": 39.99,
+      "network_packets_sent": 34206,
+      "network_packets_recv": 66019,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-18 18:21:20",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:21:20",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.02,
+      "swap_usage": 5.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205669.19,
+      "disk_write_mb": 189132.33,
+      "network_sent_mb": 11.44,
+      "network_recv_mb": 40.08,
+      "network_packets_sent": 34356,
+      "network_packets_recv": 66452,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-18 18:21:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:21:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.12,
+      "swap_usage": 5.0,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205676.75,
+      "disk_write_mb": 189139.85,
+      "network_sent_mb": 11.47,
+      "network_recv_mb": 40.19,
+      "network_packets_sent": 34493,
+      "network_packets_recv": 66930,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:24:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:24:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 78.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.63,
+      "swap_usage": 5.0,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205715.13,
+      "disk_write_mb": 189165.75,
+      "network_sent_mb": 11.71,
+      "network_recv_mb": 40.64,
+      "network_packets_sent": 35222,
+      "network_packets_recv": 68079,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:25:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:25:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 27.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.73,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205765.47,
+      "disk_write_mb": 189209.01,
+      "network_sent_mb": 12.18,
+      "network_recv_mb": 40.96,
+      "network_packets_sent": 36140,
+      "network_packets_recv": 69038,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-18 18:26:03",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:26:03",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 77.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.12,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205766.27,
+      "disk_write_mb": 189231.3,
+      "network_sent_mb": 12.45,
+      "network_recv_mb": 41.1,
+      "network_packets_sent": 36465,
+      "network_packets_recv": 69745,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-18 18:26:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:26:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 77.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.1,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205767.47,
+      "disk_write_mb": 189240.22,
+      "network_sent_mb": 12.57,
+      "network_recv_mb": 41.2,
+      "network_packets_sent": 36779,
+      "network_packets_recv": 70451,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 44
+  },
+  {
+    "timestamp": "2025-12-18 18:27:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:27:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.13,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205767.76,
+      "disk_write_mb": 189250.61,
+      "network_sent_mb": 12.76,
+      "network_recv_mb": 41.27,
+      "network_packets_sent": 36931,
+      "network_packets_recv": 71043,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 35
+  },
+  {
+    "timestamp": "2025-12-18 18:27:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:27:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.05,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205769.89,
+      "disk_write_mb": 189267.79,
+      "network_sent_mb": 13.12,
+      "network_recv_mb": 41.33,
+      "network_packets_sent": 37067,
+      "network_packets_recv": 71706,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-18 18:28:35",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:28:35",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.05,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.1,
+      "disk_read_mb": 205769.98,
+      "disk_write_mb": 189278.89,
+      "network_sent_mb": 13.46,
+      "network_recv_mb": 41.39,
+      "network_packets_sent": 37178,
+      "network_packets_recv": 72410,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.1,
+          "free_gb": 221.84,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 37
+  },
+  {
+    "timestamp": "2025-12-18 18:29:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:29:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 42.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.83,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.99,
+      "disk_read_mb": 205833.35,
+      "disk_write_mb": 189416.36,
+      "network_sent_mb": 15.09,
+      "network_recv_mb": 54.24,
+      "network_packets_sent": 43990,
+      "network_packets_recv": 81686,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.99,
+          "free_gb": 221.95,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:29:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:29:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.95,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.98,
+      "disk_read_mb": 205845.46,
+      "disk_write_mb": 189481.65,
+      "network_sent_mb": 15.96,
+      "network_recv_mb": 58.16,
+      "network_packets_sent": 46564,
+      "network_packets_recv": 86247,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.98,
+          "free_gb": 221.96,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:30:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:30:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.38,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 253.99,
+      "disk_read_mb": 205852.63,
+      "disk_write_mb": 189526.88,
+      "network_sent_mb": 17.78,
+      "network_recv_mb": 63.26,
+      "network_packets_sent": 50855,
+      "network_packets_recv": 92214,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 253.99,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:31:10",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:31:10",
+      "is_sysmon_available": false,
+      "cpu_usage": 47.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.98,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205869.3,
+      "disk_write_mb": 189565.09,
+      "network_sent_mb": 18.84,
+      "network_recv_mb": 68.88,
+      "network_packets_sent": 53984,
+      "network_packets_recv": 97142,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:31:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:31:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.92,
+      "swap_usage": 4.8,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205887.89,
+      "disk_write_mb": 189603.34,
+      "network_sent_mb": 20.07,
+      "network_recv_mb": 75.96,
+      "network_packets_sent": 57466,
+      "network_packets_recv": 102694,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:32:31",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:32:31",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.25,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205910.75,
+      "disk_write_mb": 189622.09,
+      "network_sent_mb": 20.74,
+      "network_recv_mb": 77.2,
+      "network_packets_sent": 58948,
+      "network_packets_recv": 105495,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:33:10",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:33:10",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.35,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205913.6,
+      "disk_write_mb": 189648.88,
+      "network_sent_mb": 21.38,
+      "network_recv_mb": 78.37,
+      "network_packets_sent": 60547,
+      "network_packets_recv": 108554,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:33:49",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:33:49",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.48,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205916.7,
+      "disk_write_mb": 189666.82,
+      "network_sent_mb": 21.66,
+      "network_recv_mb": 78.63,
+      "network_packets_sent": 61360,
+      "network_packets_recv": 110223,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:34:29",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:34:29",
+      "is_sysmon_available": false,
+      "cpu_usage": 32.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.45,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205918.5,
+      "disk_write_mb": 189677.87,
+      "network_sent_mb": 22.05,
+      "network_recv_mb": 79.46,
+      "network_packets_sent": 62348,
+      "network_packets_recv": 112279,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:35:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:35:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 35.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.56,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205918.77,
+      "disk_write_mb": 189689.59,
+      "network_sent_mb": 22.27,
+      "network_recv_mb": 80.38,
+      "network_packets_sent": 63590,
+      "network_packets_recv": 114519,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.57,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:35:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:35:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 36.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.25,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205920.12,
+      "disk_write_mb": 189707.5,
+      "network_sent_mb": 22.46,
+      "network_recv_mb": 80.5,
+      "network_packets_sent": 63840,
+      "network_packets_recv": 115095,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.58,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:36:29",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:36:29",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205921.92,
+      "disk_write_mb": 189794.47,
+      "network_sent_mb": 22.56,
+      "network_recv_mb": 80.66,
+      "network_packets_sent": 64090,
+      "network_packets_recv": 115681,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.59,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:37:06",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:37:06",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.97,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205923.99,
+      "disk_write_mb": 189820.09,
+      "network_sent_mb": 22.6,
+      "network_recv_mb": 80.7,
+      "network_packets_sent": 64231,
+      "network_packets_recv": 116030,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.6,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:37:44",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:37:44",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.22,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205931.38,
+      "disk_write_mb": 189840.12,
+      "network_sent_mb": 22.88,
+      "network_recv_mb": 82.41,
+      "network_packets_sent": 65240,
+      "network_packets_recv": 117879,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.61,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:38:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:38:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205931.53,
+      "disk_write_mb": 189867.61,
+      "network_sent_mb": 22.96,
+      "network_recv_mb": 82.5,
+      "network_packets_sent": 65416,
+      "network_packets_recv": 118259,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.62,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:38:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:38:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.97,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205933.0,
+      "disk_write_mb": 189878.09,
+      "network_sent_mb": 23.02,
+      "network_recv_mb": 82.56,
+      "network_packets_sent": 65609,
+      "network_packets_recv": 118624,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.63,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:39:37",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:39:37",
+      "is_sysmon_available": false,
+      "cpu_usage": 25.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.21,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.0,
+      "disk_read_mb": 205934.04,
+      "disk_write_mb": 189890.93,
+      "network_sent_mb": 23.32,
+      "network_recv_mb": 82.93,
+      "network_packets_sent": 66587,
+      "network_packets_recv": 120483,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.64,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.0,
+          "free_gb": 221.94,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:40:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:40:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.09,
+      "swap_usage": 4.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.03,
+      "disk_read_mb": 205934.96,
+      "disk_write_mb": 189915.66,
+      "network_sent_mb": 23.68,
+      "network_recv_mb": 85.25,
+      "network_packets_sent": 68621,
+      "network_packets_recv": 123602,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.65,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.03,
+          "free_gb": 221.91,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:40:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:40:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.18,
+      "swap_usage": 4.7,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.04,
+      "disk_read_mb": 205935.17,
+      "disk_write_mb": 189931.93,
+      "network_sent_mb": 23.87,
+      "network_recv_mb": 85.55,
+      "network_packets_sent": 69693,
+      "network_packets_recv": 125630,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.66,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.04,
+          "free_gb": 221.9,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:41:33",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:41:33",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.12,
+      "swap_usage": 4.7,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.04,
+      "disk_read_mb": 205936.74,
+      "disk_write_mb": 189942.35,
+      "network_sent_mb": 24.15,
+      "network_recv_mb": 85.89,
+      "network_packets_sent": 70683,
+      "network_packets_recv": 127663,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.67,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.04,
+          "free_gb": 221.9,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:42:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:42:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.18,
+      "swap_usage": 4.7,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.04,
+      "disk_read_mb": 205937.11,
+      "disk_write_mb": 189954.74,
+      "network_sent_mb": 24.53,
+      "network_recv_mb": 87.21,
+      "network_packets_sent": 72136,
+      "network_packets_recv": 130282,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.68,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.04,
+          "free_gb": 221.9,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:42:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:42:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.2,
+      "swap_usage": 4.7,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.04,
+      "disk_read_mb": 205937.38,
+      "disk_write_mb": 189965.13,
+      "network_sent_mb": 24.66,
+      "network_recv_mb": 87.48,
+      "network_packets_sent": 73082,
+      "network_packets_recv": 132213,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.69,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.04,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:43:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:43:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.13,
+      "swap_usage": 4.7,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.04,
+      "disk_read_mb": 205938.12,
+      "disk_write_mb": 189973.64,
+      "network_sent_mb": 24.77,
+      "network_recv_mb": 87.69,
+      "network_packets_sent": 73843,
+      "network_packets_recv": 133762,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.7,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.04,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:44:07",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:44:07",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.81,
+      "swap_usage": 4.7,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 205961.0,
+      "disk_write_mb": 190027.86,
+      "network_sent_mb": 26.24,
+      "network_recv_mb": 99.47,
+      "network_packets_sent": 79919,
+      "network_packets_recv": 146651,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.71,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:44:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:44:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 86.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.53,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 205985.3,
+      "disk_write_mb": 190067.6,
+      "network_sent_mb": 26.7,
+      "network_recv_mb": 100.55,
+      "network_packets_sent": 81830,
+      "network_packets_recv": 149777,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.73,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:45:23",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:45:23",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 205985.61,
+      "disk_write_mb": 190079.23,
+      "network_sent_mb": 26.82,
+      "network_recv_mb": 100.75,
+      "network_packets_sent": 82718,
+      "network_packets_recv": 151472,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.74,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:46:00",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:46:00",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.98,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 205986.18,
+      "disk_write_mb": 190091.0,
+      "network_sent_mb": 27.03,
+      "network_recv_mb": 101.03,
+      "network_packets_sent": 83752,
+      "network_packets_recv": 153416,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:46:39",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:46:39",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 205987.54,
+      "disk_write_mb": 190112.6,
+      "network_sent_mb": 27.91,
+      "network_recv_mb": 101.91,
+      "network_packets_sent": 85158,
+      "network_packets_recv": 155773,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.76,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:47:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:47:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.02,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 205987.98,
+      "disk_write_mb": 190127.89,
+      "network_sent_mb": 28.56,
+      "network_recv_mb": 103.34,
+      "network_packets_sent": 86189,
+      "network_packets_recv": 157471,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:47:56",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:47:56",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.04,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 205995.08,
+      "disk_write_mb": 190210.97,
+      "network_sent_mb": 28.68,
+      "network_recv_mb": 103.45,
+      "network_packets_sent": 86535,
+      "network_packets_recv": 158132,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:48:31",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:48:31",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 205998.09,
+      "disk_write_mb": 190268.32,
+      "network_sent_mb": 28.77,
+      "network_recv_mb": 103.68,
+      "network_packets_sent": 86865,
+      "network_packets_recv": 158728,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.79,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:49:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:49:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.19,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206006.67,
+      "disk_write_mb": 190281.32,
+      "network_sent_mb": 28.93,
+      "network_recv_mb": 103.82,
+      "network_packets_sent": 87271,
+      "network_packets_recv": 159355,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:49:47",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:49:47",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.13,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206007.12,
+      "disk_write_mb": 190291.99,
+      "network_sent_mb": 29.05,
+      "network_recv_mb": 104.01,
+      "network_packets_sent": 88064,
+      "network_packets_recv": 160793,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:50:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:50:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.07,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206009.74,
+      "disk_write_mb": 190303.11,
+      "network_sent_mb": 29.16,
+      "network_recv_mb": 104.17,
+      "network_packets_sent": 88765,
+      "network_packets_recv": 162104,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:50:24",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:50:24",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.07,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206015.69,
+      "disk_write_mb": 190303.37,
+      "network_sent_mb": 29.16,
+      "network_recv_mb": 104.17,
+      "network_packets_sent": 88772,
+      "network_packets_recv": 162128,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:51:00",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:51:00",
+      "is_sysmon_available": false,
+      "cpu_usage": 33.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.11,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206020.88,
+      "disk_write_mb": 190335.1,
+      "network_sent_mb": 29.28,
+      "network_recv_mb": 104.28,
+      "network_packets_sent": 89186,
+      "network_packets_recv": 162781,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:51:00",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:51:00",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.1,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206020.94,
+      "disk_write_mb": 190335.23,
+      "network_sent_mb": 29.28,
+      "network_recv_mb": 104.53,
+      "network_packets_sent": 89206,
+      "network_packets_recv": 162884,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:51:42",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:51:42",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.96,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206022.57,
+      "disk_write_mb": 190379.76,
+      "network_sent_mb": 29.36,
+      "network_recv_mb": 104.76,
+      "network_packets_sent": 89477,
+      "network_packets_recv": 163468,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:51:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:51:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.96,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206022.57,
+      "disk_write_mb": 190379.8,
+      "network_sent_mb": 29.36,
+      "network_recv_mb": 104.76,
+      "network_packets_sent": 89479,
+      "network_packets_recv": 163478,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:52:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:52:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 57.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.11,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206028.66,
+      "disk_write_mb": 190427.76,
+      "network_sent_mb": 29.42,
+      "network_recv_mb": 104.88,
+      "network_packets_sent": 89733,
+      "network_packets_recv": 163995,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:52:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:52:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 41.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.11,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206028.66,
+      "disk_write_mb": 190427.76,
+      "network_sent_mb": 29.42,
+      "network_recv_mb": 104.88,
+      "network_packets_sent": 89733,
+      "network_packets_recv": 163992,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:52:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:52:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.96,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206030.77,
+      "disk_write_mb": 190500.92,
+      "network_sent_mb": 29.46,
+      "network_recv_mb": 105.06,
+      "network_packets_sent": 89943,
+      "network_packets_recv": 164540,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:52:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:52:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.96,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206030.77,
+      "disk_write_mb": 190500.92,
+      "network_sent_mb": 29.46,
+      "network_recv_mb": 105.06,
+      "network_packets_sent": 89943,
+      "network_packets_recv": 164542,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:53:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:53:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.94,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206031.7,
+      "disk_write_mb": 190511.51,
+      "network_sent_mb": 29.57,
+      "network_recv_mb": 105.23,
+      "network_packets_sent": 90437,
+      "network_packets_recv": 165395,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:53:37",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:53:37",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.93,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206031.7,
+      "disk_write_mb": 190511.51,
+      "network_sent_mb": 29.57,
+      "network_recv_mb": 105.23,
+      "network_packets_sent": 90442,
+      "network_packets_recv": 165406,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:54:15",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:54:15",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206036.27,
+      "disk_write_mb": 190521.17,
+      "network_sent_mb": 29.66,
+      "network_recv_mb": 105.67,
+      "network_packets_sent": 91358,
+      "network_packets_recv": 167221,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:54:15",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:54:15",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206036.27,
+      "disk_write_mb": 190521.17,
+      "network_sent_mb": 29.66,
+      "network_recv_mb": 105.68,
+      "network_packets_sent": 91375,
+      "network_packets_recv": 167257,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:54:53",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:54:53",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 85.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.37,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.06,
+      "disk_read_mb": 206038.84,
+      "disk_write_mb": 190532.49,
+      "network_sent_mb": 29.99,
+      "network_recv_mb": 105.9,
+      "network_packets_sent": 92295,
+      "network_packets_recv": 168640,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.06,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:54:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:54:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.37,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.06,
+      "disk_read_mb": 206038.84,
+      "disk_write_mb": 190532.94,
+      "network_sent_mb": 29.99,
+      "network_recv_mb": 105.9,
+      "network_packets_sent": 92295,
+      "network_packets_recv": 168648,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.06,
+          "free_gb": 221.88,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 18:55:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:55:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 85.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.3,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206039.7,
+      "disk_write_mb": 190546.25,
+      "network_sent_mb": 30.1,
+      "network_recv_mb": 106.05,
+      "network_packets_sent": 92639,
+      "network_packets_recv": 169287,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:55:33",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:55:33",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.3,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206039.7,
+      "disk_write_mb": 190546.25,
+      "network_sent_mb": 30.11,
+      "network_recv_mb": 106.06,
+      "network_packets_sent": 92646,
+      "network_packets_recv": 169297,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:56:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:56:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206040.56,
+      "disk_write_mb": 190568.89,
+      "network_sent_mb": 30.25,
+      "network_recv_mb": 106.23,
+      "network_packets_sent": 93293,
+      "network_packets_recv": 170612,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:56:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:56:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206040.67,
+      "disk_write_mb": 190568.89,
+      "network_sent_mb": 30.25,
+      "network_recv_mb": 106.23,
+      "network_packets_sent": 93300,
+      "network_packets_recv": 170625,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:56:50",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:56:50",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.02,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.04,
+      "disk_read_mb": 206044.45,
+      "disk_write_mb": 190579.59,
+      "network_sent_mb": 30.37,
+      "network_recv_mb": 106.41,
+      "network_packets_sent": 93973,
+      "network_packets_recv": 171989,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.04,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:56:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:56:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.02,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.04,
+      "disk_read_mb": 206044.45,
+      "disk_write_mb": 190579.64,
+      "network_sent_mb": 30.37,
+      "network_recv_mb": 106.41,
+      "network_packets_sent": 93975,
+      "network_packets_recv": 171992,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.04,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:57:25",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:57:25",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206044.79,
+      "disk_write_mb": 190590.8,
+      "network_sent_mb": 30.47,
+      "network_recv_mb": 106.53,
+      "network_packets_sent": 94379,
+      "network_packets_recv": 172795,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:57:26",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:57:26",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206044.79,
+      "disk_write_mb": 190590.8,
+      "network_sent_mb": 30.47,
+      "network_recv_mb": 106.53,
+      "network_packets_sent": 94386,
+      "network_packets_recv": 172808,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:58:04",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:58:04",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.98,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206045.16,
+      "disk_write_mb": 190598.91,
+      "network_sent_mb": 30.54,
+      "network_recv_mb": 106.67,
+      "network_packets_sent": 95039,
+      "network_packets_recv": 174184,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:58:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:58:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.98,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206045.16,
+      "disk_write_mb": 190598.91,
+      "network_sent_mb": 30.54,
+      "network_recv_mb": 106.67,
+      "network_packets_sent": 95040,
+      "network_packets_recv": 174184,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:58:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:58:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206045.37,
+      "disk_write_mb": 190607.89,
+      "network_sent_mb": 30.58,
+      "network_recv_mb": 106.72,
+      "network_packets_sent": 95234,
+      "network_packets_recv": 174643,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:58:43",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:58:43",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206045.37,
+      "disk_write_mb": 190607.89,
+      "network_sent_mb": 30.58,
+      "network_recv_mb": 106.72,
+      "network_packets_sent": 95234,
+      "network_packets_recv": 174645,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:59:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:59:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.02,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206046.03,
+      "disk_write_mb": 190616.19,
+      "network_sent_mb": 30.67,
+      "network_recv_mb": 106.84,
+      "network_packets_sent": 95543,
+      "network_packets_recv": 175289,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 18:59:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 18:59:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.02,
+      "swap_usage": 4.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.05,
+      "disk_read_mb": 206046.03,
+      "disk_write_mb": 190616.26,
+      "network_sent_mb": 30.67,
+      "network_recv_mb": 106.84,
+      "network_packets_sent": 95543,
+      "network_packets_recv": 175293,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 11.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.05,
+          "free_gb": 221.89,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251218_19.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251218_19.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251218_19.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,5936 @@
+[
+  {
+    "timestamp": "2025-12-18 19:46:06",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:46:06",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.76,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206287.46,
+      "disk_write_mb": 192312.45,
+      "network_sent_mb": 37.52,
+      "network_recv_mb": 117.36,
+      "network_packets_sent": 132153,
+      "network_packets_recv": 246830,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:46:06",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:46:06",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.76,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206287.46,
+      "disk_write_mb": 192312.45,
+      "network_sent_mb": 37.52,
+      "network_recv_mb": 117.36,
+      "network_packets_sent": 132153,
+      "network_packets_recv": 246830,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:46:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:46:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206287.59,
+      "disk_write_mb": 192333.24,
+      "network_sent_mb": 37.6,
+      "network_recv_mb": 117.5,
+      "network_packets_sent": 132830,
+      "network_packets_recv": 248039,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.76,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:46:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:46:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206287.59,
+      "disk_write_mb": 192333.24,
+      "network_sent_mb": 37.6,
+      "network_recv_mb": 117.5,
+      "network_packets_sent": 132830,
+      "network_packets_recv": 248039,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.76,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:47:23",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:47:23",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206287.8,
+      "disk_write_mb": 192343.18,
+      "network_sent_mb": 37.67,
+      "network_recv_mb": 117.59,
+      "network_packets_sent": 133096,
+      "network_packets_recv": 248563,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:47:23",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:47:23",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206287.8,
+      "disk_write_mb": 192343.18,
+      "network_sent_mb": 37.67,
+      "network_recv_mb": 117.59,
+      "network_packets_sent": 133096,
+      "network_packets_recv": 248563,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:47:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:47:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.68,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206290.24,
+      "disk_write_mb": 192354.97,
+      "network_sent_mb": 37.71,
+      "network_recv_mb": 117.63,
+      "network_packets_sent": 133222,
+      "network_packets_recv": 248914,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:47:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:47:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.68,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206290.24,
+      "disk_write_mb": 192354.97,
+      "network_sent_mb": 37.71,
+      "network_recv_mb": 117.63,
+      "network_packets_sent": 133222,
+      "network_packets_recv": 248914,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:48:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:48:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.72,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206290.25,
+      "disk_write_mb": 192364.87,
+      "network_sent_mb": 37.8,
+      "network_recv_mb": 117.71,
+      "network_packets_sent": 133496,
+      "network_packets_recv": 249421,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.79,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:48:34",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:48:34",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.72,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206290.25,
+      "disk_write_mb": 192364.87,
+      "network_sent_mb": 37.8,
+      "network_recv_mb": 117.71,
+      "network_packets_sent": 133496,
+      "network_packets_recv": 249421,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.79,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:49:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:49:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.77,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206290.32,
+      "disk_write_mb": 192372.95,
+      "network_sent_mb": 37.97,
+      "network_recv_mb": 117.95,
+      "network_packets_sent": 134369,
+      "network_packets_recv": 251073,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:49:12",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:49:12",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.77,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206290.32,
+      "disk_write_mb": 192372.98,
+      "network_sent_mb": 37.97,
+      "network_recv_mb": 117.95,
+      "network_packets_sent": 134370,
+      "network_packets_recv": 251077,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:49:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:49:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.77,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206291.45,
+      "disk_write_mb": 192383.41,
+      "network_sent_mb": 38.07,
+      "network_recv_mb": 118.08,
+      "network_packets_sent": 134811,
+      "network_packets_recv": 251896,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:49:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:49:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.77,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206291.45,
+      "disk_write_mb": 192383.41,
+      "network_sent_mb": 38.07,
+      "network_recv_mb": 118.08,
+      "network_packets_sent": 134811,
+      "network_packets_recv": 251897,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:50:27",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:50:27",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.75,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206291.61,
+      "disk_write_mb": 192394.5,
+      "network_sent_mb": 38.17,
+      "network_recv_mb": 118.16,
+      "network_packets_sent": 135057,
+      "network_packets_recv": 252387,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:50:27",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:50:27",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.75,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206291.61,
+      "disk_write_mb": 192394.5,
+      "network_sent_mb": 38.17,
+      "network_recv_mb": 118.16,
+      "network_packets_sent": 135057,
+      "network_packets_recv": 252387,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:51:02",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:51:02",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.75,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206291.74,
+      "disk_write_mb": 192421.47,
+      "network_sent_mb": 38.24,
+      "network_recv_mb": 118.22,
+      "network_packets_sent": 135281,
+      "network_packets_recv": 252787,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:51:02",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:51:02",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.75,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206291.74,
+      "disk_write_mb": 192421.47,
+      "network_sent_mb": 38.24,
+      "network_recv_mb": 118.22,
+      "network_packets_sent": 135281,
+      "network_packets_recv": 252788,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:51:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:51:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 33.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.68,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206291.78,
+      "disk_write_mb": 192479.66,
+      "network_sent_mb": 38.29,
+      "network_recv_mb": 118.27,
+      "network_packets_sent": 135463,
+      "network_packets_recv": 253123,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:51:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:51:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 33.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.68,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206291.78,
+      "disk_write_mb": 192479.66,
+      "network_sent_mb": 38.29,
+      "network_recv_mb": 118.27,
+      "network_packets_sent": 135463,
+      "network_packets_recv": 253123,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.87,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:52:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:52:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 52.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.72,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206292.33,
+      "disk_write_mb": 192498.46,
+      "network_sent_mb": 38.41,
+      "network_recv_mb": 118.41,
+      "network_packets_sent": 135829,
+      "network_packets_recv": 253645,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.86,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:52:17",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:52:17",
+      "is_sysmon_available": false,
+      "cpu_usage": 50.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.72,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206292.33,
+      "disk_write_mb": 192498.46,
+      "network_sent_mb": 38.41,
+      "network_recv_mb": 118.41,
+      "network_packets_sent": 135829,
+      "network_packets_recv": 253645,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.86,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:52:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:52:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.81,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206292.87,
+      "disk_write_mb": 192573.57,
+      "network_sent_mb": 38.5,
+      "network_recv_mb": 118.54,
+      "network_packets_sent": 136194,
+      "network_packets_recv": 254149,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.86,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:52:54",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:52:54",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.81,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.07,
+      "disk_read_mb": 206292.87,
+      "disk_write_mb": 192573.57,
+      "network_sent_mb": 38.5,
+      "network_recv_mb": 118.54,
+      "network_packets_sent": 136194,
+      "network_packets_recv": 254149,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.07,
+          "free_gb": 221.86,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:53:33",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:53:33",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 87.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.68,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206314.37,
+      "disk_write_mb": 192621.48,
+      "network_sent_mb": 39.36,
+      "network_recv_mb": 128.42,
+      "network_packets_sent": 140136,
+      "network_packets_recv": 263869,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 19:53:33",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:53:33",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 87.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.68,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206314.37,
+      "disk_write_mb": 192621.48,
+      "network_sent_mb": 39.36,
+      "network_recv_mb": 128.42,
+      "network_packets_sent": 140136,
+      "network_packets_recv": 263869,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 19:54:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:54:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.87,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206316.23,
+      "disk_write_mb": 192649.0,
+      "network_sent_mb": 39.53,
+      "network_recv_mb": 129.02,
+      "network_packets_sent": 140617,
+      "network_packets_recv": 264754,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:54:11",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:54:11",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.87,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206316.23,
+      "disk_write_mb": 192649.0,
+      "network_sent_mb": 39.53,
+      "network_recv_mb": 129.02,
+      "network_packets_sent": 140617,
+      "network_packets_recv": 264754,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:54:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:54:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 41.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.08,
+      "disk_read_mb": 206317.32,
+      "disk_write_mb": 192677.25,
+      "network_sent_mb": 39.64,
+      "network_recv_mb": 129.15,
+      "network_packets_sent": 140957,
+      "network_packets_recv": 265214,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.08,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:54:46",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:54:46",
+      "is_sysmon_available": false,
+      "cpu_usage": 40.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.08,
+      "disk_read_mb": 206317.32,
+      "disk_write_mb": 192677.25,
+      "network_sent_mb": 39.64,
+      "network_recv_mb": 129.15,
+      "network_packets_sent": 140957,
+      "network_packets_recv": 265214,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.08,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:55:21",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:55:21",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.01,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.08,
+      "disk_read_mb": 206317.71,
+      "disk_write_mb": 192740.98,
+      "network_sent_mb": 40.1,
+      "network_recv_mb": 129.45,
+      "network_packets_sent": 141572,
+      "network_packets_recv": 266062,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.08,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:55:21",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:55:21",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.01,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.08,
+      "disk_read_mb": 206317.71,
+      "disk_write_mb": 192741.25,
+      "network_sent_mb": 40.1,
+      "network_recv_mb": 129.45,
+      "network_packets_sent": 141572,
+      "network_packets_recv": 266062,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.08,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:55:57",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:55:57",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.01,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.08,
+      "disk_read_mb": 206317.95,
+      "disk_write_mb": 192757.43,
+      "network_sent_mb": 40.55,
+      "network_recv_mb": 129.71,
+      "network_packets_sent": 141903,
+      "network_packets_recv": 266695,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.08,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:55:58",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:55:58",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.01,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.08,
+      "disk_read_mb": 206317.95,
+      "disk_write_mb": 192757.43,
+      "network_sent_mb": 40.55,
+      "network_recv_mb": 129.71,
+      "network_packets_sent": 141903,
+      "network_packets_recv": 266695,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.08,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 19:56:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:56:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.0,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206317.96,
+      "disk_write_mb": 192765.02,
+      "network_sent_mb": 40.63,
+      "network_recv_mb": 129.98,
+      "network_packets_sent": 142934,
+      "network_packets_recv": 268620,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-18 19:56:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:56:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.0,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206317.96,
+      "disk_write_mb": 192765.02,
+      "network_sent_mb": 40.63,
+      "network_recv_mb": 129.98,
+      "network_packets_sent": 142934,
+      "network_packets_recv": 268620,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-18 19:57:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:57:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206320.26,
+      "disk_write_mb": 192774.62,
+      "network_sent_mb": 40.73,
+      "network_recv_mb": 130.34,
+      "network_packets_sent": 144364,
+      "network_packets_recv": 271271,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-18 19:57:14",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:57:14",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206320.26,
+      "disk_write_mb": 192774.62,
+      "network_sent_mb": 40.73,
+      "network_recv_mb": 130.34,
+      "network_packets_sent": 144364,
+      "network_packets_recv": 271271,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-18 19:57:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:57:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206321.86,
+      "disk_write_mb": 192787.24,
+      "network_sent_mb": 40.83,
+      "network_recv_mb": 130.72,
+      "network_packets_sent": 145740,
+      "network_packets_recv": 273977,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-18 19:57:52",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:57:52",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.05,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206321.86,
+      "disk_write_mb": 192787.24,
+      "network_sent_mb": 40.83,
+      "network_recv_mb": 130.72,
+      "network_packets_sent": 145740,
+      "network_packets_recv": 273977,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-18 19:58:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:58:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.18,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206325.51,
+      "disk_write_mb": 192797.47,
+      "network_sent_mb": 40.94,
+      "network_recv_mb": 131.04,
+      "network_packets_sent": 147100,
+      "network_packets_recv": 276499,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 6,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-18 19:58:30",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:58:30",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.18,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206325.51,
+      "disk_write_mb": 192797.47,
+      "network_sent_mb": 40.94,
+      "network_recv_mb": 131.04,
+      "network_packets_sent": 147103,
+      "network_packets_recv": 276504,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 6,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-18 19:59:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:59:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.7,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206431.05,
+      "disk_write_mb": 192838.26,
+      "network_sent_mb": 41.21,
+      "network_recv_mb": 132.19,
+      "network_packets_sent": 149072,
+      "network_packets_recv": 279816,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 19:59:09",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:59:09",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.7,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206431.05,
+      "disk_write_mb": 192838.26,
+      "network_sent_mb": 41.21,
+      "network_recv_mb": 132.19,
+      "network_packets_sent": 149073,
+      "network_packets_recv": 279816,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 19:59:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:59:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 27.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.5,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206433.22,
+      "disk_write_mb": 192871.38,
+      "network_sent_mb": 41.36,
+      "network_recv_mb": 132.39,
+      "network_packets_sent": 149860,
+      "network_packets_recv": 281317,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 19:59:45",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 19:59:45",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.5,
+      "swap_usage": 4.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206433.22,
+      "disk_write_mb": 192871.38,
+      "network_sent_mb": 41.36,
+      "network_recv_mb": 132.39,
+      "network_packets_sent": 149860,
+      "network_packets_recv": 281317,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  }
+]
Index: received_data_sysmon/env_1/Ilina-laptop/20251218_20.json
===================================================================
--- received_data_sysmon/env_1/Ilina-laptop/20251218_20.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ received_data_sysmon/env_1/Ilina-laptop/20251218_20.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -0,0 +1,3614 @@
+[
+  {
+    "timestamp": "2025-12-18 20:00:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:00:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.49,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206440.15,
+      "disk_write_mb": 192966.31,
+      "network_sent_mb": 41.48,
+      "network_recv_mb": 132.54,
+      "network_packets_sent": 150202,
+      "network_packets_recv": 281826,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 20:00:22",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:00:22",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.49,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206440.15,
+      "disk_write_mb": 192966.31,
+      "network_sent_mb": 41.48,
+      "network_recv_mb": 132.54,
+      "network_packets_sent": 150202,
+      "network_packets_recv": 281826,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 12.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 20:00:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:00:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 85.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.34,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206441.72,
+      "disk_write_mb": 193044.92,
+      "network_sent_mb": 41.53,
+      "network_recv_mb": 132.6,
+      "network_packets_sent": 150385,
+      "network_packets_recv": 282113,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-18 20:00:59",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:00:59",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.34,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206441.72,
+      "disk_write_mb": 193044.92,
+      "network_sent_mb": 41.53,
+      "network_recv_mb": 132.6,
+      "network_packets_sent": 150385,
+      "network_packets_recv": 282113,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  },
+  {
+    "timestamp": "2025-12-18 20:01:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:01:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.25,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206442.04,
+      "disk_write_mb": 193097.47,
+      "network_sent_mb": 41.57,
+      "network_recv_mb": 132.66,
+      "network_packets_sent": 150602,
+      "network_packets_recv": 282448,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-18 20:01:36",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:01:36",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.25,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206442.04,
+      "disk_write_mb": 193097.47,
+      "network_sent_mb": 41.57,
+      "network_recv_mb": 132.66,
+      "network_packets_sent": 150602,
+      "network_packets_recv": 282448,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 48
+  },
+  {
+    "timestamp": "2025-12-18 20:02:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:02:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.29,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206449.22,
+      "disk_write_mb": 193108.37,
+      "network_sent_mb": 41.6,
+      "network_recv_mb": 132.69,
+      "network_packets_sent": 150731,
+      "network_packets_recv": 282681,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 20:02:13",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:02:13",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.29,
+      "swap_usage": 4.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.09,
+      "disk_read_mb": 206449.22,
+      "disk_write_mb": 193108.37,
+      "network_sent_mb": 41.6,
+      "network_recv_mb": 132.69,
+      "network_packets_sent": 150731,
+      "network_packets_recv": 282681,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.09,
+          "free_gb": 221.85,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 20:02:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:02:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 77.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.82,
+      "swap_usage": 9.4,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.15,
+      "disk_read_mb": 207894.23,
+      "disk_write_mb": 193964.65,
+      "network_sent_mb": 41.67,
+      "network_recv_mb": 133.09,
+      "network_packets_sent": 151109,
+      "network_packets_recv": 283254,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.03,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.15,
+          "free_gb": 221.79,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 20:02:51",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:02:51",
+      "is_sysmon_available": false,
+      "cpu_usage": 76.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.82,
+      "swap_usage": 9.4,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.15,
+      "disk_read_mb": 207894.23,
+      "disk_write_mb": 193964.65,
+      "network_sent_mb": 41.67,
+      "network_recv_mb": 133.09,
+      "network_packets_sent": 151109,
+      "network_packets_recv": 283254,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.03,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.15,
+          "free_gb": 221.79,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2025-12-18 20:03:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:03:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.13,
+      "swap_usage": 9.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.15,
+      "disk_read_mb": 208223.43,
+      "disk_write_mb": 194047.46,
+      "network_sent_mb": 42.02,
+      "network_recv_mb": 150.88,
+      "network_packets_sent": 156646,
+      "network_packets_recv": 291332,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.04,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.15,
+          "free_gb": 221.79,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 20:03:28",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:03:28",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.13,
+      "swap_usage": 9.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.15,
+      "disk_read_mb": 208223.43,
+      "disk_write_mb": 194047.46,
+      "network_sent_mb": 42.02,
+      "network_recv_mb": 150.88,
+      "network_packets_sent": 156646,
+      "network_packets_recv": 291332,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.04,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.15,
+          "free_gb": 221.79,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 20:04:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:04:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.14,
+      "swap_usage": 9.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.15,
+      "disk_read_mb": 208241.68,
+      "disk_write_mb": 194082.14,
+      "network_sent_mb": 42.04,
+      "network_recv_mb": 150.92,
+      "network_packets_sent": 156759,
+      "network_packets_recv": 291583,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.15,
+          "free_gb": 221.79,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 20:04:05",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:04:05",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.14,
+      "swap_usage": 9.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.15,
+      "disk_read_mb": 208241.68,
+      "disk_write_mb": 194082.14,
+      "network_sent_mb": 42.04,
+      "network_recv_mb": 150.92,
+      "network_packets_sent": 156759,
+      "network_packets_recv": 291583,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.15,
+          "free_gb": 221.79,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 20:04:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:04:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.24,
+      "swap_usage": 9.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.21,
+      "disk_read_mb": 208305.08,
+      "disk_write_mb": 194126.64,
+      "network_sent_mb": 42.1,
+      "network_recv_mb": 150.98,
+      "network_packets_sent": 156962,
+      "network_packets_recv": 291915,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.21,
+          "free_gb": 221.73,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 20:04:41",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:04:41",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.24,
+      "swap_usage": 9.6,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.21,
+      "disk_read_mb": 208305.31,
+      "disk_write_mb": 194126.64,
+      "network_sent_mb": 42.1,
+      "network_recv_mb": 150.98,
+      "network_packets_sent": 156962,
+      "network_packets_recv": 291915,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.21,
+          "free_gb": 221.73,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2025-12-18 20:05:18",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:05:18",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.15,
+      "swap_usage": 9.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208348.72,
+      "disk_write_mb": 194209.18,
+      "network_sent_mb": 42.17,
+      "network_recv_mb": 151.06,
+      "network_packets_sent": 157184,
+      "network_packets_recv": 292310,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.07,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-18 20:05:19",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:05:19",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.15,
+      "swap_usage": 9.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208348.72,
+      "disk_write_mb": 194209.18,
+      "network_sent_mb": 42.17,
+      "network_recv_mb": 151.06,
+      "network_packets_sent": 157184,
+      "network_packets_recv": 292310,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.07,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-18 20:05:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:05:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.06,
+      "swap_usage": 9.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208350.15,
+      "disk_write_mb": 194266.65,
+      "network_sent_mb": 42.21,
+      "network_recv_mb": 151.13,
+      "network_packets_sent": 157374,
+      "network_packets_recv": 292664,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-18 20:05:55",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:05:55",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.06,
+      "swap_usage": 9.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208350.15,
+      "disk_write_mb": 194266.65,
+      "network_sent_mb": 42.22,
+      "network_recv_mb": 151.13,
+      "network_packets_sent": 157381,
+      "network_packets_recv": 292666,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-18 20:06:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:06:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.97,
+      "swap_usage": 9.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208351.34,
+      "disk_write_mb": 194279.32,
+      "network_sent_mb": 42.24,
+      "network_recv_mb": 151.18,
+      "network_packets_sent": 157465,
+      "network_packets_recv": 292932,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.09,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-18 20:06:32",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:06:32",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.97,
+      "swap_usage": 9.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208351.34,
+      "disk_write_mb": 194279.32,
+      "network_sent_mb": 42.24,
+      "network_recv_mb": 151.18,
+      "network_packets_sent": 157465,
+      "network_packets_recv": 292932,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.09,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 46
+  },
+  {
+    "timestamp": "2025-12-18 20:07:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:07:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.0,
+      "swap_usage": 9.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208351.9,
+      "disk_write_mb": 194287.94,
+      "network_sent_mb": 42.27,
+      "network_recv_mb": 151.21,
+      "network_packets_sent": 157586,
+      "network_packets_recv": 293159,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-18 20:07:08",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:07:08",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.0,
+      "swap_usage": 9.5,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208351.9,
+      "disk_write_mb": 194287.94,
+      "network_sent_mb": 42.27,
+      "network_recv_mb": 151.21,
+      "network_packets_sent": 157586,
+      "network_packets_recv": 293159,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 45
+  },
+  {
+    "timestamp": "2025-12-18 20:07:44",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:07:44",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.15,
+      "swap_usage": 8.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208366.62,
+      "disk_write_mb": 194296.94,
+      "network_sent_mb": 42.3,
+      "network_recv_mb": 151.24,
+      "network_packets_sent": 157710,
+      "network_packets_recv": 293359,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-18 20:07:44",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:07:44",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.15,
+      "swap_usage": 8.3,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208366.62,
+      "disk_write_mb": 194296.94,
+      "network_sent_mb": 42.3,
+      "network_recv_mb": 151.24,
+      "network_packets_sent": 157710,
+      "network_packets_recv": 293359,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 43
+  },
+  {
+    "timestamp": "2025-12-18 20:08:21",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:08:21",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 78.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.19,
+      "swap_usage": 8.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208390.25,
+      "disk_write_mb": 194325.54,
+      "network_sent_mb": 42.35,
+      "network_recv_mb": 151.32,
+      "network_packets_sent": 157903,
+      "network_packets_recv": 293720,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 47
+  },
+  {
+    "timestamp": "2025-12-18 20:08:21",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.230",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2025-12-18 20:08:21",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.19,
+      "swap_usage": 8.2,
+      "disk_usage": 53.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 254.29,
+      "disk_read_mb": 208390.25,
+      "disk_write_mb": 194325.54,
+      "network_sent_mb": 42.35,
+      "network_recv_mb": 151.33,
+      "network_packets_sent": 157903,
+      "network_packets_recv": 293721,
+      "boot_time": "2025-12-11 07:01:15",
+      "uptime_hours": 13.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 254.29,
+          "free_gb": 221.65,
+          "percent_used": 53.4
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.11.230",
+            "netmask": "255.255.240.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 49
+  }
+]
Index: sctry.py
===================================================================
--- sctry.py	(revision 640ed89213ad0086dc8379de00b8d102057ead1f)
+++ sctry.py	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -157,10 +157,12 @@
 
 class EnhancedFixedClient:
-    def __init__(self, server_ip="192.168.1.13", port=5555):
+    def __init__(self, server_ip="192.168.1.13", port=5555, env_token=None):
         self.server_ip = server_ip
         self.port = port
         self.computer_name = socket.gethostname()
         self.user = os.getlogin()
-        self.sysmon_collector = FixedSysmonCollector()  # Користи поправената верзија
+        self.sysmon_collector = FixedSysmonCollector()
+        self.env_token = env_token
+        # Користи поправената верзија
 
     def get_detailed_info(self):
@@ -365,7 +367,10 @@
         # Испрати ги податоците
         try:
+            headers = {"X-Env-Token": self.env_token} if self.env_token else {}
+
             response = requests.post(
                 f"http://{self.server_ip}:{self.port}/receive",
                 json=data,
+                headers=headers,
                 timeout=30
             )
@@ -378,5 +383,17 @@
                 return True
             else:
-                print(f"   ❌ Грешка: {response.status_code}")
+                if response.status_code == 401:
+                    try:
+                        msg = response.json()
+                    except:
+                        msg = {}
+                    print("   🔒 Token invalid/expired. Побарај нов token од Admin панел.")
+                    print(f"   Server says: {msg}")
+                else:
+                    print(f"   ❌ Грешка: {response.status_code}")
+                    try:
+                        print("   ", response.text[:300])
+                    except:
+                        pass
                 return False
 
@@ -402,6 +419,10 @@
     server_ip = input("Внеси сервер IP (default 192.168.1.13): ").strip() or "192.168.1.13"
 
-    client = EnhancedFixedClient(server_ip)
-
+    env_token = input("Внеси ENV TOKEN (од Admin панел): ").strip()
+    if not env_token:
+        print("❌ Мора ENV TOKEN за да се регистрира уредот.")
+        return
+
+    client = EnhancedFixedClient(server_ip, 5555, env_token=env_token)
     # Тест конекција
     print(f"\n🔌 Тестирање на врска со серверот {server_ip}...")
Index: server.py
===================================================================
--- server.py	(revision 640ed89213ad0086dc8379de00b8d102057ead1f)
+++ server.py	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
@@ -17,4 +17,6 @@
 from openai import OpenAI
 from openai import OpenAI
+from dotenv import load_dotenv
+load_dotenv()
 
 OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY")
@@ -25,11 +27,78 @@
 
 
-
-
-
 app = Flask(__name__)
 
 DB_FILE = "lan_logs_sysmon.db"
 LOG_DIR = "received_data_sysmon"
+
+import secrets
+
+ADMIN_KEY = os.environ.get("ADMIN_KEY", "")
+ADMIN_KEY = os.environ.get("ADMIN_KEY", "")
+
+
+def init_admin_tables():
+    conn = sqlite3.connect(DB_FILE)
+    c = conn.cursor()
+
+    c.execute('''CREATE TABLE IF NOT EXISTS environments(
+        id INTEGER PRIMARY KEY AUTOINCREMENT,
+        name TEXT UNIQUE,
+        created_at TEXT
+    )''')
+
+    c.execute('''CREATE TABLE IF NOT EXISTS env_tokens(
+        id INTEGER PRIMARY KEY AUTOINCREMENT,
+        env_name TEXT,
+        token TEXT UNIQUE,
+        created_at TEXT,
+        expires_at TEXT
+    )''')
+
+    # migration ако табелата веќе постои
+    c.execute("PRAGMA table_info(env_tokens)")
+    cols = [r[1] for r in c.fetchall()]
+    if "expires_at" not in cols:
+        c.execute("ALTER TABLE env_tokens ADD COLUMN expires_at TEXT")
+
+    c.execute('''CREATE TABLE IF NOT EXISTS admin_sessions(
+        id INTEGER PRIMARY KEY AUTOINCREMENT,
+        token TEXT UNIQUE,
+        created_at TEXT
+    )''')
+
+    # default env
+    c.execute("INSERT OR IGNORE INTO environments(name, created_at) VALUES('default', datetime('now'))")
+
+    conn.commit()
+    conn.close()
+
+def require_admin_session():
+    tok = request.headers.get("X-Admin-Session", "")
+    if not tok:
+        return False
+    conn = sqlite3.connect(DB_FILE)
+    c = conn.cursor()
+    c.execute("SELECT 1 FROM admin_sessions WHERE token = ?", (tok,))
+    ok = c.fetchone() is not None
+    conn.close()
+    return ok
+
+def get_env_from_token(req):
+    tok = req.headers.get("X-Env-Token", "")
+    if not tok:
+        return None
+
+    conn = sqlite3.connect(DB_FILE)
+    c = conn.cursor()
+    c.execute("""
+        SELECT env_name
+        FROM env_tokens
+        WHERE token = ?
+          AND (expires_at IS NULL OR expires_at > datetime('now'))
+    """, (tok,))
+    row = c.fetchone()
+    conn.close()
+    return row[0] if row else None
 
 
@@ -51,4 +120,10 @@
                   last_seen TIMESTAMP,
                   sysmon_available BOOLEAN DEFAULT 0)''')
+    # --- MIGRATION: add env_name column if missing ---
+    c.execute("PRAGMA table_info(computers)")
+    cols = [r[1] for r in c.fetchall()]
+    if "env_name" not in cols:
+        c.execute("ALTER TABLE computers ADD COLUMN env_name TEXT DEFAULT 'default'")
+    # --- END MIGRATION ---
 
     # Табела за историја
@@ -124,4 +199,7 @@
         if not data:
             return jsonify({"error": "No data"}), 400
+        env_name = get_env_from_token(request)
+        if not env_name:
+            return jsonify({"error": "Missing or invalid X-Env-Token"}), 401
 
         info = data['info']
@@ -141,17 +219,18 @@
             computer_id = result[0]
             c.execute('''UPDATE computers 
-                        SET user = ?, ip = ?, os = ?, last_seen = ?, sysmon_available = ?
+                        SET user = ?, ip = ?, os = ?, last_seen = ?, sysmon_available = ?, env_name = ?
                         WHERE id = ?''',
                       (info['user'], info['ip_address'], info['os'],
                        timestamp.isoformat(), info.get('is_sysmon_available', 0),
-                       computer_id))
+                       env_name, computer_id))
         else:
             # Нов компјутер - додади го
             c.execute('''INSERT INTO computers 
-                        (name, user, ip, os, first_seen, last_seen, sysmon_available) 
-                        VALUES (?, ?, ?, ?, ?, ?, ?)''',
+                        (name, user, ip, os, first_seen, last_seen, sysmon_available, env_name) 
+                        VALUES (?, ?, ?, ?, ?, ?, ?, ?)''',
                       (computer_name, info['user'], info['ip_address'],
                        info['os'], timestamp.isoformat(), timestamp.isoformat(),
-                       info.get('is_sysmon_available', 0)))
+                       info.get('is_sysmon_available', 0), env_name))
+
             computer_id = c.lastrowid
 
@@ -270,6 +349,6 @@
 
     # Земaj ги сите компјутери
-    c.execute('''SELECT name, user, ip, os, first_seen, last_seen, sysmon_available 
-                 FROM computers 
+    c.execute('''SELECT name, user, ip, os, first_seen, last_seen, sysmon_available, env_name
+                 FROM computers
                  ORDER BY last_seen DESC''')
 
@@ -331,5 +410,6 @@
             'avg_ram': round(avg_ram, 1),
             'status': status,
-            'status_color': status_color
+            'status_color': status_color,
+            'env_name': row[7],
         })
 
@@ -772,4 +852,7 @@
                             <i>🌐</i> {{ comp.ip }}
                         </div>
+                        <div class="computer-info">
+                        <i>🏷️</i> Env: {{ comp.env_name }}</div>
+
 
                         <div class="computer-info">
@@ -1324,8 +1407,10 @@
     conn = sqlite3.connect(DB_FILE)
     c = conn.cursor()
+    env = request.headers.get("X-Env", "default")
 
     c.execute('''SELECT name, user, ip, os, first_seen, last_seen, sysmon_available 
                  FROM computers 
-                 ORDER BY last_seen DESC''')
+                 WHERE env_name = ?
+                 ORDER BY last_seen DESC''', (env,))
 
     computers = []
@@ -1866,6 +1951,91 @@
         'count': len(detailed_processes)
     })
+@app.route("/api/admin/login", methods=["POST"])
+def admin_login():
+    data = request.get_json(force=True) or {}
+    key = (data.get("admin_key") or "").strip()
+    if not ADMIN_KEY or key != ADMIN_KEY:
+        return jsonify({"error": "Unauthorized"}), 401
+
+    session_token = secrets.token_urlsafe(32)
+    conn = sqlite3.connect(DB_FILE)
+    c = conn.cursor()
+    c.execute("INSERT INTO admin_sessions(token, created_at) VALUES(?, datetime('now'))", (session_token,))
+    conn.commit()
+    conn.close()
+
+    return jsonify({"ok": True, "session": session_token})
+
+
+@app.route("/api/admin/environments", methods=["GET"])
+def admin_list_envs():
+    if not require_admin_session():
+        return jsonify({"error": "Unauthorized"}), 401
+
+    conn = sqlite3.connect(DB_FILE)
+    c = conn.cursor()
+    c.execute("SELECT name FROM environments ORDER BY name")
+    envs = [r[0] for r in c.fetchall()]
+    conn.close()
+
+    return jsonify({"environments": envs})
+
+
+@app.route("/api/admin/environments", methods=["POST"])
+def admin_create_env():
+    if not require_admin_session():
+        return jsonify({"error": "Unauthorized"}), 401
+
+    data = request.get_json(force=True) or {}
+    name = (data.get("name") or "").strip()
+    if not name:
+        return jsonify({"error": "Missing env name"}), 400
+
+    conn = sqlite3.connect(DB_FILE)
+    c = conn.cursor()
+    try:
+        c.execute("INSERT INTO environments(name, created_at) VALUES(?, datetime('now'))", (name,))
+        conn.commit()
+    except Exception as e:
+        conn.close()
+        return jsonify({"error": str(e)}), 400
+    conn.close()
+
+    return jsonify({"ok": True, "name": name})
+
+
+@app.route("/api/admin/tokens", methods=["POST"])
+def admin_generate_token():
+    if not require_admin_session():
+        return jsonify({"error": "Unauthorized"}), 401
+
+    data = request.get_json(force=True) or {}
+    env = (data.get("env") or "").strip()
+    if not env:
+        return jsonify({"error": "Missing env"}), 400
+
+    conn = sqlite3.connect(DB_FILE)
+    c = conn.cursor()
+
+    c.execute("SELECT 1 FROM environments WHERE name = ?", (env,))
+    if not c.fetchone():
+        conn.close()
+        return jsonify({"error": "Environment not found"}), 404
+
+    token = secrets.token_urlsafe(32)
+    c.execute("""
+        INSERT INTO env_tokens(env_name, token, created_at, expires_at)
+        VALUES(?, ?, datetime('now'), datetime('now', '+15 minutes'))
+    """, (env, token))
+
+    conn.commit()
+    conn.close()
+
+    return jsonify({"ok": True, "env": env, "token": token})
+
 if __name__ == '__main__':
     init_database()
+    init_admin_tables()
+
 
     # Стартувај cleanup thread
