diff --git a/.claude/prompt/admin-ios-safari-css-fallbacks.md b/.claude/prompt/admin-ios-safari-css-fallbacks.md new file mode 100644 index 00000000..8c53ac56 --- /dev/null +++ b/.claude/prompt/admin-ios-safari-css-fallbacks.md @@ -0,0 +1,139 @@ +# رفع بهم‌ریختگی کامل پنل ادمین روی iPhone 8 (Safari/Chrome iOS) + +## پروژه + +`clinicpro` (فقط CSS پنل ادمین React — بدون تغییر backend یا API) + +## زمینه + +پنل ادمین (`https://clinic-pro.ddev.site/admin`) روی دسکتاپ و موبایل‌های جدید درست است، اما روی **iPhone 8** با **هر دو مرورگر Chrome و Safari** کامل بهم‌ریخته دیده می‌شود (رنگ‌ها، پس‌زمینه‌ها، دکمه‌ها، بوردرها خراب). + +نکته کلیدی: Chrome روی iOS هم از موتور **WebKit** استفاده می‌کند (نه Blink). پس «هر دو مرورگر خراب» یعنی مشکل از **موتور WebKit قدیمیِ iPhone 8** است، نه مرورگر. iPhone 8 حداکثر به iOS 16.7 می‌رسد و بسیاری از کاربران روی iOS ۱۵.x یا ۱۶.۰–۱۶.۱ می‌مانند. + +## مشکل / هدف + +استایل پنل به‌شدت به توابع رنگ مدرن CSS وابسته است که روی WebKit قدیمی پشتیبانی نمی‌شوند و مقدارشان **نامعتبر** می‌شود → مرورگر مقدار را دور می‌ریزد → رنگ به transparent/سیاه/ارثی می‌افتد → کل UI بهم می‌ریزد: + +- **`oklch()`** — فقط Safari ‏15.4+ . روی iOS ‏15.0–15.3 خراب. +- **`color-mix()`** — فقط Safari ‏16.2+ . روی iOS ‏15.x و ‏16.0/16.1 خراب. (**۳۰ مورد** در فایل) +- **Tailwind v4** — رسماً فقط Safari ‏16.4+ را هدف می‌گیرد (`@property`, cascade layers, oklch). روی iPhone 8 قدیمی base/reset ناقص اجرا می‌شود. + +هدف: افزودن fallback رنگ sRGB و گارد `@supports` تا پنل روی WebKit قدیمی هم صحیح رندر شود (progressive enhancement — روی مرورگر جدید دقیقاً مثل الان بماند). + +## فایل‌های مرتبط + +| فایل | نقش | +|------|-----| +| `clinicpro/assets/admin/styles.css` | تمام متغیرهای رنگ + ۳۰ مورد `color-mix` + `oklch` | +| `clinicpro/templates/admin/index.html.twig` | shell پنل (viewport موجود و درست) | +| `clinicpro/package.json` | Tailwind v4 (`tailwindcss@^4`, `@tailwindcss/postcss@^4`) | + +## وضعیت فعلی + +هیچ fallback و هیچ `@supports` وجود ندارد (`grep -c "@supports" = 0`). + +متغیرهای رنگ فقط با `oklch` تعریف شده‌اند (خط ۳۰ و ۸۵): + +```css +/* :root روشن */ +--primary: oklch(0.55 var(--brand-c) var(--brand-h)); +--primary-600: oklch(0.49 var(--brand-c) var(--brand-h)); +--primary-700: oklch(0.43 var(--brand-c) var(--brand-h)); +--primary-soft: oklch(0.95 0.03 var(--brand-h)); +--primary-soft2: oklch(0.90 0.05 var(--brand-h)); +--ring: color-mix(in oklch, var(--primary) 32%, transparent); +``` + +تم تیره (خط ۸۵+) کلاً روی `color-mix` سوار است → روی iOS قدیمی کامل خراب: + +```css +[data-theme="dark"] { + --primary: oklch(0.66 var(--brand-c) var(--brand-h)); + --primary-soft: color-mix(in oklch, var(--primary) 16%, var(--surface)); + --success-bg: color-mix(in oklch, var(--success) 18%, var(--surface)); + --warning-bg: color-mix(in oklch, var(--warning) 18%, var(--surface)); + /* ... danger-bg, info-bg, violet-bg, accent-bg, stat-*-bg همه color-mix */ +} +``` + +استفاده inline در قوانین (خط ۴۶۹–۴۷۳ و بلوک settings جدید): + +```css +.appt-status.status-green { border-color: color-mix(in srgb, var(--success) 25%, transparent); } +.toggle-row.on { border-color: color-mix(in oklch, var(--primary) 40%, var(--border)); } +.save-bar.ok { border-color: color-mix(in oklch, var(--success) 45%, var(--border)); } +.gw-card ... /* و موارد مشابه */ +``` + +## وظایف + +### ۱. fallback هگز sRGB برای متغیرهای رنگِ مبتنی بر oklch + +برای هر متغیری که با `oklch()` تعریف شده، یک خط هگز sRGB **قبل** از خط oklch بگذار. مرورگر قدیمی خط oklch را نامعتبر می‌بیند و خط هگز قبلی را نگه می‌دارد؛ مرورگر جدید oklch را استفاده می‌کند. + +الگو (در `:root` روشن): + +```css +:root { + /* primary = تقریب sRGB از brand-h:256 brand-c:0.15 */ + --primary: #5b5ef0; /* fallback */ + --primary: oklch(0.55 var(--brand-c) var(--brand-h)); + --primary-600: #4a4dd6; /* fallback */ + --primary-600: oklch(0.49 var(--brand-c) var(--brand-h)); + --primary-700: #3d40b8; /* fallback */ + --primary-700: oklch(0.43 var(--brand-c) var(--brand-h)); + --primary-soft: #eceafd; /* fallback */ + --primary-soft: oklch(0.95 0.03 var(--brand-h)); + --primary-soft2: #d9d5fb; /* fallback */ + --primary-soft2: oklch(0.90 0.05 var(--brand-h)); + --ring: rgba(91,94,240,.32); /* fallback */ + --ring: color-mix(in oklch, var(--primary) 32%, transparent); +} +``` + +- مقادیر هگز باید چشمی به رنگ oklch نزدیک باشند (با ابزار تبدیل oklch→sRGB بگیر؛ `--brand-h: 256`, `--brand-c: 0.15`). +- همین کار را برای **تم تیره** (`[data-theme="dark"]`) تکرار کن: `--primary`, `--primary-600/700`, و همه `*-soft`/`*-bg` که با color-mix ساخته شده‌اند، هرکدام یک هگز fallback قبل از خط color-mix بگیرند (رنگ تیره مناسب سطح تیره). + +### ۲. fallback برای color-mix در قوانین inline + +هرجا `color-mix()` مستقیم داخل یک قانون استفاده شده (نه در تعریف متغیر)، یک خط رنگ ساده **قبل** از آن بگذار: + +```css +.appt-status.status-green { + border-color: rgba(21,163,90,.25); /* fallback */ + border-color: color-mix(in srgb, var(--success) 25%, transparent); +} +.toggle-row.on { + border-color: var(--border-2); /* fallback */ + border-color: color-mix(in oklch, var(--primary) 40%, var(--border)); +} +.save-bar.ok { + border-color: var(--success); /* fallback */ + border-color: color-mix(in oklch, var(--success) 45%, var(--border)); +} +``` + +- کل ۳۰ مورد `color-mix` را پیدا کن (`grep -n "color-mix" assets/admin/styles.css`) و برای هرکدام fallback مناسب اضافه کن. +- `color-mix(in srgb, ...)` هم روی iOS < 16.2 خراب است؛ پس این‌ها هم باید fallback بگیرند. + +### ۳. تصمیم درباره Tailwind v4 + +Tailwind v4 فقط Safari 16.4+ را هدف می‌گیرد. بررسی کن پنل چقدر به utilityهای Tailwind وابسته است (به‌نظر کم — بیشتر استایل‌ها inline یا کلاس‌های design-system سفارشی‌اند: `grep -rho 'className="[^"]*"' assets/admin | grep -oE '(flex|grid|text-|bg-|p-[0-9]|gap-|rounded)'`). + +- اگر وابستگی کم بود: کافی است وظیفه ۱ و ۲ انجام شود؛ مشکل اصلی رنگ‌هاست. +- اگر جایی از رنگ‌های Tailwind (`bg-*`, `text-*`) استفاده شده که oklch تولید می‌کنند و روی iOS قدیمی خرابند، همان‌ها را با کلاس design-system سفارشی (که حالا fallback دارد) جایگزین کن. +- در فایل پرامپت خروجی، حداقل نسخهٔ پشتیبانی‌شده را مستند کن. + +### ۴. تست + +- با Safari دسکتاپ: Develop → Enter Responsive Design Mode → iPhone 8 و نسخه‌ی WebKit قدیمی؛ یا BrowserStack با iOS 15.x. +- چک کن: رنگ primary دکمه‌ها، پس‌زمینه کارت‌ها، بوردرها، تم تیره، chipهای وضعیت، صفحه `/admin/settings` (toggleها و gw-cardها). +- مطمئن شو روی مرورگر جدید هیچ تغییری در ظاهر ایجاد نشده (fallback فقط روی قدیمی فعال می‌شود). + +## نکات مهم + +- **ترتیب اعلان‌ها حیاتی است:** خط fallback باید *قبل* از خط مدرن بیاید. CSS اعلان نامعتبر را دور می‌ریزد و آخرین اعلانِ معتبر را نگه می‌دارد. +- تغییر فقط در `assets/admin/styles.css` (و در صورت نیاز جزئی در twig برای `theme-color`). backend/API دست نخورد → نیاز به migration یا آپدیت `docs/api/` نیست. +- بعد از تغییر CSS: `ddev exec yarn dev` بزن و کامپایل موفق را تأیید کن (خطای شناخته‌شدهٔ `lightningcss.linux-arm64-gnu` روی ddev بی‌ربط است). +- مراقب باش fallbackها با تم تیره تداخل نکنند؛ `[data-theme="dark"]` مقادیر خودش را دارد و باید fallback تیره بگیرد نه روشن. +- viewport در twig درست است (`width=device-width, initial-scale=1`) — دست نزن. diff --git a/assets/admin/styles.css b/assets/admin/styles.css index 39304296..f00b921c 100644 --- a/assets/admin/styles.css +++ b/assets/admin/styles.css @@ -27,11 +27,12 @@ --text: #0f1b2e; --text-2: #56657c; --text-3: #8a98ad; - --primary: oklch(0.55 var(--brand-c) var(--brand-h)); - --primary-600: oklch(0.49 var(--brand-c) var(--brand-h)); - --primary-700: oklch(0.43 var(--brand-c) var(--brand-h)); - --primary-soft: oklch(0.95 0.03 var(--brand-h)); - --primary-soft2: oklch(0.90 0.05 var(--brand-h)); + /* مقادیر sRGB پایه (fallback WebKit قدیمی iPhone 8)؛ نسخه oklch در @supports پایین فایل */ + --primary: #5457dd; + --primary-600: #464ac9; + --primary-700: #3b3eae; + --primary-soft: #ecedfb; + --primary-soft2: #d9dbf6; --on-primary: #ffffff; --success: #15a35a; --success-bg: #e6f6ed; @@ -52,7 +53,7 @@ --stat-violet-bg: rgba(85,89,206,0.08); --stat-violet-fg: #5559CE; --stat-green-bg: rgba(0,157,121,0.10); --stat-green-fg: #009D79; --stat-pink-bg: rgba(241,119,50,0.10); --stat-pink-fg: #F17732; - --ring: color-mix(in oklch, var(--primary) 32%, transparent); + --ring: rgba(84,87,221,.32); --shadow-sm: 0 1px 2px rgba(15,27,46,.06), 0 1px 3px rgba(15,27,46,.05); --shadow: 0 2px 6px rgba(15,27,46,.06), 0 8px 24px rgba(15,27,46,.06); --shadow-lg: 0 12px 32px rgba(15,27,46,.12), 0 4px 10px rgba(15,27,46,.06); @@ -82,29 +83,61 @@ --text: #e9eef7; --text-2: #9eb0c6; --text-3: #67788e; - --primary: oklch(0.66 var(--brand-c) var(--brand-h)); - --primary-600: oklch(0.60 var(--brand-c) var(--brand-h)); - --primary-700: oklch(0.54 var(--brand-c) var(--brand-h)); - --primary-soft: color-mix(in oklch, var(--primary) 16%, var(--surface)); - --primary-soft2: color-mix(in oklch, var(--primary) 26%, var(--surface)); + /* مقادیر sRGB پایه (fallback WebKit قدیمی)؛ نسخه oklch/color-mix در @supports پایین فایل */ + --primary: #7a7cf1; + --primary-600: #686ae6; + --primary-700: #565ad9; + --primary-soft: #222a49; + --primary-soft2: #2c335d; --on-primary: #07101f; - --success-bg: color-mix(in oklch, var(--success) 18%, var(--surface)); - --warning-bg: color-mix(in oklch, var(--warning) 18%, var(--surface)); - --danger-bg: color-mix(in oklch, var(--danger) 18%, var(--surface)); - --info-bg: color-mix(in oklch, var(--info) 18%, var(--surface)); - --violet-bg: color-mix(in oklch, var(--violet) 20%, var(--surface)); + --success-bg: #123332; + --warning-bg: #352e23; + --danger-bg: #36202f; + --info-bg: #162d48; + --violet-bg: #262751; --accent: #f0763d; --accent-600: #e0651f; - --accent-bg: color-mix(in oklch, var(--accent) 18%, var(--surface)); - --stat-amber-bg: color-mix(in oklch, var(--warning) 16%, var(--surface)); --stat-amber-fg: var(--warning); - --stat-violet-bg: color-mix(in oklch, var(--violet) 18%, var(--surface)); --stat-violet-fg: var(--violet); - --stat-green-bg: color-mix(in oklch, var(--success) 16%, var(--surface)); --stat-green-fg: var(--success); - --stat-pink-bg: color-mix(in oklch, var(--accent) 16%, var(--surface)); --stat-pink-fg: var(--accent); + --accent-bg: #392b2d; + --stat-amber-bg: #312c24; --stat-amber-fg: var(--warning); + --stat-violet-bg: #24264d; --stat-violet-fg: var(--violet); + --stat-green-bg: #123031; --stat-green-fg: var(--success); + --stat-pink-bg: #35292c; --stat-pink-fg: var(--accent); --shadow-sm: 0 1px 2px rgba(0,0,0,.4); --shadow: 0 2px 8px rgba(0,0,0,.4), 0 12px 30px rgba(0,0,0,.35); --shadow-lg: 0 18px 44px rgba(0,0,0,.55); } +/* ── رنگ‌های مدرن (فقط مرورگرهای با پشتیبانی oklch/color-mix) ────── + iPhone 8 و WebKit قدیمی این بلوک را نادیده می‌گیرند و مقادیر sRGB بالا را + نگه می‌دارند؛ مرورگر مدرن این نسخه‌های oklch را استفاده می‌کند (بدون تغییر ظاهر). */ +@supports (color: color-mix(in oklch, red, blue)) { + :root { + --primary: oklch(0.55 var(--brand-c) var(--brand-h)); + --primary-600: oklch(0.49 var(--brand-c) var(--brand-h)); + --primary-700: oklch(0.43 var(--brand-c) var(--brand-h)); + --primary-soft: oklch(0.95 0.03 var(--brand-h)); + --primary-soft2: oklch(0.90 0.05 var(--brand-h)); + --ring: color-mix(in oklch, var(--primary) 32%, transparent); + } + [data-theme="dark"] { + --primary: oklch(0.66 var(--brand-c) var(--brand-h)); + --primary-600: oklch(0.60 var(--brand-c) var(--brand-h)); + --primary-700: oklch(0.54 var(--brand-c) var(--brand-h)); + --primary-soft: color-mix(in oklch, var(--primary) 16%, var(--surface)); + --primary-soft2: color-mix(in oklch, var(--primary) 26%, var(--surface)); + --success-bg: color-mix(in oklch, var(--success) 18%, var(--surface)); + --warning-bg: color-mix(in oklch, var(--warning) 18%, var(--surface)); + --danger-bg: color-mix(in oklch, var(--danger) 18%, var(--surface)); + --info-bg: color-mix(in oklch, var(--info) 18%, var(--surface)); + --violet-bg: color-mix(in oklch, var(--violet) 20%, var(--surface)); + --accent-bg: color-mix(in oklch, var(--accent) 18%, var(--surface)); + --stat-amber-bg: color-mix(in oklch, var(--warning) 16%, var(--surface)); + --stat-violet-bg: color-mix(in oklch, var(--violet) 18%, var(--surface)); + --stat-green-bg: color-mix(in oklch, var(--success) 16%, var(--surface)); + --stat-pink-bg: color-mix(in oklch, var(--accent) 16%, var(--surface)); + } +} + /* ── Base ─────────────────────────────────────────────────────── */ *, *::before, *::after { font-family: var(--font-sans); box-sizing: border-box; } html { scroll-behavior: smooth; } @@ -366,6 +399,7 @@ body { height: var(--topbar-h); flex: none; position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 12px; padding: 0 var(--gap); + background: var(--bg); /* fallback WebKit قدیمی */ background: color-mix(in srgb, var(--bg) 85%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); @@ -466,11 +500,11 @@ body { white-space: nowrap; border: 1.5px solid transparent; letter-spacing: 0.01em; } .appt-status-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex-shrink: 0; } -.appt-status.status-green { color: var(--success); background: var(--success-bg); border-color: color-mix(in srgb, var(--success) 25%, transparent); } -.appt-status.status-amber { color: var(--warning); background: var(--warning-bg); border-color: color-mix(in srgb, var(--warning) 25%, transparent); } -.appt-status.status-red { color: var(--danger); background: var(--danger-bg); border-color: color-mix(in srgb, var(--danger) 25%, transparent); } -.appt-status.status-blue { color: var(--info); background: var(--info-bg); border-color: color-mix(in srgb, var(--info) 25%, transparent); } -.appt-status.status-violet { color: var(--violet); background: var(--violet-bg); border-color: color-mix(in srgb, var(--violet) 25%, transparent); } +.appt-status.status-green { color: var(--success); background: var(--success-bg); border-color: rgba(21,163,90,.25); border-color: color-mix(in srgb, var(--success) 25%, transparent); } +.appt-status.status-amber { color: var(--warning); background: var(--warning-bg); border-color: rgba(217,138,9,.25); border-color: color-mix(in srgb, var(--warning) 25%, transparent); } +.appt-status.status-red { color: var(--danger); background: var(--danger-bg); border-color: rgba(224,57,74,.25); border-color: color-mix(in srgb, var(--danger) 25%, transparent); } +.appt-status.status-blue { color: var(--info); background: var(--info-bg); border-color: rgba(43,134,216,.25); border-color: color-mix(in srgb, var(--info) 25%, transparent); } +.appt-status.status-violet { color: var(--violet); background: var(--violet-bg); border-color: rgba(124,92,240,.25); border-color: color-mix(in srgb, var(--violet) 25%, transparent); } .appt-status.status-gray { color: var(--text-2); background: var(--surface-3); border-color: var(--border); } /* field-label utility */ @@ -492,7 +526,7 @@ body { .btn.soft:hover { background: var(--primary-soft2); } .btn.danger { background: var(--danger-bg); color: var(--danger); border-color: transparent; } .btn.danger:hover { filter: brightness(.97); } -.btn.accent { background: var(--accent); color: #fff; box-shadow: 0 4px 14px color-mix(in oklch, var(--accent) 35%, transparent); } +.btn.accent { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(240,104,42,.35); box-shadow: 0 4px 14px color-mix(in oklch, var(--accent) 35%, transparent); } .btn.accent:hover { background: var(--accent-600); } .btn.outline { background: transparent; border-color: var(--primary); color: var(--primary); } .btn.outline:hover { background: var(--primary-soft); } @@ -751,7 +785,7 @@ table.t tbody tr:last-child td { border-bottom: none; } border: 1px solid var(--border); background: var(--surface-2); transition: .15s; } .toggle-row + .toggle-row { margin-top: 10px; } -.toggle-row.on { border-color: color-mix(in oklch, var(--primary) 40%, var(--border)); background: var(--primary-soft); } +.toggle-row.on { border-color: var(--border-2); border-color: color-mix(in oklch, var(--primary) 40%, var(--border)); background: var(--primary-soft); } .toggle-row.warn.on { border-color: var(--warning); background: var(--warning-bg); } .toggle-row .tr-title { font-size: 13.5px; font-weight: 600; color: var(--text); } .toggle-row .tr-desc { font-size: 12px; color: var(--text-3); margin-top: 3px; line-height: 1.6; } @@ -776,7 +810,7 @@ table.t tbody tr:last-child td { border-bottom: none; } } .save-bar .sb-msg { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text-2); } .save-bar .sb-actions { display: flex; gap: 10px; } -.save-bar.ok { border-color: color-mix(in oklch, var(--success) 45%, var(--border)); } +.save-bar.ok { border-color: var(--success); border-color: color-mix(in oklch, var(--success) 45%, var(--border)); } @media (max-width: 900px) { .settings-layout { grid-template-columns: 1fr; } diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json index d8909f93..5bcdd768 100644 --- a/graphify-out/.graphify_labels.json +++ b/graphify-out/.graphify_labels.json @@ -653,8 +653,6 @@ "651": "Community 651", "652": "Community 652", "653": "Community 653", - "654": "Community 654", - "655": "Community 655", "656": "Community 656", "657": "Community 657", "658": "Community 658", @@ -663,8 +661,6 @@ "661": "Community 661", "662": "Community 662", "663": "Community 663", - "664": "Community 664", - "665": "Community 665", "666": "Community 666", "667": "Community 667", "668": "Community 668", @@ -672,16 +668,7 @@ "670": "Community 670", "671": "Community 671", "672": "Community 672", - "673": "Community 673", - "674": "Community 674", "675": "Community 675", "676": "Community 676", - "677": "Community 677", - "678": "Community 678", - "679": "Community 679", - "680": "Community 680", - "681": "Community 681", - "682": "Community 682", - "683": "Community 683", - "684": "Community 684" + "679": "Community 679" } diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 794dba60..030e6161 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,16 +1,16 @@ # Graph Report - clinicpro (2026-07-02) ## Corpus Check -- 673 files · ~472,927 words +- 674 files · ~473,936 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 8473 nodes · 11675 edges · 685 communities (552 shown, 133 thin omitted) +- 8487 nodes · 11688 edges · 672 communities (543 shown, 129 thin omitted) - Extraction: 98% EXTRACTED · 2% INFERRED · 0% AMBIGUOUS · INFERRED: 265 edges (avg confidence: 0.8) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `949fddc5` +- Built from commit: `6d594822` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). @@ -655,8 +655,6 @@ - [[_COMMUNITY_Community 651|Community 651]] - [[_COMMUNITY_Community 652|Community 652]] - [[_COMMUNITY_Community 653|Community 653]] -- [[_COMMUNITY_Community 654|Community 654]] -- [[_COMMUNITY_Community 655|Community 655]] - [[_COMMUNITY_Community 656|Community 656]] - [[_COMMUNITY_Community 657|Community 657]] - [[_COMMUNITY_Community 658|Community 658]] @@ -665,26 +663,15 @@ - [[_COMMUNITY_Community 661|Community 661]] - [[_COMMUNITY_Community 662|Community 662]] - [[_COMMUNITY_Community 663|Community 663]] -- [[_COMMUNITY_Community 664|Community 664]] -- [[_COMMUNITY_Community 665|Community 665]] - [[_COMMUNITY_Community 666|Community 666]] - [[_COMMUNITY_Community 667|Community 667]] - [[_COMMUNITY_Community 668|Community 668]] - [[_COMMUNITY_Community 669|Community 669]] - [[_COMMUNITY_Community 671|Community 671]] - [[_COMMUNITY_Community 672|Community 672]] -- [[_COMMUNITY_Community 673|Community 673]] -- [[_COMMUNITY_Community 674|Community 674]] - [[_COMMUNITY_Community 675|Community 675]] - [[_COMMUNITY_Community 676|Community 676]] -- [[_COMMUNITY_Community 677|Community 677]] -- [[_COMMUNITY_Community 678|Community 678]] - [[_COMMUNITY_Community 679|Community 679]] -- [[_COMMUNITY_Community 680|Community 680]] -- [[_COMMUNITY_Community 681|Community 681]] -- [[_COMMUNITY_Community 682|Community 682]] -- [[_COMMUNITY_Community 683|Community 683]] -- [[_COMMUNITY_Community 684|Community 684]] ## God Nodes (most connected - your core abstractions) 1. `BaseController` - 76 edges @@ -701,55 +688,55 @@ ## Surprising Connections (you probably didn't know these) - `ServiceTariffModal()` --calls--> `formatNumber()` [EXTRACTED] assets/admin/components/ServiceTariffModal.tsx → assets/admin/lib/utils.ts -- `PersianDatePicker()` --calls--> `formatDate()` [EXTRACTED] - assets/admin/components/ui/PersianDatePicker.tsx → assets/admin/lib/utils.ts +- `Pagination()` --calls--> `formatNumber()` [EXTRACTED] + assets/admin/components/ui/Pagination.tsx → assets/admin/lib/utils.ts +- `MyFinancialPage()` --calls--> `formatRial()` [EXTRACTED] + assets/admin/pages/MyFinancialPage.tsx → assets/admin/lib/utils.ts +- `SettlementsPage()` --calls--> `formatRial()` [EXTRACTED] + assets/admin/pages/SettlementsPage.tsx → assets/admin/lib/utils.ts - `LogsPage()` --calls--> `formatDateTime()` [EXTRACTED] assets/admin/pages/LogsPage.tsx → assets/admin/lib/utils.ts -- `NewAppointmentModal()` --calls--> `useAuthStore` [EXTRACTED] - assets/admin/pages/AppointmentsPage.tsx → assets/admin/stores/authStore.ts -- `LogoUploadField()` --calls--> `useAuthStore` [EXTRACTED] - assets/admin/pages/CategoriesPage.tsx → assets/admin/stores/authStore.ts ## Import Cycles - None detected. -## Communities (685 total, 133 thin omitted) +## Communities (672 total, 129 thin omitted) ### Community 0 - "Community 0" Cohesion: 0.05 -Nodes (42): ALLOWED_ROLES, PrivateRoute(), PublicRoute(), RoleRoute(), queryClient, toastStyle, AddForm, addSchema (+34 more) +Nodes (48): ALLOWED_ROLES, PrivateRoute(), PublicRoute(), RoleRoute(), queryClient, toastStyle, get, BeforeInstallPromptEvent (+40 more) ### Community 1 - "Community 1" Cohesion: 0.03 Nodes (41): AddressData, AddrForm, addrSchema, AVATAR_COLORS, BookingMeta, CityOpt, DateOverrideData, DEFAULT_BOOKING_META (+33 more) ### Community 2 - "Community 2" -Cohesion: 0.08 -Nodes (23): get, api, getToken(), refreshOnce(), request(), FormData, schema, post (+15 more) +Cohesion: 0.07 +Nodes (27): usePaymentConfig(), emptyFeatures(), FEATURE_KEYS, FEATURE_LABELS, PeriodForm, periodSchema, PLAN_DISPLAY, PlanForm (+19 more) ### Community 3 - "Community 3" -Cohesion: 0.06 -Nodes (40): ApiResponse, PaginatedResponse, formatDate(), STATUS_FILTERS, FILTERS, Breakdown, SOURCE_LABEL, Summary (+32 more) +Cohesion: 0.04 +Nodes (71): PaginatedResponse, AddForm, addSchema, ClinicsPage(), HUES_LIST, FILTERS, Breakdown, SOURCE_LABEL (+63 more) ### Community 4 - "Community 4" -Cohesion: 0.08 -Nodes (5): Doctor, Collection, self, User, WeeklySchedule +Cohesion: 0.06 +Nodes (8): DoctorService, Doctor, DoctorServiceRepository, Collection, self, User, WeeklySchedule, ManagerRegistry ### Community 5 - "Community 5" Cohesion: 0.07 Nodes (3): UserProfile, self, User ### Community 6 - "Community 6" -Cohesion: 0.12 -Nodes (12): SettlementController, SettlementRepository, WalletTransactionRepository, Settlement, JsonResponse, Request, User, ManagerRegistry (+4 more) +Cohesion: 0.09 +Nodes (15): SettlementController, SettlementRepository, WalletTransactionRepository, CommissionService, Settlement, JsonResponse, Request, User (+7 more) ### Community 7 - "Community 7" Cohesion: 0.07 Nodes (5): Clinic, Collection, Doctor, self, User ### Community 8 - "Community 8" -Cohesion: 0.08 -Nodes (27): useSubscription(), AdminLayout(), avatarBg(), buildSections(), HUES, Props, ROLE_LABELS, Section (+19 more) +Cohesion: 0.07 +Nodes (27): Contract, InsuranceOption, KIND_LABEL, AdminLayout(), Topbar(), DEGREE_OPTIONS, DoctorFormPage(), FormValues (+19 more) ### Community 9 - "Community 9" Cohesion: 0.04 @@ -768,20 +755,20 @@ Cohesion: 0.05 Nodes (44): Clinic Doctor Invitation API, DELETE `/api/v1/admin/clinic/invitation/{invUuid}`, Errors, Errors, Errors, Errors, Errors, Errors (+36 more) ### Community 13 - "Community 13" -Cohesion: 0.04 -Nodes (47): FreeVisitPrice(), Pricing, PaymentConfig, PaymentGatewayInfo, usePaymentConfig(), formatRial(), emptyFeatures(), FEATURE_KEYS (+39 more) +Cohesion: 0.05 +Nodes (35): PaymentConfig, PaymentGatewayInfo, api, ApiError, ApiResponse, getToken(), refreshOnce(), request() (+27 more) ### Community 14 - "Community 14" -Cohesion: 0.10 -Nodes (12): AppointmentSettingsController, DateOverride, Holiday, DateOverrideRepository, HolidayRepository, JsonResponse, Request, User (+4 more) +Cohesion: 0.15 +Nodes (8): AppointmentSettingsController, Holiday, HolidayRepository, JsonResponse, Request, User, Doctor, ManagerRegistry ### Community 15 - "Community 15" -Cohesion: 0.13 -Nodes (10): PaymentController, MockGateway, JsonResponse, Payment, PaymentGatewayInterface, Request, Response, User (+2 more) +Cohesion: 0.21 +Nodes (6): PaymentController, JsonResponse, Payment, Request, Response, User ### Community 16 - "Community 16" Cohesion: 0.06 -Nodes (9): PatientSession, SmsWallet, LogPruneService, AppointmentExpiryService, Appointment, Collection, PatientRecord, self (+1 more) +Nodes (8): PatientSession, SmsWallet, AppLog, Appointment, Collection, PatientRecord, self, SessionService ### Community 17 - "Community 17" Cohesion: 0.05 @@ -793,19 +780,19 @@ Nodes (38): API, API, API, API, API, Route, Route, Route (+30 more) ### Community 19 - "Community 19" Cohesion: 0.06 -Nodes (37): formatDateTime(), ALL_STATUSES, AppointmentDetailPage(), SessionRow(), PaymentDetailPage(), SmsPage(), STATUS_LOG_META, Tab (+29 more) +Nodes (21): CityForm, citySchema, ImportError, InsuranceForm, insuranceSchema, LogoUploadField(), ProvinceForm, provinceSchema (+13 more) ### Community 20 - "Community 20" -Cohesion: 0.14 -Nodes (3): AdminApiController, JsonResponse, Request +Cohesion: 0.05 +Nodes (13): AdminApiController, RepresentationActionController, DateTimeInterface, InputValidator, JalaliDateService, SlotCalculatorService, JsonResponse, Request (+5 more) ### Community 21 - "Community 21" -Cohesion: 0.05 -Nodes (35): formatNumber(), ClinicDetailPage(), AdminCharts, AdminDashboard(), AdminRecent, AdminStats, APPT_CLS, APPT_COLOR (+27 more) +Cohesion: 0.04 +Nodes (46): formatNumber(), ClinicAddress, ClinicDetailPage(), ClinicDoctorItem, ClinicInvitation, EditForm, editSchema, HUES_LIST (+38 more) ### Community 22 - "Community 22" -Cohesion: 0.15 -Nodes (9): RatingController, Like, LikeRepository, JsonResponse, Request, User, Comment, ManagerRegistry (+1 more) +Cohesion: 0.11 +Nodes (14): RatingController, Like, Rate, LikeRepository, RateRepository, JsonResponse, Request, User (+6 more) ### Community 23 - "Community 23" Cohesion: 0.05 @@ -824,8 +811,8 @@ Cohesion: 0.13 Nodes (8): InsuranceController, EntityInsurancePricing, EntityInsurancePricingRepository, TenantInsuranceCleanupService, JsonResponse, Request, User, ManagerRegistry ### Community 27 - "Community 27" -Cohesion: 0.06 -Nodes (35): 55. 🟢 `GET` all tag, 56. 🟢 `GET` supplementary_insurance, 57. 🟢 `GET` categories list, 58. 🟢 `GET` all state, 59. 🟢 `GET` all city, 60. 🟢 `GET` all specially doctor, 62. 🟡 `PATCH` patch, 63. 🔴 `DELETE` DELETE (+27 more) +Cohesion: 0.05 +Nodes (40): 55. 🟢 `GET` all tag, 56. 🟢 `GET` supplementary_insurance, 57. 🟢 `GET` categories list, 58. 🟢 `GET` all state, 59. 🟢 `GET` all city, 60. 🟢 `GET` all specially doctor, 61. 🔵 `POST` post, 62. 🟡 `PATCH` patch (+32 more) ### Community 28 - "Community 28" Cohesion: 0.09 @@ -880,8 +867,8 @@ Cohesion: 0.09 Nodes (4): User, PasswordAuthenticatedUserInterface, self, UserInterface ### Community 41 - "Community 41" -Cohesion: 0.06 -Nodes (24): CityForm, citySchema, ImportError, InsuranceForm, insuranceSchema, LogoUploadField(), ProvinceForm, provinceSchema (+16 more) +Cohesion: 0.21 +Nodes (5): DateOverrideOwnershipTest, DateOverride, DateOverrideRepository, Doctor, ManagerRegistry ### Community 42 - "Community 42" Cohesion: 0.07 @@ -928,8 +915,8 @@ Cohesion: 0.07 Nodes (26): الزامات UI, باگ‌فیکس صفحه نوبت‌ها, باگ ۱ — کرش تقویم, باگ ۲ — روز هفته در DateNavigator, باگ ۳ — پیام «slot نیست», باگ ۴ — نوبت جدید: نام اجباری + find-or-create patient, باگ ۵ — patient_mobile نشان می‌دهد موبایل پزشک, باگ ۶ — نوبت‌های رزرو شده در نمایش زمانبندی (+18 more) ### Community 53 - "Community 53" -Cohesion: 0.08 -Nodes (16): AppLogRepository, ClaimItemRepository, InvoiceItemRepository, PreRegistrationRepository, SessionServiceRepository, SmsSettingsRepository, ServiceEntityRepository, SmsSettings (+8 more) +Cohesion: 0.10 +Nodes (13): AppLogRepository, ClaimItemRepository, DoctorInsuranceRepository, PreRegistrationRepository, SessionServiceRepository, ServiceEntityRepository, ManagerRegistry, ManagerRegistry (+5 more) ### Community 54 - "Community 54" Cohesion: 0.10 @@ -948,8 +935,8 @@ Cohesion: 0.08 Nodes (24): Blog API, DELETE `/api/v1/blog/{uuid}`, Errors, Errors, Errors, Errors, Errors, GET `/api/v1/blog/{slug}` (+16 more) ### Community 58 - "Community 58" -Cohesion: 0.15 -Nodes (8): Blog, BlogController, BlogRepository, JsonResponse, Request, User, ManagerRegistry, QueryBuilder +Cohesion: 0.28 +Nodes (4): Blog, BlogRepository, ManagerRegistry, QueryBuilder ### Community 59 - "Community 59" Cohesion: 0.22 @@ -992,12 +979,12 @@ Cohesion: 0.08 Nodes (23): Access Token — همیشه در هدر Authorization, Endpoint ها, GET /oauth/userinfo, GET /session/token — CSRF, POST /api/v1/user/login, POST /oauth/logout, POST /oauth/token/refresh, Rate Limiting (+15 more) ### Community 70 - "Community 70" -Cohesion: 0.31 -Nodes (6): ErrorCodes, ClinicServiceController, JsonResponse, Request, ServiceSection, User +Cohesion: 0.15 +Nodes (12): رفع بهم‌ریختگی کامل پنل ادمین روی iPhone 8 (Safari/Chrome iOS), زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+4 more) ### Community 71 - "Community 71" -Cohesion: 0.24 -Nodes (5): RepresentationActionController, JsonResponse, Representation, Request, User +Cohesion: 0.08 +Nodes (14): Claim, ClaimItem, DebtRow, InsuranceOption, KIND_LABEL, STATUS_FILTERS, STATUS_META, EMPTY (+6 more) ### Community 72 - "Community 72" Cohesion: 0.09 @@ -1016,8 +1003,8 @@ Cohesion: 0.16 Nodes (5): DoctorSecretary, Clinic, Doctor, self, User ### Community 77 - "Community 77" -Cohesion: 0.07 -Nodes (21): Contract, InsuranceOption, KIND_LABEL, Claim, ClaimItem, DebtRow, InsuranceOption, KIND_LABEL (+13 more) +Cohesion: 0.20 +Nodes (8): AdminUser, ChangeRoleModal(), getPrimaryRole(), HUES_LIST, ROLE_META, ROLE_TABS, RoleBadge(), UserStats ### Community 78 - "Community 78" Cohesion: 0.12 @@ -1041,11 +1028,11 @@ Nodes (20): 10. مدیریت نظرات (Comment Moderation), 11. مدیریت ### Community 85 - "Community 85" Cohesion: 0.07 -Nodes (29): devDependencies, @babel/core, @babel/preset-env, @babel/preset-react, @babel/preset-typescript, core-js, @hotwired/stimulus, jsdom (+21 more) +Nodes (30): devDependencies, @babel/core, @babel/preset-env, @babel/preset-react, @babel/preset-typescript, core-js, @csstools/postcss-oklab-function, @hotwired/stimulus (+22 more) ### Community 86 - "Community 86" Cohesion: 0.07 -Nodes (13): AppointmentExpiryServiceTest, DateOverrideOwnershipTest, LowTierFixesTest, SendCodeMobileRateLimitTest, ClaimsListPaginationTest, ServiceItemStaffOwnershipTest, KernelBrowser, CommentPaginationTest (+5 more) +Nodes (13): AppointmentExpiryServiceTest, LowTierFixesTest, SendCodeMobileRateLimitTest, ClaimsListPaginationTest, ServiceItemStaffOwnershipTest, KernelBrowser, CommentPaginationTest, SecretaryListNPlusOneTest (+5 more) ### Community 87 - "Community 87" Cohesion: 0.10 @@ -1068,7 +1055,7 @@ Cohesion: 0.10 Nodes (20): DELETE `/api/v1/admin/users/{uuid}`, Errors, Errors, GET `/api/v1/admin/users`, GET `/api/v1/admin/users/stats`, GET `/api/v1/admin/users/{uuid}`, POST `/api/v1/admin/users/{uuid}/status`, PUT `/api/v1/admin/users/{uuid}` (+12 more) ### Community 92 - "Community 92" -Cohesion: 0.10 +Cohesion: 0.09 Nodes (21): Bulk import / export, DELETE `/api/v1/admin/doctor-service/{id}`, Doctor Service API, Errors, Errors, Errors, Errors, GET `/api/v1/admin/doctor-services` (+13 more) ### Community 93 - "Community 93" @@ -1112,8 +1099,8 @@ Cohesion: 0.10 Nodes (20): Bulk import / export, DELETE `/api/v1/admin/tag/{id}`, Errors, Errors, Errors, Errors, GET `/api/v1/admin/tags`, GET `/api/v1/tags` (+12 more) ### Community 103 - "Community 103" -Cohesion: 0.35 -Nodes (5): PatientController, JsonResponse, PatientSession, Request, User +Cohesion: 0.33 +Nodes (4): BlogController, JsonResponse, Request, User ### Community 104 - "Community 104" Cohesion: 0.18 @@ -1132,8 +1119,8 @@ Cohesion: 0.32 Nodes (6): AppointmentController, Appointment, Doctor, JsonResponse, Request, User ### Community 108 - "Community 108" -Cohesion: 0.17 -Nodes (8): BaseController, CategoryController, SiteConfigController, JsonResponse, JsonResponse, Request, User, JsonResponse +Cohesion: 0.18 +Nodes (7): BaseController, CategoryController, SmsMessageController, JsonResponse, JsonResponse, JsonResponse, Request ### Community 109 - "Community 109" Cohesion: 0.29 @@ -1188,8 +1175,8 @@ Cohesion: 0.26 Nodes (4): LocationController, City, JsonResponse, Request ### Community 122 - "Community 122" -Cohesion: 0.26 -Nodes (4): SubscriptionController, JsonResponse, Request, User +Cohesion: 0.06 +Nodes (27): DashboardController, HealthController, MyAppointmentsController, RepresentationController, SubscriptionController, EntityManagerInterface, ClinicInvitationService, Doctor (+19 more) ### Community 123 - "Community 123" Cohesion: 0.12 @@ -1363,6 +1350,10 @@ Nodes (14): select listها, select بیمه در فرم مراجعه, تعدا Cohesion: 0.10 Nodes (20): api.ir (استعلام هویت — Shahkar / IbanMatch), اتصال به دیتابیس‌های مستقل (الزامی), اسرار (الزامی — قبل از اولین دیپلوی), امنیت و منابع, بررسی سلامت, دامنه‌ها و CORS, دیپلوی‌های بعدی, راهنمای دیپلوی ClinicPro (Coolify + Docker Compose) (+12 more) +### Community 169 - "Community 169" +Cohesion: 0.31 +Nodes (6): ErrorCodes, ClinicServiceController, JsonResponse, Request, ServiceSection, User + ### Community 170 - "Community 170" Cohesion: 0.13 Nodes (14): ایندکس‌ها, جدول: clinics, جدول: doctor_addresses, جدول: doctor_cities (ManyToMany pivot), جدول: doctor_secretaries, جدول: doctor_services (ManyToMany pivot), جدول: doctor_specialties (ManyToMany pivot), جدول: doctor_states (ManyToMany pivot) (+6 more) @@ -1385,7 +1376,7 @@ Nodes (14): Doctor Management, Errors, Errors, GET `/api/v1/admin/doctors`, GET ### Community 175 - "Community 175" Cohesion: 0.35 -Nodes (5): RepresentationController, JsonResponse, Representation, Request, User +Nodes (5): PatientController, JsonResponse, PatientSession, Request, User ### Community 176 - "Community 176" Cohesion: 0.33 @@ -1484,8 +1475,8 @@ Cohesion: 0.20 Nodes (10): Admin API, Clinic Invitation Management, GET `/api/v1/admin/comments`, GET `/api/v1/admin/rates`, GET /api/v1/admin/settings, PATCH /api/v1/admin/settings, Query Parameters, Query Parameters (+2 more) ### Community 202 - "Community 202" -Cohesion: 0.15 -Nodes (13): DELETE `/api/v1/appointment-settings/holidays/{uuid}`, Errors, GET `/api/v1/appointment-settings/holidays/list/{doctorUuid}`, GET `/api/v1/appointment-settings/holidays/{uuid}`, Holidays, PATCH `/api/v1/appointment-settings/holidays/{uuid}`, POST `/api/v1/appointment-settings/holidays`, Request Body (+5 more) +Cohesion: 0.10 +Nodes (19): Appointment Settings API, Available Locations, DELETE `/api/v1/appointment-settings/holidays/{uuid}`, Errors, Errors, `GET /api/v1/appointment-settings/available-locations/{doctorUuid}`, GET `/api/v1/appointment-settings/holidays/list/{doctorUuid}`, GET `/api/v1/appointment-settings/holidays/{uuid}` (+11 more) ### Community 203 - "Community 203" Cohesion: 0.15 @@ -1496,12 +1487,12 @@ Cohesion: 0.21 Nodes (6): AuthenticationException, ExceptionSubscriber, SecurityHeadersSubscriber, EventSubscriberInterface, ExceptionEvent, ResponseEvent ### Community 205 - "Community 205" -Cohesion: 0.10 -Nodes (16): Command, CancelExpiredAppointmentsCommand, CreateAdminCommand, PruneLogsCommand, SeedCategoriesCommand, SeedSmsMessageTemplatesCommand, InputInterface, OutputInterface (+8 more) +Cohesion: 0.07 +Nodes (20): Command, CancelExpiredAppointmentsCommand, CreateAdminCommand, PruneLogsCommand, SeedCategoriesCommand, SeedSmsMessageTemplatesCommand, SmsMessageTemplateRepository, SmsTextResolver (+12 more) ### Community 206 - "Community 206" -Cohesion: 0.35 -Nodes (6): DashboardController, Clinic, DoctorSecretary, JsonResponse, Request, User +Cohesion: 0.26 +Nodes (3): MellatGateway, PaymentInitResult, PaymentVerifyResult ### Community 207 - "Community 207" Cohesion: 0.15 @@ -1560,20 +1551,20 @@ Cohesion: 0.24 Nodes (5): PaymentRepository, Appointment, ManagerRegistry, Payment, User ### Community 225 - "Community 225" -Cohesion: 0.31 -Nodes (4): ClinicInvitationService, Clinic, ClinicDoctorInvitation, User +Cohesion: 0.30 +Nodes (6): AbstractAuthenticator, Passport, PasswordAuthenticator, Request, Response, TokenInterface ### Community 226 - "Community 226" Cohesion: 0.15 Nodes (12): Callback Mellat, frontend_address, Idempotency, درگاه‌های واقعی پروژه (از کد Drupal), شرط ایجاد پرداخت, قیمت از Config (نه Request), مجوزها, نکات پیاده‌سازی — تسک ۱۵: ماژول پرداخت (+4 more) ### Community 227 - "Community 227" -Cohesion: 0.30 -Nodes (6): AbstractAuthenticator, Passport, PasswordAuthenticator, Request, Response, TokenInterface +Cohesion: 0.36 +Nodes (4): SiteConfigController, JsonResponse, Request, User ### Community 228 - "Community 228" -Cohesion: 0.05 -Nodes (43): Bulk import / export, DELETE `/api/v1/admin/insurance/{id}`, DELETE `/api/v1/billing/tenant-insurances/{uuid}`, DELETE `/api/v1/insurance/{id}`, EntityInsurancePricing — قیمت‌گذاری ویزیت بر اساس بیمه, Errors, Errors, Errors (+35 more) +Cohesion: 0.04 +Nodes (47): Bulk import / export, DELETE `/api/v1/admin/insurance/{id}`, DELETE `/api/v1/billing/tenant-insurances/{uuid}`, DELETE `/api/v1/insurance/{id}`, EntityInsurancePricing — قیمت‌گذاری ویزیت بر اساس بیمه, Errors, Errors, Errors (+39 more) ### Community 229 - "Community 229" Cohesion: 0.15 @@ -1667,6 +1658,10 @@ Nodes (4): SmsLogRepository, OtpService, SmsLog, ManagerRegistry Cohesion: 0.45 Nodes (4): NotificationMobileController, JsonResponse, Request, User +### Community 253 - "Community 253" +Cohesion: 0.36 +Nodes (3): DoctorServiceController, JsonResponse, Request + ### Community 254 - "Community 254" Cohesion: 0.18 Nodes (11): 1. 🔵 `POST` refresh token, 1. احراز هویت (Authentication), 2. 🟢 `GET` X-CSRF-Token, 3. 🟢 `GET` user info 🆕, Request Body, بخش دوم — مستند کامل API, خطاهای عمومی, فهرست مطالب (+3 more) @@ -1744,12 +1739,12 @@ Cohesion: 0.18 Nodes (10): Endpoint های موجود که تغییر می‌کنند, GET /api/v1/admin/dashboard/charts?from=UNIX&to=UNIX, GET /api/v1/dashboard/clinic, GET /api/v1/dashboard/doctor, تسک ۱۶: داشبورد هوشمند — چارت + فیلتر زمانی, توضیح, زمان تخمینی, فیلتر بازه زمانی (+2 more) ### Community 274 - "Community 274" -Cohesion: 0.18 +Cohesion: 0.20 Nodes (5): Authentication, ClinicPro — API Documentation Index, Error Code Reference, Modules, Standard Response Envelope ### Community 275 - "Community 275" -Cohesion: 0.38 -Nodes (5): MyAppointmentsController, Doctor, JsonResponse, Request, User +Cohesion: 0.22 +Nodes (3): AppException, SlotTakenException, RuntimeException ### Community 276 - "Community 276" Cohesion: 0.20 @@ -1844,8 +1839,8 @@ Cohesion: 0.22 Nodes (9): require-dev, phpstan/phpstan, phpstan/phpstan-doctrine, phpstan/phpstan-symfony, phpunit/phpunit, symfony/browser-kit, symfony/css-selector, symfony/debug-bundle (+1 more) ### Community 300 - "Community 300" -Cohesion: 0.19 -Nodes (6): HealthController, PreRegistrationController, EntityManagerInterface, JsonResponse, Request, JsonResponse +Cohesion: 0.42 +Nodes (3): PreRegistrationController, JsonResponse, Request ### Community 301 - "Community 301" Cohesion: 0.17 @@ -1861,7 +1856,7 @@ Nodes (16): آماده‌سازی پروژه ClinicPro برای دیپلوی ر ### Community 304 - "Community 304" Cohesion: 0.22 -Nodes (9): 29. 🟢 `GET` clinic list 🆕, 30. 🟢 `GET` get 🆕, 36. 🟢 `GET` get my rate, 6. کلینیک (Clinic), هدرهای اضافی, پارامترهای Query, پاسخ‌ها, پاسخ‌ها (+1 more) +Nodes (9): 30. 🟢 `GET` get 🆕, 33. 🔵 `POST` image_clinic, 43. 🟢 `GET` get, 6. کلینیک (Clinic), هدرهای اضافی, هدرهای اضافی, پاسخ‌ها, پاسخ‌ها (+1 more) ### Community 306 - "Community 306" Cohesion: 0.07 @@ -1872,8 +1867,8 @@ Cohesion: 0.28 Nodes (3): UserActiveContext, self, User ### Community 308 - "Community 308" -Cohesion: 0.22 -Nodes (3): AppException, SlotTakenException, RuntimeException +Cohesion: 0.43 +Nodes (3): InvoiceItemRepository, InvoiceItem, ManagerRegistry ### Community 309 - "Community 309" Cohesion: 0.22 @@ -1907,10 +1902,6 @@ Nodes (4): SubscriptionPeriodRepository, ManagerRegistry, SubscriptionPeriod, Su Cohesion: 0.36 Nodes (3): SubscriptionPlanRepository, ManagerRegistry, SubscriptionPlan -### Community 317 - "Community 317" -Cohesion: 0.36 -Nodes (3): DoctorServiceController, JsonResponse, Request - ### Community 319 - "Community 319" Cohesion: 0.39 Nodes (3): UserRepository, ManagerRegistry, User @@ -2024,11 +2015,11 @@ Cohesion: 0.43 Nodes (3): SmsWalletRepository, ManagerRegistry, SmsWallet ### Community 351 - "Community 351" -Cohesion: 0.26 -Nodes (3): MellatGateway, PaymentInitResult, PaymentVerifyResult +Cohesion: 0.22 +Nodes (4): MockGateway, PaymentGatewayInterface, PaymentInitResult, PaymentVerifyResult ### Community 352 - "Community 352" -Cohesion: 0.31 +Cohesion: 0.27 Nodes (3): SepGateway, PaymentInitResult, PaymentVerifyResult ### Community 354 - "Community 354" @@ -2103,6 +2094,10 @@ Nodes (7): Authentication, Authorization, Input Validation, Logging Security, Ra Cohesion: 0.15 Nodes (6): UniqueConstraintsTest, FinancialBreakdown, FinancialBreakdownRepository, FinancialBreakdownIntegrityTest, ManagerRegistry, Payment +### Community 372 - "Community 372" +Cohesion: 0.50 +Nodes (4): Errors, PATCH `/api/v1/insurance/{id}`, Request Body, Response `200` + ### Community 374 - "Community 374" Cohesion: 0.29 Nodes (7): API, Entity جدید, Frontend, اپیک ۱ — پرسنل (Staff), توضیح, فایل‌های جدید, نیازمندی‌های کارکردی @@ -2200,48 +2195,44 @@ Cohesion: 0.29 Nodes (4): initiate(), verify(), PaymentInitResult, PaymentVerifyResult ### Community 405 - "Community 405" -Cohesion: 0.47 -Nodes (3): CommissionService, Payment, Representation +Cohesion: 0.48 +Nodes (3): SmsSettingsRepository, SmsSettings, ManagerRegistry ### Community 407 - "Community 407" -Cohesion: 0.36 -Nodes (3): SmsService, SendSmsMessage, SmsProviderInterface +Cohesion: 0.18 +Nodes (4): RanginehProvider, SmsService, SendSmsMessage, SmsProviderInterface ### Community 418 - "Community 418" Cohesion: 0.17 Nodes (11): دیپلوی ClinicPro روی Coolify (Docker Compose), رفع اشکال, مراحل دیپلوی, معماری دیپلوی, نکات عملیاتی, چند دامنه فرانت‌اند (مهم), ۱. ساخت Resource در Coolify, ۲. اختصاص دامنه (+3 more) -### Community 426 - "Community 426" +### Community 421 - "Community 421" Cohesion: 0.23 -Nodes (5): AbstractMigration, Schema, Version20260611084046, Schema, Version20260614181629 - -### Community 430 - "Community 430" -Cohesion: 0.39 -Nodes (3): DoctorService, DoctorServiceRepository, ManagerRegistry +Nodes (5): AbstractMigration, Schema, Version20260609132009, Schema, Version20260610140853 ### Community 439 - "Community 439" -Cohesion: 0.29 -Nodes (6): Appointment Settings API, Available Locations, Errors, `GET /api/v1/appointment-settings/available-locations/{doctorUuid}`, Response `200`, Slot Calculation Logic (Reference) +Cohesion: 0.40 +Nodes (5): 31. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 440 - "Community 440" Cohesion: 0.11 Nodes (18): [F10] راهنمای کهنه در `CLAUDE.md`: endpoint `categorys/{bundle}` منتقل شده, [F11] داشبورد دکتر `GET /api/v1/dashboard/doctor` همیشه 500 (فیلد ناموجود در DQL) — ✅ رفع شد, [F1] phpstan: مقایسهٔ همیشه‌درست در محاسبهٔ estimated SMS — ✅ رفع شد, [F2] تست‌های PHPUnit به API خارجی Kavenegar درخواست واقعی می‌زنند, [F3] دیتابیس تست seed نشده — فقط کاربر ادمین وجود دارد, [F4] اسکریپت seeder `create_test_users.php` وجود ندارد, [F5] ادمین با JWT معتبر به `/api/doc` (Swagger UI) دسترسی ندارد (401), [F6] ناسازگاری کدهای خطا بین دامنه‌ها (+10 more) ### Community 452 - "Community 452" -Cohesion: 0.06 -Nodes (31): cn(), iranMobileOptionalSchema, iranMobileSchema, isValidIranMobile(), maskMobile(), sanitizeMobileInput(), toDate(), toEnglishDigits() (+23 more) +Cohesion: 0.07 +Nodes (38): FreeVisitPrice(), Pricing, cn(), formatDate(), formatDateTime(), formatRial(), iranMobileOptionalSchema, iranMobileSchema (+30 more) ### Community 456 - "Community 456" -Cohesion: 0.38 -Nodes (5): Rate, RateRepository, Doctor, ManagerRegistry, User +Cohesion: 0.40 +Nodes (5): 32. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 458 - "Community 458" Cohesion: 0.47 Nodes (6): formatPersianDate(), gToJ(), jFirstDayOfWeek(), PersianDateInput(), todayGregorian(), toPersianNums() ### Community 459 - "Community 459" -Cohesion: 0.40 -Nodes (5): API موجود (نیاز به تغییر ندارند), اپیک ۳ — منشی (Secretary) — تکمیل, تغییرات مورد نیاز, توضیح, نیازمندی‌های کارکردی +Cohesion: 0.33 +Nodes (6): API موجود (نیاز به تغییر ندارند), اپیک‌ها, اپیک ۳ — منشی (Secretary) — تکمیل, تغییرات مورد نیاز, توضیح, نیازمندی‌های کارکردی ### Community 460 - "Community 460" Cohesion: 0.33 @@ -2320,8 +2311,8 @@ Cohesion: 0.40 Nodes (5): Errors, Notes, POST `/api/v1/notification-mobile/request-otp`, Request Body, Response `200` ### Community 482 - "Community 482" -Cohesion: 0.38 -Nodes (3): RepositoryClassMappingTest, KernelTestCase, DbLoggerTest +Cohesion: 0.24 +Nodes (4): RepositoryClassMappingTest, KernelTestCase, LoggerInterface, DbLoggerTest ### Community 483 - "Community 483" Cohesion: 0.40 @@ -2376,8 +2367,8 @@ Cohesion: 0.40 Nodes (5): addMinutes(), calcSlotCount(), hasOverlap(), parseMinutes(), SessionEditor() ### Community 500 - "Community 500" -Cohesion: 0.33 -Nodes (6): API موجود (نیاز به endpoint جدید ندارد), اپیک‌ها, اپیک ۷ — داشبورد هوشمند (Smart Dashboard), تغییر مورد نیاز, توضیح, نیازمندی‌های کارکردی +Cohesion: 0.40 +Nodes (5): API موجود (نیاز به endpoint جدید ندارد), اپیک ۷ — داشبورد هوشمند (Smart Dashboard), تغییر مورد نیاز, توضیح, نیازمندی‌های کارکردی ### Community 501 - "Community 501" Cohesion: 0.40 @@ -2459,10 +2450,6 @@ Nodes (3): SmsTemplateRepository, SmsTemplate, ManagerRegistry Cohesion: 0.12 Nodes (16): دیپلوی ClinicPro (Symfony) روی لیارا با پلتفرم PHP (بدون داکر), زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی), وظایف, پروژه (+8 more) -### Community 525 - "Community 525" -Cohesion: 0.25 -Nodes (4): SmsMessageTemplateRepository, SmsTextResolver, SmsMessageTemplate, ManagerRegistry - ### Community 526 - "Community 526" Cohesion: 0.50 Nodes (4): Errors, POST `/api/v1/user/register`, Request Body, Response `201` @@ -2499,13 +2486,17 @@ Nodes (4): Errors, POST `/api/v1/user/verify-code`, Request Body, Response `200` Cohesion: 0.50 Nodes (4): Errors, GET `/api/v1/representation/{uuid}`, Path Parameters, Response `200` +### Community 537 - "Community 537" +Cohesion: 0.40 +Nodes (3): Props, StatTone, TONE + ### Community 539 - "Community 539" Cohesion: 0.67 Nodes (3): Errors, GET `/api/v1/notification-mobile/{target}`, Response `200` ### Community 542 - "Community 542" -Cohesion: 0.43 -Nodes (3): SmsMessageController, JsonResponse, Request +Cohesion: 0.50 +Nodes (4): 38. 🟢 `GET` Unapproved comments, هدرهای اضافی, پارامترهای Query, پاسخ‌ها ### Community 543 - "Community 543" Cohesion: 0.53 @@ -2676,8 +2667,8 @@ Cohesion: 0.67 Nodes (3): POST `/api/v1/admin/sms/template/{uuid}/approve`, Request Body (`application/json`), Response `200` ### Community 602 - "Community 602" -Cohesion: 0.48 -Nodes (3): DoctorInsuranceRepository, DoctorInsurance, ManagerRegistry +Cohesion: 0.50 +Nodes (4): 44. 🟢 `GET` list comment, هدرهای اضافی, پارامترهای Query, پاسخ‌ها ### Community 603 - "Community 603" Cohesion: 0.67 @@ -2707,6 +2698,10 @@ Nodes (3): بک‌اند, فرانت‌اند, وضعیت فعلی کد (مهم Cohesion: 0.12 Nodes (6): ServiceItemDeleteCleanupTest, ServiceCoverageNPlusOneTest, TenantInsuranceCleanupTest, TenantServiceCoverageRepository, ManagerRegistry, TenantServiceCoverage +### Community 625 - "Community 625" +Cohesion: 0.50 +Nodes (4): 45. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخ‌ها + ### Community 631 - "Community 631" Cohesion: 0.50 Nodes (4): GET `/api/v1/admin/representations`, Query Parameters, Representation Management, Response `200` @@ -2724,8 +2719,8 @@ Cohesion: 0.25 Nodes (8): ۲.۲ انواع دسته‌بندی (Category Types), ۲.۲.۱ تگ (Tag), ۲.۲.۲ استان (State), ۲.۲.۳ شهر (City), ۲.۲.۴ بیمه پایه (Basic Insurance), ۲.۲.۵ بیمه مکمل (Supplementary Insurance), ۲.۲.۶ تخصص دکتر (Doctor Specialty), ۲.۲.۷ خدمات دکتر (Doctor Services) ### Community 635 - "Community 635" -Cohesion: 0.43 -Nodes (5): BeforeInstallPromptEvent, usePwaInstall(), PwaInstallBanner(), detectIOS(), PwaLoginCard() +Cohesion: 0.50 +Nodes (4): 46. 🟡 `PATCH` patch, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 636 - "Community 636" Cohesion: 0.50 @@ -2752,24 +2747,24 @@ Cohesion: 0.40 Nodes (5): 41. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 649 - "Community 649" -Cohesion: 0.40 -Nodes (5): 31. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها +Cohesion: 0.67 +Nodes (3): 29. 🟢 `GET` clinic list 🆕, پارامترهای Query, پاسخ‌ها ### Community 650 - "Community 650" -Cohesion: 0.40 -Nodes (5): 32. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها +Cohesion: 0.67 +Nodes (3): 34. 🔵 `POST` image logo, هدرهای اضافی, پاسخ‌ها + +### Community 651 - "Community 651" +Cohesion: 0.67 +Nodes (3): 36. 🟢 `GET` get my rate, هدرهای اضافی, پاسخ‌ها ### Community 652 - "Community 652" Cohesion: 0.50 Nodes (4): Errors, Path Parameters, POST `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicUuid}`, Response `201` ### Community 653 - "Community 653" -Cohesion: 0.50 -Nodes (4): 38. 🟢 `GET` Unapproved comments, هدرهای اضافی, پارامترهای Query, پاسخ‌ها - -### Community 654 - "Community 654" -Cohesion: 0.29 -Nodes (3): ApiError, { refreshMock, logoutMock }, replaceMock +Cohesion: 0.67 +Nodes (3): 42. 🔴 `DELETE` delete, هدرهای اضافی, پاسخ‌ها ### Community 656 - "Community 656" Cohesion: 0.40 @@ -2795,14 +2790,6 @@ Nodes (5): 37. 🔵 `POST` post, Request Body, مثال Request, هدرهای ا Cohesion: 0.29 Nodes (7): Application Logs, DELETE `/api/v1/admin/logs`, GET `/api/v1/admin/logs`, Log Retention, Query Parameters, Response `200`, Response `200` -### Community 664 - "Community 664" -Cohesion: 0.40 -Nodes (5): 61. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها - -### Community 665 - "Community 665" -Cohesion: 0.40 -Nodes (3): Props, StatTone, TONE - ### Community 666 - "Community 666" Cohesion: 0.50 Nodes (4): GET /api/v1/appointment-settings/slots — دریافت اسلات‌های خالی, POST /api/v1/appointment-settings/holidays — ثبت تعطیلی (فقط ادمین), POST /api/v1/appointment-settings/overrides — ثبت Override توسط دکتر, Task-09: API تنظیمات نوبت @@ -2819,14 +2806,6 @@ Nodes (4): ۲.۱۳ نظرات، لایک و امتیازدهی, ۲.۱۳.۱ نظ Cohesion: 0.50 Nodes (4): GET `/api/v1/admin/settlements`, Query Parameters, Response `200`, Settlement Management -### Community 673 - "Community 673" -Cohesion: 0.50 -Nodes (4): Errors, GET `/api/v1/admin/insurances`, Query Parameters, Response `200` - -### Community 674 - "Community 674" -Cohesion: 0.50 -Nodes (4): Errors, POST `/api/v1/insurance/`, Request Body (`application/json`), Response `201` - ### Community 675 - "Community 675" Cohesion: 0.50 Nodes (4): 39. 🟡 `PATCH` Comment confirmation, مثال Request, هدرهای اضافی, پاسخ‌ها @@ -2835,53 +2814,25 @@ Nodes (4): 39. 🟡 `PATCH` Comment confirmation, مثال Request, هدرهای Cohesion: 0.50 Nodes (4): 40. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخ‌ها -### Community 677 - "Community 677" -Cohesion: 0.50 -Nodes (4): 44. 🟢 `GET` list comment, هدرهای اضافی, پارامترهای Query, پاسخ‌ها - -### Community 678 - "Community 678" -Cohesion: 0.50 -Nodes (4): 45. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخ‌ها - -### Community 680 - "Community 680" -Cohesion: 0.50 -Nodes (4): 46. 🟡 `PATCH` patch, مثال Request, هدرهای اضافی, پاسخ‌ها - -### Community 681 - "Community 681" -Cohesion: 0.67 -Nodes (3): 33. 🔵 `POST` image_clinic, هدرهای اضافی, پاسخ‌ها - -### Community 682 - "Community 682" -Cohesion: 0.67 -Nodes (3): 34. 🔵 `POST` image logo, هدرهای اضافی, پاسخ‌ها - -### Community 683 - "Community 683" -Cohesion: 0.67 -Nodes (3): 42. 🔴 `DELETE` delete, هدرهای اضافی, پاسخ‌ها - -### Community 684 - "Community 684" -Cohesion: 0.67 -Nodes (3): 43. 🟢 `GET` get, هدرهای اضافی, پاسخ‌ها - ## Knowledge Gaps -- **3645 isolated node(s):** `ALLOWED_ROLES`, `Pricing`, `TenantInsurance`, `CoverageRow`, `Draft` (+3640 more) +- **3656 isolated node(s):** `ALLOWED_ROLES`, `Pricing`, `TenantInsurance`, `CoverageRow`, `Draft` (+3651 more) These have ≤1 connection - possible missing edges or undocumented components. -- **133 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **129 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `BaseController` connect `Community 108` to `Community 6`, `Community 138`, `Community 139`, `Community 14`, `Community 15`, `Community 275`, `Community 20`, `Community 22`, `Community 26`, `Community 542`, `Community 164`, `Community 295`, `Community 300`, `Community 175`, `Community 176`, `Community 177`, `Community 58`, `Community 59`, `Community 317`, `Community 63`, `Community 64`, `Community 70`, `Community 71`, `Community 75`, `Community 206`, `Community 230`, `Community 103`, `Community 104`, `Community 107`, `Community 491`, `Community 109`, `Community 121`, `Community 122`, `Community 252`?** - _High betweenness centrality (0.033) - this node is a cross-community bridge._ +- **Why does `BaseController` connect `Community 108` to `Community 6`, `Community 138`, `Community 139`, `Community 14`, `Community 15`, `Community 20`, `Community 22`, `Community 26`, `Community 164`, `Community 295`, `Community 169`, `Community 300`, `Community 175`, `Community 176`, `Community 177`, `Community 59`, `Community 63`, `Community 64`, `Community 75`, `Community 227`, `Community 230`, `Community 103`, `Community 104`, `Community 107`, `Community 491`, `Community 109`, `Community 121`, `Community 122`, `Community 252`, `Community 253`?** + _High betweenness centrality (0.032) - this node is a cross-community bridge._ - **Why does `AppointmentRepository` connect `Community 119` to `Community 53`?** _High betweenness centrality (0.019) - this node is a cross-community bridge._ -- **Why does `Version20260614181657` connect `Community 431` to `Community 426`?** +- **Why does `Version20260614181657` connect `Community 431` to `Community 421`?** _High betweenness centrality (0.015) - this node is a cross-community bridge._ - **What connects `ALLOWED_ROLES`, `Pricing`, `TenantInsurance` to the rest of the system?** - _3645 weakly-connected nodes found - possible documentation gaps or missing edges._ + _3656 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `Community 0` be split into smaller, more focused modules?** - _Cohesion score 0.048633879781420766 - nodes in this community are weakly interconnected._ + _Cohesion score 0.05004389815627744 - nodes in this community are weakly interconnected._ - **Should `Community 1` be split into smaller, more focused modules?** _Cohesion score 0.028985507246376812 - nodes in this community are weakly interconnected._ - **Should `Community 2` be split into smaller, more focused modules?** - _Cohesion score 0.07823613086770982 - nodes in this community are weakly interconnected._ \ No newline at end of file + _Cohesion score 0.0659536541889483 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/48e210b06690285c3db657ab7a964830ecfc5d826e7624eb0a64df550fdccdca.json b/graphify-out/cache/ast/v0.8.44/48e210b06690285c3db657ab7a964830ecfc5d826e7624eb0a64df550fdccdca.json new file mode 100644 index 00000000..d46e39bd --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/48e210b06690285c3db657ab7a964830ecfc5d826e7624eb0a64df550fdccdca.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_admin_ios_safari_css_fallbacks_md", "label": "admin-ios-safari-css-fallbacks.md", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L1"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "label": "\u0631\u0641\u0639 \u0628\u0647\u0645\u200c\u0631\u06cc\u062e\u062a\u06af\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 \u0631\u0648\u06cc iPhone 8 (Safari/Chrome iOS)", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L1"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L3"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L7"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L13"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L23"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L31"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L68"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u06f1_fallback_\u0647\u06af\u0632_srgb_\u0628\u0631\u0627\u06cc_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0631\u0646\u06af_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_oklch", "label": "\u06f1. fallback \u0647\u06af\u0632 sRGB \u0628\u0631\u0627\u06cc \u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0631\u0646\u06af\u0650 \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 oklch", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L70"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u06f2_fallback_\u0628\u0631\u0627\u06cc_color_mix_\u062f\u0631_\u0642\u0648\u0627\u0646\u06cc\u0646_inline", "label": "\u06f2. fallback \u0628\u0631\u0627\u06cc color-mix \u062f\u0631 \u0642\u0648\u0627\u0646\u06cc\u0646 inline", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L97"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u06f3_\u062a\u0635\u0645\u06cc\u0645_\u062f\u0631\u0628\u0627\u0631\u0647_tailwind_v4", "label": "\u06f3. \u062a\u0635\u0645\u06cc\u0645 \u062f\u0631\u0628\u0627\u0631\u0647 Tailwind v4", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L119"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u06f4_\u062a\u0633\u062a", "label": "\u06f4. \u062a\u0633\u062a", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L127"}, {"id": "prompt_admin_ios_safari_css_fallbacks_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L133"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_admin_ios_safari_css_fallbacks_md", "target": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "target": "prompt_admin_ios_safari_css_fallbacks_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "target": "prompt_admin_ios_safari_css_fallbacks_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "target": "prompt_admin_ios_safari_css_fallbacks_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "target": "prompt_admin_ios_safari_css_fallbacks_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L23", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "target": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L31", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "target": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L68", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_admin_ios_safari_css_fallbacks_\u06f1_fallback_\u0647\u06af\u0632_srgb_\u0628\u0631\u0627\u06cc_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0631\u0646\u06af_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_oklch", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L70", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_admin_ios_safari_css_fallbacks_\u06f2_fallback_\u0628\u0631\u0627\u06cc_color_mix_\u062f\u0631_\u0642\u0648\u0627\u0646\u06cc\u0646_inline", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L97", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_admin_ios_safari_css_fallbacks_\u06f3_\u062a\u0635\u0645\u06cc\u0645_\u062f\u0631\u0628\u0627\u0631\u0647_tailwind_v4", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L119", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_admin_ios_safari_css_fallbacks_\u06f4_\u062a\u0633\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L127", "weight": 1.0}, {"source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", "target": "prompt_admin_ios_safari_css_fallbacks_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", "source_location": "L133", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/6d484540c4b865af36dea656ca9cad5ed148157e573b8e0ed2d4763c553770cf.json b/graphify-out/cache/ast/v0.8.44/6d484540c4b865af36dea656ca9cad5ed148157e573b8e0ed2d4763c553770cf.json new file mode 100644 index 00000000..0fff8401 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/6d484540c4b865af36dea656ca9cad5ed148157e573b8e0ed2d4763c553770cf.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_package_json", "label": "package.json", "file_type": "code", "source_file": "package.json", "source_location": "L1"}, {"id": "clinicpro_package_devdependencies", "label": "devDependencies", "file_type": "code", "source_file": "package.json", "source_location": "L2"}, {"id": "clinicpro_package_devdependencies_babel_core", "label": "@babel/core", "file_type": "code", "source_file": "package.json", "source_location": "L3"}, {"id": "clinicpro_package_devdependencies_babel_preset_env", "label": "@babel/preset-env", "file_type": "code", "source_file": "package.json", "source_location": "L4"}, {"id": "clinicpro_package_devdependencies_babel_preset_react", "label": "@babel/preset-react", "file_type": "code", "source_file": "package.json", "source_location": "L5"}, {"id": "clinicpro_package_devdependencies_babel_preset_typescript", "label": "@babel/preset-typescript", "file_type": "code", "source_file": "package.json", "source_location": "L6"}, {"id": "clinicpro_package_devdependencies_csstools_postcss_oklab_function", "label": "@csstools/postcss-oklab-function", "file_type": "code", "source_file": "package.json", "source_location": "L7"}, {"id": "clinicpro_package_devdependencies_hotwired_stimulus", "label": "@hotwired/stimulus", "file_type": "code", "source_file": "package.json", "source_location": "L8"}, {"id": "clinicpro_package_devdependencies_symfony_stimulus_bridge", "label": "@symfony/stimulus-bridge", "file_type": "code", "source_file": "package.json", "source_location": "L9"}, {"id": "clinicpro_package_devdependencies_symfony_ux_react", "label": "@symfony/ux-react", "file_type": "code", "source_file": "package.json", "source_location": "L10"}, {"id": "clinicpro_package_devdependencies_symfony_webpack_encore", "label": "@symfony/webpack-encore", "file_type": "code", "source_file": "package.json", "source_location": "L11"}, {"id": "clinicpro_package_devdependencies_tailwindcss_postcss", "label": "@tailwindcss/postcss", "file_type": "code", "source_file": "package.json", "source_location": "L12"}, {"id": "clinicpro_package_devdependencies_testing_library_dom", "label": "@testing-library/dom", "file_type": "code", "source_file": "package.json", "source_location": "L13"}, {"id": "clinicpro_package_devdependencies_testing_library_jest_dom", "label": "@testing-library/jest-dom", "file_type": "code", "source_file": "package.json", "source_location": "L14"}, {"id": "clinicpro_package_devdependencies_testing_library_react", "label": "@testing-library/react", "file_type": "code", "source_file": "package.json", "source_location": "L15"}, {"id": "clinicpro_package_devdependencies_testing_library_user_event", "label": "@testing-library/user-event", "file_type": "code", "source_file": "package.json", "source_location": "L16"}, {"id": "clinicpro_package_devdependencies_types_react", "label": "@types/react", "file_type": "code", "source_file": "package.json", "source_location": "L17"}, {"id": "clinicpro_package_devdependencies_types_react_dom", "label": "@types/react-dom", "file_type": "code", "source_file": "package.json", "source_location": "L18"}, {"id": "clinicpro_package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "file_type": "code", "source_file": "package.json", "source_location": "L19"}, {"id": "clinicpro_package_devdependencies_core_js", "label": "core-js", "file_type": "code", "source_file": "package.json", "source_location": "L20"}, {"id": "clinicpro_package_devdependencies_jsdom", "label": "jsdom", "file_type": "code", "source_file": "package.json", "source_location": "L21"}, {"id": "clinicpro_package_devdependencies_postcss", "label": "postcss", "file_type": "code", "source_file": "package.json", "source_location": "L22"}, {"id": "clinicpro_package_devdependencies_postcss_loader", "label": "postcss-loader", "file_type": "code", "source_file": "package.json", "source_location": "L23"}, {"id": "clinicpro_package_devdependencies_regenerator_runtime", "label": "regenerator-runtime", "file_type": "code", "source_file": "package.json", "source_location": "L24"}, {"id": "clinicpro_package_devdependencies_tailwindcss", "label": "tailwindcss", "file_type": "code", "source_file": "package.json", "source_location": "L25"}, {"id": "clinicpro_package_devdependencies_ts_loader", "label": "ts-loader", "file_type": "code", "source_file": "package.json", "source_location": "L26"}, {"id": "clinicpro_package_devdependencies_typescript", "label": "typescript", "file_type": "code", "source_file": "package.json", "source_location": "L27"}, {"id": "clinicpro_package_devdependencies_vite_tsconfig_paths", "label": "vite-tsconfig-paths", "file_type": "code", "source_file": "package.json", "source_location": "L28"}, {"id": "clinicpro_package_devdependencies_vitest", "label": "vitest", "file_type": "code", "source_file": "package.json", "source_location": "L29"}, {"id": "clinicpro_package_devdependencies_webpack", "label": "webpack", "file_type": "code", "source_file": "package.json", "source_location": "L30"}, {"id": "clinicpro_package_devdependencies_webpack_cli", "label": "webpack-cli", "file_type": "code", "source_file": "package.json", "source_location": "L31"}, {"id": "clinicpro_package_dependencies", "label": "dependencies", "file_type": "code", "source_file": "package.json", "source_location": "L33"}, {"id": "clinicpro_package_dependencies_ckeditor_ckeditor5_build_classic", "label": "@ckeditor/ckeditor5-build-classic", "file_type": "code", "source_file": "package.json", "source_location": "L34"}, {"id": "clinicpro_package_dependencies_ckeditor_ckeditor5_react", "label": "@ckeditor/ckeditor5-react", "file_type": "code", "source_file": "package.json", "source_location": "L35"}, {"id": "clinicpro_package_dependencies_fontsource_vazirmatn", "label": "@fontsource/vazirmatn", "file_type": "code", "source_file": "package.json", "source_location": "L36"}, {"id": "clinicpro_package_dependencies_heroicons_react", "label": "@heroicons/react", "file_type": "code", "source_file": "package.json", "source_location": "L37"}, {"id": "clinicpro_package_dependencies_hookform_resolvers", "label": "@hookform/resolvers", "file_type": "code", "source_file": "package.json", "source_location": "L38"}, {"id": "clinicpro_package_dependencies_tanstack_react_query", "label": "@tanstack/react-query", "file_type": "code", "source_file": "package.json", "source_location": "L39"}, {"id": "clinicpro_package_dependencies_tanstack_react_table", "label": "@tanstack/react-table", "file_type": "code", "source_file": "package.json", "source_location": "L40"}, {"id": "clinicpro_package_dependencies_types_leaflet", "label": "@types/leaflet", "file_type": "code", "source_file": "package.json", "source_location": "L41"}, {"id": "clinicpro_package_dependencies_jalaali_js", "label": "jalaali-js", "file_type": "code", "source_file": "package.json", "source_location": "L42"}, {"id": "clinicpro_package_dependencies_leaflet", "label": "leaflet", "file_type": "code", "source_file": "package.json", "source_location": "L43"}, {"id": "clinicpro_package_dependencies_react", "label": "react", "file_type": "code", "source_file": "package.json", "source_location": "L44"}, {"id": "clinicpro_package_dependencies_react_dom", "label": "react-dom", "file_type": "code", "source_file": "package.json", "source_location": "L45"}, {"id": "clinicpro_package_dependencies_react_hook_form", "label": "react-hook-form", "file_type": "code", "source_file": "package.json", "source_location": "L46"}, {"id": "clinicpro_package_dependencies_react_hot_toast", "label": "react-hot-toast", "file_type": "code", "source_file": "package.json", "source_location": "L47"}, {"id": "clinicpro_package_dependencies_react_leaflet", "label": "react-leaflet", "file_type": "code", "source_file": "package.json", "source_location": "L48"}, {"id": "clinicpro_package_dependencies_react_router_dom", "label": "react-router-dom", "file_type": "code", "source_file": "package.json", "source_location": "L49"}, {"id": "clinicpro_package_dependencies_react_select", "label": "react-select", "file_type": "code", "source_file": "package.json", "source_location": "L50"}, {"id": "clinicpro_package_dependencies_recharts", "label": "recharts", "file_type": "code", "source_file": "package.json", "source_location": "L51"}, {"id": "clinicpro_package_dependencies_sonner", "label": "sonner", "file_type": "code", "source_file": "package.json", "source_location": "L52"}, {"id": "clinicpro_package_dependencies_zod", "label": "zod", "file_type": "code", "source_file": "package.json", "source_location": "L53"}, {"id": "clinicpro_package_dependencies_zustand", "label": "zustand", "file_type": "code", "source_file": "package.json", "source_location": "L54"}, {"id": "clinicpro_package_license", "label": "license", "file_type": "code", "source_file": "package.json", "source_location": "L56"}, {"id": "clinicpro_package_private", "label": "private", "file_type": "code", "source_file": "package.json", "source_location": "L57"}, {"id": "clinicpro_package_scripts", "label": "scripts", "file_type": "code", "source_file": "package.json", "source_location": "L58"}, {"id": "clinicpro_package_scripts_dev_server", "label": "dev-server", "file_type": "code", "source_file": "package.json", "source_location": "L59"}, {"id": "clinicpro_package_scripts_dev", "label": "dev", "file_type": "code", "source_file": "package.json", "source_location": "L60"}, {"id": "clinicpro_package_scripts_watch", "label": "watch", "file_type": "code", "source_file": "package.json", "source_location": "L61"}, {"id": "clinicpro_package_scripts_build", "label": "build", "file_type": "code", "source_file": "package.json", "source_location": "L62"}, {"id": "clinicpro_package_scripts_test", "label": "test", "file_type": "code", "source_file": "package.json", "source_location": "L63"}, {"id": "clinicpro_package_scripts_test_watch", "label": "test:watch", "file_type": "code", "source_file": "package.json", "source_location": "L64"}, {"id": "clinicpro_package_scripts_test_cov", "label": "test:cov", "file_type": "code", "source_file": "package.json", "source_location": "L65"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_package_json", "target": "clinicpro_package_devdependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L2", "weight": 1.0}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_babel_core", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L3", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_babel_core", "target": "babel_core", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L3", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_babel_preset_env", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L4", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_babel_preset_env", "target": "babel_preset_env", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_babel_preset_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L5", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_babel_preset_react", "target": "babel_preset_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_babel_preset_typescript", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L6", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_babel_preset_typescript", "target": "babel_preset_typescript", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_csstools_postcss_oklab_function", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L7", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_csstools_postcss_oklab_function", "target": "csstools_postcss_oklab_function", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_hotwired_stimulus", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L8", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_hotwired_stimulus", "target": "hotwired_stimulus", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_symfony_stimulus_bridge", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L9", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_symfony_stimulus_bridge", "target": "symfony_stimulus_bridge", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_symfony_ux_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L10", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_symfony_ux_react", "target": "symfony_ux_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_symfony_webpack_encore", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_symfony_webpack_encore", "target": "symfony_webpack_encore", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_tailwindcss_postcss", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L12", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_tailwindcss_postcss", "target": "tailwindcss_postcss", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_testing_library_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L13", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_testing_library_dom", "target": "testing_library_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_testing_library_jest_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L14", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_testing_library_jest_dom", "target": "testing_library_jest_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L14", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_testing_library_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L15", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_testing_library_react", "target": "testing_library_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_testing_library_user_event", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L16", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_testing_library_user_event", "target": "testing_library_user_event", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_types_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L17", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_types_react", "target": "types_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_types_react_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L18", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_types_react_dom", "target": "types_react_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L18", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_vitejs_plugin_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L19", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_vitejs_plugin_react", "target": "vitejs_plugin_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_core_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L20", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_core_js", "target": "core_js", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_jsdom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L21", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_jsdom", "target": "jsdom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_postcss", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L22", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_postcss", "target": "postcss", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_postcss_loader", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L23", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_postcss_loader", "target": "postcss_loader", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_regenerator_runtime", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L24", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_regenerator_runtime", "target": "regenerator_runtime", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_tailwindcss", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L25", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_tailwindcss", "target": "tailwindcss", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_ts_loader", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L26", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_ts_loader", "target": "ts_loader", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_typescript", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L27", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_typescript", "target": "typescript", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_vite_tsconfig_paths", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L28", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_vite_tsconfig_paths", "target": "vite_tsconfig_paths", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_vitest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L29", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_vitest", "target": "vitest", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_webpack", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L30", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_webpack", "target": "webpack", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_devdependencies", "target": "clinicpro_package_devdependencies_webpack_cli", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L31", "weight": 1.0}, {"source": "clinicpro_package_devdependencies_webpack_cli", "target": "webpack_cli", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_package_json", "target": "clinicpro_package_dependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L33", "weight": 1.0}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_ckeditor_ckeditor5_build_classic", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L34", "weight": 1.0}, {"source": "clinicpro_package_dependencies_ckeditor_ckeditor5_build_classic", "target": "ckeditor_ckeditor5_build_classic", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_ckeditor_ckeditor5_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L35", "weight": 1.0}, {"source": "clinicpro_package_dependencies_ckeditor_ckeditor5_react", "target": "ckeditor_ckeditor5_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_fontsource_vazirmatn", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L36", "weight": 1.0}, {"source": "clinicpro_package_dependencies_fontsource_vazirmatn", "target": "fontsource_vazirmatn", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_heroicons_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L37", "weight": 1.0}, {"source": "clinicpro_package_dependencies_heroicons_react", "target": "heroicons_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_hookform_resolvers", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L38", "weight": 1.0}, {"source": "clinicpro_package_dependencies_hookform_resolvers", "target": "hookform_resolvers", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_tanstack_react_query", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L39", "weight": 1.0}, {"source": "clinicpro_package_dependencies_tanstack_react_query", "target": "tanstack_react_query", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_tanstack_react_table", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L40", "weight": 1.0}, {"source": "clinicpro_package_dependencies_tanstack_react_table", "target": "tanstack_react_table", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_types_leaflet", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L41", "weight": 1.0}, {"source": "clinicpro_package_dependencies_types_leaflet", "target": "types_leaflet", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_jalaali_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L42", "weight": 1.0}, {"source": "clinicpro_package_dependencies_jalaali_js", "target": "jalaali_js", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_leaflet", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L43", "weight": 1.0}, {"source": "clinicpro_package_dependencies_leaflet", "target": "leaflet", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L44", "weight": 1.0}, {"source": "clinicpro_package_dependencies_react", "target": "react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_react_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L45", "weight": 1.0}, {"source": "clinicpro_package_dependencies_react_dom", "target": "react_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_react_hook_form", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L46", "weight": 1.0}, {"source": "clinicpro_package_dependencies_react_hook_form", "target": "react_hook_form", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_react_hot_toast", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L47", "weight": 1.0}, {"source": "clinicpro_package_dependencies_react_hot_toast", "target": "react_hot_toast", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_react_leaflet", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L48", "weight": 1.0}, {"source": "clinicpro_package_dependencies_react_leaflet", "target": "react_leaflet", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_react_router_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L49", "weight": 1.0}, {"source": "clinicpro_package_dependencies_react_router_dom", "target": "react_router_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L49", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_react_select", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L50", "weight": 1.0}, {"source": "clinicpro_package_dependencies_react_select", "target": "react_select", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L50", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_recharts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L51", "weight": 1.0}, {"source": "clinicpro_package_dependencies_recharts", "target": "recharts", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L51", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_sonner", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L52", "weight": 1.0}, {"source": "clinicpro_package_dependencies_sonner", "target": "sonner", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L52", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_zod", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L53", "weight": 1.0}, {"source": "clinicpro_package_dependencies_zod", "target": "zod", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L53", "weight": 1.0, "context": "import"}, {"source": "clinicpro_package_dependencies", "target": "clinicpro_package_dependencies_zustand", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L54", "weight": 1.0}, {"source": "clinicpro_package_dependencies_zustand", "target": "zustand", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_package_json", "target": "clinicpro_package_license", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L56", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_package_json", "target": "clinicpro_package_private", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L57", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_package_json", "target": "clinicpro_package_scripts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L58", "weight": 1.0}, {"source": "clinicpro_package_scripts", "target": "clinicpro_package_scripts_dev_server", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L59", "weight": 1.0}, {"source": "clinicpro_package_scripts", "target": "clinicpro_package_scripts_dev", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L60", "weight": 1.0}, {"source": "clinicpro_package_scripts", "target": "clinicpro_package_scripts_watch", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L61", "weight": 1.0}, {"source": "clinicpro_package_scripts", "target": "clinicpro_package_scripts_build", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L62", "weight": 1.0}, {"source": "clinicpro_package_scripts", "target": "clinicpro_package_scripts_test", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L63", "weight": 1.0}, {"source": "clinicpro_package_scripts", "target": "clinicpro_package_scripts_test_watch", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L64", "weight": 1.0}, {"source": "clinicpro_package_scripts", "target": "clinicpro_package_scripts_test_cov", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L65", "weight": 1.0}]} \ No newline at end of file diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json index a3b1e7f6..7346014d 100644 --- a/graphify-out/cache/stat-index.json +++ b/graphify-out/cache/stat-index.json @@ -1 +1 @@ -{"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/assets/controllers.json":{"size":198,"mtime_ns":1781030172830093265,"hash":"c2038f4c739d4a1620199394a2ccfdd5c91ef846a0f81048388ffa7b65df091b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/composer.json":{"size":3082,"mtime_ns":1782645766148245683,"hash":"d1fe8db3ea082855e8c562819934d2719debd0d5541e7eb5853d87d13cc47459"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/bundles.php":{"size":991,"mtime_ns":1781030790602666616,"hash":"ffc97986a2386074ed8eb1b4b9dcbca2ffa7cc6b3600a6c37e3112d6be39e0f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/preload.php":{"size":184,"mtime_ns":1781009656090972900,"hash":"718612fb509259556db6202d93b5f3b1bd85a6be6d523cdc6fb1d81b569ce256"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/reference.php":{"size":105233,"mtime_ns":1782645766235591855,"hash":"a2030203ccca39bf435675e884e805a2bc3db13ddfded1d346ac649bab6deeab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/create_test_users.php":{"size":4062,"mtime_ns":1781168063674077630,"hash":"35e828a0495a0a4aaa7539781076edff3b0af2e88562ea0ae1299cfc17fa91b6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/city.json":{"size":48958,"mtime_ns":1760953552261818528,"hash":"4c321bdc22df2c9e02e37cb3c1a44d792710e94c53f0131f14e88f0ba60cfbf5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/doctor_services.json":{"size":42359,"mtime_ns":1781085019042251229,"hash":"086809f01c4c6e77ab1161688bd03d60ff524735d0d7655cb0daa55bbb53875a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/import.php":{"size":5488,"mtime_ns":1781089058225002885,"hash":"7f22b1eef5dacde90d1f87178f5b446df06562e86331f2b1fef0672da6d33fb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed.php":{"size":27683,"mtime_ns":1781090517391813278,"hash":"9f68801870c368286543040b482a6a8e9773a82506565226d705c0b410873025"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_finish.php":{"size":10806,"mtime_ns":1781091340487318516,"hash":"f36f97df126491fcfdc438f289489a189bbc58b7fa5dc61e48a40edefb77c623"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_full.php":{"size":42270,"mtime_ns":1781091251098443866,"hash":"da652ff8b7513cab398dc4f7d6dcc92399ef0507410f466a72929684aee6abc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/specialties.json":{"size":16189,"mtime_ns":1781084374016184330,"hash":"de4ba8a0ed9fe595a89be7b4113ae37bddd5dcc5e59766f4cdf7ec34cfd44dc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/state.json":{"size":1708,"mtime_ns":1760953552262399793,"hash":"3678b80abe63c2c45d0ef5f5cfd63cb46f5bcff7cb6f73fb3c8d188ce24d0242"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609130407.php":{"size":1154,"mtime_ns":1781010250896191835,"hash":"d9130e4e0fcecbfc302da5ef3184d0665ef9844067e63673b091dc6b09e5c432"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131304.php":{"size":8945,"mtime_ns":1781010908745260477,"hash":"d8db037c64d216c9d6e3018caab7c9a4966abfe31e41794f43728ac0bd3c11bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131553.php":{"size":1477,"mtime_ns":1781010960853107810,"hash":"1b3c9ad833965008985bcf3f6a1894e400bc58bb0a8de2b6bc159c31ecdcca5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132009.php":{"size":1986,"mtime_ns":1781011210879944205,"hash":"95e296cf289224cc43748507a9496f493d0e25b829a9e3d8bb8567f6f022d378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132708.php":{"size":5572,"mtime_ns":1781011630935659766,"hash":"d3211b9b4b08ad40b543052498b4ad7adeb034ffbabc4a83f761807df8e2fe9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133121.php":{"size":4855,"mtime_ns":1781011890870506406,"hash":"fc65641b70ce6d9bb2409aeecccb580333685ba71bcdddb72ea185fc9b717e9b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133334.php":{"size":1529,"mtime_ns":1781012020936148882,"hash":"d2753baf2902d723dba6ef2928c65627dbc4f006c5493a45182b450fb4598fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133546.php":{"size":1688,"mtime_ns":1781012150911850095,"hash":"98b56edc2e31c609f70d82d1e697c6598f3c65c4120d4e77510d19c0030e9d87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134112.php":{"size":2830,"mtime_ns":1781012480955463648,"hash":"ffb5700205e312f10728cd20f9638450cd2195df9627b5b51f92690526214845"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134741.php":{"size":1789,"mtime_ns":1781012870832220674,"hash":"eb2a55b4f50f4fd58288452b71dfb5e190958cb8c775354dc9c9f99c929dfff0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135126.php":{"size":1922,"mtime_ns":1781013090876422882,"hash":"a736efea5774baa48ac87522442943580e9ce47cab3479e1033e71fc6131eae5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135514.php":{"size":1449,"mtime_ns":1781013320954994440,"hash":"e3901078cc23a4e9ba6a7b748e32fc1a04f888c8d5680da5100b26a56dcd0559"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135704.php":{"size":2558,"mtime_ns":1781013430957508206,"hash":"6ce6851d5331c07c1f13c94f475a7f6823551927ff0b7ccfa8fddec146e69fcc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135923.php":{"size":3457,"mtime_ns":1781013570869080544,"hash":"b7a581c53e463fa8bfb6a7ccdd65d75c2146aa3b8190852a84a15ad2c8d3bf3d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140223.php":{"size":1590,"mtime_ns":1781013750963170886,"hash":"c0c011d8f3040d2b81dff1ec667f2d650567eb141271ff4d368ed66fdfef9342"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140423.php":{"size":1535,"mtime_ns":1781013870906972885,"hash":"0fb344e74f64622b3ea3f4a29e8b6412f35ec60ee46cd25abd5ea3e0abc8c299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610062539.php":{"size":826,"mtime_ns":1781072744933894396,"hash":"c9a4bfd06b4bdb00f74c6a5973acbea2b86b4c8ab64c8d28c730dcdda5bc0e88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610092558.php":{"size":780,"mtime_ns":1781083564938987613,"hash":"7b3ae1ae82625519d5c7986d542c84dc5c37949ac4f3a8c356191dc480b7cc0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610103401.php":{"size":20904,"mtime_ns":1781087803230706453,"hash":"f54443ba8ee1b2d436f3e2bdafcdb026b5b3c8dae9941623fb401792aa68bb85"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110039.php":{"size":817,"mtime_ns":1781089244896521926,"hash":"a68634b6818f1b331bc2232ff9429792f11a7090ef18315754dbb5feec3981b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110921.php":{"size":1611,"mtime_ns":1781089784421230793,"hash":"2f112d7fbfee7d1a0ec047535854cfb1bf8088099d4f5219e23f9458380f90ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610111254.php":{"size":1109,"mtime_ns":1781089984946035862,"hash":"2c68d5ebfef56abee588aa5abb74a571918a0ed04eec7be7ea8039d9a12046ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610113711.php":{"size":1499,"mtime_ns":1781091448606693864,"hash":"4cd9c0910a49718627e7ea3c5f6f448e6508e609c70d643e160a6c740937d13f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610140853.php":{"size":5927,"mtime_ns":1782583543657239761,"hash":"02683252b3c23dc3005af00fc6a42cbc360a306c799a88ee722cf1560ba22da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610175105.php":{"size":767,"mtime_ns":1781113873591904402,"hash":"49ffb1ef4d630a180b47d4b1f42da6c3ddf8283dc93bc192c16060cc093b5b82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610183655.php":{"size":2273,"mtime_ns":1781116623586431980,"hash":"e1573ba5f962b956314e7e17a8adf8fc3683dc6065c34490b60a25636d7fe4a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611075829.php":{"size":3004,"mtime_ns":1782626301195816873,"hash":"b3ba50cb2690810d8fb010f0ede4cf92906376908208bf0093512752d72fed76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611083424.php":{"size":881,"mtime_ns":1781166873770630956,"hash":"38e49fefb94b0029f3a10ac5aa846f341e47fb69686ad6d23c4b324de4b5e218"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611084046.php":{"size":1410,"mtime_ns":1781167246413147688,"hash":"ace825e63afb52cfc794f24547a03563c501cb951545c1a8fe50e2f198e11572"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612081739.php":{"size":1185,"mtime_ns":1781252261521732569,"hash":"abfc51c67c959f525711c661c21872e6a831079510241c197b86175623bc217b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612132848.php":{"size":1667,"mtime_ns":1781258338612526059,"hash":"c3d155690c12d3c3243190dcc759adf44cdf6a727b3b2563ba50caa78fd2a3cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181134.php":{"size":1715,"mtime_ns":1781516938570601065,"hash":"4febd40d1e647abbd00413dbb51dc59d5f73d15a6d54d7668d08861f2e6c2d99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181629.php":{"size":3515,"mtime_ns":1781516938570859523,"hash":"c8a4a0b22f709c3ad72760ab89c787f44260064e9d3222449292133d85b27862"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181657.php":{"size":4760,"mtime_ns":1781516938571506442,"hash":"3f5f75cf96210cabb9a36a61036acb7bea5fd01466b367725995b9fd52bedb2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182549.php":{"size":2122,"mtime_ns":1781516938571645400,"hash":"1fc5633381813d3939e8513eb233bfd9c24797537a8348bc83e1f29c2b41e311"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182950.php":{"size":2545,"mtime_ns":1781516938571764692,"hash":"fd126b1e4e09b2f3433242d40992cb2a829d80a357faa87bf922d86bbf514c2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614183527.php":{"size":4022,"mtime_ns":1781516938571888567,"hash":"98a07ace9623c623dddcecb1bf1d4189d8efe1692ba261779b1f9661ac07ff25"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615060415.php":{"size":851,"mtime_ns":1781516938572128193,"hash":"0231ff42cfb43dd4cb4ecfaff3e4f1d285d30fdd87a120fccc6046fac3d1e040"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615061938.php":{"size":981,"mtime_ns":1781516938572427735,"hash":"1ac836b1d7089a2dd47756eb7ba0e65801105e2dda52aee3f5df981daa57db88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615074107.php":{"size":1712,"mtime_ns":1781516938573278653,"hash":"f16f0d0bcf5a4646bcaf98725563639c8ff8b4f2a6d8cf9b8f6a0e7bfbe4c39d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615142236.php":{"size":1117,"mtime_ns":1781535498215147916,"hash":"27e62ea86a4f3aa8539bd976213f57efbd6eb36b8aa4798fe52f2274571941c3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615203529.php":{"size":1746,"mtime_ns":1781557035803907615,"hash":"b735a483f4db548f9613dd6d5efc8489f1a14559737b39f5fa9ec395f6ad21c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619062912.php":{"size":772,"mtime_ns":1781850555276849213,"hash":"7803c7d2fe66171063a19937794a6630d34dff563450bbcead5fa6051866ca2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619121047.php":{"size":780,"mtime_ns":1781871054836536786,"hash":"5b96978f092d4e81b6b9ca61e2a5d5a53e51f1b9b8bf6be43f38cc462371a252"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619170105.php":{"size":1000,"mtime_ns":1781888467242271818,"hash":"24b56c5edca5c601b008f28dc8b642de32dceeeb408ec38cd5e3f7c40c3ce4f3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621084558.php":{"size":774,"mtime_ns":1782031565107938146,"hash":"1a88683010bc9f3571111e2c63fceda2062724f08e0c93a8519405d4ed8bf33c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621094624.php":{"size":774,"mtime_ns":1782035186037116338,"hash":"846706a2c43ed5b3354ff1ebc8d0eb9d9c7dcaca94802f6b8ae4d4653eb54fc9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622160119.php":{"size":779,"mtime_ns":1782144086923054995,"hash":"d1a46bd2a54a9e9f55a692342bbd1bc49add55e4c29368fef1c0fd6d4f8a9292"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622163152.php":{"size":1377,"mtime_ns":1782214545724072190,"hash":"64ff3985f32d0d18646d441f0edd99be402305cbff68d66519dcb196e17e42bd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622171538.php":{"size":1410,"mtime_ns":1782214545724191815,"hash":"42c0bfb273a488f98079a84f3331c2000ec0018e5c1a748a4f76481853fca168"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622173707.php":{"size":1491,"mtime_ns":1782214545724314524,"hash":"e7ca8699e56c8ce50350006668b7958af1be4663f36620a12ce34dc1fecea6e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622181251.php":{"size":1171,"mtime_ns":1782214545724441066,"hash":"9a5233ddd9873b485bfcf9b9009619a42cec5bc0a4516d98a387b42a249aa0c5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622184409.php":{"size":2212,"mtime_ns":1782214545724627733,"hash":"caa199786e4c7016e4232e653b063278fe809536f4eb2b42305e3bd30beef290"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622185948.php":{"size":2005,"mtime_ns":1782214545724826651,"hash":"7048fe9c1439b52f85abf3186cf4eec913eb873e8ac6ae1154712adccc327b83"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623115721.php":{"size":779,"mtime_ns":1782215846636875546,"hash":"4c8e43a5be46030c087a8679b9b84e8cf58b4174e9228f94fa02dd0d3f2e5990"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623173907.php":{"size":779,"mtime_ns":1782253591740927223,"hash":"237d660c556b7f37176854a98f02cd114fafab9405f9ae4945a8a75941928f8d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624030339.php":{"size":916,"mtime_ns":1782270223182271448,"hash":"a97dc816b64080ab3aabd67347c2161faff7090629810a6db13c051991edd8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624092459.php":{"size":2059,"mtime_ns":1782293101374459999,"hash":"44b5621ce383ac7cb1cea47d7006f3c2b0b47bba8d49f59c78a0df4f737f8482"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624093738.php":{"size":1266,"mtime_ns":1782293867202071491,"hash":"dedb9cb5586cb39f3d35af323fab3e41ff8e63ca961cdb98b8a7beabd113c8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624123236.php":{"size":809,"mtime_ns":1782304359030218634,"hash":"acb3129833c4f6b1ec99f90496e23400de1df0624f1dbbba5077a20500a38548"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625135132.php":{"size":780,"mtime_ns":1782395498606655159,"hash":"a1c3aafeaa1761bfaff51ae0c523a2781cf359fca511e7aa8bd294b70011a9a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625150304.php":{"size":1990,"mtime_ns":1782399813900039403,"hash":"87f84613f1b928abd28cf7502c4572ebf7599d0c47d3c97497a5d74b9fb2c983"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/package.json":{"size":2261,"mtime_ns":1782728407180886172,"hash":"44bbdc99c5e4a3a3c3645f2d400419bae158aef97f432ecf3340eb902c8deab7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/index.php":{"size":206,"mtime_ns":1781009656089267135,"hash":"6609137ba6c6187032cdfd84e9d39097732d861414157cacbdeb77b2b271ac8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/manifest.json":{"size":851,"mtime_ns":1781344581738519976,"hash":"1f7781991eb738e4d1e1d94ecbc02013b898ef8bf8a7beeecf1af9687643b4dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_realistic_data.php":{"size":24320,"mtime_ns":1781519949285784202,"hash":"2ad075c6d333a42f3ac51adb0e1d8b444f64f3b5a01bc87f53d9522cb272ce68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_test_data.php":{"size":13557,"mtime_ns":1781169644756523490,"hash":"d5bbc3b4a96e7abf610d9cd63da61dac6b73bdd97b5672eb4ec191bbec2255e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/skills-lock.json":{"size":267,"mtime_ns":1782232921467371596,"hash":"4b889910ed363cee9dbd7da20e9c0748ddf40dd483ed92b5e581ebedb506f179"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php":{"size":100662,"mtime_ns":1782929751880387649,"hash":"585dcd897dd9a9fa7067c31f37af6fa02033b436c3560680eed226e794f4b019"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminController.php":{"size":490,"mtime_ns":1781030416417456388,"hash":"7d18322ef916885ae0181a7b9dde07ab07d08bc49cbf72669f50e5268ffeef62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Command/CancelExpiredAppointmentsCommand.php":{"size":920,"mtime_ns":1781551622411049671,"hash":"3b56ad9741a4349bd249a4a4e320f7195c320fec9a96ccde6da5b8f75d87b32d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentController.php":{"size":24240,"mtime_ns":1782304270243667628,"hash":"8a6f406c0d70ab3cc8802470ee6fe0d24c883177fb8fd436653c31edaa915e36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentSettingsController.php":{"size":17714,"mtime_ns":1782728407188976018,"hash":"213d1b93ba08882b32a47b70be27553aae4d53bf92fcdb66d2c2876e33f0eb6a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/MyAppointmentsController.php":{"size":15723,"mtime_ns":1782728407189591731,"hash":"36e9472f0cdcf7178c898629a676f50452d0572c9dfc7f6c0d3f91a602716a0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Appointment.php":{"size":9871,"mtime_ns":1782728407190164318,"hash":"199c0bce6c58ae43bfd76f426a9b879985958641a5730886b73f925b79e85395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/DateOverride.php":{"size":2925,"mtime_ns":1782728407190402153,"hash":"c59fdb6d3f05bdb6cd558bb74e701897aa14947acafadb64943469c19fe696f0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Holiday.php":{"size":2953,"mtime_ns":1782650883604011152,"hash":"45b9c56571e20dfc0cabc789b083e2099273efbe5c0a589268a7f5e35106e631"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/WeeklySchedule.php":{"size":3519,"mtime_ns":1782650883602991274,"hash":"ac7a64333676e95bd5f9a78c22fe0f83fcad6bf96d65ae2605685ab8c01ed453"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Message/ExpireAppointmentsMessage.php":{"size":85,"mtime_ns":1781551622411423796,"hash":"094a07b7c7552dd1c2812e066ae7e9cde6dc6bc9ca4ef07e11b82f8feec45fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/MessageHandler/ExpireAppointmentsHandler.php":{"size":504,"mtime_ns":1781551622411619546,"hash":"8981c0048e84b26121eb8e2a6e1f9913a7d61d958a48bc4bee113df6c0c77a80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/AppointmentRepository.php":{"size":7660,"mtime_ns":1782728407190649529,"hash":"293ee69d87a2ee0421f6a4f73ef854b9fd7d261642ac34795a453438ac762b39"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/DateOverrideRepository.php":{"size":1119,"mtime_ns":1781012268350237489,"hash":"f383ecc7f0712616f9969689e3a2011faf49b3ee6c2ec3fc6751f0e93560df91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/HolidayRepository.php":{"size":1768,"mtime_ns":1781099253934669137,"hash":"f886ede4b1998bcbd43c335af00c205c410cfe7bd74b17c12add062b12b84d7c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/SlotTakenException.php":{"size":101,"mtime_ns":1781535498216404171,"hash":"e6ca84966b94b947c7df53646b8a0c5b1a5f5564d144e2b0e00b7756c97d718a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/WeeklyScheduleRepository.php":{"size":1480,"mtime_ns":1781523180068721029,"hash":"8a3deac81ebf1b16b5221f172aeefc9a45009658b7820e6e8597a589ea3af936"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/AppointmentExpiryService.php":{"size":1834,"mtime_ns":1782728407190939073,"hash":"0e08a53cd50f1fa75c2998ce2d39400cf116f1e7d5632015fefd589ca730e771"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/SlotCalculatorService.php":{"size":11056,"mtime_ns":1782217986438154633,"hash":"b42aeef988db241ca6b6bba68a3932214b3a0bcd6b89e1185883c7a52ee8be3f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/AuthController.php":{"size":36120,"mtime_ns":1782728407191234283,"hash":"d7f98b20db8f66beaae6688b6a84f1692b43437de6e85a3808774743694f3c80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/NotificationMobileController.php":{"size":7438,"mtime_ns":1781888558424222836,"hash":"f741f4d2cc7d43672b9c3ba189b7a6164cd5ef1031a02a697a6971287f6ac9be"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/PreRegistrationController.php":{"size":7871,"mtime_ns":1782728407191857954,"hash":"fc3c53bab05acd5e3c477e5d05c90964c4e7172f3afe5c96d11376a85510b1d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/MobileVerificationOtp.php":{"size":1930,"mtime_ns":1781167196281533241,"hash":"511faa2e0698158b312aa66c5b7d54539963056b011200b3a7b86a65651e56b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/PreRegistration.php":{"size":3061,"mtime_ns":1781252232305967808,"hash":"74a388c7ebafa889c4428ba1538ac46ed8f1f5c6ef5a34975016f85a128c5f40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php":{"size":4972,"mtime_ns":1782728407192144123,"hash":"83e9341f771214eaab94dd7c4f0aa2de0e5c0528a0fa5eb4927659f94bc7ddf0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/UserActiveContext.php":{"size":1160,"mtime_ns":1782652951356493481,"hash":"1c60c30e2800176bb2dde9730607d081f2fa1a05f8f6ee6e917ad256bcfa73cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/PreRegistrationRepository.php":{"size":842,"mtime_ns":1781252241014651656,"hash":"050d7fae8134856aeccfff39607f5cfb44e8b923e13d0235411a577b78a6f96d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserActiveContextRepository.php":{"size":952,"mtime_ns":1781164699567301035,"hash":"22c3a507b65fe3f858806b1d7bed15411be794586278ddae7ac5ebe09782bbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserRepository.php":{"size":1023,"mtime_ns":1781010107490769863,"hash":"748b70a06bf6833d94e5168e4ebc06ad7faf0dff67f5f099f595f10cf4f59137"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php":{"size":4195,"mtime_ns":1781946748878509164,"hash":"abec4d9e6782d2833c1eb7862460130ae093b20b5afd4e1ca468f9ce784b53ef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/OtpService.php":{"size":3228,"mtime_ns":1781946485891979924,"hash":"e9d828bddc99129d0ac0c37ce23b83257fec16b7033074557acecb4757d88f14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/TokenService.php":{"size":2166,"mtime_ns":1782036558107915300,"hash":"3b749587b4c8ffc2d0fcf9a266ab32aff75b1681af31e6797d8046dd3ee36713"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmissionResult.php":{"size":509,"mtime_ns":1782214545726213864,"hash":"5391e205be5e00bf0cdd088d6f9b52427e30e3a5d29d2c0ae39753b15b67fac8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmitterInterface.php":{"size":461,"mtime_ns":1782214545726346198,"hash":"9286f1fdb68765c4512fa8aa302156a4fc54df7af3fb5d5d1e2d59c24111c3db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Controller/BillingController.php":{"size":13703,"mtime_ns":1782728407192799169,"hash":"7226845540da9c2d9121eb7e25eab910b5d60d45d0f5dc14321ce9379b079967"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Claim.php":{"size":6465,"mtime_ns":1782214545726749575,"hash":"85028f866ff4695fa0095e4ba3191a385a63fdb3aa1f3222fda2d94b61d6d39c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/ClaimItem.php":{"size":1646,"mtime_ns":1782214545726889450,"hash":"0e3bb1ebc45d4c045ef0e6fe09170976c315d7da410efd79bdcc53189e9dab49"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Invoice.php":{"size":6079,"mtime_ns":1782214545727230826,"hash":"02081acac585d1cfaabd1d404b0bb25c7bcf25fa51e32bf986cd75675d14ac24"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/InvoiceItem.php":{"size":3448,"mtime_ns":1782214545727383452,"hash":"63280ec10f55dc16106afecac0784a9094ce12fbd3787a482a75eafe451aa5bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimItemRepository.php":{"size":895,"mtime_ns":1782214545727554077,"hash":"9f606952d141e1db9f444ec80bba343c34a5c39f905f72c53c76d7cc7dc58f89"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimRepository.php":{"size":5807,"mtime_ns":1782728407193826801,"hash":"26fd73c5de681031611a56b0e9a1140cf3b4c1088059ba954e7c3c8a344392de"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceItemRepository.php":{"size":2056,"mtime_ns":1782262433593751772,"hash":"6a2e18c9de2434f67ce2250dc17ec50a29f207b95ca2fc6e2a9c7d338a67a67e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceRepository.php":{"size":865,"mtime_ns":1782214545727978079,"hash":"71c55535e6b20d820e351a26af6bd1c1b6cb26c371414e611e8e858c2d8486f9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/BillingCalculator.php":{"size":1975,"mtime_ns":1782214545728144705,"hash":"9751645f561446a0d0f6a618cbbeae012f7f2274c5c1fbb4379220b995070f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ClaimService.php":{"size":4124,"mtime_ns":1782254015995593528,"hash":"f04e02faaf3d8f49d493c2e77f8f80120e8de353af185e624996c9b14e36267b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/InvoiceService.php":{"size":3335,"mtime_ns":1782263056583478624,"hash":"411b9e4e6aa41a158211959c5b9c4c286ada95c8b68596364eca3b1cbf436e86"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ManualClaimSubmitter.php":{"size":771,"mtime_ns":1782214545728543539,"hash":"11064e4cf0182849f67012ead852a3b45c2d8b66693e9680bfabf4094c3b9d40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/Money.php":{"size":775,"mtime_ns":1782214545728705873,"hash":"97c8de0bcd950f7b29c8f8fb87d33f4cb79bd0b17e531592c80fa5fb5c0e6de8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/ShareBreakdown.php":{"size":599,"mtime_ns":1782214545728844457,"hash":"98b4c746ff1d241697d227cd21bf6a8b010cea93dbf0a219f89910456c511ac1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Controller/BlogController.php":{"size":17742,"mtime_ns":1782050215484280688,"hash":"4bc5e62060b6e27970972698933b7e9b6f63a4eba44cac9fd08cabb6d5c355f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Entity/Blog.php":{"size":5562,"mtime_ns":1782650883613744390,"hash":"5e6a312d48b1efacb7e4c14b87a658d1ad64bf0d3aefa5bdb2008011cb3b175b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Repository/BlogRepository.php":{"size":2133,"mtime_ns":1782049659479434537,"hash":"a15b4c1c26d71f5cd0b0d4e3c913702999a475ae13abd7d8eb29ab20e033adee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryController.php":{"size":1776,"mtime_ns":1782728407194246845,"hash":"1be28d02d6f241500cc7a55f1a597962d80b5f72c814c9308fd6811029aef714"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Controller/ClinicController.php":{"size":34368,"mtime_ns":1782035216514487631,"hash":"434df68031d6367be88eaa0faa9ed185484cd9e7d4e4b4b9e0b50d4d743e18a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Entity/Clinic.php":{"size":12311,"mtime_ns":1782728407194604639,"hash":"d192f3609f782986a1c36a6236066c503364b8d1bb7312c928e7c9ff1a2f5d80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Repository/ClinicRepository.php":{"size":4495,"mtime_ns":1781782025398193552,"hash":"e6a358cbfbbd1bd23e4e823ad1b981c488de8282df7bdcf2eea921232be0b090"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Controller/ClinicInvitationController.php":{"size":10193,"mtime_ns":1782728407194937600,"hash":"9e968ad47c34e34775e6793301147eaf9768692a8f254ceed37152207ae3d202"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Entity/ClinicDoctorInvitation.php":{"size":5434,"mtime_ns":1782728407195142351,"hash":"44d986e38a0aaff4ff36d621205c7361769814ac64e5e559dfeb02d2e63b09d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php":{"size":1821,"mtime_ns":1781293272835808881,"hash":"10604824317018d8f535539834b9913ef3982889b1ffb2874e4438f848f06726"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Service/ClinicInvitationService.php":{"size":4420,"mtime_ns":1781888637727954912,"hash":"123c29f45911c7151d410112521a5d787922a73bbb0ebb1f53792aff70376e6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Controller/ClinicServiceController.php":{"size":15449,"mtime_ns":1782728407195387478,"hash":"38d8db77331e6ccdf9e78a54f5f223cd74cd1b83880d40ececcf4cce392472cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceItem.php":{"size":4270,"mtime_ns":1782260462891413703,"hash":"f7c314c5ddc678d4896d358c4b89ee1048c314fe237fb307b1909e44d986307f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceSection.php":{"size":2865,"mtime_ns":1781516938575505158,"hash":"6fce4d578f8878eb023372cfeeed180e1826274363811165b1623578b8911386"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/Tariff.php":{"size":2497,"mtime_ns":1782214545729589627,"hash":"77a5e0dca59cd5587ab614a2bedd46a0de3485d620a6125f4804db7b688115f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceItemRepository.php":{"size":1193,"mtime_ns":1781516938575690367,"hash":"3561e5174c09c2d295bf2b77e3a2692c234f30cfe76b597213ce1bd2ff9bc81b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceSectionRepository.php":{"size":1274,"mtime_ns":1781516938575822117,"hash":"6e87ff4062b59b4870ac32891b6fd40ab36ed939b3a67959c600a63a0375b299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/TariffRepository.php":{"size":1312,"mtime_ns":1782214545729721752,"hash":"fece09188f0d746cc7fdc518fb8d63488c77314d629940d1c0969b6f28fc7b38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Service/TariffService.php":{"size":1653,"mtime_ns":1782214545729910003,"hash":"13d77eda5f22d43badf639d0127bc7252b3adfe6c72657c33423ad5a04f345b2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php":{"size":3518,"mtime_ns":1782974471625105803,"hash":"d817124419f159576059572a5a6f7982343fc0ba9d1e685f113bc453a34e8262"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/SiteConfig.php":{"size":1026,"mtime_ns":1782650883609343293,"hash":"694f1f497f5a3a1095f2949eacd68694eb7e8d6536abcd1bb61e7d788abed158"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/TaxRateHistory.php":{"size":1836,"mtime_ns":1782650883608855500,"hash":"1b50a1ed1a3d72be73df9bce2bcb010e2b90888bc7daa0a312ede4d181327631"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php":{"size":2334,"mtime_ns":1782929759660596058,"hash":"5ea072c77a0f25c8ccdd23616656fce0b88b93408c6cd461d98e9b18a6fa85b2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/TaxRateHistoryRepository.php":{"size":591,"mtime_ns":1782293892020820040,"hash":"1161721d41f057cd7c7d820b405a526cf644ade3da6a44a93e63ce9a364a9ca3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php":{"size":18353,"mtime_ns":1782895903517818351,"hash":"daee2d9b6d06d625e6cab2ea419f7cc5f7ddc2ebfd53f1132502a4029bb71f7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php":{"size":37883,"mtime_ns":1782931944407206340,"hash":"d40b9b6f40bafd777652c6777ef5a90a7839b8d451cd38bbb8a04119c4b6d44c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php":{"size":16811,"mtime_ns":1782728407196033316,"hash":"dcd2dd96c11cd47f033dbb41718dde4b0f7fa2a2110f25ba4804b33e37e331e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorAddress.php":{"size":5470,"mtime_ns":1782650883611537550,"hash":"f42a0409b492abf55f1ed704e65e2273b1a9b7424abf0d2bd9c9507ea9345747"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorAddressRepository.php":{"size":2770,"mtime_ns":1781783246170814153,"hash":"531973c4cf541ba9e8f3955fad4c863ec94f0a5cf84a03c9fa438aa59f979a3c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorRepository.php":{"size":7714,"mtime_ns":1782728407196368484,"hash":"3b22e183b3ec75a81be9e5095a62c8597b792a7be8b588e084f50c3f3ae0c2e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php":{"size":5592,"mtime_ns":1782844356167570792,"hash":"4e16c69d4c1e7d4b295ed6840c0b6010e03e8c0c7411102cb63c1295dacc8538"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Entity/DoctorService.php":{"size":2831,"mtime_ns":1781085550562230229,"hash":"6d7d545954a787dfcf52e2f9b8ccae47a1af55c21a43d3c60ca8c59dbade506e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Repository/DoctorServiceRepository.php":{"size":1274,"mtime_ns":1781085558665462494,"hash":"79eb3168176aa86043e1613fa832e0a94b683ab7cd5a7553222d88ef9198f4c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php":{"size":25579,"mtime_ns":1782844375135424196,"hash":"81785346450737ea93ec13608e671ec5702072ca36bda0b89666f1497c9e6e68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/DoctorInsurance.php":{"size":1960,"mtime_ns":1782728407197029697,"hash":"3835c0d26cf2af6937ccb1990a2a097e0696bc03c144ca9863867906de1b3a94"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/EntityInsurancePricing.php":{"size":2507,"mtime_ns":1782214545730369713,"hash":"e0c3664524d71706ffc2c377c20c9ea5d12be0b8aacbe3feaeffe555ee003ef7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/Insurance.php":{"size":2270,"mtime_ns":1781085569269281268,"hash":"bb5c7b593458bca73e6d767909d845c59371d50aefc54d6819b53b036d16d8a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantInsurance.php":{"size":4767,"mtime_ns":1782214545730514547,"hash":"8f4a4e4087e65a58cdc2444a4584a3a40796948313e4374e1f8a38983385bda9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantServiceCoverage.php":{"size":3432,"mtime_ns":1782214545730644047,"hash":"fd098f4aef57bc0988ca8d17760b0009d2742666fd62fc0ff2ce07fc6b0dab1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Enum/InsuranceType.php":{"size":351,"mtime_ns":1781085440519759893,"hash":"30ae4d15da752fad6f6fdf214fc764732f372af51c1361fcdd23ccf7cb66d41c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/DoctorInsuranceRepository.php":{"size":848,"mtime_ns":1781011984448803782,"hash":"61e05cda6d846d53a56fe1bc16a932bd7ee1fcc43f8ad9cdc4f8eda7635a2bb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/EntityInsurancePricingRepository.php":{"size":1404,"mtime_ns":1782214545730775964,"hash":"623b73aedc8f41f9f0ac7d374725808c1c72012956628e15ebde5681f7034dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/InsuranceRepository.php":{"size":1220,"mtime_ns":1781085576476951957,"hash":"dc63f462de508c5f6d1fd51b08ebd887c5f79528d5183fc7a792e6cb579e26ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantInsuranceRepository.php":{"size":2436,"mtime_ns":1782214545730912256,"hash":"b99e224b9f48a68ebdb627590ef6c9057f3ec7969e4ca2e317378766527785a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantServiceCoverageRepository.php":{"size":1339,"mtime_ns":1782214545731054174,"hash":"5d8193d5276ee2a12f650ee075fc47f0bb32f32bcaf26f46328b1c7498636853"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceService.php":{"size":6310,"mtime_ns":1782268410292219426,"hash":"088a8086ca7a8284aa67577aa0ffe060d532f3bbb2090b6c3e3ff0f4730e2703"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/ValueObject/CoverageRule.php":{"size":381,"mtime_ns":1782214545731415633,"hash":"3ce989704beb3ff9aa60cad8460e69a1ef5a411ff0024b7d5541df502f4cbf2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Kernel.php":{"size":992,"mtime_ns":1782743240249498742,"hash":"3b2fcf35ae459cfe82147916f43a6da872819e946938e0cd330a596a226065a8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php":{"size":10686,"mtime_ns":1782974061724307246,"hash":"932a44a4ab3a500433da4f1d7f2be16eb6f50420871c62a73f8c8f2ca3fbb624"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/City.php":{"size":6193,"mtime_ns":1782974046991891215,"hash":"87707d98ee67a674c5e81583b81f493c6c213d6f937f50b001533b334b1ee3a3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/Province.php":{"size":1688,"mtime_ns":1781085458710667014,"hash":"3353fa978b6558c945031d0c09a3dc24706f592287978236072c53c3cc13d033"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/CityRepository.php":{"size":1187,"mtime_ns":1781085493561648130,"hash":"1a7f0d07099224c30cc6111ba102ddf6cd583df610528c692ce923d42bf1e591"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/ProvinceRepository.php":{"size":1071,"mtime_ns":1781085486117016673,"hash":"4572085d4a4e79a86a1c2cfcc89b5cd6268ddeb466878a16db71f60216a6c148"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Controller/PatientController.php":{"size":15797,"mtime_ns":1782728407197647952,"hash":"0adb531514bb19b3fabe1e679468f731f00cc6d34a2edbb9e887a18c94447bc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientRecord.php":{"size":3088,"mtime_ns":1782144029159424511,"hash":"8be2218c1dcc6dd9101278637b469d927567abf3e264d6b8c634292641096dfe"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientSession.php":{"size":7041,"mtime_ns":1782728407197911662,"hash":"e99aa5f70fa1eee35e78e90f7ea8e8e5f4bc80b77d2de0888eafd91b3ef0fcf6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/SessionService.php":{"size":3069,"mtime_ns":1782253591741414931,"hash":"d7326f5115c044fe75744a4c6ac0e2d0efca2b4a93e57984483f1c859ffba1c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientRecordRepository.php":{"size":3131,"mtime_ns":1782144042914186374,"hash":"c445fbf45f6eb65c5fd5c3f0704e1c972f0a9d9297a80d0dc879165fc57666c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientSessionRepository.php":{"size":3665,"mtime_ns":1782268984212730950,"hash":"24f29fe0ee2cade4f4bef5572aa45086f444ab02d67f82d24228de49ccc25a2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/SessionServiceRepository.php":{"size":563,"mtime_ns":1781516938578050288,"hash":"24beb2335672cb84cfa5a787618c7907663606aa14262af1b8ee93058c0ac265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Service/PatientService.php":{"size":7827,"mtime_ns":1782263039495809276,"hash":"e23289a2e8d04c22a69888e3775e2b851246b28c6e217cf22e8c91e99ada9ee9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php":{"size":33194,"mtime_ns":1782974625521885267,"hash":"2b39b6600a9e6dc9ebe1ffc5594ef1d79a2166600a1b5c5a35f37a52084e8013"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/Payment.php":{"size":5647,"mtime_ns":1782728407198542249,"hash":"baea6fcd3343ee16bf9c045dc65f6cf06e022b157b485144dd459f385f9ee5c8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php":{"size":6266,"mtime_ns":1782896964907650632,"hash":"94984cd8d8f2e3852459889e98eb163d89666bc4fed43e2fb9e8528014ddd8cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MockGateway.php":{"size":1488,"mtime_ns":1782896968603320074,"hash":"5aad6d8654a15ff3dcc96d476cc3948643ec8de2ef4624c220dfe22ce6ddc501"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentGatewayInterface.php":{"size":578,"mtime_ns":1782896961142724929,"hash":"540107aa296e34a640bcd59cd80e5cabc4c739d4dad43a1645eb30ba5c196ffa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentInitResult.php":{"size":307,"mtime_ns":1781012933059275866,"hash":"9b5327e24637c885b0696cc7172071104927aec8791208b43867049dcbbe0d63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentVerifyResult.php":{"size":368,"mtime_ns":1781591920508677099,"hash":"88f08d81dc92ac75d2f0628c60f3fb78b039b9184039592047cc92c58d0db068"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php":{"size":3926,"mtime_ns":1782896967245397686,"hash":"5503b09d5adb7e31a3681493baea94836c72554b336080b63229cad9f25907ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentRepository.php":{"size":3293,"mtime_ns":1782728407199154920,"hash":"9051e2d1dd67a0d6fb8a70504e7bbbc79f891e098a4d836d0e8f9ae6ff7639aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Service/CircuitBreakerService.php":{"size":1228,"mtime_ns":1781012993246621609,"hash":"4e04548bbb1ae6b6c17a4206408f3050ad341da5ddcc74d4b1af376b50580911"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Controller/RatingController.php":{"size":22783,"mtime_ns":1782728407199386297,"hash":"64462e603b4569268e25d7f6a989f1b4d9b598a7613405a5d5d0165df2b477fc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Comment.php":{"size":4881,"mtime_ns":1782650883605327864,"hash":"c43aa389121312d1fe2ba9639e3a6a0ba5fc21f78d0784adb723c26e3afbc0fa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Like.php":{"size":2153,"mtime_ns":1782650883604545320,"hash":"7a7937df6b8df47196e035544c1ec78a11847a0a1688114bdb5265adde8d32c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Rate.php":{"size":4359,"mtime_ns":1782650883604952613,"hash":"bb8b2b8ccda54b99bd5ab0bd937dc29d4ac840195e3f89fcfc286b5429b2b863"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/CommentRepository.php":{"size":3785,"mtime_ns":1782728407199666132,"hash":"57721807456fc1a9e0c2df0dadb2b4c45cff8a7c2e650c33ff1e4edc22ec9eb0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/LikeRepository.php":{"size":1619,"mtime_ns":1781557035805931490,"hash":"9c2c1575ce7f26c9d2139ab8301fd887658e295f66b4f164b48d050bd43a411a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/RateRepository.php":{"size":2052,"mtime_ns":1781557035806516573,"hash":"5e2c5765f0d67648d72fde8992e1969822df630577e503f9a086dc01960e3f90"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php":{"size":41170,"mtime_ns":1782728407200475887,"hash":"973a496476356f34610a5a3167495b0d91dec8c49306f38fae4480267ae9f378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationController.php":{"size":21984,"mtime_ns":1782728407200758181,"hash":"681dfdf19f3a7a8d0d86ddefff60f30fb81d1a9c1024137c0f9ba3af6c658fe4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Entity/Representation.php":{"size":5417,"mtime_ns":1782650883614592767,"hash":"ce5a938bccaf71572af189a1b92ee7e21baa9865c299dd261e3f18180b21b620"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Repository/RepresentationRepository.php":{"size":1239,"mtime_ns":1782304285868497898,"hash":"7b69c315115cadf10ed9b253b37141184c085cad544ab6274f330a0d1b17bfc1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/JalaliDateService.php":{"size":4368,"mtime_ns":1782384877403158726,"hash":"8a1282441580b6b46896c1c52a6ff284279e0e3610da60c638bfce1067450fb3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Schedule.php":{"size":1037,"mtime_ns":1782929801207590724,"hash":"e1ed1b5ef5b6100bcb8a1e0d3e361ce40a2721501cdb5f14aa6fba8739654eee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php":{"size":11140,"mtime_ns":1782929066319571252,"hash":"22962190c09511c075841be03160d568136c781309f19f50f6cbb7a21f6dd499"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Entity/DoctorSecretary.php":{"size":5203,"mtime_ns":1782728407201032933,"hash":"7a89e177bf272aa6e20c29d8e39c66c4e9f761daa1875a073525369cebc48193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Repository/DoctorSecretaryRepository.php":{"size":5327,"mtime_ns":1782728407201262976,"hash":"bac031cd09fb91bf156e250accd69b5bb83f2af7738e8394852e746f3152dbb2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Security/SecretaryPermissionChecker.php":{"size":724,"mtime_ns":1781012108901602268,"hash":"42ddb598442c2c167950e1a33eeceb551384377427749d0ee3b6a61f152e64bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Controller/SettlementController.php":{"size":23112,"mtime_ns":1782728407201510186,"hash":"b6f3ad0ae1b555833b87edf0398a96200295160b1c6a57c26e3f751274892c9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/FinancialBreakdown.php":{"size":5470,"mtime_ns":1782728407201776813,"hash":"a0c5e8cc2f0a3597518275c45fe403a188bbfe210fa75da65eee3ebeef594963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/Settlement.php":{"size":4252,"mtime_ns":1782650883606160908,"hash":"36b84f9a63c52cdf4150c0848c4a3fd28a0c7a1aba6bda3f147c3dd9da2f969c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/WalletTransaction.php":{"size":3099,"mtime_ns":1782728407202004397,"hash":"d2acafb91806e555535cdbddd5151e71b71561cddf2d0872461285e6d1489b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/FinancialBreakdownRepository.php":{"size":779,"mtime_ns":1782293142660794730,"hash":"ae9fa6ec3678bedb9574a38678795af169ff793fe2e660d9413fe05ba1523041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/SettlementRepository.php":{"size":2270,"mtime_ns":1782728407202173607,"hash":"9c617a929f6ed0595a371ee05d2e9d19d204ed3eb80bd0df9fe9de71fbf76e2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/WalletTransactionRepository.php":{"size":974,"mtime_ns":1782728407202497901,"hash":"12fdfe848f6eb143b87b09645122480b33a778bdf2d9179fd9d45c27540a23a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Service/CommissionService.php":{"size":5477,"mtime_ns":1782304402886645822,"hash":"643e2a0f6dbf7cbcb2f4002b3dae74d02c8d6e9f694cd1249ad54ae7ddc63e92"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Constant/ErrorCodes.php":{"size":9417,"mtime_ns":1782728407202855820,"hash":"3e172a36ac3e336ad3501c5defbd9ec894334ba4f7f720b04d4515bd6703b939"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/BaseController.php":{"size":1710,"mtime_ns":1781009861592137456,"hash":"4bd3aa269121a122fcf443aa15c884adf07e0700950135a3e66dbdf27b9c2416"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HealthController.php":{"size":1190,"mtime_ns":1781009995463320374,"hash":"124d5bfe7f63a910acd5ddab19c0ecb83c9d9005786fcd6606e597e7f6b6050b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HomeController.php":{"size":409,"mtime_ns":1781248993159620643,"hash":"d08f9d35b78ee68ab06620388e34b709eab59364bd0b84e5d2e1478f45310970"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Doctrine/JsonContains.php":{"size":1061,"mtime_ns":1782050362337187655,"hash":"bc76253c31cf5a3bb23264736171549281989a4d9915b05a303647324d5aa4e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/ExceptionSubscriber.php":{"size":5579,"mtime_ns":1782747822711536821,"hash":"cc3e848cbd0237379c1c26afed58de7230b93b095d87ca672ffc16e88a7bac40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/SecurityHeadersSubscriber.php":{"size":1559,"mtime_ns":1782728407203289865,"hash":"4c05cb260495d4e38a1c9f13163eb64ee0cf264d95c6f87994cc03e4508c285c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Exception/AppException.php":{"size":637,"mtime_ns":1781009868466892123,"hash":"7956e81fe8e81b642076d55380a796ca70431e6c3880db06d2fc264c8b078f82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Message/SendSmsMessage.php":{"size":235,"mtime_ns":1781010000546687126,"hash":"daff508176e43de48738f7d7b86a97f047329c0c3a9896602933c7aa130ff739"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php":{"size":4598,"mtime_ns":1782750061879006297,"hash":"d2a46876b0e6e0cc5cf9a88c3ea9067de7a0f64df5bc59099c215c14a123a305"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/FileValidatorService.php":{"size":2743,"mtime_ns":1781946812332075105,"hash":"4c26e4f47f2793bbef582d233a1f08e96e91274448209159653ec0d95a3b8b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/InputValidator.php":{"size":1811,"mtime_ns":1782290232599858088,"hash":"3d610effa54b8c5afa1c206c0dd46ed3ead6b84215d54b39e6789c498c01427d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Command/SeedSmsMessageTemplatesCommand.php":{"size":1380,"mtime_ns":1781888665382463925,"hash":"1a62b01d290b483e8188ad1a555bb459bd780334cd28835e86bcc0517382c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsController.php":{"size":21687,"mtime_ns":1781889430823494936,"hash":"e768f521935e2bfebedf60e563dd50f8c2eaf1bec54382bc01e05aa72ba2941d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsMessageController.php":{"size":4104,"mtime_ns":1781888448780113939,"hash":"4724d7f809243a92d8e48fb121d8d7e946d9e4072879f7df95804a9e69e13fe6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php":{"size":11944,"mtime_ns":1782894791538739382,"hash":"5a7b81ccbc80a2eda57c20b2a678a9c6c0eefaac5f897cdff1caa158600e68fd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php":{"size":3070,"mtime_ns":1782902823958000168,"hash":"f8cd091e36d8c2f841540dd25b1091db266e42634f4ccd26f351748f1fc21079"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php":{"size":4223,"mtime_ns":1782902828661939929,"hash":"df83b5af8cf13028807615b2d62c006bce1c67ca64c1d3a907fcba083c8bd8ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsSettings.php":{"size":5136,"mtime_ns":1782109802341264005,"hash":"751faac90d0b9d9320a8315e7b0765dc39d94089c96a65bacb4a59d84bc442c6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsTemplate.php":{"size":4085,"mtime_ns":1782650883608045581,"hash":"9c1ebef6b3ee3a4724e94af555854df18a8d5f2bba6f524781a94478123be0dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWallet.php":{"size":1749,"mtime_ns":1781516938580571044,"hash":"af121e73720cdd1fac6a329c931f01349fae4aba0cc9ca12bf25c232ebb69e5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWalletTransaction.php":{"size":2423,"mtime_ns":1781516938580684919,"hash":"5272a1b08bc5d6f28d5d845e9201780a4804fce789175b7be82001a4102f09bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Message/SendSmsMessage.php":{"size":495,"mtime_ns":1781871113880839659,"hash":"e37f791352f7f9ab7ededa626d6c3d53fa7675ae4e9cd65f499d5b0f0d8a356f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php":{"size":2609,"mtime_ns":1782893881095928452,"hash":"2964a2ff29bf2568a52d10ab0e0fd05caeada222d1d285c67851cd88e6d67f8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/RanginehProvider.php":{"size":2234,"mtime_ns":1782749977746062400,"hash":"e2910a9314c0a63d60a4d5df210a421d12149e64db2550cb58bf021bb84f19c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/SmsProviderInterface.php":{"size":361,"mtime_ns":1781013608175277472,"hash":"225781d93f9a713aa0a979f12efff07f7805972e287cc1fe11371367bfcc4e43"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsLogRepository.php":{"size":502,"mtime_ns":1781013670673270702,"hash":"66b4158b7f47661bd573f21e65c35e20e22ecbb830736f07091857004868eeb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsMessageTemplateRepository.php":{"size":752,"mtime_ns":1781888405897787839,"hash":"a6b1523de3a122f8c6dd8e442929ae821b0cc88dab224899c0a8cf100b6247a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsSettingsRepository.php":{"size":729,"mtime_ns":1781516938580977169,"hash":"c2df1e6cc37ef5422312c0eac75fdea0d42de8e6eb822faa96e7bc5e423be9cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsTemplateRepository.php":{"size":789,"mtime_ns":1781013662226415873,"hash":"8da60c0de8613863b8928cb46c6bd846cff26539f158be4a68115ff3a6c68684"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletRepository.php":{"size":911,"mtime_ns":1781516938581096086,"hash":"01a35794369da341601324499da53378a75ab8592d14a32b72d564b44137177d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletTransactionRepository.php":{"size":1325,"mtime_ns":1781516938581213795,"hash":"68b117404c5f1c7c68914a367f9ac656b25cb486daeabb9808a36be205f4de56"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SendSmsHandler.php":{"size":372,"mtime_ns":1781013692820181847,"hash":"f644961f4a1538c1d315e1d6000fcae2d4466975c054685003dc616186614172"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsService.php":{"size":1914,"mtime_ns":1781888026617108387,"hash":"4581869e73129d4933612504c7f98caadb405f5a192dca7a805d4cd5220482ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsTextResolver.php":{"size":990,"mtime_ns":1781888419028487399,"hash":"c83ed15618515fd7301a8fd03a409f17232d3d03e917fcda93bf1f72fc70b963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsWalletService.php":{"size":1830,"mtime_ns":1781516938581332837,"hash":"72dc9bef8e8ddc92b4e2053e804407f80ffde9a4b57d1dbd07095d47f6651dc0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php":{"size":6336,"mtime_ns":1782844333713927668,"hash":"84c72c8da1f6fc901ef1b8c75accdfed1fb314c943d3b81a1d031c26f79aacf9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Entity/Specialty.php":{"size":2698,"mtime_ns":1781085518712241650,"hash":"683f2375f3d9528dd02e9cbfe7bd344ff51208aff0ef02dfed3d576c3460a1f7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Repository/SpecialtyRepository.php":{"size":2293,"mtime_ns":1781636247076888517,"hash":"9b991dc48c3a9c42baad98f553ee0fa395c4b596f65e84230420929f3e32e6c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Controller/StaffController.php":{"size":5842,"mtime_ns":1781522583734490612,"hash":"8b6ad6acaf1a93214344464c7dcc3b9792720118a1c0963340f639a87de43264"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Entity/ClinicStaff.php":{"size":4240,"mtime_ns":1781516938581704629,"hash":"95c3df6b577ad88a80af1bec2e17b48c6d7b9f35b1a8f75490d0a1bfbc940fee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Repository/ClinicStaffRepository.php":{"size":1179,"mtime_ns":1781516938581849755,"hash":"d83ac7466427c09ca77b63924a66dd5710c8ecc9ba3b6dbdeecc4648940a711b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Controller/SubscriptionController.php":{"size":11185,"mtime_ns":1781522583734953988,"hash":"65a467e75d34ebf32f56e45ca5aafffb2a0560dcaf538b6e5d962b46b3265718"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/ClinicSubscription.php":{"size":4057,"mtime_ns":1782728407203534324,"hash":"a21caf7417e2a32180b91b4fe18ac8245f2b0aeb8887104b2739771151a37350"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPeriod.php":{"size":3806,"mtime_ns":1782728407203839326,"hash":"0121bf60210628bcbb1cbe89419eddfd71b29c65debdbd3dbce51e2d2632c75b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPlan.php":{"size":3867,"mtime_ns":1781516938582569339,"hash":"ea26b39ca447321dcd1a8f9b199a6b8e2b82c67814754709ea47570066ed15e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/ClinicSubscriptionRepository.php":{"size":1780,"mtime_ns":1781516938582726506,"hash":"b5459ccb551f37c349aab40fef73ac8f33414ba9f130289f284595c7b3e14622"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPeriodRepository.php":{"size":954,"mtime_ns":1781516938582865590,"hash":"726666fe5f74b8a9927376e82af264b70b209a4e86d164061eb7a9b1d9440942"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPlanRepository.php":{"size":1084,"mtime_ns":1781516938582984965,"hash":"1f4ddab7ada6116daee3a80a2b4ded6c8b84612e036cc16621211616ea9cb2e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Service/SubscriptionService.php":{"size":4048,"mtime_ns":1781516938583134340,"hash":"1ccd90f5a75d47aad2155484d487cf0dfceb319ec0b9ae4f45a30cb931e5e031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php":{"size":4239,"mtime_ns":1782844396159141068,"hash":"f4aa363cf77d90bfca146bffb70b496661bd3e4822fc2502a6bd390c84b15bc8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Entity/Tag.php":{"size":1775,"mtime_ns":1781085585665970564,"hash":"cd3edf2f90d5bdd70487b38e085a751cb578a9cb2395086bbe2964e5dbd1996d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Repository/TagRepository.php":{"size":967,"mtime_ns":1781085592043241382,"hash":"283d4f4300d6202a7ab924d3bf130f7b2d90716a520b6d40ba35edd27cc88059"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Controller/UserProfileController.php":{"size":12912,"mtime_ns":1782289553079211479,"hash":"9d2e310f94dcbde48859dea9872428189b32d7f415af52e6aa5eb523c446fed7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Entity/UserProfile.php":{"size":9546,"mtime_ns":1782650883615317561,"hash":"d65393c833dec86f7dae8413a72b3a6cd0cc75f3e7faf36bb02995d72b463bb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Repository/UserProfileRepository.php":{"size":1267,"mtime_ns":1782270252112779103,"hash":"d36f160a81c8fa1927ea604fb2c27f0ed0f1b33507d838e28adf9fa1fa3b6fcd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/BillingCalculatorTest.php":{"size":3007,"mtime_ns":1782214545731907969,"hash":"85b469b70480541f73092cf1593029c76fb703bdaf77f71327a0f25ecffd7924"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/bootstrap.php":{"size":248,"mtime_ns":1781009800080637813,"hash":"57ff9294703e34a685f28cd3c0e46ab54a5dd3f4fe3356c224e3aed0958269d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tsconfig.json":{"size":423,"mtime_ns":1782729422588693047,"hash":"53fac6b4a0917eecde4dc3efc021cceca3d48600d9cfb58a3d4c946135751c66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-pwa.md":{"size":9407,"mtime_ns":1781343171405896374,"hash":"f6294cbb97d2ca4465b4f185c394daabb11f6ddacc29c2d471decb04da8c7265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ui-kit-redesign.md":{"size":10577,"mtime_ns":1782232921465705417,"hash":"24c6ca8b5c2e6f9b9783d446829be9cd4ffe5c6b550e0754d2d4521555382892"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-user-detail-show-profile.md":{"size":9288,"mtime_ns":1781549990210378142,"hash":"629f80e928f666143a4f251067bb31a4f866773e509f34b6c2d623580424e3aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-detail-enrich.md":{"size":4876,"mtime_ns":1781636247075313849,"hash":"a846f9cb4c0d643d7488873cd7a27a15adf39c8b1a206a371efdd0bedb472612"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-lock-patient-confirm.md":{"size":16770,"mtime_ns":1781535498213998370,"hash":"0a79349da76f2fe2c50e76e3add06522ea796a255722386426e7b7edf988637e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-day-of-week.md":{"size":15777,"mtime_ns":1781192992528836012,"hash":"73bc57098ab8816c91d042649840e5d34f5d00f096aa88b4bd3d5b9501b749b4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-redesign.md":{"size":24082,"mtime_ns":1781173659296708465,"hash":"fe28753bae9a95b192796f18322282909e707d96f00082b8d1ce655b47d2aa2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/build-homepage.md":{"size":4205,"mtime_ns":1781248910704293609,"hash":"4dda73a4d2f91de3fa5b641c559cf509ba8b87ec4621bf2e8eeedea3f9927412"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-detail-fixes.md":{"size":3514,"mtime_ns":1781286844618120218,"hash":"2cecd1fb0904f3aff92545007b33eb4bf970efd7b03cff7c53e6ca73dd2ef9e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-doctor-deactivate.md":{"size":15114,"mtime_ns":1781257376721043348,"hash":"6b36b95516cd5fafc100a500b72fc98d68992d8cb07c02160a09f827e2fb58e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-social-media-field.md":{"size":5746,"mtime_ns":1782034582969356341,"hash":"01a6fc5a55d6357607e36837cd39a6ed646f4097fd4ba944ababf826cd1f0ff4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-view-doctor-profile.md":{"size":6746,"mtime_ns":1781361314655405808,"hash":"b7d523d90f08ea239fa8b03eae601cf68353be6f45c0192762cabfef28c55e67"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-patient-without-signup.md":{"size":5271,"mtime_ns":1782145462624789979,"hash":"5bf24921d4002ea348e38c87cc81bc08ef8e169924787c3c719bac9d3e62d4a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-phase2-tasks.md":{"size":24506,"mtime_ns":1781516938546554807,"hash":"f3d49625dfa644a00f6cd5a582e52d63bfefbd2db875f25164774a71cf345ecd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-booking-window-and-month-availability.md":{"size":12511,"mtime_ns":1781535414057585490,"hash":"505938967d29a4e337e18cb22f2a299f97e5e452e05c9b94a9e409c86107f23c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-clinic-address-access.md":{"size":10705,"mtime_ns":1781362104619727130,"hash":"657c686420a8a45159812178f8a65dbc317591779844dc26b3921c536f92de8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-profile-page.md":{"size":8799,"mtime_ns":1781175765248517513,"hash":"f1078372d9fc8eaa9196ec9840ce187d86a27b723a1c218cf872cc4e4ede5d3e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-social-media-field.md":{"size":6783,"mtime_ns":1782031213435560461,"hash":"072cbab44fe86ab89e7a46724b8631528acdd63ae0c3aee2526ab408e1c021d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-access-scoping-doctor-clinic-representation.md":{"size":14171,"mtime_ns":1781863132633307507,"hash":"8ad2e8c5d53e8f34d69e1b4fd6ce71775720cee430130043803bc44f903341e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-auth-token-hardening.md":{"size":12680,"mtime_ns":1781946301827134938,"hash":"a52ecdd96fda0f396864de78704f6c53efb9982debb51f4ea1a4494007f925cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-bugs-and-features.md":{"size":20820,"mtime_ns":1781516938546940516,"hash":"c45843d9ef701e2b73f7cd161083ffe23d315d81b68382ed4f9f45feb642c6dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-filter-by-address-location.md":{"size":6683,"mtime_ns":1781674935483152098,"hash":"b5aa923fc81b1ab79f29f7f02401dcfc56b88ce6bbcf0c5e015200000d7ae6d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-patient-auto-add.md":{"size":4991,"mtime_ns":1782145525259778908,"hash":"9dcfac3aba7cdb8101c97017973a1bf7e4217f0d8df94b9dcbd1bda10192263b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-city-via-clinic.md":{"size":5124,"mtime_ns":1782040974660614329,"hash":"a3571d2085a8c4aa6cdc7094b964fbf54281b482a064cbf368f623dc5fda26c4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-schedule-fields.md":{"size":10822,"mtime_ns":1781523041417094452,"hash":"7ceaad108bd7bcec35b9271f73308586072e8fe12be63b1dc754e5ec902bfa1d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-search-performance.md":{"size":13253,"mtime_ns":1782046573636729825,"hash":"febfb8452181a0ee429a6c1383b489ca071afe45ffb617b9343e9a406ca02d0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-guest-doctor-clinic-context-access.md":{"size":9535,"mtime_ns":1781890240620846065,"hash":"dbcabb830aa0a81fc529eb14feeec65afdd979ac4eb7ce31c80eeb22b2166166"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-invitation-accept.md":{"size":4399,"mtime_ns":1781360063617429536,"hash":"2bc99d1a7460fdf5be3711a0add4de54d4ab78a0fc16079680d4da58e4615997"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-profile-in-clinic-context.md":{"size":8367,"mtime_ns":1781365327185378947,"hash":"f063eae11f94b2132d84b0a8472bac1d4d404a2bfbfacb049f0c583f9c586219"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-server-side-mobile-nationalcode-validation.md":{"size":8677,"mtime_ns":1781945049606053409,"hash":"32049409986f11fd29d302dc3e1036cab7172ae9033c3901e0622e8171fda14a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-switch-context-role.md":{"size":7032,"mtime_ns":1781363356184798552,"hash":"74cb88449b93fd682e3ac81a322e1d405d54e111e172758e5b10ca80437e1a3b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-backend.md":{"size":23991,"mtime_ns":1781516938547317892,"hash":"ba39a2e1ccfbc1a98662ecc71225aa32583a410df8e238dad15de69a62fdb521"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-frontend.md":{"size":28042,"mtime_ns":1781520442021329832,"hash":"4faf26a0b91c83a3c183e3ed929d5d2dc92e7624549af170165bbf2faa9eec2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pages-subscription-gating.md":{"size":8256,"mtime_ns":1782258337653428004,"hash":"3755a25eb7694c8c1587bfad9e02166c438ab4bd361268126cfe0f3ee553bbb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pricing-and-selects-cleanup.md":{"size":7612,"mtime_ns":1782253591735960479,"hash":"00ca797277e9520885bf056e719721e9d72d97c4000fbd9f8bcd69980a5bd69d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-visit-pricing.md":{"size":6483,"mtime_ns":1782214545719956341,"hash":"4197cd316ec7560bb084840cd96f82df6d524916d4a4ec4a0f71108c2cdbec6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/location-clinic-address.md":{"size":15649,"mtime_ns":1781257855652300954,"hash":"c147a47466d89f4591d1efff242e3ec90e1b979463cc2d2ce5f65bd55002b770"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mark-past-slots-unavailable.md":{"size":7754,"mtime_ns":1781535427967339672,"hash":"51d4e6c59bbcf69395fb0d0a1420f5c47f5c3ea5bf77e95b3180fef5e2081fed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/multi-role-dashboard.md":{"size":47174,"mtime_ns":1781164462782884121,"hash":"bdbb8f8d4f66f36005c2c7e87f123d905c49048dba266e475c775b73d438b434"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/my-payments-list-endpoint.md":{"size":6964,"mtime_ns":1781539108766134646,"hash":"5c6b5a4fff2796f32393914512d82d2cf18fe1a2bb5c70f7087c6152451e2ce9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/national-code-unique-profile.md":{"size":9589,"mtime_ns":1782270001832720420,"hash":"4bac96e773838ee4ef912cca328f84ce957deb6c594c1a00016b305380c93112"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/new-visit-modal-ux.md":{"size":5602,"mtime_ns":1782145407253133698,"hash":"5ec3558c752110146df788f8f2f85025c4ff17876ace24f8de0b2208013a622b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/patient-record-profile-binding.md":{"size":5004,"mtime_ns":1782145573523412851,"hash":"5195bc67dec077d35f5220df58a5c2ffbb62fd44c881cc9e51d8aa53a08d065b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-test-mode-ui.md":{"size":7973,"mtime_ns":1781516938547896351,"hash":"a37f514022aea65c1e8d35c8855c087e0913c650a642cabdd39f9690577d8cd1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-unified-status-canceled-and-managed-hosts.md":{"size":11866,"mtime_ns":1781591920505562932,"hash":"32799eaded7c02d109b78be529dc0ecc8b7fc0b500326573428a365e21869b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/pre-registration.md":{"size":12415,"mtime_ns":1781252082262696147,"hash":"b1857341551ffad0b98d9d867f3caeeb8924c5b903099e9f2823620efa8eecc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/profile-birthday-jalali-persist.md":{"size":4796,"mtime_ns":1781597628367003291,"hash":"e90db79d423bcbe97680ffed422228037e2843e8169bb1188237f7f6b6babbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-bug-audit.md":{"size":10008,"mtime_ns":1781892497314247088,"hash":"63ca9f918e24b1c15839c13744045e0b8aac212279b5b4fbfa5ae619b7709804"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-multidimensional-and-rich-comments.md":{"size":12831,"mtime_ns":1781557035802767573,"hash":"332d9f393aee67c403841f184f3e6c069edaeb4459b4ee328a9310055f937cef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-require-recent-confirmed-appointment.md":{"size":9517,"mtime_ns":1781557035802942698,"hash":"305ff640dad68d7e842a5825bbf7a8f4cdb02b145eed8b782c1151db3305632e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-admin-panel-access.md":{"size":16498,"mtime_ns":1781857058512546863,"hash":"72c1500ed688169cfd796adcf9554b63994849119943dba5d5a70883eb5a8dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-commission-tax-engine.md":{"size":21994,"mtime_ns":1782292728412115840,"hash":"ca8cb1567b8434a59f5717a4b33c6ea142e69f4d1010df15010081905b556669"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-domain-guard-dashboard-settlement.md":{"size":16314,"mtime_ns":1782304099038050829,"hash":"be8842b5ac2c5a57277b047c4c6ac3f828ae302dc6a94569e8f46760564b90d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-identity-iban-verification.md":{"size":17082,"mtime_ns":1782399022752193648,"hash":"59271ef71e8e71f9f1bb9dcde1aea41565a2dbef6ed9aa8d35b1e7202c685f38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/schedule-cancel-expired-appointments.md":{"size":8800,"mtime_ns":1781551622406496621,"hash":"43d63ab1fbae2e6e2d5192d922a09293b1abbadddfe98819e39671dc00e04a99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-context-scope.md":{"size":14283,"mtime_ns":1781520442021272248,"hash":"e684ae83cc15db840406769e15852b219ceff63405fe6064bde19263b2fccfdc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/seed-realistic-data.md":{"size":14531,"mtime_ns":1781519566626148059,"hash":"6b2eea6f45404e64d2b8b3998a117e8bada7517c880339af1fc4ff72cd0409d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-coverage.md":{"size":4046,"mtime_ns":1782214545720279342,"hash":"3ff0f0f6b3a99f5facadc19ce455b27c8cea3020038a1b40bdebda4fdbaf84f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-per-insurer-coverage.md":{"size":14249,"mtime_ns":1782259799527430466,"hash":"295cae74decafadb2379fac86ac7ac1f420042d715f798d5024b03362560363d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-log-tags.md":{"size":15685,"mtime_ns":1781870909734605934,"hash":"abe301d83cba0655c353e32c6f55a9bf20dc808d033c9f5d1e40f8fa9ad5bd62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-login.md":{"size":9252,"mtime_ns":1781255737102412820,"hash":"af6300f99ef2e66cad5abf34a421e4c3f2d34995535a907f82aa86cfe4c29b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/specialty-doctor-counts.md":{"size":6533,"mtime_ns":1781636247075492016,"hash":"32a97260ea56f3bd9529a034cbb791df59ce29ca60d9966a24d469cb743fee41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/subscription-gate-ui.md":{"size":17009,"mtime_ns":1781520442075008039,"hash":"81757bb902f7ddb74f51b2aa43612d9c73fbe20abebbc2f046a6014498f9b58f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sync-user-realname-from-profile.md":{"size":6614,"mtime_ns":1781594222051658800,"hash":"b9ee6559e409596b698b855fe4ff283fac5a062a218b4aea42a3b09d14a8fd0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-darkmode-polish.md":{"size":9534,"mtime_ns":1781520979984254456,"hash":"9f195ed3dccbf8df6079d978142aac339fa50d0b949526fc1b7b832af151da1a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-ux-pages-redesign.md":{"size":18980,"mtime_ns":1781520442021457666,"hash":"2dce360a15f48c97610df47e5e6fbeea313e39fdc152e0d55bf687ec17784e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/user-profile-resolve-by-user-uuid.md":{"size":9637,"mtime_ns":1781537870411647855,"hash":"880cbf5c1bbd64937f4a197a91cdedf9c742bb3910ab2104cfb6c59e8cc7ba0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/prompt-writer/SKILL.md":{"size":5151,"mtime_ns":1781361052504791267,"hash":"abe2c711bf0a283fe50a70e5180d0ed7c7e10f7b699ceb50b4701485cf7b74bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/run-prompt/SKILL.md":{"size":9443,"mtime_ns":1781176103482888341,"hash":"bc8c63ca2411b0ed4242f54f4a998590698d1cc62ef9b2661a84668ed1e80689"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/CLAUDE.md":{"size":8393,"mtime_ns":1781551622406854747,"hash":"1712a6a680cb00c102367be014ced75a77306c0c8ac1fbccec95f37ed31cff4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/TEST_USERS.md":{"size":4101,"mtime_ns":1781520709654384302,"hash":"ae97e1e0de7fdd1d8dccf030c996f155262259cbd648b71d4834436f90827910"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/Architecture_Audit.md":{"size":33583,"mtime_ns":1780948937761931658,"hash":"e79771047616dbb7a604687b92ffcd47f09dc19a112fa51174cc2738a0e5c49b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/ClinicPro_Manual_v2.md":{"size":228782,"mtime_ns":1780944864742215753,"hash":"86c808b50dd3da1c5107e4b6a3a03190f30c643643ad6de4c89b2045f803baee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/prd.md":{"size":28619,"mtime_ns":1781520442203119936,"hash":"a1691fe2f87737cd12253bac3bfda2f8feeaabc15a159a8dce6482eea7fd6e8e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/pre_prd.md":{"size":5454,"mtime_ns":1781516938560096835,"hash":"4736bcde5ba8e7c73405d0e7c31b6e2651b65d475e4cb9a924ae152b799bc4f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/ui-design-spec.md":{"size":20687,"mtime_ns":1781024129379257560,"hash":"60176b60869538ed763bfd4b0d02c138481811e62482b73c41693ea5393e8460"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/user-flow.md":{"size":16280,"mtime_ns":1781022482742007613,"hash":"aad348887a0347a4d348eb228959ef9e44099e2c4e60959d0dc06d976ebe7e16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/README.md":{"size":3621,"mtime_ns":1781158395412841916,"hash":"8ddb00666307b307dcaba4c0b7b4f4c13e5f31502f7d20d5c3a8a82729c606b8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/admin.md":{"size":30991,"mtime_ns":1782974658990694234,"hash":"6c7c55103177a13990984f1a91cacd82552968049969a255096e9be4401ce45e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment-settings.md":{"size":16574,"mtime_ns":1782728407106610964,"hash":"540be837def81a7c24a001654fde543de78f168ba34ed839c6e6fd597ea55ed6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment.md":{"size":16822,"mtime_ns":1782728407107114384,"hash":"7b39650f7266519461983913a0c78e186275d036101a827049dd6f8c3574707e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/auth.md":{"size":18998,"mtime_ns":1782728407107527803,"hash":"3ef75b524c4a8eb4748ae652659d5849cf3a6359015216d8f24b3a0f555efc6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/billing.md":{"size":10078,"mtime_ns":1782728407107896681,"hash":"c9f6afebfd6b6f7a7e55bf1d14c8123f9230a99fc566c63aa9cb4d01b6204324"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/blog.md":{"size":5522,"mtime_ns":1782050526553302749,"hash":"fc22dc80387b6c8f477854a19dfe01e496b90b688020325f1df589e0ae5cab8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-invitation.md":{"size":9237,"mtime_ns":1781360269658725816,"hash":"50b040f0cc844000cdf24ba7971b4bfe4367e7980413f2dd90d7187a4e0c9991"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-services.md":{"size":6228,"mtime_ns":1782728407108299892,"hash":"d03260630a54476e8c29c60a2eb6540abb203d81d7656a95fbb1381344ad1a00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic.md":{"size":14733,"mtime_ns":1782035382888801592,"hash":"f92d6767717fca87e08884cee26a75a77b5ff8278bf0f6a0219245b3028130ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/dashboard.md":{"size":6099,"mtime_ns":1781516938560827336,"hash":"8368266c4453ba5364ed0787679059288d98527506bf05a44f86b5a31a7e0a6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-service.md":{"size":3542,"mtime_ns":1782844893680414173,"hash":"e89e263e5bbc843f579006c3b353fe521d9366fc228515e8a5e596321c8c0c42"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor.md":{"size":13822,"mtime_ns":1782932001157098863,"hash":"8205579cbcd4886a442a305170806aa819b520469c57f79de5cdb76b6d611a76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/insurance.md":{"size":14620,"mtime_ns":1782844893680930170,"hash":"777ea6859a4a038025bff4fd5619e698c213fb174f40b4f41292b07a7bf12dd2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/location.md":{"size":5955,"mtime_ns":1782974277464731662,"hash":"ab2fe5f2a37d5018a85f0391923ddfb058682c2107c85c2ecc9b60f24cbe0433"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/patient.md":{"size":11646,"mtime_ns":1782289600489452444,"hash":"37294299886dbe4d8227c8fdc5afea62f50755e0fd42f229eedc58f1a036abb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/payment.md":{"size":13410,"mtime_ns":1782974640976294643,"hash":"67bede935ba55cb63bd95732662fba6449caa04a19c0fd90b2771958a81f0ccb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/rating.md":{"size":11090,"mtime_ns":1782728407110670616,"hash":"61914c5f9d29060ba157369cf8e82392cc6b094df3f3a1423904c2988b19def9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/representation.md":{"size":21174,"mtime_ns":1782728407111252662,"hash":"5885967c5170bf2400f9732554f43375edc13e81715385df337db7eeea45295f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/secretary.md":{"size":11082,"mtime_ns":1782902968293482660,"hash":"8a4df85eba0a0da8f2a31f07cb8ed2b182bae88bc4530db5c743bd012bc4bbed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/settlement.md":{"size":9976,"mtime_ns":1782728407112458962,"hash":"ad88d08fd6960cb9bfd932b91def2ad395a50c391f7692e9ec30fa4dab681722"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/sms.md":{"size":14822,"mtime_ns":1782902976009701024,"hash":"65894c26cf873fc088a90507142ec0b847f06b22d2ab0840f7901f138c08550c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/specialty.md":{"size":4869,"mtime_ns":1782844893680226216,"hash":"8f43fadb8c8754ab788dc183df3538096cfffc5d7a542fde683d8fffee10fafb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/staff.md":{"size":3093,"mtime_ns":1781516938562286131,"hash":"b3690ab9cdd530eb6a0180f96f08a258ccae0c77d31416e80f49a92974eac730"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/subscription.md":{"size":5356,"mtime_ns":1781516938563076716,"hash":"0bfc1f146132195c74357b078df7c099d0dbff2c90ed2bd65f5f5c476dec793b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/tag.md":{"size":3045,"mtime_ns":1782844893681057377,"hash":"4044766bce277cb59476fa2c470b399018dafd94191893c53aca75291de87b7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/user-profile.md":{"size":7549,"mtime_ns":1782289592597934192,"hash":"5d269afd10ce9174f3ac63fb4fdcf1cb7272564925db2d3f5f7e75df50c42925"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/architecture/insurance-billing-system.md":{"size":22566,"mtime_ns":1782214545723920606,"hash":"afec1678fc22a9caa8f39eb9fac3f934751dcd6a315ac1441f1378193b88ba0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/architecture.md":{"size":4831,"mtime_ns":1781516938563423092,"hash":"589134d822642da7433ffa06823f4e2c79ad74e3feb135df95e581377b01ffd3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/database.md":{"size":2045,"mtime_ns":1781516938563622759,"hash":"580ede75d18ef6d8117ef56ab233775e5143bc25de4716cfaf53464bdaeac599"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/task.md":{"size":2775,"mtime_ns":1781516938564295343,"hash":"b55eb66cf597d5665d57d79f268a2fc106da8a8e01c18d7f8da2327da6dc7927"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/user_flow.md":{"size":3553,"mtime_ns":1781516938564465635,"hash":"c5436837b9320d6cb9e5f50e7e6b7aeaaa8bdb8dc9a68fa4b5f4b22fdd58002a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/architecture.md":{"size":6182,"mtime_ns":1781516938564667844,"hash":"97af6c2e032264f5dd128efc6ec07a4c1c23664f325cba46bc7dca9da57b9578"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/database.md":{"size":4694,"mtime_ns":1781516938564824594,"hash":"3b798be28cfff874d1b09b25429767e7c928e7c0fd9a9db2a9685f429b299299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/task.md":{"size":5322,"mtime_ns":1781516938564985928,"hash":"46d7f8870c6b9f46071a717d0235dceffd7d25508ca4f69886e5062c8b37d0e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/user_flow.md":{"size":5889,"mtime_ns":1781516938565157637,"hash":"d11628bbcd90efc0d3d09961a2ed62fe3707c3f5b60bbbfcc615da3b7180acd4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/architecture.md":{"size":2393,"mtime_ns":1781516938565327637,"hash":"d036ecddd7c889f68aac644919fb9255189de2f82cd62e3933b860bc348d34a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/database.md":{"size":1646,"mtime_ns":1781516938565469596,"hash":"bb7eaeece88f414ea6253e95b2acbbdbbf74396c5e51b213301593f2aa5d409c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/task.md":{"size":6288,"mtime_ns":1781520442208567994,"hash":"f18a2edba4a0b75fef8e08e155a4cf100b8a98e463acf88d31d506c195f5b27b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/user_flow.md":{"size":3821,"mtime_ns":1781520442059890701,"hash":"72aca8c6bba58695e7e1b63a3aa709d1068753beb31b981c648564fb822e4fec"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/architecture.md":{"size":3719,"mtime_ns":1781516938565894180,"hash":"c2c7361b57f654925f2801d0820f78bbbb97dfbd07c808b4ec304f7938139151"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/database.md":{"size":2673,"mtime_ns":1781516938566026680,"hash":"de17f21b92fb807651d65288c8539699aad5597b8e541e47c9bce4dd0f97b696"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/task.md":{"size":2931,"mtime_ns":1781516938566167056,"hash":"87038a0b3a2f872944d232bcf66eb5fab7676f00a9d29319c082a4b576a1fc40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/user_flow.md":{"size":4046,"mtime_ns":1781516938566343181,"hash":"4bce3394d64f2c1d3441cd2c3ad717670d1c91817b9015db00aa9ae4eead4f66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/architecture.md":{"size":5145,"mtime_ns":1781516938566580015,"hash":"14afd5263c7d520a89f36bbba8c8a1884f88df74d09afe4caf7464025ee25063"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/database.md":{"size":3803,"mtime_ns":1781516938567109641,"hash":"2a952887767f9f9811df0c99a9bc2ba9986defd5ea1caf3ed11080ce11c61f1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/task.md":{"size":3454,"mtime_ns":1781516938567288849,"hash":"5badde1225cf74657f886825aaaae8582c1c627570f655ae9f631144bc75d7a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/user_flow.md":{"size":4630,"mtime_ns":1781516938567444933,"hash":"8e4bcbd2fd0a486d4942df7ced8131738816487d2c16f0a05730d4c190a10296"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/architecture.md":{"size":6622,"mtime_ns":1781516938567688975,"hash":"138a7655a0efa500b4a9a8f829bebbdff35803cb3abfd3da7f4d4f362d7b63c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/database.md":{"size":5463,"mtime_ns":1781516938567863767,"hash":"1dceb66c7a12a35660145fdf3bf0bbe4d5b8275f5b45bf86cbba4cf80f64675a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/task.md":{"size":4809,"mtime_ns":1781516938568156268,"hash":"1222b425e9e9856e291b8fb39c28348287dbafcf7b0a30531c5bab8642d2cb17"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/user_flow.md":{"size":6283,"mtime_ns":1781516938568370060,"hash":"e28725b4fd619e8e105951b570c0066efb23fd6f378c1939bbe5cfcdad47b2d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/architecture.md":{"size":3095,"mtime_ns":1781516938569635604,"hash":"6494802db54a411d47ce102df7a5584c1e7db3482aad69df967bf1ca71c5ba58"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/database.md":{"size":1971,"mtime_ns":1781516938569893480,"hash":"ec0826918bb413f88d2d989f514b0c75a8cb932d11476d2c6e46908ce87968e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/task.md":{"size":2630,"mtime_ns":1781516938570195856,"hash":"19bc98b5866f489ff0cafdb3533f2698de3546aef26ad438d16beb2d7218c859"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/user_flow.md":{"size":5110,"mtime_ns":1781516938570362314,"hash":"3572f80a2a4741eeaa91c80e9c362bd8ff452c14c4d1f052efad6467db72ce60"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/bug-report-2026-06-20.md":{"size":6123,"mtime_ns":1781932195178136627,"hash":"12f46177c25b3354d11d67086bea1387dfc7c630aa26c3ae766c680f2843640e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/security-audit.md":{"size":17685,"mtime_ns":1781029533522601843,"hash":"a4ff28a805763f65454696132ecea7011101bc37b1b6517222f1c75daf450ab1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/README.md":{"size":3380,"mtime_ns":1780914526335796118,"hash":"defeedb0410731f689fba5e8e2c6f3e35b8bf9e5e284dad43313a1184b58b1ae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/architecture.md":{"size":4379,"mtime_ns":1780948878189677238,"hash":"01cbb020665bc50a95519b010c5cb4bdcda727e5e3b11144854ea69380bba84d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/database.md":{"size":2777,"mtime_ns":1780913653761675119,"hash":"6ad045e9dcec53f77822e126640dacb6bd22ac3baee94373331ba46567bf37f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/implementation_notes.md":{"size":11109,"mtime_ns":1781000268522993445,"hash":"7fcefe550ef23683ee4ed703af2881fb5c985930b4d1a3ab7c93a74ef491bdae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/task.md":{"size":15372,"mtime_ns":1780948866192116618,"hash":"311edd5597e787245e16d25b061f5faccd468d3d7a63ebb05bb04e26b3c7218e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/architecture.md":{"size":2897,"mtime_ns":1780913716805987120,"hash":"ee14b45989f69598f9862c975c097e7c3cb720c2bb06967b9787307e7acfe361"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/database.md":{"size":4381,"mtime_ns":1780945850080810308,"hash":"d1ce5e67b210864664df658d7de16fc479948f90164e90c89f53c33ee6de069a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/implementation_notes.md":{"size":4894,"mtime_ns":1780945075278630018,"hash":"8074b8f1bfe41c918b96cb9ab1c78937bf5986feb3ebe9db3c3ca7af88d7dc2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/task.md":{"size":14847,"mtime_ns":1781000259106649518,"hash":"500d89358f6bf99cb445fcb71f0fe67afc142c3c607ccfb030cbcbea8409883e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/user_flow.md":{"size":2706,"mtime_ns":1780915019246111035,"hash":"03ed965fb14b51c065108f4eeca9672f20e8090195fcc442de5c5c60c950ec10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/architecture.md":{"size":2719,"mtime_ns":1780913810512596011,"hash":"1a83b9b76c0687098bffc9471e7fb2c51a97be4939347bd11990d55fc290fbe9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/database.md":{"size":4620,"mtime_ns":1780945096397670031,"hash":"8d639d843c5d51531781080fa6179168662a5cbd22af7ea828e770823d374c00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/implementation_notes.md":{"size":2408,"mtime_ns":1780913848138283491,"hash":"5a60299e3ce86373b2ae7c2e0efdc5fb85b753123cc45bb09e0c9d671d396811"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/task.md":{"size":2503,"mtime_ns":1780913798113112926,"hash":"f00a38d5a28420b3a8fda800286352a56f0f98b190ec67e57e1d971debae3bef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/architecture.md":{"size":1757,"mtime_ns":1780913877006618619,"hash":"e63b0d01ec3714992eefec62777ee965be7af2a59d55a9e72cf87effac0f4a8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/database.md":{"size":2332,"mtime_ns":1780917970043029189,"hash":"ae2d7fd401bce729cba77a040a613a7f8fe0e9b20e8d4a31eaa970451296a001"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/implementation_notes.md":{"size":4727,"mtime_ns":1780945968298846841,"hash":"92f49568f1ecb690bef8287e9455ef0b2ed56d897309ea6b8a580fa667f8a5f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/task.md":{"size":1962,"mtime_ns":1780913865638451815,"hash":"2884592d17fcc3363768f899a4371d0ff2f25bc05bf4ab378647224aac695fc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/architecture.md":{"size":6624,"mtime_ns":1780915477914900899,"hash":"180c8f1b3163d1c97e3add7912571278ce7d53477095695010024be863743ee8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/database.md":{"size":7593,"mtime_ns":1780917946898365021,"hash":"00d19e027d60b4461e43310d6445f95fab85d7b6ba26ba946e44ea001556b0d0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/implementation_notes.md":{"size":2375,"mtime_ns":1780913973933789015,"hash":"1fa793e81dd07304171c11a760104acd6802dbeec00363618f5d4c1e651668ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/task.md":{"size":6294,"mtime_ns":1780946040236355543,"hash":"042d405bfc9f389c3f4031533534485742dabdcfe86b4d753c0cc052a755f1f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/architecture.md":{"size":1851,"mtime_ns":1780913996728031516,"hash":"6cb465ec4509143b1ff168e629400684e18542a7c1f616f5885f1c4f8be7876f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/database.md":{"size":3657,"mtime_ns":1780926795107362628,"hash":"6ae9c1c5e9c833a0781878a60323428b3388dc46dfdb5620d649371d98c03f36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/implementation_notes.md":{"size":1042,"mtime_ns":1780914015153456807,"hash":"5bb3da0cf9daf5a64f1316e32f20d5a24d70ae5a639bc0d4b62a2667a6742b19"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/task.md":{"size":5429,"mtime_ns":1780946101876308203,"hash":"709ac2fb057f4d470a55c5e47dc0bbda7f38f6a336622fd93be0e334019ee066"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/architecture.md":{"size":1985,"mtime_ns":1780914070674333692,"hash":"b6839bd6197cc3e53162104e0ccddcb4c0dad2d268815ce71e50591dd58dcaea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/database.md":{"size":3623,"mtime_ns":1780917987390393019,"hash":"6a1ac2b1feeec574386ab34b5176b6c069ee3582e7152757e4693e18440d0365"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/implementation_notes.md":{"size":1244,"mtime_ns":1780914095217341542,"hash":"fa7fd9bc9193bd89ed8e6438a3538bb8ba6aac5dbc8859735887b8a2a876956a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/task.md":{"size":1912,"mtime_ns":1780914058797929168,"hash":"4a40fbf276a9595d6be7409e5b8ec3ce0963f7cff1ae1acdbbd8e2a8962f0f76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/architecture.md":{"size":3399,"mtime_ns":1780914129817089915,"hash":"b75f451ea0018239fff4ace9a06e486880409d0015582b1aa5f843b4ff14d9ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/database.md":{"size":4225,"mtime_ns":1780915919108824849,"hash":"07a565453b405723fef58584dc058518729c7d27e873492d8a3cea7e7de0d690"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/implementation_notes.md":{"size":3094,"mtime_ns":1780945173910875440,"hash":"c75e7608c3765170173b475dc5b2b224c663e6c116cecadf38107efdc86d6878"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/task.md":{"size":2582,"mtime_ns":1780914114135141253,"hash":"48422a947301ff86b51f11c3168ec190bfa7f9dcc10821abd5ce5b9a460979ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/user_flow.md":{"size":2191,"mtime_ns":1780914171627644777,"hash":"07b7bc5971ab5201243c5bdf67eb2d111629753dd697034c85e92c96d1008809"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/architecture.md":{"size":1996,"mtime_ns":1780914199549617529,"hash":"289adc397ac626b52b89755bfe8648fab0d7afbbdca30005de728b7697b9a214"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/database.md":{"size":3717,"mtime_ns":1780915937514717817,"hash":"88321d5b96f7d4a6b8e1704430500c45915eb2e259eef363d95f26de72109092"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/implementation_notes.md":{"size":4621,"mtime_ns":1780915380116156578,"hash":"a83b0c475c907a8d8a30ed2d0ca711db33f60fb1e61c202b76bc4731a5bf8243"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/task.md":{"size":8716,"mtime_ns":1780948491117865920,"hash":"da3cd77c8f2c7ad9129a69ccf1f8dc2317dc91a1dd956cf2f042b65361be6395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/user_flow.md":{"size":1550,"mtime_ns":1780914238340850115,"hash":"9f5dce77e5f9988bba7dfcc621622610a49a42e0b065b884bab56b56661cd84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/architecture.md":{"size":1127,"mtime_ns":1780914261808559537,"hash":"375e8ddd7ec2c6078760759c4501a4cfbfa68fafd7835fb01fb77ec9e63edae3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/database.md":{"size":1786,"mtime_ns":1780945194993545294,"hash":"d839d386d4403610f52b0415868efd6ee3555dc5b209d13ec923975ec4bb799f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/implementation_notes.md":{"size":682,"mtime_ns":1780914277970139742,"hash":"9f0f9dc9c02d7e8672e66bf856526f7b0ed7956b926665bf807466cb5be8ae97"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/task.md":{"size":1020,"mtime_ns":1780914250465105891,"hash":"6dd946fad62474b45da1077a795263188685817d871a6fe6a7a48686e24d6193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/architecture.md":{"size":2188,"mtime_ns":1780914305970064998,"hash":"5fdcb2df78dd410d0c2d434203efb1e7a932ef9e9a17270a252584779e59f6cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/database.md":{"size":3810,"mtime_ns":1780915977159314990,"hash":"2fdfac8ae3f0fc238d5398ffcc770d33470901fe1d371043f2762ca15a0c6e50"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/implementation_notes.md":{"size":5724,"mtime_ns":1780946157194396377,"hash":"df382ed8eb807a193bfc884447401cd87c9a678f6ecb95a0a246468cc9311851"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/task.md":{"size":3935,"mtime_ns":1780946250306428313,"hash":"fa4fc2ef76c08670eae962ffd0a3836d7cce4469bc5f407cebff751c025e5c7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/architecture.md":{"size":974,"mtime_ns":1780914349899858832,"hash":"a0adb45cf9f78498055809006e340318b4ca21e6f8627ecbcdcac2205f3f7b29"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/database.md":{"size":1630,"mtime_ns":1780926837375006318,"hash":"3d670c92b56d80fa1da6b751fda3b776da46ea368106339d1b80dd6012e01d2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/implementation_notes.md":{"size":596,"mtime_ns":1780914363412821531,"hash":"d49115b6d3c76aec3c3678cc86c6ef5b394e8e63d96e493479bc79db4cd8558c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/task.md":{"size":475,"mtime_ns":1780914338292873383,"hash":"0f032e0490838820a0692ba9c0042dadce5a9558d87083874219c84dcde92742"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/architecture.md":{"size":1308,"mtime_ns":1780914379600079656,"hash":"17eba56cf557f9cf9d6300b9946fe25cd348fd937bd20914ba382b1a760112aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/database.md":{"size":1827,"mtime_ns":1780926849934970617,"hash":"46384e53c3b5bd73ef416c647833213a49f5eaefdd7a6c63c4227cf54e5e8aa6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/implementation_notes.md":{"size":849,"mtime_ns":1780914395413759232,"hash":"432b4d0ed90802ae1dd2495e54a2493f60f07ca0ca57a7e68734ff493b2c8031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/task.md":{"size":9039,"mtime_ns":1781000115337852359,"hash":"322eeb47d17aa1d34573f1daab3e4e6aaaa6c89a6c97bb7be08ea4e10c475f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/architecture.md":{"size":1945,"mtime_ns":1780914418815337658,"hash":"434ff7a1e4e0cb8d175321f3af647ef5276602ed753c9ca9c3c9480a7456d53c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/database.md":{"size":5305,"mtime_ns":1780946202243066788,"hash":"86fdf19600fc6c72961d37e60d2f056f9012b1b26d0fddac2a6d31b15295f105"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/implementation_notes.md":{"size":3038,"mtime_ns":1780915087810785770,"hash":"1fbc6a5462ddb25a89b765941b2c4eebae1b3c2e62cf5dbf48bc48015b79e6ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/task.md":{"size":8918,"mtime_ns":1780948846758672237,"hash":"ae564ca5b8f57b3e399f6996c978ed63e5d2425342b6d9dc6eb0b29c90fa2da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/architecture.md":{"size":1957,"mtime_ns":1780915416796818495,"hash":"9ed187252c771e6fbbbc24009d84f0fe52b4c3f565b16413ffd753c16c1793d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/database.md":{"size":2934,"mtime_ns":1780917918423562169,"hash":"bc18f2996973b821a4c393e627028ca7212b1bb769a7faf122fd0b7f4fc4da10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/implementation_notes.md":{"size":4833,"mtime_ns":1780915404939572215,"hash":"b8c731a6b5e06985b3179372e17bf6b678fd4bccf0f2a488cec7b842ecd56798"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/task.md":{"size":4814,"mtime_ns":1780948110250153184,"hash":"ecf2f1d6b695c256805cea006ad4ea2c64d4419dba5da0e8a862ddcb78c185d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/database.md":{"size":2141,"mtime_ns":1780945235470226049,"hash":"4ef4177ff9c455909dc4d2d64ef4ee2fd8e1d5eaef1bda53fe9fed7923809e1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/implementation_notes.md":{"size":1864,"mtime_ns":1780945250993937969,"hash":"75cfb72ca7fff3f679ed78b75fb7cc251344cba57d46d4926a1ff24c61a18193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/task.md":{"size":14473,"mtime_ns":1781000201191461921,"hash":"b4a1a494a5417c78db3a85dc80fa158db77860e74eee9337fb15a5f5052f829f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/database.md":{"size":3780,"mtime_ns":1780948101369445086,"hash":"8c43bfccc6aafad28eebd86afc5b32f56ca6db3dc081b796567f4c95824df146"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/task.md":{"size":4116,"mtime_ns":1780948080182510614,"hash":"33696ec512d7848300e8575d2a387e09a90153045860fed8b8f2c5632b6592f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/entrypoint.sh":{"size":1468,"mtime_ns":1782633219516893494,"hash":"48c33a7c55c256a65ba4c089893e1112aea5b1320c9dc6b46f4eadb865b68ae4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/frontend-domains.json":{"size":2348,"mtime_ns":1782410142646593892,"hash":"dc12d68e32830d446995ea2a8cf98fe0bc24e15d4b6b0b27dd5b97dc84b06568"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/gen-cors-env.php":{"size":1941,"mtime_ns":1782410159219136761,"hash":"cee724b4cbfc04771874ccdf454cb5bf04dcf63d16955f9e11357390e3a65c6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/healthcheck.sh":{"size":443,"mtime_ns":1782647901237410548,"hash":"b4d2a6f75f334c832e9a015b4e296f3fb9210f128b2b1b40bfe74abf6e6babc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628133044.php":{"size":1747,"mtime_ns":1782728407177086438,"hash":"5c24097f68a7696b4ae58ba6df68b6ace4f508b1f0ebf3e964fff23661c8ea0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628134241.php":{"size":1159,"mtime_ns":1782728407177374107,"hash":"c31886c1f10dd25296b56fb7ba336f1fc45aa45d6627ab6bdb148f18d49872ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628152738.php":{"size":1873,"mtime_ns":1782728407177652192,"hash":"d7a00a9e505a45fe1056cde539a8cbefcb42f67a0c3755427d77ba12959e0c4c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628153625.php":{"size":882,"mtime_ns":1782728407177952152,"hash":"b314e4f194586cb9b4037fb48ab8400a307ce428def8108b94616a263e24e238"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628153855.php":{"size":1146,"mtime_ns":1782728407179127785,"hash":"1ec80db45af56adf7be93c412e0165c70fb629dde2ccc09b06a3452a66c52c05"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628165710.php":{"size":809,"mtime_ns":1782728407179735539,"hash":"cca05740bf26d1540b361283f5a140aeb446bd717250615b7ed040977788dab6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628173151.php":{"size":1639,"mtime_ns":1782728407180333627,"hash":"b8bbe9ad2ce3faae637534db20bfc455e288bc2c5fb3a1b9a10f4a29db2432aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/CreateAdminCommand.php":{"size":2428,"mtime_ns":1782649564990017265,"hash":"2fd1cffeb4d8299abb1a5fda3d9f29a08c882ff6e66781dffbc038ff675906c8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceCleanupService.php":{"size":1874,"mtime_ns":1782728407197355450,"hash":"19f366c81466bfebfd37cd2310f8602b243cf5111e51308892e196b7d5a7dc4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ApiTestCase.php":{"size":2923,"mtime_ns":1782728407205043418,"hash":"6ec92ce7ac31774fec6ceb5e33a073d6cdbe06044221f38e4939f99270fe8bfb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/AppointmentExpiryServiceTest.php":{"size":2163,"mtime_ns":1782728407205393295,"hash":"5586072347e23a24fddaa187efeb93d702697b7cdd1a399909239684cf371372"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/AppointmentSettingsListOwnershipTest.php":{"size":1592,"mtime_ns":1782728407205827923,"hash":"1ffb3b0a89f531658a75520df810efc7e18022e106a75d885d92986d62ba74e7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/BookingScopeTest.php":{"size":1653,"mtime_ns":1782728407206108967,"hash":"395161c96b8a660dab252a12c063090de94131b66d672c3b8804d70800327451"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/DateOverrideOwnershipTest.php":{"size":1259,"mtime_ns":1782728407206489928,"hash":"10dfd3691f16464f1d16a317942a53046f5369260a74ce133960d1b1f30218aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/ScheduleOwnershipTest.php":{"size":1721,"mtime_ns":1782728407206779055,"hash":"f935dde55aaa34b8c10780019e1c8ee7f5733c602874cc951411737dc9691329"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/SlotUniquenessTest.php":{"size":2475,"mtime_ns":1782728407206954431,"hash":"0168f3c381e9da2663e2cf118fd67f5b90d2ea6e4e96433e3d05a567248961f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Audit/LowTierFixesTest.php":{"size":1517,"mtime_ns":1782728407207202432,"hash":"6d65ac794b959d7b177dfd5ed9792082e5f79a073b0cda79be8503b689edc907"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Auth/RefreshTokenTest.php":{"size":1924,"mtime_ns":1782728407207460101,"hash":"745716b0c8627a1f72fed9305b2dc70af84c14ed015ff3341bd3c6422ea63c87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Auth/SendCodeMobileRateLimitTest.php":{"size":1421,"mtime_ns":1782728407207651102,"hash":"f069f1c427ffbeb082d3777ae8da34e031e940e4a0c79e5da4e80708345890aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimAmountBoundsTest.php":{"size":1863,"mtime_ns":1782728407207878645,"hash":"0b7551406b5b0c2fe47812614e3edbf359b72ef3c0f16b12466e387c5bdbb041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimsListNPlusOneTest.php":{"size":1782,"mtime_ns":1782728407208062397,"hash":"dcf666e9d1a149bf85e0ef7869083bceec48bd8ba95958292878d73f7e330467"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimsListPaginationTest.php":{"size":1215,"mtime_ns":1782728407208282107,"hash":"3d81e096e779dc685eed5920d7fef419ebf2c96e96794ae8d6222daeb0dea7e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ClinicService/ServiceItemDeleteCleanupTest.php":{"size":1598,"mtime_ns":1782728407208527691,"hash":"f9809dce56ba099731d9fbf6e1da781c18acc49a758537002868a7db3efad7b1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ClinicService/ServiceItemStaffOwnershipTest.php":{"size":1464,"mtime_ns":1782728407208738276,"hash":"e8b808423b34ee5471e7d00407f94ed22593e06ed6c4e674f92e972ed0e8718f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Database/UniqueConstraintsTest.php":{"size":2595,"mtime_ns":1782728407208978278,"hash":"aeaae84730fbdecfb8337f25283653d3867d3cf50332e7bea917c946672c97cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/ClinicDoctorListNPlusOneTest.php":{"size":2457,"mtime_ns":1782728407209223988,"hash":"705820b9d1590cf2f642e6ee7391a651536104c92acf39f261e2df71516ed55a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorAddressOwnershipTest.php":{"size":1313,"mtime_ns":1782728407209479490,"hash":"8fde8b4d6db03191fc8d650bf86fa6962956b504013b76a55c4e5ae791e47c38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctrine/RepositoryClassMappingTest.php":{"size":1573,"mtime_ns":1782728407209727575,"hash":"5289139754fae16d85a09fcff134ceef249968876f029c180f36b1c7d53bf5d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/DoctorInsuranceOwnershipTest.php":{"size":1486,"mtime_ns":1782728407209989701,"hash":"9231aaeffd13bf27869e74186679ddd38d1f6ebc9c52d36a8dad9b589bea3ad0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/ServiceCoverageNPlusOneTest.php":{"size":3714,"mtime_ns":1782728407210225203,"hash":"dd8ffa7d6329453fa49a9403b95a13556ad08dd318c89733a202d9d6c8ecfa4f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/TenantInsuranceCleanupTest.php":{"size":3021,"mtime_ns":1782728407210448121,"hash":"986643979f19f6a7ee71127782524852eb9eb163b77db793253e95b8df534675"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Payment/PaymentCallbackAmountTest.php":{"size":3356,"mtime_ns":1782728407210719081,"hash":"1b32d36a573652e1860ae2ceaf20ead7eee9cef0c204c9d4875ce8926849e278"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Rating/CommentListNPlusOneTest.php":{"size":3794,"mtime_ns":1782728407210931374,"hash":"473c67b119935570a66ab5e75cc36311f04ce314729e75bf44fd337bacbc4535"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Rating/CommentPaginationTest.php":{"size":1836,"mtime_ns":1782728407211216876,"hash":"7d11e7ba342faf3c69e5844c1adab2aa7583b201737d16e0724d9233d00ad1e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Representation/RepresentationCommissionTest.php":{"size":2548,"mtime_ns":1782728407211506878,"hash":"26b9f23b2462b30adea512eeb07f92f4db597a60c0ed3610a4169bd22f7c6c26"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Secretary/SecretaryListNPlusOneTest.php":{"size":1592,"mtime_ns":1782728407211848922,"hash":"bce8c0d2597c3641885ba9322eb03bada116d979e3bd7a0b4c90d5208fdd620c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/FinancialBreakdownIntegrityTest.php":{"size":1173,"mtime_ns":1782728407212105424,"hash":"3e987494345d3a7c1cc90de7b27bfcac7bc45bb54e8fa0a7a3f790bdfa406aaf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/SettlementListPaginationTest.php":{"size":957,"mtime_ns":1782728407212820054,"hash":"74501df43886dc66c5fe19f849549a2194644dc948d94856f97d0af17c0d179c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/WalletTransactionsPaginationTest.php":{"size":1087,"mtime_ns":1782728407213026555,"hash":"8df4dfce9a91d73297d88f22e047a4127fee2b00e2fe1bc8f43eed2ff805fae9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/ErrorCodesTest.php":{"size":1547,"mtime_ns":1782728407213280973,"hash":"bf392c01cd7a70c25efe7c4ad59ffdb4579b1216576d58393c3a965524360f0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Smoke/InfraSmokeTest.php":{"size":1444,"mtime_ns":1782728407213624767,"hash":"d8d4a8c5688d7ed7168570bfc39c3cf038e2c43324498dff3239f5668afa0a1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/doctrine_object_manager.php":{"size":479,"mtime_ns":1782728407213800685,"hash":"7a99fb0ab55d30b31cdebe923546775d6372a0aa6e731b409c37fb8f98671f5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-spa-adapt-backend-audit.md":{"size":8798,"mtime_ns":1782728407083687268,"hash":"f7e83133c40658496827e06f6182a995ccaff35018d83b7ee8aa32aba25a03fb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-docker-production-hardening.md":{"size":13443,"mtime_ns":1782647901236299599,"hash":"74228033d085f739ed39f615762ad721c6b3678122d0afc3f988676c4b514589"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-symfony-deploy.md":{"size":18877,"mtime_ns":1782409236333930026,"hash":"a81d0aa4535ae4be51f69d47c5101f7a72415654ded3889e01f1baf98718715a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/full-backend-audit.md":{"size":11545,"mtime_ns":1782728407084760233,"hash":"448fb57a5fdadd9bb3176b1570c0421b6459bbf2a5bd69bd4154246ae0c61285"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/home-landing-copy-and-mobile.md":{"size":11823,"mtime_ns":1782728407085277028,"hash":"596043e27126b0500ddbd861f0e7a8c17681ca49b3381da382458f2bc2355b09"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/split-db-redis-to-coolify-resources.md":{"size":12357,"mtime_ns":1782632977626228125,"hash":"6d87685ede07fb029b01d211fa82bdb7311bde9eb31ee9869992e6c49da5c75f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/DEPLOY.md":{"size":11539,"mtime_ns":1782647901238565498,"hash":"39797d5439fd4fd0fd19ae7a5b033febf0fbf6b58d07fdd1750d3aa2799b9163"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/audit-backlog.md":{"size":19190,"mtime_ns":1782728407113021215,"hash":"63afb7aaff2eb3113700644ab9bbfa07562ccec38cba4c77c0f21cd9acb98706"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy/coolify.md":{"size":10378,"mtime_ns":1782410984792896284,"hash":"f1d06d336c14b8df1530ec41dd80021b40e7113be0895504f9dda70b112a1cdf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/SeoController.php":{"size":1860,"mtime_ns":1782728407203067196,"hash":"df1028d7b1b294928a318cc7c27de5ca99b00d583d81ef6f400494c22380b6a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara.json":{"size":638,"mtime_ns":1782743447395127690,"hash":"337416608afe2e6e989bfd903bb5bca1e977e6f8eb5cc02ca05a46bbda53edc4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara_pre_build.sh":{"size":559,"mtime_ns":1782735663785720587,"hash":"d9b9232a0f115eb1d752c2b149a5224ea030fd04d3c92ab964d53a6701d5e0a7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara_pre_start.sh":{"size":1063,"mtime_ns":1782747838542662883,"hash":"c5d143014bb281d056f6c286cf66faa4894b059584cceeacd150b01648cbde52"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-spa-test-suite.md":{"size":19691,"mtime_ns":1782728407084188354,"hash":"73ad644cede4254811fab6f825750f127edb1b5f08b8bad25b99b85c097a9556"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/deploy-liara-docker.md":{"size":14106,"mtime_ns":1782732118990034632,"hash":"1a5f6f8bba054ea974f99dc5c01aeb19ed1cf612c3fd18a700bc03beaded2b5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/deploy-liara-php.md":{"size":13353,"mtime_ns":1782735439025822952,"hash":"39f30d7c6d20b1869f5f06b2b532071e94b264f4bddf248c3cf84c62159ed86c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy-liara-php.md":{"size":10664,"mtime_ns":1782736008651392836,"hash":"65c93d7d9e14dd468b75c5c81dee1ae6438d267253e8ad295953d3746d68d250"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy-liara.md":{"size":8919,"mtime_ns":1782732335270881309,"hash":"ade1392f7cf72c544736a765b03140858e45cc5f12a480cd03ba4628af17e84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260629161536.php":{"size":1115,"mtime_ns":1782749766472631367,"hash":"c0e9b10f345c3d894d27267c90618903fab9693fd4be3542a755fbed3787fcba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/AppLog.php":{"size":1707,"mtime_ns":1782749711194459630,"hash":"5b3237552e7ae040e5a3b2a289e8fc0f0518a1df84553665ea214efd36c2321d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/AppLogRepository.php":{"size":1042,"mtime_ns":1782929739410604413,"hash":"1ea5a9d3ace2fce4b476ccb2b0954b06f3d4c364fa9e7aa9d77c25a8a6631d1c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/DbLogger.php":{"size":3546,"mtime_ns":1782749810227775663,"hash":"4d5328c774fe4619eb75f9de434173ae4a4b5ca53f7729383399b12c2a222805"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Admin/AdminLogsTest.php":{"size":1600,"mtime_ns":1782750195979032925,"hash":"a8f899cc061053e5664833c2ebcbf1fe2613c8d5b150973bb95e621750267c61"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/DbLoggerTest.php":{"size":1768,"mtime_ns":1782749879165982208,"hash":"48db5c733cc7e02a8a226fc4ed552cd5282c91d400dc72b32f3f122c127033bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/project-wide-logging.md":{"size":14450,"mtime_ns":1782749549958444881,"hash":"3970d300cb4b804fed477773b47b653edb7aa3754b8cefd0e3f7d31a49417e6f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryImportController.php":{"size":3511,"mtime_ns":1782843840412881578,"hash":"721aecace95083433388fa4205e063cb45867b202d5430f44c1b0bbb1faa4465"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Category/CategoryImportTest.php":{"size":3925,"mtime_ns":1782839178845925849,"hash":"03c15491170644124dd399b100bbac0982d3ffad86ccffa9a2b9f4076bfabaad"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/category-import.md":{"size":5124,"mtime_ns":1782844030493510597,"hash":"d7c221bd66dc2ed13630b80966c57f9f824126dfcff92928ea41a28441d30879"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/cities.json":{"size":44860,"mtime_ns":1782974609739911468,"hash":"2144bca0e7b2104d30fe6440466b3cc0c6a8e45e37d302bf878c79a2375be79c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/doctor_services.json":{"size":46716,"mtime_ns":1782843868777989827,"hash":"3a5610d926bb9581c868449c387e80feef104aec7c9bdc6ed39835e87c287015"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/provinces.json":{"size":4364,"mtime_ns":1782843868770610383,"hash":"c28e9c29f212ac946af73f8122b545bd3761766ebc2c8e0a47567ef6a9fc5197"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/specialties.json":{"size":18764,"mtime_ns":1782843868775505763,"hash":"9bcf8a9b8f83e159a290b14c13b17b485185812c9e53ef62df4e33f84b216e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Command/SeedCategoriesCommand.php":{"size":2775,"mtime_ns":1782843891881834765,"hash":"13a71e6dab76fcb921270b6e2f996145b78e3c09d69b38592612a879707d87dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Service/CategoryImporter.php":{"size":11240,"mtime_ns":1782974082771482078,"hash":"7b56b3429cfc36bc155e5848b12d8412ecaff681183a32df088ec93e6cfc2146"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/production-fixes-cors-payment-gateways.md":{"size":15490,"mtime_ns":1782896794174529460,"hash":"4a016b326e836f770e919fd1f5d3bf3f5f70fc4dd7aa9676c198e9b7e63f7b91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-full-system-audit.md":{"size":15299,"mtime_ns":1782894418024832296,"hash":"8cccd87e3d45acefda119c2e63b85e013e60943b2524a9bc2e9b62074c9bb9f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-welcome-sms.md":{"size":8951,"mtime_ns":1782902722286387081,"hash":"05b7b6fbd16251df4d8049e99a7692e0fe3245c4f8ad6f0188e7f0b79fb92f4d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-settings-apikey-env-only.md":{"size":16545,"mtime_ns":1782893768608578413,"hash":"dada8658d0861aa23bbca638f3f832a420d16699a71a02d2dc6358bac834538e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/full-system-audit-report.md":{"size":18928,"mtime_ns":1782896060811421986,"hash":"0053ebf6c21b4a5da087f668332ebdacbceef6a781cd3767155d08647b165b9d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/Command/PruneLogsCommand.php":{"size":866,"mtime_ns":1782929791849281801,"hash":"e80ac76c51bb7ac78fe69679cbe82454f65f5ba6b35d3b3c3a01260698c35c6d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/LogPruneService.php":{"size":883,"mtime_ns":1782929784989711179,"hash":"9fe084116ccdb7a551ccae4c8d48626f7370549ae386e31c112cb579d8647ba6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/Message/PruneLogsMessage.php":{"size":73,"mtime_ns":1782929786004422877,"hash":"d060dc486c8bcd48d507d001c65b68f4e3b84eb5cdccede2272bcfd2437ca142"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/MessageHandler/PruneLogsHandler.php":{"size":463,"mtime_ns":1782929788291896556,"hash":"20acb36c09cd00f50865c9d8bd04f8234eb0a76285a744e34d5cd2e50e3f4eaf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260702063537.php":{"size":651,"mtime_ns":1782974183036403270,"hash":"2d3311a9342c690139154fabd01bcf942f32b1533612dbdf7de677ee04dc34db"}} \ No newline at end of file +{"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/assets/controllers.json":{"size":198,"mtime_ns":1781030172830093265,"hash":"c2038f4c739d4a1620199394a2ccfdd5c91ef846a0f81048388ffa7b65df091b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/composer.json":{"size":3082,"mtime_ns":1782645766148245683,"hash":"d1fe8db3ea082855e8c562819934d2719debd0d5541e7eb5853d87d13cc47459"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/bundles.php":{"size":991,"mtime_ns":1781030790602666616,"hash":"ffc97986a2386074ed8eb1b4b9dcbca2ffa7cc6b3600a6c37e3112d6be39e0f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/preload.php":{"size":184,"mtime_ns":1781009656090972900,"hash":"718612fb509259556db6202d93b5f3b1bd85a6be6d523cdc6fb1d81b569ce256"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/reference.php":{"size":105233,"mtime_ns":1782645766235591855,"hash":"a2030203ccca39bf435675e884e805a2bc3db13ddfded1d346ac649bab6deeab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/create_test_users.php":{"size":4062,"mtime_ns":1781168063674077630,"hash":"35e828a0495a0a4aaa7539781076edff3b0af2e88562ea0ae1299cfc17fa91b6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/city.json":{"size":48958,"mtime_ns":1760953552261818528,"hash":"4c321bdc22df2c9e02e37cb3c1a44d792710e94c53f0131f14e88f0ba60cfbf5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/doctor_services.json":{"size":42359,"mtime_ns":1781085019042251229,"hash":"086809f01c4c6e77ab1161688bd03d60ff524735d0d7655cb0daa55bbb53875a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/import.php":{"size":5488,"mtime_ns":1781089058225002885,"hash":"7f22b1eef5dacde90d1f87178f5b446df06562e86331f2b1fef0672da6d33fb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed.php":{"size":27683,"mtime_ns":1781090517391813278,"hash":"9f68801870c368286543040b482a6a8e9773a82506565226d705c0b410873025"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_finish.php":{"size":10806,"mtime_ns":1781091340487318516,"hash":"f36f97df126491fcfdc438f289489a189bbc58b7fa5dc61e48a40edefb77c623"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_full.php":{"size":42270,"mtime_ns":1781091251098443866,"hash":"da652ff8b7513cab398dc4f7d6dcc92399ef0507410f466a72929684aee6abc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/specialties.json":{"size":16189,"mtime_ns":1781084374016184330,"hash":"de4ba8a0ed9fe595a89be7b4113ae37bddd5dcc5e59766f4cdf7ec34cfd44dc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/state.json":{"size":1708,"mtime_ns":1760953552262399793,"hash":"3678b80abe63c2c45d0ef5f5cfd63cb46f5bcff7cb6f73fb3c8d188ce24d0242"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609130407.php":{"size":1154,"mtime_ns":1781010250896191835,"hash":"d9130e4e0fcecbfc302da5ef3184d0665ef9844067e63673b091dc6b09e5c432"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131304.php":{"size":8945,"mtime_ns":1781010908745260477,"hash":"d8db037c64d216c9d6e3018caab7c9a4966abfe31e41794f43728ac0bd3c11bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131553.php":{"size":1477,"mtime_ns":1781010960853107810,"hash":"1b3c9ad833965008985bcf3f6a1894e400bc58bb0a8de2b6bc159c31ecdcca5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132009.php":{"size":1986,"mtime_ns":1781011210879944205,"hash":"95e296cf289224cc43748507a9496f493d0e25b829a9e3d8bb8567f6f022d378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132708.php":{"size":5572,"mtime_ns":1781011630935659766,"hash":"d3211b9b4b08ad40b543052498b4ad7adeb034ffbabc4a83f761807df8e2fe9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133121.php":{"size":4855,"mtime_ns":1781011890870506406,"hash":"fc65641b70ce6d9bb2409aeecccb580333685ba71bcdddb72ea185fc9b717e9b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133334.php":{"size":1529,"mtime_ns":1781012020936148882,"hash":"d2753baf2902d723dba6ef2928c65627dbc4f006c5493a45182b450fb4598fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133546.php":{"size":1688,"mtime_ns":1781012150911850095,"hash":"98b56edc2e31c609f70d82d1e697c6598f3c65c4120d4e77510d19c0030e9d87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134112.php":{"size":2830,"mtime_ns":1781012480955463648,"hash":"ffb5700205e312f10728cd20f9638450cd2195df9627b5b51f92690526214845"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134741.php":{"size":1789,"mtime_ns":1781012870832220674,"hash":"eb2a55b4f50f4fd58288452b71dfb5e190958cb8c775354dc9c9f99c929dfff0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135126.php":{"size":1922,"mtime_ns":1781013090876422882,"hash":"a736efea5774baa48ac87522442943580e9ce47cab3479e1033e71fc6131eae5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135514.php":{"size":1449,"mtime_ns":1781013320954994440,"hash":"e3901078cc23a4e9ba6a7b748e32fc1a04f888c8d5680da5100b26a56dcd0559"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135704.php":{"size":2558,"mtime_ns":1781013430957508206,"hash":"6ce6851d5331c07c1f13c94f475a7f6823551927ff0b7ccfa8fddec146e69fcc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135923.php":{"size":3457,"mtime_ns":1781013570869080544,"hash":"b7a581c53e463fa8bfb6a7ccdd65d75c2146aa3b8190852a84a15ad2c8d3bf3d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140223.php":{"size":1590,"mtime_ns":1781013750963170886,"hash":"c0c011d8f3040d2b81dff1ec667f2d650567eb141271ff4d368ed66fdfef9342"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140423.php":{"size":1535,"mtime_ns":1781013870906972885,"hash":"0fb344e74f64622b3ea3f4a29e8b6412f35ec60ee46cd25abd5ea3e0abc8c299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610062539.php":{"size":826,"mtime_ns":1781072744933894396,"hash":"c9a4bfd06b4bdb00f74c6a5973acbea2b86b4c8ab64c8d28c730dcdda5bc0e88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610092558.php":{"size":780,"mtime_ns":1781083564938987613,"hash":"7b3ae1ae82625519d5c7986d542c84dc5c37949ac4f3a8c356191dc480b7cc0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610103401.php":{"size":20904,"mtime_ns":1781087803230706453,"hash":"f54443ba8ee1b2d436f3e2bdafcdb026b5b3c8dae9941623fb401792aa68bb85"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110039.php":{"size":817,"mtime_ns":1781089244896521926,"hash":"a68634b6818f1b331bc2232ff9429792f11a7090ef18315754dbb5feec3981b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110921.php":{"size":1611,"mtime_ns":1781089784421230793,"hash":"2f112d7fbfee7d1a0ec047535854cfb1bf8088099d4f5219e23f9458380f90ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610111254.php":{"size":1109,"mtime_ns":1781089984946035862,"hash":"2c68d5ebfef56abee588aa5abb74a571918a0ed04eec7be7ea8039d9a12046ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610113711.php":{"size":1499,"mtime_ns":1781091448606693864,"hash":"4cd9c0910a49718627e7ea3c5f6f448e6508e609c70d643e160a6c740937d13f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610140853.php":{"size":5927,"mtime_ns":1782583543657239761,"hash":"02683252b3c23dc3005af00fc6a42cbc360a306c799a88ee722cf1560ba22da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610175105.php":{"size":767,"mtime_ns":1781113873591904402,"hash":"49ffb1ef4d630a180b47d4b1f42da6c3ddf8283dc93bc192c16060cc093b5b82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610183655.php":{"size":2273,"mtime_ns":1781116623586431980,"hash":"e1573ba5f962b956314e7e17a8adf8fc3683dc6065c34490b60a25636d7fe4a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611075829.php":{"size":3004,"mtime_ns":1782626301195816873,"hash":"b3ba50cb2690810d8fb010f0ede4cf92906376908208bf0093512752d72fed76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611083424.php":{"size":881,"mtime_ns":1781166873770630956,"hash":"38e49fefb94b0029f3a10ac5aa846f341e47fb69686ad6d23c4b324de4b5e218"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611084046.php":{"size":1410,"mtime_ns":1781167246413147688,"hash":"ace825e63afb52cfc794f24547a03563c501cb951545c1a8fe50e2f198e11572"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612081739.php":{"size":1185,"mtime_ns":1781252261521732569,"hash":"abfc51c67c959f525711c661c21872e6a831079510241c197b86175623bc217b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612132848.php":{"size":1667,"mtime_ns":1781258338612526059,"hash":"c3d155690c12d3c3243190dcc759adf44cdf6a727b3b2563ba50caa78fd2a3cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181134.php":{"size":1715,"mtime_ns":1781516938570601065,"hash":"4febd40d1e647abbd00413dbb51dc59d5f73d15a6d54d7668d08861f2e6c2d99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181629.php":{"size":3515,"mtime_ns":1781516938570859523,"hash":"c8a4a0b22f709c3ad72760ab89c787f44260064e9d3222449292133d85b27862"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181657.php":{"size":4760,"mtime_ns":1781516938571506442,"hash":"3f5f75cf96210cabb9a36a61036acb7bea5fd01466b367725995b9fd52bedb2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182549.php":{"size":2122,"mtime_ns":1781516938571645400,"hash":"1fc5633381813d3939e8513eb233bfd9c24797537a8348bc83e1f29c2b41e311"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182950.php":{"size":2545,"mtime_ns":1781516938571764692,"hash":"fd126b1e4e09b2f3433242d40992cb2a829d80a357faa87bf922d86bbf514c2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614183527.php":{"size":4022,"mtime_ns":1781516938571888567,"hash":"98a07ace9623c623dddcecb1bf1d4189d8efe1692ba261779b1f9661ac07ff25"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615060415.php":{"size":851,"mtime_ns":1781516938572128193,"hash":"0231ff42cfb43dd4cb4ecfaff3e4f1d285d30fdd87a120fccc6046fac3d1e040"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615061938.php":{"size":981,"mtime_ns":1781516938572427735,"hash":"1ac836b1d7089a2dd47756eb7ba0e65801105e2dda52aee3f5df981daa57db88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615074107.php":{"size":1712,"mtime_ns":1781516938573278653,"hash":"f16f0d0bcf5a4646bcaf98725563639c8ff8b4f2a6d8cf9b8f6a0e7bfbe4c39d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615142236.php":{"size":1117,"mtime_ns":1781535498215147916,"hash":"27e62ea86a4f3aa8539bd976213f57efbd6eb36b8aa4798fe52f2274571941c3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615203529.php":{"size":1746,"mtime_ns":1781557035803907615,"hash":"b735a483f4db548f9613dd6d5efc8489f1a14559737b39f5fa9ec395f6ad21c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619062912.php":{"size":772,"mtime_ns":1781850555276849213,"hash":"7803c7d2fe66171063a19937794a6630d34dff563450bbcead5fa6051866ca2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619121047.php":{"size":780,"mtime_ns":1781871054836536786,"hash":"5b96978f092d4e81b6b9ca61e2a5d5a53e51f1b9b8bf6be43f38cc462371a252"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619170105.php":{"size":1000,"mtime_ns":1781888467242271818,"hash":"24b56c5edca5c601b008f28dc8b642de32dceeeb408ec38cd5e3f7c40c3ce4f3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621084558.php":{"size":774,"mtime_ns":1782031565107938146,"hash":"1a88683010bc9f3571111e2c63fceda2062724f08e0c93a8519405d4ed8bf33c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621094624.php":{"size":774,"mtime_ns":1782035186037116338,"hash":"846706a2c43ed5b3354ff1ebc8d0eb9d9c7dcaca94802f6b8ae4d4653eb54fc9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622160119.php":{"size":779,"mtime_ns":1782144086923054995,"hash":"d1a46bd2a54a9e9f55a692342bbd1bc49add55e4c29368fef1c0fd6d4f8a9292"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622163152.php":{"size":1377,"mtime_ns":1782214545724072190,"hash":"64ff3985f32d0d18646d441f0edd99be402305cbff68d66519dcb196e17e42bd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622171538.php":{"size":1410,"mtime_ns":1782214545724191815,"hash":"42c0bfb273a488f98079a84f3331c2000ec0018e5c1a748a4f76481853fca168"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622173707.php":{"size":1491,"mtime_ns":1782214545724314524,"hash":"e7ca8699e56c8ce50350006668b7958af1be4663f36620a12ce34dc1fecea6e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622181251.php":{"size":1171,"mtime_ns":1782214545724441066,"hash":"9a5233ddd9873b485bfcf9b9009619a42cec5bc0a4516d98a387b42a249aa0c5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622184409.php":{"size":2212,"mtime_ns":1782214545724627733,"hash":"caa199786e4c7016e4232e653b063278fe809536f4eb2b42305e3bd30beef290"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622185948.php":{"size":2005,"mtime_ns":1782214545724826651,"hash":"7048fe9c1439b52f85abf3186cf4eec913eb873e8ac6ae1154712adccc327b83"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623115721.php":{"size":779,"mtime_ns":1782215846636875546,"hash":"4c8e43a5be46030c087a8679b9b84e8cf58b4174e9228f94fa02dd0d3f2e5990"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623173907.php":{"size":779,"mtime_ns":1782253591740927223,"hash":"237d660c556b7f37176854a98f02cd114fafab9405f9ae4945a8a75941928f8d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624030339.php":{"size":916,"mtime_ns":1782270223182271448,"hash":"a97dc816b64080ab3aabd67347c2161faff7090629810a6db13c051991edd8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624092459.php":{"size":2059,"mtime_ns":1782293101374459999,"hash":"44b5621ce383ac7cb1cea47d7006f3c2b0b47bba8d49f59c78a0df4f737f8482"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624093738.php":{"size":1266,"mtime_ns":1782293867202071491,"hash":"dedb9cb5586cb39f3d35af323fab3e41ff8e63ca961cdb98b8a7beabd113c8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624123236.php":{"size":809,"mtime_ns":1782304359030218634,"hash":"acb3129833c4f6b1ec99f90496e23400de1df0624f1dbbba5077a20500a38548"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625135132.php":{"size":780,"mtime_ns":1782395498606655159,"hash":"a1c3aafeaa1761bfaff51ae0c523a2781cf359fca511e7aa8bd294b70011a9a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625150304.php":{"size":1990,"mtime_ns":1782399813900039403,"hash":"87f84613f1b928abd28cf7502c4572ebf7599d0c47d3c97497a5d74b9fb2c983"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/package.json":{"size":2315,"mtime_ns":1782976135281888167,"hash":"6d484540c4b865af36dea656ca9cad5ed148157e573b8e0ed2d4763c553770cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/index.php":{"size":206,"mtime_ns":1781009656089267135,"hash":"6609137ba6c6187032cdfd84e9d39097732d861414157cacbdeb77b2b271ac8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/manifest.json":{"size":851,"mtime_ns":1781344581738519976,"hash":"1f7781991eb738e4d1e1d94ecbc02013b898ef8bf8a7beeecf1af9687643b4dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_realistic_data.php":{"size":24320,"mtime_ns":1781519949285784202,"hash":"2ad075c6d333a42f3ac51adb0e1d8b444f64f3b5a01bc87f53d9522cb272ce68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_test_data.php":{"size":13557,"mtime_ns":1781169644756523490,"hash":"d5bbc3b4a96e7abf610d9cd63da61dac6b73bdd97b5672eb4ec191bbec2255e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/skills-lock.json":{"size":267,"mtime_ns":1782232921467371596,"hash":"4b889910ed363cee9dbd7da20e9c0748ddf40dd483ed92b5e581ebedb506f179"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php":{"size":100662,"mtime_ns":1782929751880387649,"hash":"585dcd897dd9a9fa7067c31f37af6fa02033b436c3560680eed226e794f4b019"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminController.php":{"size":490,"mtime_ns":1781030416417456388,"hash":"7d18322ef916885ae0181a7b9dde07ab07d08bc49cbf72669f50e5268ffeef62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Command/CancelExpiredAppointmentsCommand.php":{"size":920,"mtime_ns":1781551622411049671,"hash":"3b56ad9741a4349bd249a4a4e320f7195c320fec9a96ccde6da5b8f75d87b32d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentController.php":{"size":24240,"mtime_ns":1782304270243667628,"hash":"8a6f406c0d70ab3cc8802470ee6fe0d24c883177fb8fd436653c31edaa915e36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentSettingsController.php":{"size":17714,"mtime_ns":1782728407188976018,"hash":"213d1b93ba08882b32a47b70be27553aae4d53bf92fcdb66d2c2876e33f0eb6a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/MyAppointmentsController.php":{"size":15723,"mtime_ns":1782728407189591731,"hash":"36e9472f0cdcf7178c898629a676f50452d0572c9dfc7f6c0d3f91a602716a0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Appointment.php":{"size":9871,"mtime_ns":1782728407190164318,"hash":"199c0bce6c58ae43bfd76f426a9b879985958641a5730886b73f925b79e85395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/DateOverride.php":{"size":2925,"mtime_ns":1782728407190402153,"hash":"c59fdb6d3f05bdb6cd558bb74e701897aa14947acafadb64943469c19fe696f0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Holiday.php":{"size":2953,"mtime_ns":1782650883604011152,"hash":"45b9c56571e20dfc0cabc789b083e2099273efbe5c0a589268a7f5e35106e631"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/WeeklySchedule.php":{"size":3519,"mtime_ns":1782650883602991274,"hash":"ac7a64333676e95bd5f9a78c22fe0f83fcad6bf96d65ae2605685ab8c01ed453"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Message/ExpireAppointmentsMessage.php":{"size":85,"mtime_ns":1781551622411423796,"hash":"094a07b7c7552dd1c2812e066ae7e9cde6dc6bc9ca4ef07e11b82f8feec45fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/MessageHandler/ExpireAppointmentsHandler.php":{"size":504,"mtime_ns":1781551622411619546,"hash":"8981c0048e84b26121eb8e2a6e1f9913a7d61d958a48bc4bee113df6c0c77a80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/AppointmentRepository.php":{"size":7660,"mtime_ns":1782728407190649529,"hash":"293ee69d87a2ee0421f6a4f73ef854b9fd7d261642ac34795a453438ac762b39"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/DateOverrideRepository.php":{"size":1119,"mtime_ns":1781012268350237489,"hash":"f383ecc7f0712616f9969689e3a2011faf49b3ee6c2ec3fc6751f0e93560df91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/HolidayRepository.php":{"size":1768,"mtime_ns":1781099253934669137,"hash":"f886ede4b1998bcbd43c335af00c205c410cfe7bd74b17c12add062b12b84d7c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/SlotTakenException.php":{"size":101,"mtime_ns":1781535498216404171,"hash":"e6ca84966b94b947c7df53646b8a0c5b1a5f5564d144e2b0e00b7756c97d718a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/WeeklyScheduleRepository.php":{"size":1480,"mtime_ns":1781523180068721029,"hash":"8a3deac81ebf1b16b5221f172aeefc9a45009658b7820e6e8597a589ea3af936"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/AppointmentExpiryService.php":{"size":1834,"mtime_ns":1782728407190939073,"hash":"0e08a53cd50f1fa75c2998ce2d39400cf116f1e7d5632015fefd589ca730e771"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/SlotCalculatorService.php":{"size":11056,"mtime_ns":1782217986438154633,"hash":"b42aeef988db241ca6b6bba68a3932214b3a0bcd6b89e1185883c7a52ee8be3f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/AuthController.php":{"size":36120,"mtime_ns":1782728407191234283,"hash":"d7f98b20db8f66beaae6688b6a84f1692b43437de6e85a3808774743694f3c80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/NotificationMobileController.php":{"size":7438,"mtime_ns":1781888558424222836,"hash":"f741f4d2cc7d43672b9c3ba189b7a6164cd5ef1031a02a697a6971287f6ac9be"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/PreRegistrationController.php":{"size":7871,"mtime_ns":1782728407191857954,"hash":"fc3c53bab05acd5e3c477e5d05c90964c4e7172f3afe5c96d11376a85510b1d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/MobileVerificationOtp.php":{"size":1930,"mtime_ns":1781167196281533241,"hash":"511faa2e0698158b312aa66c5b7d54539963056b011200b3a7b86a65651e56b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/PreRegistration.php":{"size":3061,"mtime_ns":1781252232305967808,"hash":"74a388c7ebafa889c4428ba1538ac46ed8f1f5c6ef5a34975016f85a128c5f40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php":{"size":4972,"mtime_ns":1782728407192144123,"hash":"83e9341f771214eaab94dd7c4f0aa2de0e5c0528a0fa5eb4927659f94bc7ddf0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/UserActiveContext.php":{"size":1160,"mtime_ns":1782652951356493481,"hash":"1c60c30e2800176bb2dde9730607d081f2fa1a05f8f6ee6e917ad256bcfa73cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/PreRegistrationRepository.php":{"size":842,"mtime_ns":1781252241014651656,"hash":"050d7fae8134856aeccfff39607f5cfb44e8b923e13d0235411a577b78a6f96d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserActiveContextRepository.php":{"size":952,"mtime_ns":1781164699567301035,"hash":"22c3a507b65fe3f858806b1d7bed15411be794586278ddae7ac5ebe09782bbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserRepository.php":{"size":1023,"mtime_ns":1781010107490769863,"hash":"748b70a06bf6833d94e5168e4ebc06ad7faf0dff67f5f099f595f10cf4f59137"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php":{"size":4195,"mtime_ns":1781946748878509164,"hash":"abec4d9e6782d2833c1eb7862460130ae093b20b5afd4e1ca468f9ce784b53ef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/OtpService.php":{"size":3228,"mtime_ns":1781946485891979924,"hash":"e9d828bddc99129d0ac0c37ce23b83257fec16b7033074557acecb4757d88f14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/TokenService.php":{"size":2166,"mtime_ns":1782036558107915300,"hash":"3b749587b4c8ffc2d0fcf9a266ab32aff75b1681af31e6797d8046dd3ee36713"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmissionResult.php":{"size":509,"mtime_ns":1782214545726213864,"hash":"5391e205be5e00bf0cdd088d6f9b52427e30e3a5d29d2c0ae39753b15b67fac8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmitterInterface.php":{"size":461,"mtime_ns":1782214545726346198,"hash":"9286f1fdb68765c4512fa8aa302156a4fc54df7af3fb5d5d1e2d59c24111c3db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Controller/BillingController.php":{"size":13703,"mtime_ns":1782728407192799169,"hash":"7226845540da9c2d9121eb7e25eab910b5d60d45d0f5dc14321ce9379b079967"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Claim.php":{"size":6465,"mtime_ns":1782214545726749575,"hash":"85028f866ff4695fa0095e4ba3191a385a63fdb3aa1f3222fda2d94b61d6d39c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/ClaimItem.php":{"size":1646,"mtime_ns":1782214545726889450,"hash":"0e3bb1ebc45d4c045ef0e6fe09170976c315d7da410efd79bdcc53189e9dab49"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Invoice.php":{"size":6079,"mtime_ns":1782214545727230826,"hash":"02081acac585d1cfaabd1d404b0bb25c7bcf25fa51e32bf986cd75675d14ac24"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/InvoiceItem.php":{"size":3448,"mtime_ns":1782214545727383452,"hash":"63280ec10f55dc16106afecac0784a9094ce12fbd3787a482a75eafe451aa5bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimItemRepository.php":{"size":895,"mtime_ns":1782214545727554077,"hash":"9f606952d141e1db9f444ec80bba343c34a5c39f905f72c53c76d7cc7dc58f89"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimRepository.php":{"size":5807,"mtime_ns":1782728407193826801,"hash":"26fd73c5de681031611a56b0e9a1140cf3b4c1088059ba954e7c3c8a344392de"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceItemRepository.php":{"size":2056,"mtime_ns":1782262433593751772,"hash":"6a2e18c9de2434f67ce2250dc17ec50a29f207b95ca2fc6e2a9c7d338a67a67e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceRepository.php":{"size":865,"mtime_ns":1782214545727978079,"hash":"71c55535e6b20d820e351a26af6bd1c1b6cb26c371414e611e8e858c2d8486f9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/BillingCalculator.php":{"size":1975,"mtime_ns":1782214545728144705,"hash":"9751645f561446a0d0f6a618cbbeae012f7f2274c5c1fbb4379220b995070f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ClaimService.php":{"size":4124,"mtime_ns":1782254015995593528,"hash":"f04e02faaf3d8f49d493c2e77f8f80120e8de353af185e624996c9b14e36267b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/InvoiceService.php":{"size":3335,"mtime_ns":1782263056583478624,"hash":"411b9e4e6aa41a158211959c5b9c4c286ada95c8b68596364eca3b1cbf436e86"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ManualClaimSubmitter.php":{"size":771,"mtime_ns":1782214545728543539,"hash":"11064e4cf0182849f67012ead852a3b45c2d8b66693e9680bfabf4094c3b9d40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/Money.php":{"size":775,"mtime_ns":1782214545728705873,"hash":"97c8de0bcd950f7b29c8f8fb87d33f4cb79bd0b17e531592c80fa5fb5c0e6de8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/ShareBreakdown.php":{"size":599,"mtime_ns":1782214545728844457,"hash":"98b4c746ff1d241697d227cd21bf6a8b010cea93dbf0a219f89910456c511ac1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Controller/BlogController.php":{"size":17742,"mtime_ns":1782050215484280688,"hash":"4bc5e62060b6e27970972698933b7e9b6f63a4eba44cac9fd08cabb6d5c355f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Entity/Blog.php":{"size":5562,"mtime_ns":1782650883613744390,"hash":"5e6a312d48b1efacb7e4c14b87a658d1ad64bf0d3aefa5bdb2008011cb3b175b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Repository/BlogRepository.php":{"size":2133,"mtime_ns":1782049659479434537,"hash":"a15b4c1c26d71f5cd0b0d4e3c913702999a475ae13abd7d8eb29ab20e033adee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryController.php":{"size":1776,"mtime_ns":1782728407194246845,"hash":"1be28d02d6f241500cc7a55f1a597962d80b5f72c814c9308fd6811029aef714"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Controller/ClinicController.php":{"size":34368,"mtime_ns":1782035216514487631,"hash":"434df68031d6367be88eaa0faa9ed185484cd9e7d4e4b4b9e0b50d4d743e18a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Entity/Clinic.php":{"size":12311,"mtime_ns":1782728407194604639,"hash":"d192f3609f782986a1c36a6236066c503364b8d1bb7312c928e7c9ff1a2f5d80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Repository/ClinicRepository.php":{"size":4495,"mtime_ns":1781782025398193552,"hash":"e6a358cbfbbd1bd23e4e823ad1b981c488de8282df7bdcf2eea921232be0b090"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Controller/ClinicInvitationController.php":{"size":10193,"mtime_ns":1782728407194937600,"hash":"9e968ad47c34e34775e6793301147eaf9768692a8f254ceed37152207ae3d202"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Entity/ClinicDoctorInvitation.php":{"size":5434,"mtime_ns":1782728407195142351,"hash":"44d986e38a0aaff4ff36d621205c7361769814ac64e5e559dfeb02d2e63b09d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php":{"size":1821,"mtime_ns":1781293272835808881,"hash":"10604824317018d8f535539834b9913ef3982889b1ffb2874e4438f848f06726"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Service/ClinicInvitationService.php":{"size":4420,"mtime_ns":1781888637727954912,"hash":"123c29f45911c7151d410112521a5d787922a73bbb0ebb1f53792aff70376e6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Controller/ClinicServiceController.php":{"size":15449,"mtime_ns":1782728407195387478,"hash":"38d8db77331e6ccdf9e78a54f5f223cd74cd1b83880d40ececcf4cce392472cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceItem.php":{"size":4270,"mtime_ns":1782260462891413703,"hash":"f7c314c5ddc678d4896d358c4b89ee1048c314fe237fb307b1909e44d986307f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceSection.php":{"size":2865,"mtime_ns":1781516938575505158,"hash":"6fce4d578f8878eb023372cfeeed180e1826274363811165b1623578b8911386"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/Tariff.php":{"size":2497,"mtime_ns":1782214545729589627,"hash":"77a5e0dca59cd5587ab614a2bedd46a0de3485d620a6125f4804db7b688115f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceItemRepository.php":{"size":1193,"mtime_ns":1781516938575690367,"hash":"3561e5174c09c2d295bf2b77e3a2692c234f30cfe76b597213ce1bd2ff9bc81b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceSectionRepository.php":{"size":1274,"mtime_ns":1781516938575822117,"hash":"6e87ff4062b59b4870ac32891b6fd40ab36ed939b3a67959c600a63a0375b299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/TariffRepository.php":{"size":1312,"mtime_ns":1782214545729721752,"hash":"fece09188f0d746cc7fdc518fb8d63488c77314d629940d1c0969b6f28fc7b38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Service/TariffService.php":{"size":1653,"mtime_ns":1782214545729910003,"hash":"13d77eda5f22d43badf639d0127bc7252b3adfe6c72657c33423ad5a04f345b2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php":{"size":3518,"mtime_ns":1782974471625105803,"hash":"d817124419f159576059572a5a6f7982343fc0ba9d1e685f113bc453a34e8262"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/SiteConfig.php":{"size":1026,"mtime_ns":1782650883609343293,"hash":"694f1f497f5a3a1095f2949eacd68694eb7e8d6536abcd1bb61e7d788abed158"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/TaxRateHistory.php":{"size":1836,"mtime_ns":1782650883608855500,"hash":"1b50a1ed1a3d72be73df9bce2bcb010e2b90888bc7daa0a312ede4d181327631"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php":{"size":2334,"mtime_ns":1782929759660596058,"hash":"5ea072c77a0f25c8ccdd23616656fce0b88b93408c6cd461d98e9b18a6fa85b2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/TaxRateHistoryRepository.php":{"size":591,"mtime_ns":1782293892020820040,"hash":"1161721d41f057cd7c7d820b405a526cf644ade3da6a44a93e63ce9a364a9ca3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php":{"size":18353,"mtime_ns":1782895903517818351,"hash":"daee2d9b6d06d625e6cab2ea419f7cc5f7ddc2ebfd53f1132502a4029bb71f7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php":{"size":37883,"mtime_ns":1782931944407206340,"hash":"d40b9b6f40bafd777652c6777ef5a90a7839b8d451cd38bbb8a04119c4b6d44c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php":{"size":16811,"mtime_ns":1782728407196033316,"hash":"dcd2dd96c11cd47f033dbb41718dde4b0f7fa2a2110f25ba4804b33e37e331e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorAddress.php":{"size":5470,"mtime_ns":1782650883611537550,"hash":"f42a0409b492abf55f1ed704e65e2273b1a9b7424abf0d2bd9c9507ea9345747"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorAddressRepository.php":{"size":2770,"mtime_ns":1781783246170814153,"hash":"531973c4cf541ba9e8f3955fad4c863ec94f0a5cf84a03c9fa438aa59f979a3c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorRepository.php":{"size":7714,"mtime_ns":1782728407196368484,"hash":"3b22e183b3ec75a81be9e5095a62c8597b792a7be8b588e084f50c3f3ae0c2e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php":{"size":5592,"mtime_ns":1782844356167570792,"hash":"4e16c69d4c1e7d4b295ed6840c0b6010e03e8c0c7411102cb63c1295dacc8538"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Entity/DoctorService.php":{"size":2831,"mtime_ns":1781085550562230229,"hash":"6d7d545954a787dfcf52e2f9b8ccae47a1af55c21a43d3c60ca8c59dbade506e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Repository/DoctorServiceRepository.php":{"size":1274,"mtime_ns":1781085558665462494,"hash":"79eb3168176aa86043e1613fa832e0a94b683ab7cd5a7553222d88ef9198f4c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php":{"size":25579,"mtime_ns":1782844375135424196,"hash":"81785346450737ea93ec13608e671ec5702072ca36bda0b89666f1497c9e6e68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/DoctorInsurance.php":{"size":1960,"mtime_ns":1782728407197029697,"hash":"3835c0d26cf2af6937ccb1990a2a097e0696bc03c144ca9863867906de1b3a94"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/EntityInsurancePricing.php":{"size":2507,"mtime_ns":1782214545730369713,"hash":"e0c3664524d71706ffc2c377c20c9ea5d12be0b8aacbe3feaeffe555ee003ef7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/Insurance.php":{"size":2270,"mtime_ns":1781085569269281268,"hash":"bb5c7b593458bca73e6d767909d845c59371d50aefc54d6819b53b036d16d8a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantInsurance.php":{"size":4767,"mtime_ns":1782214545730514547,"hash":"8f4a4e4087e65a58cdc2444a4584a3a40796948313e4374e1f8a38983385bda9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantServiceCoverage.php":{"size":3432,"mtime_ns":1782214545730644047,"hash":"fd098f4aef57bc0988ca8d17760b0009d2742666fd62fc0ff2ce07fc6b0dab1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Enum/InsuranceType.php":{"size":351,"mtime_ns":1781085440519759893,"hash":"30ae4d15da752fad6f6fdf214fc764732f372af51c1361fcdd23ccf7cb66d41c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/DoctorInsuranceRepository.php":{"size":848,"mtime_ns":1781011984448803782,"hash":"61e05cda6d846d53a56fe1bc16a932bd7ee1fcc43f8ad9cdc4f8eda7635a2bb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/EntityInsurancePricingRepository.php":{"size":1404,"mtime_ns":1782214545730775964,"hash":"623b73aedc8f41f9f0ac7d374725808c1c72012956628e15ebde5681f7034dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/InsuranceRepository.php":{"size":1220,"mtime_ns":1781085576476951957,"hash":"dc63f462de508c5f6d1fd51b08ebd887c5f79528d5183fc7a792e6cb579e26ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantInsuranceRepository.php":{"size":2436,"mtime_ns":1782214545730912256,"hash":"b99e224b9f48a68ebdb627590ef6c9057f3ec7969e4ca2e317378766527785a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantServiceCoverageRepository.php":{"size":1339,"mtime_ns":1782214545731054174,"hash":"5d8193d5276ee2a12f650ee075fc47f0bb32f32bcaf26f46328b1c7498636853"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceService.php":{"size":6310,"mtime_ns":1782268410292219426,"hash":"088a8086ca7a8284aa67577aa0ffe060d532f3bbb2090b6c3e3ff0f4730e2703"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/ValueObject/CoverageRule.php":{"size":381,"mtime_ns":1782214545731415633,"hash":"3ce989704beb3ff9aa60cad8460e69a1ef5a411ff0024b7d5541df502f4cbf2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Kernel.php":{"size":992,"mtime_ns":1782743240249498742,"hash":"3b2fcf35ae459cfe82147916f43a6da872819e946938e0cd330a596a226065a8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php":{"size":10686,"mtime_ns":1782974061724307246,"hash":"932a44a4ab3a500433da4f1d7f2be16eb6f50420871c62a73f8c8f2ca3fbb624"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/City.php":{"size":6193,"mtime_ns":1782974046991891215,"hash":"87707d98ee67a674c5e81583b81f493c6c213d6f937f50b001533b334b1ee3a3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/Province.php":{"size":1688,"mtime_ns":1781085458710667014,"hash":"3353fa978b6558c945031d0c09a3dc24706f592287978236072c53c3cc13d033"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/CityRepository.php":{"size":1187,"mtime_ns":1781085493561648130,"hash":"1a7f0d07099224c30cc6111ba102ddf6cd583df610528c692ce923d42bf1e591"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/ProvinceRepository.php":{"size":1071,"mtime_ns":1781085486117016673,"hash":"4572085d4a4e79a86a1c2cfcc89b5cd6268ddeb466878a16db71f60216a6c148"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Controller/PatientController.php":{"size":15797,"mtime_ns":1782728407197647952,"hash":"0adb531514bb19b3fabe1e679468f731f00cc6d34a2edbb9e887a18c94447bc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientRecord.php":{"size":3088,"mtime_ns":1782144029159424511,"hash":"8be2218c1dcc6dd9101278637b469d927567abf3e264d6b8c634292641096dfe"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientSession.php":{"size":7041,"mtime_ns":1782728407197911662,"hash":"e99aa5f70fa1eee35e78e90f7ea8e8e5f4bc80b77d2de0888eafd91b3ef0fcf6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/SessionService.php":{"size":3069,"mtime_ns":1782253591741414931,"hash":"d7326f5115c044fe75744a4c6ac0e2d0efca2b4a93e57984483f1c859ffba1c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientRecordRepository.php":{"size":3131,"mtime_ns":1782144042914186374,"hash":"c445fbf45f6eb65c5fd5c3f0704e1c972f0a9d9297a80d0dc879165fc57666c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientSessionRepository.php":{"size":3665,"mtime_ns":1782268984212730950,"hash":"24f29fe0ee2cade4f4bef5572aa45086f444ab02d67f82d24228de49ccc25a2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/SessionServiceRepository.php":{"size":563,"mtime_ns":1781516938578050288,"hash":"24beb2335672cb84cfa5a787618c7907663606aa14262af1b8ee93058c0ac265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Service/PatientService.php":{"size":7827,"mtime_ns":1782263039495809276,"hash":"e23289a2e8d04c22a69888e3775e2b851246b28c6e217cf22e8c91e99ada9ee9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php":{"size":33194,"mtime_ns":1782974625521885267,"hash":"2b39b6600a9e6dc9ebe1ffc5594ef1d79a2166600a1b5c5a35f37a52084e8013"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/Payment.php":{"size":5647,"mtime_ns":1782728407198542249,"hash":"baea6fcd3343ee16bf9c045dc65f6cf06e022b157b485144dd459f385f9ee5c8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php":{"size":6266,"mtime_ns":1782896964907650632,"hash":"94984cd8d8f2e3852459889e98eb163d89666bc4fed43e2fb9e8528014ddd8cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MockGateway.php":{"size":1488,"mtime_ns":1782896968603320074,"hash":"5aad6d8654a15ff3dcc96d476cc3948643ec8de2ef4624c220dfe22ce6ddc501"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentGatewayInterface.php":{"size":578,"mtime_ns":1782896961142724929,"hash":"540107aa296e34a640bcd59cd80e5cabc4c739d4dad43a1645eb30ba5c196ffa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentInitResult.php":{"size":307,"mtime_ns":1781012933059275866,"hash":"9b5327e24637c885b0696cc7172071104927aec8791208b43867049dcbbe0d63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentVerifyResult.php":{"size":368,"mtime_ns":1781591920508677099,"hash":"88f08d81dc92ac75d2f0628c60f3fb78b039b9184039592047cc92c58d0db068"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php":{"size":3926,"mtime_ns":1782896967245397686,"hash":"5503b09d5adb7e31a3681493baea94836c72554b336080b63229cad9f25907ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentRepository.php":{"size":3293,"mtime_ns":1782728407199154920,"hash":"9051e2d1dd67a0d6fb8a70504e7bbbc79f891e098a4d836d0e8f9ae6ff7639aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Service/CircuitBreakerService.php":{"size":1228,"mtime_ns":1781012993246621609,"hash":"4e04548bbb1ae6b6c17a4206408f3050ad341da5ddcc74d4b1af376b50580911"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Controller/RatingController.php":{"size":22783,"mtime_ns":1782728407199386297,"hash":"64462e603b4569268e25d7f6a989f1b4d9b598a7613405a5d5d0165df2b477fc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Comment.php":{"size":4881,"mtime_ns":1782650883605327864,"hash":"c43aa389121312d1fe2ba9639e3a6a0ba5fc21f78d0784adb723c26e3afbc0fa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Like.php":{"size":2153,"mtime_ns":1782650883604545320,"hash":"7a7937df6b8df47196e035544c1ec78a11847a0a1688114bdb5265adde8d32c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Rate.php":{"size":4359,"mtime_ns":1782650883604952613,"hash":"bb8b2b8ccda54b99bd5ab0bd937dc29d4ac840195e3f89fcfc286b5429b2b863"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/CommentRepository.php":{"size":3785,"mtime_ns":1782728407199666132,"hash":"57721807456fc1a9e0c2df0dadb2b4c45cff8a7c2e650c33ff1e4edc22ec9eb0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/LikeRepository.php":{"size":1619,"mtime_ns":1781557035805931490,"hash":"9c2c1575ce7f26c9d2139ab8301fd887658e295f66b4f164b48d050bd43a411a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/RateRepository.php":{"size":2052,"mtime_ns":1781557035806516573,"hash":"5e2c5765f0d67648d72fde8992e1969822df630577e503f9a086dc01960e3f90"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php":{"size":41170,"mtime_ns":1782728407200475887,"hash":"973a496476356f34610a5a3167495b0d91dec8c49306f38fae4480267ae9f378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationController.php":{"size":21984,"mtime_ns":1782728407200758181,"hash":"681dfdf19f3a7a8d0d86ddefff60f30fb81d1a9c1024137c0f9ba3af6c658fe4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Entity/Representation.php":{"size":5417,"mtime_ns":1782650883614592767,"hash":"ce5a938bccaf71572af189a1b92ee7e21baa9865c299dd261e3f18180b21b620"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Repository/RepresentationRepository.php":{"size":1239,"mtime_ns":1782304285868497898,"hash":"7b69c315115cadf10ed9b253b37141184c085cad544ab6274f330a0d1b17bfc1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/JalaliDateService.php":{"size":4368,"mtime_ns":1782384877403158726,"hash":"8a1282441580b6b46896c1c52a6ff284279e0e3610da60c638bfce1067450fb3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Schedule.php":{"size":1037,"mtime_ns":1782929801207590724,"hash":"e1ed1b5ef5b6100bcb8a1e0d3e361ce40a2721501cdb5f14aa6fba8739654eee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php":{"size":11140,"mtime_ns":1782929066319571252,"hash":"22962190c09511c075841be03160d568136c781309f19f50f6cbb7a21f6dd499"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Entity/DoctorSecretary.php":{"size":5203,"mtime_ns":1782728407201032933,"hash":"7a89e177bf272aa6e20c29d8e39c66c4e9f761daa1875a073525369cebc48193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Repository/DoctorSecretaryRepository.php":{"size":5327,"mtime_ns":1782728407201262976,"hash":"bac031cd09fb91bf156e250accd69b5bb83f2af7738e8394852e746f3152dbb2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Security/SecretaryPermissionChecker.php":{"size":724,"mtime_ns":1781012108901602268,"hash":"42ddb598442c2c167950e1a33eeceb551384377427749d0ee3b6a61f152e64bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Controller/SettlementController.php":{"size":23112,"mtime_ns":1782728407201510186,"hash":"b6f3ad0ae1b555833b87edf0398a96200295160b1c6a57c26e3f751274892c9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/FinancialBreakdown.php":{"size":5470,"mtime_ns":1782728407201776813,"hash":"a0c5e8cc2f0a3597518275c45fe403a188bbfe210fa75da65eee3ebeef594963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/Settlement.php":{"size":4252,"mtime_ns":1782650883606160908,"hash":"36b84f9a63c52cdf4150c0848c4a3fd28a0c7a1aba6bda3f147c3dd9da2f969c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/WalletTransaction.php":{"size":3099,"mtime_ns":1782728407202004397,"hash":"d2acafb91806e555535cdbddd5151e71b71561cddf2d0872461285e6d1489b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/FinancialBreakdownRepository.php":{"size":779,"mtime_ns":1782293142660794730,"hash":"ae9fa6ec3678bedb9574a38678795af169ff793fe2e660d9413fe05ba1523041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/SettlementRepository.php":{"size":2270,"mtime_ns":1782728407202173607,"hash":"9c617a929f6ed0595a371ee05d2e9d19d204ed3eb80bd0df9fe9de71fbf76e2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/WalletTransactionRepository.php":{"size":974,"mtime_ns":1782728407202497901,"hash":"12fdfe848f6eb143b87b09645122480b33a778bdf2d9179fd9d45c27540a23a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Service/CommissionService.php":{"size":5477,"mtime_ns":1782304402886645822,"hash":"643e2a0f6dbf7cbcb2f4002b3dae74d02c8d6e9f694cd1249ad54ae7ddc63e92"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Constant/ErrorCodes.php":{"size":9417,"mtime_ns":1782728407202855820,"hash":"3e172a36ac3e336ad3501c5defbd9ec894334ba4f7f720b04d4515bd6703b939"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/BaseController.php":{"size":1710,"mtime_ns":1781009861592137456,"hash":"4bd3aa269121a122fcf443aa15c884adf07e0700950135a3e66dbdf27b9c2416"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HealthController.php":{"size":1190,"mtime_ns":1781009995463320374,"hash":"124d5bfe7f63a910acd5ddab19c0ecb83c9d9005786fcd6606e597e7f6b6050b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HomeController.php":{"size":409,"mtime_ns":1781248993159620643,"hash":"d08f9d35b78ee68ab06620388e34b709eab59364bd0b84e5d2e1478f45310970"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Doctrine/JsonContains.php":{"size":1061,"mtime_ns":1782050362337187655,"hash":"bc76253c31cf5a3bb23264736171549281989a4d9915b05a303647324d5aa4e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/ExceptionSubscriber.php":{"size":5579,"mtime_ns":1782747822711536821,"hash":"cc3e848cbd0237379c1c26afed58de7230b93b095d87ca672ffc16e88a7bac40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/SecurityHeadersSubscriber.php":{"size":1559,"mtime_ns":1782728407203289865,"hash":"4c05cb260495d4e38a1c9f13163eb64ee0cf264d95c6f87994cc03e4508c285c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Exception/AppException.php":{"size":637,"mtime_ns":1781009868466892123,"hash":"7956e81fe8e81b642076d55380a796ca70431e6c3880db06d2fc264c8b078f82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Message/SendSmsMessage.php":{"size":235,"mtime_ns":1781010000546687126,"hash":"daff508176e43de48738f7d7b86a97f047329c0c3a9896602933c7aa130ff739"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php":{"size":4598,"mtime_ns":1782750061879006297,"hash":"d2a46876b0e6e0cc5cf9a88c3ea9067de7a0f64df5bc59099c215c14a123a305"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/FileValidatorService.php":{"size":2743,"mtime_ns":1781946812332075105,"hash":"4c26e4f47f2793bbef582d233a1f08e96e91274448209159653ec0d95a3b8b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/InputValidator.php":{"size":1811,"mtime_ns":1782290232599858088,"hash":"3d610effa54b8c5afa1c206c0dd46ed3ead6b84215d54b39e6789c498c01427d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Command/SeedSmsMessageTemplatesCommand.php":{"size":1380,"mtime_ns":1781888665382463925,"hash":"1a62b01d290b483e8188ad1a555bb459bd780334cd28835e86bcc0517382c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsController.php":{"size":21687,"mtime_ns":1781889430823494936,"hash":"e768f521935e2bfebedf60e563dd50f8c2eaf1bec54382bc01e05aa72ba2941d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsMessageController.php":{"size":4104,"mtime_ns":1781888448780113939,"hash":"4724d7f809243a92d8e48fb121d8d7e946d9e4072879f7df95804a9e69e13fe6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php":{"size":11944,"mtime_ns":1782894791538739382,"hash":"5a7b81ccbc80a2eda57c20b2a678a9c6c0eefaac5f897cdff1caa158600e68fd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php":{"size":3070,"mtime_ns":1782902823958000168,"hash":"f8cd091e36d8c2f841540dd25b1091db266e42634f4ccd26f351748f1fc21079"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php":{"size":4223,"mtime_ns":1782902828661939929,"hash":"df83b5af8cf13028807615b2d62c006bce1c67ca64c1d3a907fcba083c8bd8ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsSettings.php":{"size":5136,"mtime_ns":1782109802341264005,"hash":"751faac90d0b9d9320a8315e7b0765dc39d94089c96a65bacb4a59d84bc442c6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsTemplate.php":{"size":4085,"mtime_ns":1782650883608045581,"hash":"9c1ebef6b3ee3a4724e94af555854df18a8d5f2bba6f524781a94478123be0dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWallet.php":{"size":1749,"mtime_ns":1781516938580571044,"hash":"af121e73720cdd1fac6a329c931f01349fae4aba0cc9ca12bf25c232ebb69e5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWalletTransaction.php":{"size":2423,"mtime_ns":1781516938580684919,"hash":"5272a1b08bc5d6f28d5d845e9201780a4804fce789175b7be82001a4102f09bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Message/SendSmsMessage.php":{"size":495,"mtime_ns":1781871113880839659,"hash":"e37f791352f7f9ab7ededa626d6c3d53fa7675ae4e9cd65f499d5b0f0d8a356f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php":{"size":2609,"mtime_ns":1782893881095928452,"hash":"2964a2ff29bf2568a52d10ab0e0fd05caeada222d1d285c67851cd88e6d67f8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/RanginehProvider.php":{"size":2234,"mtime_ns":1782749977746062400,"hash":"e2910a9314c0a63d60a4d5df210a421d12149e64db2550cb58bf021bb84f19c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/SmsProviderInterface.php":{"size":361,"mtime_ns":1781013608175277472,"hash":"225781d93f9a713aa0a979f12efff07f7805972e287cc1fe11371367bfcc4e43"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsLogRepository.php":{"size":502,"mtime_ns":1781013670673270702,"hash":"66b4158b7f47661bd573f21e65c35e20e22ecbb830736f07091857004868eeb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsMessageTemplateRepository.php":{"size":752,"mtime_ns":1781888405897787839,"hash":"a6b1523de3a122f8c6dd8e442929ae821b0cc88dab224899c0a8cf100b6247a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsSettingsRepository.php":{"size":729,"mtime_ns":1781516938580977169,"hash":"c2df1e6cc37ef5422312c0eac75fdea0d42de8e6eb822faa96e7bc5e423be9cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsTemplateRepository.php":{"size":789,"mtime_ns":1781013662226415873,"hash":"8da60c0de8613863b8928cb46c6bd846cff26539f158be4a68115ff3a6c68684"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletRepository.php":{"size":911,"mtime_ns":1781516938581096086,"hash":"01a35794369da341601324499da53378a75ab8592d14a32b72d564b44137177d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletTransactionRepository.php":{"size":1325,"mtime_ns":1781516938581213795,"hash":"68b117404c5f1c7c68914a367f9ac656b25cb486daeabb9808a36be205f4de56"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SendSmsHandler.php":{"size":372,"mtime_ns":1781013692820181847,"hash":"f644961f4a1538c1d315e1d6000fcae2d4466975c054685003dc616186614172"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsService.php":{"size":1914,"mtime_ns":1781888026617108387,"hash":"4581869e73129d4933612504c7f98caadb405f5a192dca7a805d4cd5220482ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsTextResolver.php":{"size":990,"mtime_ns":1781888419028487399,"hash":"c83ed15618515fd7301a8fd03a409f17232d3d03e917fcda93bf1f72fc70b963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsWalletService.php":{"size":1830,"mtime_ns":1781516938581332837,"hash":"72dc9bef8e8ddc92b4e2053e804407f80ffde9a4b57d1dbd07095d47f6651dc0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php":{"size":6336,"mtime_ns":1782844333713927668,"hash":"84c72c8da1f6fc901ef1b8c75accdfed1fb314c943d3b81a1d031c26f79aacf9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Entity/Specialty.php":{"size":2698,"mtime_ns":1781085518712241650,"hash":"683f2375f3d9528dd02e9cbfe7bd344ff51208aff0ef02dfed3d576c3460a1f7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Repository/SpecialtyRepository.php":{"size":2293,"mtime_ns":1781636247076888517,"hash":"9b991dc48c3a9c42baad98f553ee0fa395c4b596f65e84230420929f3e32e6c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Controller/StaffController.php":{"size":5842,"mtime_ns":1781522583734490612,"hash":"8b6ad6acaf1a93214344464c7dcc3b9792720118a1c0963340f639a87de43264"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Entity/ClinicStaff.php":{"size":4240,"mtime_ns":1781516938581704629,"hash":"95c3df6b577ad88a80af1bec2e17b48c6d7b9f35b1a8f75490d0a1bfbc940fee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Repository/ClinicStaffRepository.php":{"size":1179,"mtime_ns":1781516938581849755,"hash":"d83ac7466427c09ca77b63924a66dd5710c8ecc9ba3b6dbdeecc4648940a711b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Controller/SubscriptionController.php":{"size":11185,"mtime_ns":1781522583734953988,"hash":"65a467e75d34ebf32f56e45ca5aafffb2a0560dcaf538b6e5d962b46b3265718"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/ClinicSubscription.php":{"size":4057,"mtime_ns":1782728407203534324,"hash":"a21caf7417e2a32180b91b4fe18ac8245f2b0aeb8887104b2739771151a37350"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPeriod.php":{"size":3806,"mtime_ns":1782728407203839326,"hash":"0121bf60210628bcbb1cbe89419eddfd71b29c65debdbd3dbce51e2d2632c75b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPlan.php":{"size":3867,"mtime_ns":1781516938582569339,"hash":"ea26b39ca447321dcd1a8f9b199a6b8e2b82c67814754709ea47570066ed15e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/ClinicSubscriptionRepository.php":{"size":1780,"mtime_ns":1781516938582726506,"hash":"b5459ccb551f37c349aab40fef73ac8f33414ba9f130289f284595c7b3e14622"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPeriodRepository.php":{"size":954,"mtime_ns":1781516938582865590,"hash":"726666fe5f74b8a9927376e82af264b70b209a4e86d164061eb7a9b1d9440942"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPlanRepository.php":{"size":1084,"mtime_ns":1781516938582984965,"hash":"1f4ddab7ada6116daee3a80a2b4ded6c8b84612e036cc16621211616ea9cb2e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Service/SubscriptionService.php":{"size":4048,"mtime_ns":1781516938583134340,"hash":"1ccd90f5a75d47aad2155484d487cf0dfceb319ec0b9ae4f45a30cb931e5e031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php":{"size":4239,"mtime_ns":1782844396159141068,"hash":"f4aa363cf77d90bfca146bffb70b496661bd3e4822fc2502a6bd390c84b15bc8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Entity/Tag.php":{"size":1775,"mtime_ns":1781085585665970564,"hash":"cd3edf2f90d5bdd70487b38e085a751cb578a9cb2395086bbe2964e5dbd1996d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Repository/TagRepository.php":{"size":967,"mtime_ns":1781085592043241382,"hash":"283d4f4300d6202a7ab924d3bf130f7b2d90716a520b6d40ba35edd27cc88059"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Controller/UserProfileController.php":{"size":12912,"mtime_ns":1782289553079211479,"hash":"9d2e310f94dcbde48859dea9872428189b32d7f415af52e6aa5eb523c446fed7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Entity/UserProfile.php":{"size":9546,"mtime_ns":1782650883615317561,"hash":"d65393c833dec86f7dae8413a72b3a6cd0cc75f3e7faf36bb02995d72b463bb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Repository/UserProfileRepository.php":{"size":1267,"mtime_ns":1782270252112779103,"hash":"d36f160a81c8fa1927ea604fb2c27f0ed0f1b33507d838e28adf9fa1fa3b6fcd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/BillingCalculatorTest.php":{"size":3007,"mtime_ns":1782214545731907969,"hash":"85b469b70480541f73092cf1593029c76fb703bdaf77f71327a0f25ecffd7924"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/bootstrap.php":{"size":248,"mtime_ns":1781009800080637813,"hash":"57ff9294703e34a685f28cd3c0e46ab54a5dd3f4fe3356c224e3aed0958269d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tsconfig.json":{"size":423,"mtime_ns":1782729422588693047,"hash":"53fac6b4a0917eecde4dc3efc021cceca3d48600d9cfb58a3d4c946135751c66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-pwa.md":{"size":9407,"mtime_ns":1781343171405896374,"hash":"f6294cbb97d2ca4465b4f185c394daabb11f6ddacc29c2d471decb04da8c7265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ui-kit-redesign.md":{"size":10577,"mtime_ns":1782232921465705417,"hash":"24c6ca8b5c2e6f9b9783d446829be9cd4ffe5c6b550e0754d2d4521555382892"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-user-detail-show-profile.md":{"size":9288,"mtime_ns":1781549990210378142,"hash":"629f80e928f666143a4f251067bb31a4f866773e509f34b6c2d623580424e3aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-detail-enrich.md":{"size":4876,"mtime_ns":1781636247075313849,"hash":"a846f9cb4c0d643d7488873cd7a27a15adf39c8b1a206a371efdd0bedb472612"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-lock-patient-confirm.md":{"size":16770,"mtime_ns":1781535498213998370,"hash":"0a79349da76f2fe2c50e76e3add06522ea796a255722386426e7b7edf988637e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-day-of-week.md":{"size":15777,"mtime_ns":1781192992528836012,"hash":"73bc57098ab8816c91d042649840e5d34f5d00f096aa88b4bd3d5b9501b749b4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-redesign.md":{"size":24082,"mtime_ns":1781173659296708465,"hash":"fe28753bae9a95b192796f18322282909e707d96f00082b8d1ce655b47d2aa2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/build-homepage.md":{"size":4205,"mtime_ns":1781248910704293609,"hash":"4dda73a4d2f91de3fa5b641c559cf509ba8b87ec4621bf2e8eeedea3f9927412"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-detail-fixes.md":{"size":3514,"mtime_ns":1781286844618120218,"hash":"2cecd1fb0904f3aff92545007b33eb4bf970efd7b03cff7c53e6ca73dd2ef9e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-doctor-deactivate.md":{"size":15114,"mtime_ns":1781257376721043348,"hash":"6b36b95516cd5fafc100a500b72fc98d68992d8cb07c02160a09f827e2fb58e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-social-media-field.md":{"size":5746,"mtime_ns":1782034582969356341,"hash":"01a6fc5a55d6357607e36837cd39a6ed646f4097fd4ba944ababf826cd1f0ff4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-view-doctor-profile.md":{"size":6746,"mtime_ns":1781361314655405808,"hash":"b7d523d90f08ea239fa8b03eae601cf68353be6f45c0192762cabfef28c55e67"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-patient-without-signup.md":{"size":5271,"mtime_ns":1782145462624789979,"hash":"5bf24921d4002ea348e38c87cc81bc08ef8e169924787c3c719bac9d3e62d4a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-phase2-tasks.md":{"size":24506,"mtime_ns":1781516938546554807,"hash":"f3d49625dfa644a00f6cd5a582e52d63bfefbd2db875f25164774a71cf345ecd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-booking-window-and-month-availability.md":{"size":12511,"mtime_ns":1781535414057585490,"hash":"505938967d29a4e337e18cb22f2a299f97e5e452e05c9b94a9e409c86107f23c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-clinic-address-access.md":{"size":10705,"mtime_ns":1781362104619727130,"hash":"657c686420a8a45159812178f8a65dbc317591779844dc26b3921c536f92de8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-profile-page.md":{"size":8799,"mtime_ns":1781175765248517513,"hash":"f1078372d9fc8eaa9196ec9840ce187d86a27b723a1c218cf872cc4e4ede5d3e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-social-media-field.md":{"size":6783,"mtime_ns":1782031213435560461,"hash":"072cbab44fe86ab89e7a46724b8631528acdd63ae0c3aee2526ab408e1c021d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-access-scoping-doctor-clinic-representation.md":{"size":14171,"mtime_ns":1781863132633307507,"hash":"8ad2e8c5d53e8f34d69e1b4fd6ce71775720cee430130043803bc44f903341e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-auth-token-hardening.md":{"size":12680,"mtime_ns":1781946301827134938,"hash":"a52ecdd96fda0f396864de78704f6c53efb9982debb51f4ea1a4494007f925cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-bugs-and-features.md":{"size":20820,"mtime_ns":1781516938546940516,"hash":"c45843d9ef701e2b73f7cd161083ffe23d315d81b68382ed4f9f45feb642c6dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-filter-by-address-location.md":{"size":6683,"mtime_ns":1781674935483152098,"hash":"b5aa923fc81b1ab79f29f7f02401dcfc56b88ce6bbcf0c5e015200000d7ae6d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-patient-auto-add.md":{"size":4991,"mtime_ns":1782145525259778908,"hash":"9dcfac3aba7cdb8101c97017973a1bf7e4217f0d8df94b9dcbd1bda10192263b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-city-via-clinic.md":{"size":5124,"mtime_ns":1782040974660614329,"hash":"a3571d2085a8c4aa6cdc7094b964fbf54281b482a064cbf368f623dc5fda26c4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-schedule-fields.md":{"size":10822,"mtime_ns":1781523041417094452,"hash":"7ceaad108bd7bcec35b9271f73308586072e8fe12be63b1dc754e5ec902bfa1d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-search-performance.md":{"size":13253,"mtime_ns":1782046573636729825,"hash":"febfb8452181a0ee429a6c1383b489ca071afe45ffb617b9343e9a406ca02d0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-guest-doctor-clinic-context-access.md":{"size":9535,"mtime_ns":1781890240620846065,"hash":"dbcabb830aa0a81fc529eb14feeec65afdd979ac4eb7ce31c80eeb22b2166166"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-invitation-accept.md":{"size":4399,"mtime_ns":1781360063617429536,"hash":"2bc99d1a7460fdf5be3711a0add4de54d4ab78a0fc16079680d4da58e4615997"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-profile-in-clinic-context.md":{"size":8367,"mtime_ns":1781365327185378947,"hash":"f063eae11f94b2132d84b0a8472bac1d4d404a2bfbfacb049f0c583f9c586219"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-server-side-mobile-nationalcode-validation.md":{"size":8677,"mtime_ns":1781945049606053409,"hash":"32049409986f11fd29d302dc3e1036cab7172ae9033c3901e0622e8171fda14a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-switch-context-role.md":{"size":7032,"mtime_ns":1781363356184798552,"hash":"74cb88449b93fd682e3ac81a322e1d405d54e111e172758e5b10ca80437e1a3b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-backend.md":{"size":23991,"mtime_ns":1781516938547317892,"hash":"ba39a2e1ccfbc1a98662ecc71225aa32583a410df8e238dad15de69a62fdb521"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-frontend.md":{"size":28042,"mtime_ns":1781520442021329832,"hash":"4faf26a0b91c83a3c183e3ed929d5d2dc92e7624549af170165bbf2faa9eec2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pages-subscription-gating.md":{"size":8256,"mtime_ns":1782258337653428004,"hash":"3755a25eb7694c8c1587bfad9e02166c438ab4bd361268126cfe0f3ee553bbb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pricing-and-selects-cleanup.md":{"size":7612,"mtime_ns":1782253591735960479,"hash":"00ca797277e9520885bf056e719721e9d72d97c4000fbd9f8bcd69980a5bd69d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-visit-pricing.md":{"size":6483,"mtime_ns":1782214545719956341,"hash":"4197cd316ec7560bb084840cd96f82df6d524916d4a4ec4a0f71108c2cdbec6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/location-clinic-address.md":{"size":15649,"mtime_ns":1781257855652300954,"hash":"c147a47466d89f4591d1efff242e3ec90e1b979463cc2d2ce5f65bd55002b770"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mark-past-slots-unavailable.md":{"size":7754,"mtime_ns":1781535427967339672,"hash":"51d4e6c59bbcf69395fb0d0a1420f5c47f5c3ea5bf77e95b3180fef5e2081fed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/multi-role-dashboard.md":{"size":47174,"mtime_ns":1781164462782884121,"hash":"bdbb8f8d4f66f36005c2c7e87f123d905c49048dba266e475c775b73d438b434"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/my-payments-list-endpoint.md":{"size":6964,"mtime_ns":1781539108766134646,"hash":"5c6b5a4fff2796f32393914512d82d2cf18fe1a2bb5c70f7087c6152451e2ce9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/national-code-unique-profile.md":{"size":9589,"mtime_ns":1782270001832720420,"hash":"4bac96e773838ee4ef912cca328f84ce957deb6c594c1a00016b305380c93112"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/new-visit-modal-ux.md":{"size":5602,"mtime_ns":1782145407253133698,"hash":"5ec3558c752110146df788f8f2f85025c4ff17876ace24f8de0b2208013a622b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/patient-record-profile-binding.md":{"size":5004,"mtime_ns":1782145573523412851,"hash":"5195bc67dec077d35f5220df58a5c2ffbb62fd44c881cc9e51d8aa53a08d065b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-test-mode-ui.md":{"size":7973,"mtime_ns":1781516938547896351,"hash":"a37f514022aea65c1e8d35c8855c087e0913c650a642cabdd39f9690577d8cd1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-unified-status-canceled-and-managed-hosts.md":{"size":11866,"mtime_ns":1781591920505562932,"hash":"32799eaded7c02d109b78be529dc0ecc8b7fc0b500326573428a365e21869b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/pre-registration.md":{"size":12415,"mtime_ns":1781252082262696147,"hash":"b1857341551ffad0b98d9d867f3caeeb8924c5b903099e9f2823620efa8eecc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/profile-birthday-jalali-persist.md":{"size":4796,"mtime_ns":1781597628367003291,"hash":"e90db79d423bcbe97680ffed422228037e2843e8169bb1188237f7f6b6babbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-bug-audit.md":{"size":10008,"mtime_ns":1781892497314247088,"hash":"63ca9f918e24b1c15839c13744045e0b8aac212279b5b4fbfa5ae619b7709804"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-multidimensional-and-rich-comments.md":{"size":12831,"mtime_ns":1781557035802767573,"hash":"332d9f393aee67c403841f184f3e6c069edaeb4459b4ee328a9310055f937cef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-require-recent-confirmed-appointment.md":{"size":9517,"mtime_ns":1781557035802942698,"hash":"305ff640dad68d7e842a5825bbf7a8f4cdb02b145eed8b782c1151db3305632e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-admin-panel-access.md":{"size":16498,"mtime_ns":1781857058512546863,"hash":"72c1500ed688169cfd796adcf9554b63994849119943dba5d5a70883eb5a8dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-commission-tax-engine.md":{"size":21994,"mtime_ns":1782292728412115840,"hash":"ca8cb1567b8434a59f5717a4b33c6ea142e69f4d1010df15010081905b556669"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-domain-guard-dashboard-settlement.md":{"size":16314,"mtime_ns":1782304099038050829,"hash":"be8842b5ac2c5a57277b047c4c6ac3f828ae302dc6a94569e8f46760564b90d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-identity-iban-verification.md":{"size":17082,"mtime_ns":1782399022752193648,"hash":"59271ef71e8e71f9f1bb9dcde1aea41565a2dbef6ed9aa8d35b1e7202c685f38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/schedule-cancel-expired-appointments.md":{"size":8800,"mtime_ns":1781551622406496621,"hash":"43d63ab1fbae2e6e2d5192d922a09293b1abbadddfe98819e39671dc00e04a99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-context-scope.md":{"size":14283,"mtime_ns":1781520442021272248,"hash":"e684ae83cc15db840406769e15852b219ceff63405fe6064bde19263b2fccfdc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/seed-realistic-data.md":{"size":14531,"mtime_ns":1781519566626148059,"hash":"6b2eea6f45404e64d2b8b3998a117e8bada7517c880339af1fc4ff72cd0409d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-coverage.md":{"size":4046,"mtime_ns":1782214545720279342,"hash":"3ff0f0f6b3a99f5facadc19ce455b27c8cea3020038a1b40bdebda4fdbaf84f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-per-insurer-coverage.md":{"size":14249,"mtime_ns":1782259799527430466,"hash":"295cae74decafadb2379fac86ac7ac1f420042d715f798d5024b03362560363d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-log-tags.md":{"size":15685,"mtime_ns":1781870909734605934,"hash":"abe301d83cba0655c353e32c6f55a9bf20dc808d033c9f5d1e40f8fa9ad5bd62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-login.md":{"size":9252,"mtime_ns":1781255737102412820,"hash":"af6300f99ef2e66cad5abf34a421e4c3f2d34995535a907f82aa86cfe4c29b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/specialty-doctor-counts.md":{"size":6533,"mtime_ns":1781636247075492016,"hash":"32a97260ea56f3bd9529a034cbb791df59ce29ca60d9966a24d469cb743fee41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/subscription-gate-ui.md":{"size":17009,"mtime_ns":1781520442075008039,"hash":"81757bb902f7ddb74f51b2aa43612d9c73fbe20abebbc2f046a6014498f9b58f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sync-user-realname-from-profile.md":{"size":6614,"mtime_ns":1781594222051658800,"hash":"b9ee6559e409596b698b855fe4ff283fac5a062a218b4aea42a3b09d14a8fd0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-darkmode-polish.md":{"size":9534,"mtime_ns":1781520979984254456,"hash":"9f195ed3dccbf8df6079d978142aac339fa50d0b949526fc1b7b832af151da1a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-ux-pages-redesign.md":{"size":18980,"mtime_ns":1781520442021457666,"hash":"2dce360a15f48c97610df47e5e6fbeea313e39fdc152e0d55bf687ec17784e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/user-profile-resolve-by-user-uuid.md":{"size":9637,"mtime_ns":1781537870411647855,"hash":"880cbf5c1bbd64937f4a197a91cdedf9c742bb3910ab2104cfb6c59e8cc7ba0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/prompt-writer/SKILL.md":{"size":5151,"mtime_ns":1781361052504791267,"hash":"abe2c711bf0a283fe50a70e5180d0ed7c7e10f7b699ceb50b4701485cf7b74bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/run-prompt/SKILL.md":{"size":9443,"mtime_ns":1781176103482888341,"hash":"bc8c63ca2411b0ed4242f54f4a998590698d1cc62ef9b2661a84668ed1e80689"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/CLAUDE.md":{"size":8393,"mtime_ns":1781551622406854747,"hash":"1712a6a680cb00c102367be014ced75a77306c0c8ac1fbccec95f37ed31cff4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/TEST_USERS.md":{"size":4101,"mtime_ns":1781520709654384302,"hash":"ae97e1e0de7fdd1d8dccf030c996f155262259cbd648b71d4834436f90827910"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/Architecture_Audit.md":{"size":33583,"mtime_ns":1780948937761931658,"hash":"e79771047616dbb7a604687b92ffcd47f09dc19a112fa51174cc2738a0e5c49b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/ClinicPro_Manual_v2.md":{"size":228782,"mtime_ns":1780944864742215753,"hash":"86c808b50dd3da1c5107e4b6a3a03190f30c643643ad6de4c89b2045f803baee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/prd.md":{"size":28619,"mtime_ns":1781520442203119936,"hash":"a1691fe2f87737cd12253bac3bfda2f8feeaabc15a159a8dce6482eea7fd6e8e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/pre_prd.md":{"size":5454,"mtime_ns":1781516938560096835,"hash":"4736bcde5ba8e7c73405d0e7c31b6e2651b65d475e4cb9a924ae152b799bc4f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/ui-design-spec.md":{"size":20687,"mtime_ns":1781024129379257560,"hash":"60176b60869538ed763bfd4b0d02c138481811e62482b73c41693ea5393e8460"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/user-flow.md":{"size":16280,"mtime_ns":1781022482742007613,"hash":"aad348887a0347a4d348eb228959ef9e44099e2c4e60959d0dc06d976ebe7e16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/README.md":{"size":3621,"mtime_ns":1781158395412841916,"hash":"8ddb00666307b307dcaba4c0b7b4f4c13e5f31502f7d20d5c3a8a82729c606b8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/admin.md":{"size":30991,"mtime_ns":1782974658990694234,"hash":"6c7c55103177a13990984f1a91cacd82552968049969a255096e9be4401ce45e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment-settings.md":{"size":16574,"mtime_ns":1782728407106610964,"hash":"540be837def81a7c24a001654fde543de78f168ba34ed839c6e6fd597ea55ed6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment.md":{"size":16822,"mtime_ns":1782728407107114384,"hash":"7b39650f7266519461983913a0c78e186275d036101a827049dd6f8c3574707e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/auth.md":{"size":18998,"mtime_ns":1782728407107527803,"hash":"3ef75b524c4a8eb4748ae652659d5849cf3a6359015216d8f24b3a0f555efc6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/billing.md":{"size":10078,"mtime_ns":1782728407107896681,"hash":"c9f6afebfd6b6f7a7e55bf1d14c8123f9230a99fc566c63aa9cb4d01b6204324"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/blog.md":{"size":5522,"mtime_ns":1782050526553302749,"hash":"fc22dc80387b6c8f477854a19dfe01e496b90b688020325f1df589e0ae5cab8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-invitation.md":{"size":9237,"mtime_ns":1781360269658725816,"hash":"50b040f0cc844000cdf24ba7971b4bfe4367e7980413f2dd90d7187a4e0c9991"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-services.md":{"size":6228,"mtime_ns":1782728407108299892,"hash":"d03260630a54476e8c29c60a2eb6540abb203d81d7656a95fbb1381344ad1a00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic.md":{"size":14733,"mtime_ns":1782035382888801592,"hash":"f92d6767717fca87e08884cee26a75a77b5ff8278bf0f6a0219245b3028130ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/dashboard.md":{"size":6099,"mtime_ns":1781516938560827336,"hash":"8368266c4453ba5364ed0787679059288d98527506bf05a44f86b5a31a7e0a6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-service.md":{"size":3542,"mtime_ns":1782844893680414173,"hash":"e89e263e5bbc843f579006c3b353fe521d9366fc228515e8a5e596321c8c0c42"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor.md":{"size":13822,"mtime_ns":1782932001157098863,"hash":"8205579cbcd4886a442a305170806aa819b520469c57f79de5cdb76b6d611a76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/insurance.md":{"size":14620,"mtime_ns":1782844893680930170,"hash":"777ea6859a4a038025bff4fd5619e698c213fb174f40b4f41292b07a7bf12dd2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/location.md":{"size":5955,"mtime_ns":1782974277464731662,"hash":"ab2fe5f2a37d5018a85f0391923ddfb058682c2107c85c2ecc9b60f24cbe0433"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/patient.md":{"size":11646,"mtime_ns":1782289600489452444,"hash":"37294299886dbe4d8227c8fdc5afea62f50755e0fd42f229eedc58f1a036abb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/payment.md":{"size":13410,"mtime_ns":1782974640976294643,"hash":"67bede935ba55cb63bd95732662fba6449caa04a19c0fd90b2771958a81f0ccb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/rating.md":{"size":11090,"mtime_ns":1782728407110670616,"hash":"61914c5f9d29060ba157369cf8e82392cc6b094df3f3a1423904c2988b19def9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/representation.md":{"size":21174,"mtime_ns":1782728407111252662,"hash":"5885967c5170bf2400f9732554f43375edc13e81715385df337db7eeea45295f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/secretary.md":{"size":11082,"mtime_ns":1782902968293482660,"hash":"8a4df85eba0a0da8f2a31f07cb8ed2b182bae88bc4530db5c743bd012bc4bbed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/settlement.md":{"size":9976,"mtime_ns":1782728407112458962,"hash":"ad88d08fd6960cb9bfd932b91def2ad395a50c391f7692e9ec30fa4dab681722"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/sms.md":{"size":14822,"mtime_ns":1782902976009701024,"hash":"65894c26cf873fc088a90507142ec0b847f06b22d2ab0840f7901f138c08550c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/specialty.md":{"size":4869,"mtime_ns":1782844893680226216,"hash":"8f43fadb8c8754ab788dc183df3538096cfffc5d7a542fde683d8fffee10fafb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/staff.md":{"size":3093,"mtime_ns":1781516938562286131,"hash":"b3690ab9cdd530eb6a0180f96f08a258ccae0c77d31416e80f49a92974eac730"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/subscription.md":{"size":5356,"mtime_ns":1781516938563076716,"hash":"0bfc1f146132195c74357b078df7c099d0dbff2c90ed2bd65f5f5c476dec793b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/tag.md":{"size":3045,"mtime_ns":1782844893681057377,"hash":"4044766bce277cb59476fa2c470b399018dafd94191893c53aca75291de87b7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/user-profile.md":{"size":7549,"mtime_ns":1782289592597934192,"hash":"5d269afd10ce9174f3ac63fb4fdcf1cb7272564925db2d3f5f7e75df50c42925"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/architecture/insurance-billing-system.md":{"size":22566,"mtime_ns":1782214545723920606,"hash":"afec1678fc22a9caa8f39eb9fac3f934751dcd6a315ac1441f1378193b88ba0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/architecture.md":{"size":4831,"mtime_ns":1781516938563423092,"hash":"589134d822642da7433ffa06823f4e2c79ad74e3feb135df95e581377b01ffd3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/database.md":{"size":2045,"mtime_ns":1781516938563622759,"hash":"580ede75d18ef6d8117ef56ab233775e5143bc25de4716cfaf53464bdaeac599"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/task.md":{"size":2775,"mtime_ns":1781516938564295343,"hash":"b55eb66cf597d5665d57d79f268a2fc106da8a8e01c18d7f8da2327da6dc7927"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/user_flow.md":{"size":3553,"mtime_ns":1781516938564465635,"hash":"c5436837b9320d6cb9e5f50e7e6b7aeaaa8bdb8dc9a68fa4b5f4b22fdd58002a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/architecture.md":{"size":6182,"mtime_ns":1781516938564667844,"hash":"97af6c2e032264f5dd128efc6ec07a4c1c23664f325cba46bc7dca9da57b9578"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/database.md":{"size":4694,"mtime_ns":1781516938564824594,"hash":"3b798be28cfff874d1b09b25429767e7c928e7c0fd9a9db2a9685f429b299299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/task.md":{"size":5322,"mtime_ns":1781516938564985928,"hash":"46d7f8870c6b9f46071a717d0235dceffd7d25508ca4f69886e5062c8b37d0e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/user_flow.md":{"size":5889,"mtime_ns":1781516938565157637,"hash":"d11628bbcd90efc0d3d09961a2ed62fe3707c3f5b60bbbfcc615da3b7180acd4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/architecture.md":{"size":2393,"mtime_ns":1781516938565327637,"hash":"d036ecddd7c889f68aac644919fb9255189de2f82cd62e3933b860bc348d34a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/database.md":{"size":1646,"mtime_ns":1781516938565469596,"hash":"bb7eaeece88f414ea6253e95b2acbbdbbf74396c5e51b213301593f2aa5d409c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/task.md":{"size":6288,"mtime_ns":1781520442208567994,"hash":"f18a2edba4a0b75fef8e08e155a4cf100b8a98e463acf88d31d506c195f5b27b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/user_flow.md":{"size":3821,"mtime_ns":1781520442059890701,"hash":"72aca8c6bba58695e7e1b63a3aa709d1068753beb31b981c648564fb822e4fec"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/architecture.md":{"size":3719,"mtime_ns":1781516938565894180,"hash":"c2c7361b57f654925f2801d0820f78bbbb97dfbd07c808b4ec304f7938139151"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/database.md":{"size":2673,"mtime_ns":1781516938566026680,"hash":"de17f21b92fb807651d65288c8539699aad5597b8e541e47c9bce4dd0f97b696"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/task.md":{"size":2931,"mtime_ns":1781516938566167056,"hash":"87038a0b3a2f872944d232bcf66eb5fab7676f00a9d29319c082a4b576a1fc40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/user_flow.md":{"size":4046,"mtime_ns":1781516938566343181,"hash":"4bce3394d64f2c1d3441cd2c3ad717670d1c91817b9015db00aa9ae4eead4f66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/architecture.md":{"size":5145,"mtime_ns":1781516938566580015,"hash":"14afd5263c7d520a89f36bbba8c8a1884f88df74d09afe4caf7464025ee25063"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/database.md":{"size":3803,"mtime_ns":1781516938567109641,"hash":"2a952887767f9f9811df0c99a9bc2ba9986defd5ea1caf3ed11080ce11c61f1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/task.md":{"size":3454,"mtime_ns":1781516938567288849,"hash":"5badde1225cf74657f886825aaaae8582c1c627570f655ae9f631144bc75d7a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/user_flow.md":{"size":4630,"mtime_ns":1781516938567444933,"hash":"8e4bcbd2fd0a486d4942df7ced8131738816487d2c16f0a05730d4c190a10296"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/architecture.md":{"size":6622,"mtime_ns":1781516938567688975,"hash":"138a7655a0efa500b4a9a8f829bebbdff35803cb3abfd3da7f4d4f362d7b63c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/database.md":{"size":5463,"mtime_ns":1781516938567863767,"hash":"1dceb66c7a12a35660145fdf3bf0bbe4d5b8275f5b45bf86cbba4cf80f64675a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/task.md":{"size":4809,"mtime_ns":1781516938568156268,"hash":"1222b425e9e9856e291b8fb39c28348287dbafcf7b0a30531c5bab8642d2cb17"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/user_flow.md":{"size":6283,"mtime_ns":1781516938568370060,"hash":"e28725b4fd619e8e105951b570c0066efb23fd6f378c1939bbe5cfcdad47b2d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/architecture.md":{"size":3095,"mtime_ns":1781516938569635604,"hash":"6494802db54a411d47ce102df7a5584c1e7db3482aad69df967bf1ca71c5ba58"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/database.md":{"size":1971,"mtime_ns":1781516938569893480,"hash":"ec0826918bb413f88d2d989f514b0c75a8cb932d11476d2c6e46908ce87968e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/task.md":{"size":2630,"mtime_ns":1781516938570195856,"hash":"19bc98b5866f489ff0cafdb3533f2698de3546aef26ad438d16beb2d7218c859"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/user_flow.md":{"size":5110,"mtime_ns":1781516938570362314,"hash":"3572f80a2a4741eeaa91c80e9c362bd8ff452c14c4d1f052efad6467db72ce60"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/bug-report-2026-06-20.md":{"size":6123,"mtime_ns":1781932195178136627,"hash":"12f46177c25b3354d11d67086bea1387dfc7c630aa26c3ae766c680f2843640e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/security-audit.md":{"size":17685,"mtime_ns":1781029533522601843,"hash":"a4ff28a805763f65454696132ecea7011101bc37b1b6517222f1c75daf450ab1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/README.md":{"size":3380,"mtime_ns":1780914526335796118,"hash":"defeedb0410731f689fba5e8e2c6f3e35b8bf9e5e284dad43313a1184b58b1ae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/architecture.md":{"size":4379,"mtime_ns":1780948878189677238,"hash":"01cbb020665bc50a95519b010c5cb4bdcda727e5e3b11144854ea69380bba84d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/database.md":{"size":2777,"mtime_ns":1780913653761675119,"hash":"6ad045e9dcec53f77822e126640dacb6bd22ac3baee94373331ba46567bf37f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/implementation_notes.md":{"size":11109,"mtime_ns":1781000268522993445,"hash":"7fcefe550ef23683ee4ed703af2881fb5c985930b4d1a3ab7c93a74ef491bdae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/task.md":{"size":15372,"mtime_ns":1780948866192116618,"hash":"311edd5597e787245e16d25b061f5faccd468d3d7a63ebb05bb04e26b3c7218e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/architecture.md":{"size":2897,"mtime_ns":1780913716805987120,"hash":"ee14b45989f69598f9862c975c097e7c3cb720c2bb06967b9787307e7acfe361"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/database.md":{"size":4381,"mtime_ns":1780945850080810308,"hash":"d1ce5e67b210864664df658d7de16fc479948f90164e90c89f53c33ee6de069a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/implementation_notes.md":{"size":4894,"mtime_ns":1780945075278630018,"hash":"8074b8f1bfe41c918b96cb9ab1c78937bf5986feb3ebe9db3c3ca7af88d7dc2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/task.md":{"size":14847,"mtime_ns":1781000259106649518,"hash":"500d89358f6bf99cb445fcb71f0fe67afc142c3c607ccfb030cbcbea8409883e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/user_flow.md":{"size":2706,"mtime_ns":1780915019246111035,"hash":"03ed965fb14b51c065108f4eeca9672f20e8090195fcc442de5c5c60c950ec10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/architecture.md":{"size":2719,"mtime_ns":1780913810512596011,"hash":"1a83b9b76c0687098bffc9471e7fb2c51a97be4939347bd11990d55fc290fbe9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/database.md":{"size":4620,"mtime_ns":1780945096397670031,"hash":"8d639d843c5d51531781080fa6179168662a5cbd22af7ea828e770823d374c00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/implementation_notes.md":{"size":2408,"mtime_ns":1780913848138283491,"hash":"5a60299e3ce86373b2ae7c2e0efdc5fb85b753123cc45bb09e0c9d671d396811"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/task.md":{"size":2503,"mtime_ns":1780913798113112926,"hash":"f00a38d5a28420b3a8fda800286352a56f0f98b190ec67e57e1d971debae3bef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/architecture.md":{"size":1757,"mtime_ns":1780913877006618619,"hash":"e63b0d01ec3714992eefec62777ee965be7af2a59d55a9e72cf87effac0f4a8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/database.md":{"size":2332,"mtime_ns":1780917970043029189,"hash":"ae2d7fd401bce729cba77a040a613a7f8fe0e9b20e8d4a31eaa970451296a001"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/implementation_notes.md":{"size":4727,"mtime_ns":1780945968298846841,"hash":"92f49568f1ecb690bef8287e9455ef0b2ed56d897309ea6b8a580fa667f8a5f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/task.md":{"size":1962,"mtime_ns":1780913865638451815,"hash":"2884592d17fcc3363768f899a4371d0ff2f25bc05bf4ab378647224aac695fc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/architecture.md":{"size":6624,"mtime_ns":1780915477914900899,"hash":"180c8f1b3163d1c97e3add7912571278ce7d53477095695010024be863743ee8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/database.md":{"size":7593,"mtime_ns":1780917946898365021,"hash":"00d19e027d60b4461e43310d6445f95fab85d7b6ba26ba946e44ea001556b0d0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/implementation_notes.md":{"size":2375,"mtime_ns":1780913973933789015,"hash":"1fa793e81dd07304171c11a760104acd6802dbeec00363618f5d4c1e651668ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/task.md":{"size":6294,"mtime_ns":1780946040236355543,"hash":"042d405bfc9f389c3f4031533534485742dabdcfe86b4d753c0cc052a755f1f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/architecture.md":{"size":1851,"mtime_ns":1780913996728031516,"hash":"6cb465ec4509143b1ff168e629400684e18542a7c1f616f5885f1c4f8be7876f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/database.md":{"size":3657,"mtime_ns":1780926795107362628,"hash":"6ae9c1c5e9c833a0781878a60323428b3388dc46dfdb5620d649371d98c03f36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/implementation_notes.md":{"size":1042,"mtime_ns":1780914015153456807,"hash":"5bb3da0cf9daf5a64f1316e32f20d5a24d70ae5a639bc0d4b62a2667a6742b19"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/task.md":{"size":5429,"mtime_ns":1780946101876308203,"hash":"709ac2fb057f4d470a55c5e47dc0bbda7f38f6a336622fd93be0e334019ee066"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/architecture.md":{"size":1985,"mtime_ns":1780914070674333692,"hash":"b6839bd6197cc3e53162104e0ccddcb4c0dad2d268815ce71e50591dd58dcaea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/database.md":{"size":3623,"mtime_ns":1780917987390393019,"hash":"6a1ac2b1feeec574386ab34b5176b6c069ee3582e7152757e4693e18440d0365"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/implementation_notes.md":{"size":1244,"mtime_ns":1780914095217341542,"hash":"fa7fd9bc9193bd89ed8e6438a3538bb8ba6aac5dbc8859735887b8a2a876956a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/task.md":{"size":1912,"mtime_ns":1780914058797929168,"hash":"4a40fbf276a9595d6be7409e5b8ec3ce0963f7cff1ae1acdbbd8e2a8962f0f76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/architecture.md":{"size":3399,"mtime_ns":1780914129817089915,"hash":"b75f451ea0018239fff4ace9a06e486880409d0015582b1aa5f843b4ff14d9ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/database.md":{"size":4225,"mtime_ns":1780915919108824849,"hash":"07a565453b405723fef58584dc058518729c7d27e873492d8a3cea7e7de0d690"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/implementation_notes.md":{"size":3094,"mtime_ns":1780945173910875440,"hash":"c75e7608c3765170173b475dc5b2b224c663e6c116cecadf38107efdc86d6878"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/task.md":{"size":2582,"mtime_ns":1780914114135141253,"hash":"48422a947301ff86b51f11c3168ec190bfa7f9dcc10821abd5ce5b9a460979ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/user_flow.md":{"size":2191,"mtime_ns":1780914171627644777,"hash":"07b7bc5971ab5201243c5bdf67eb2d111629753dd697034c85e92c96d1008809"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/architecture.md":{"size":1996,"mtime_ns":1780914199549617529,"hash":"289adc397ac626b52b89755bfe8648fab0d7afbbdca30005de728b7697b9a214"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/database.md":{"size":3717,"mtime_ns":1780915937514717817,"hash":"88321d5b96f7d4a6b8e1704430500c45915eb2e259eef363d95f26de72109092"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/implementation_notes.md":{"size":4621,"mtime_ns":1780915380116156578,"hash":"a83b0c475c907a8d8a30ed2d0ca711db33f60fb1e61c202b76bc4731a5bf8243"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/task.md":{"size":8716,"mtime_ns":1780948491117865920,"hash":"da3cd77c8f2c7ad9129a69ccf1f8dc2317dc91a1dd956cf2f042b65361be6395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/user_flow.md":{"size":1550,"mtime_ns":1780914238340850115,"hash":"9f5dce77e5f9988bba7dfcc621622610a49a42e0b065b884bab56b56661cd84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/architecture.md":{"size":1127,"mtime_ns":1780914261808559537,"hash":"375e8ddd7ec2c6078760759c4501a4cfbfa68fafd7835fb01fb77ec9e63edae3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/database.md":{"size":1786,"mtime_ns":1780945194993545294,"hash":"d839d386d4403610f52b0415868efd6ee3555dc5b209d13ec923975ec4bb799f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/implementation_notes.md":{"size":682,"mtime_ns":1780914277970139742,"hash":"9f0f9dc9c02d7e8672e66bf856526f7b0ed7956b926665bf807466cb5be8ae97"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/task.md":{"size":1020,"mtime_ns":1780914250465105891,"hash":"6dd946fad62474b45da1077a795263188685817d871a6fe6a7a48686e24d6193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/architecture.md":{"size":2188,"mtime_ns":1780914305970064998,"hash":"5fdcb2df78dd410d0c2d434203efb1e7a932ef9e9a17270a252584779e59f6cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/database.md":{"size":3810,"mtime_ns":1780915977159314990,"hash":"2fdfac8ae3f0fc238d5398ffcc770d33470901fe1d371043f2762ca15a0c6e50"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/implementation_notes.md":{"size":5724,"mtime_ns":1780946157194396377,"hash":"df382ed8eb807a193bfc884447401cd87c9a678f6ecb95a0a246468cc9311851"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/task.md":{"size":3935,"mtime_ns":1780946250306428313,"hash":"fa4fc2ef76c08670eae962ffd0a3836d7cce4469bc5f407cebff751c025e5c7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/architecture.md":{"size":974,"mtime_ns":1780914349899858832,"hash":"a0adb45cf9f78498055809006e340318b4ca21e6f8627ecbcdcac2205f3f7b29"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/database.md":{"size":1630,"mtime_ns":1780926837375006318,"hash":"3d670c92b56d80fa1da6b751fda3b776da46ea368106339d1b80dd6012e01d2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/implementation_notes.md":{"size":596,"mtime_ns":1780914363412821531,"hash":"d49115b6d3c76aec3c3678cc86c6ef5b394e8e63d96e493479bc79db4cd8558c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/task.md":{"size":475,"mtime_ns":1780914338292873383,"hash":"0f032e0490838820a0692ba9c0042dadce5a9558d87083874219c84dcde92742"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/architecture.md":{"size":1308,"mtime_ns":1780914379600079656,"hash":"17eba56cf557f9cf9d6300b9946fe25cd348fd937bd20914ba382b1a760112aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/database.md":{"size":1827,"mtime_ns":1780926849934970617,"hash":"46384e53c3b5bd73ef416c647833213a49f5eaefdd7a6c63c4227cf54e5e8aa6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/implementation_notes.md":{"size":849,"mtime_ns":1780914395413759232,"hash":"432b4d0ed90802ae1dd2495e54a2493f60f07ca0ca57a7e68734ff493b2c8031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/task.md":{"size":9039,"mtime_ns":1781000115337852359,"hash":"322eeb47d17aa1d34573f1daab3e4e6aaaa6c89a6c97bb7be08ea4e10c475f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/architecture.md":{"size":1945,"mtime_ns":1780914418815337658,"hash":"434ff7a1e4e0cb8d175321f3af647ef5276602ed753c9ca9c3c9480a7456d53c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/database.md":{"size":5305,"mtime_ns":1780946202243066788,"hash":"86fdf19600fc6c72961d37e60d2f056f9012b1b26d0fddac2a6d31b15295f105"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/implementation_notes.md":{"size":3038,"mtime_ns":1780915087810785770,"hash":"1fbc6a5462ddb25a89b765941b2c4eebae1b3c2e62cf5dbf48bc48015b79e6ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/task.md":{"size":8918,"mtime_ns":1780948846758672237,"hash":"ae564ca5b8f57b3e399f6996c978ed63e5d2425342b6d9dc6eb0b29c90fa2da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/architecture.md":{"size":1957,"mtime_ns":1780915416796818495,"hash":"9ed187252c771e6fbbbc24009d84f0fe52b4c3f565b16413ffd753c16c1793d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/database.md":{"size":2934,"mtime_ns":1780917918423562169,"hash":"bc18f2996973b821a4c393e627028ca7212b1bb769a7faf122fd0b7f4fc4da10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/implementation_notes.md":{"size":4833,"mtime_ns":1780915404939572215,"hash":"b8c731a6b5e06985b3179372e17bf6b678fd4bccf0f2a488cec7b842ecd56798"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/task.md":{"size":4814,"mtime_ns":1780948110250153184,"hash":"ecf2f1d6b695c256805cea006ad4ea2c64d4419dba5da0e8a862ddcb78c185d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/database.md":{"size":2141,"mtime_ns":1780945235470226049,"hash":"4ef4177ff9c455909dc4d2d64ef4ee2fd8e1d5eaef1bda53fe9fed7923809e1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/implementation_notes.md":{"size":1864,"mtime_ns":1780945250993937969,"hash":"75cfb72ca7fff3f679ed78b75fb7cc251344cba57d46d4926a1ff24c61a18193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/task.md":{"size":14473,"mtime_ns":1781000201191461921,"hash":"b4a1a494a5417c78db3a85dc80fa158db77860e74eee9337fb15a5f5052f829f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/database.md":{"size":3780,"mtime_ns":1780948101369445086,"hash":"8c43bfccc6aafad28eebd86afc5b32f56ca6db3dc081b796567f4c95824df146"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/task.md":{"size":4116,"mtime_ns":1780948080182510614,"hash":"33696ec512d7848300e8575d2a387e09a90153045860fed8b8f2c5632b6592f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/entrypoint.sh":{"size":1468,"mtime_ns":1782633219516893494,"hash":"48c33a7c55c256a65ba4c089893e1112aea5b1320c9dc6b46f4eadb865b68ae4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/frontend-domains.json":{"size":2348,"mtime_ns":1782410142646593892,"hash":"dc12d68e32830d446995ea2a8cf98fe0bc24e15d4b6b0b27dd5b97dc84b06568"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/gen-cors-env.php":{"size":1941,"mtime_ns":1782410159219136761,"hash":"cee724b4cbfc04771874ccdf454cb5bf04dcf63d16955f9e11357390e3a65c6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/healthcheck.sh":{"size":443,"mtime_ns":1782647901237410548,"hash":"b4d2a6f75f334c832e9a015b4e296f3fb9210f128b2b1b40bfe74abf6e6babc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628133044.php":{"size":1747,"mtime_ns":1782728407177086438,"hash":"5c24097f68a7696b4ae58ba6df68b6ace4f508b1f0ebf3e964fff23661c8ea0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628134241.php":{"size":1159,"mtime_ns":1782728407177374107,"hash":"c31886c1f10dd25296b56fb7ba336f1fc45aa45d6627ab6bdb148f18d49872ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628152738.php":{"size":1873,"mtime_ns":1782728407177652192,"hash":"d7a00a9e505a45fe1056cde539a8cbefcb42f67a0c3755427d77ba12959e0c4c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628153625.php":{"size":882,"mtime_ns":1782728407177952152,"hash":"b314e4f194586cb9b4037fb48ab8400a307ce428def8108b94616a263e24e238"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628153855.php":{"size":1146,"mtime_ns":1782728407179127785,"hash":"1ec80db45af56adf7be93c412e0165c70fb629dde2ccc09b06a3452a66c52c05"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628165710.php":{"size":809,"mtime_ns":1782728407179735539,"hash":"cca05740bf26d1540b361283f5a140aeb446bd717250615b7ed040977788dab6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628173151.php":{"size":1639,"mtime_ns":1782728407180333627,"hash":"b8bbe9ad2ce3faae637534db20bfc455e288bc2c5fb3a1b9a10f4a29db2432aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/CreateAdminCommand.php":{"size":2428,"mtime_ns":1782649564990017265,"hash":"2fd1cffeb4d8299abb1a5fda3d9f29a08c882ff6e66781dffbc038ff675906c8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceCleanupService.php":{"size":1874,"mtime_ns":1782728407197355450,"hash":"19f366c81466bfebfd37cd2310f8602b243cf5111e51308892e196b7d5a7dc4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ApiTestCase.php":{"size":2923,"mtime_ns":1782728407205043418,"hash":"6ec92ce7ac31774fec6ceb5e33a073d6cdbe06044221f38e4939f99270fe8bfb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/AppointmentExpiryServiceTest.php":{"size":2163,"mtime_ns":1782728407205393295,"hash":"5586072347e23a24fddaa187efeb93d702697b7cdd1a399909239684cf371372"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/AppointmentSettingsListOwnershipTest.php":{"size":1592,"mtime_ns":1782728407205827923,"hash":"1ffb3b0a89f531658a75520df810efc7e18022e106a75d885d92986d62ba74e7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/BookingScopeTest.php":{"size":1653,"mtime_ns":1782728407206108967,"hash":"395161c96b8a660dab252a12c063090de94131b66d672c3b8804d70800327451"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/DateOverrideOwnershipTest.php":{"size":1259,"mtime_ns":1782728407206489928,"hash":"10dfd3691f16464f1d16a317942a53046f5369260a74ce133960d1b1f30218aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/ScheduleOwnershipTest.php":{"size":1721,"mtime_ns":1782728407206779055,"hash":"f935dde55aaa34b8c10780019e1c8ee7f5733c602874cc951411737dc9691329"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/SlotUniquenessTest.php":{"size":2475,"mtime_ns":1782728407206954431,"hash":"0168f3c381e9da2663e2cf118fd67f5b90d2ea6e4e96433e3d05a567248961f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Audit/LowTierFixesTest.php":{"size":1517,"mtime_ns":1782728407207202432,"hash":"6d65ac794b959d7b177dfd5ed9792082e5f79a073b0cda79be8503b689edc907"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Auth/RefreshTokenTest.php":{"size":1924,"mtime_ns":1782728407207460101,"hash":"745716b0c8627a1f72fed9305b2dc70af84c14ed015ff3341bd3c6422ea63c87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Auth/SendCodeMobileRateLimitTest.php":{"size":1421,"mtime_ns":1782728407207651102,"hash":"f069f1c427ffbeb082d3777ae8da34e031e940e4a0c79e5da4e80708345890aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimAmountBoundsTest.php":{"size":1863,"mtime_ns":1782728407207878645,"hash":"0b7551406b5b0c2fe47812614e3edbf359b72ef3c0f16b12466e387c5bdbb041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimsListNPlusOneTest.php":{"size":1782,"mtime_ns":1782728407208062397,"hash":"dcf666e9d1a149bf85e0ef7869083bceec48bd8ba95958292878d73f7e330467"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimsListPaginationTest.php":{"size":1215,"mtime_ns":1782728407208282107,"hash":"3d81e096e779dc685eed5920d7fef419ebf2c96e96794ae8d6222daeb0dea7e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ClinicService/ServiceItemDeleteCleanupTest.php":{"size":1598,"mtime_ns":1782728407208527691,"hash":"f9809dce56ba099731d9fbf6e1da781c18acc49a758537002868a7db3efad7b1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ClinicService/ServiceItemStaffOwnershipTest.php":{"size":1464,"mtime_ns":1782728407208738276,"hash":"e8b808423b34ee5471e7d00407f94ed22593e06ed6c4e674f92e972ed0e8718f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Database/UniqueConstraintsTest.php":{"size":2595,"mtime_ns":1782728407208978278,"hash":"aeaae84730fbdecfb8337f25283653d3867d3cf50332e7bea917c946672c97cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/ClinicDoctorListNPlusOneTest.php":{"size":2457,"mtime_ns":1782728407209223988,"hash":"705820b9d1590cf2f642e6ee7391a651536104c92acf39f261e2df71516ed55a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorAddressOwnershipTest.php":{"size":1313,"mtime_ns":1782728407209479490,"hash":"8fde8b4d6db03191fc8d650bf86fa6962956b504013b76a55c4e5ae791e47c38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctrine/RepositoryClassMappingTest.php":{"size":1573,"mtime_ns":1782728407209727575,"hash":"5289139754fae16d85a09fcff134ceef249968876f029c180f36b1c7d53bf5d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/DoctorInsuranceOwnershipTest.php":{"size":1486,"mtime_ns":1782728407209989701,"hash":"9231aaeffd13bf27869e74186679ddd38d1f6ebc9c52d36a8dad9b589bea3ad0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/ServiceCoverageNPlusOneTest.php":{"size":3714,"mtime_ns":1782728407210225203,"hash":"dd8ffa7d6329453fa49a9403b95a13556ad08dd318c89733a202d9d6c8ecfa4f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/TenantInsuranceCleanupTest.php":{"size":3021,"mtime_ns":1782728407210448121,"hash":"986643979f19f6a7ee71127782524852eb9eb163b77db793253e95b8df534675"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Payment/PaymentCallbackAmountTest.php":{"size":3356,"mtime_ns":1782728407210719081,"hash":"1b32d36a573652e1860ae2ceaf20ead7eee9cef0c204c9d4875ce8926849e278"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Rating/CommentListNPlusOneTest.php":{"size":3794,"mtime_ns":1782728407210931374,"hash":"473c67b119935570a66ab5e75cc36311f04ce314729e75bf44fd337bacbc4535"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Rating/CommentPaginationTest.php":{"size":1836,"mtime_ns":1782728407211216876,"hash":"7d11e7ba342faf3c69e5844c1adab2aa7583b201737d16e0724d9233d00ad1e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Representation/RepresentationCommissionTest.php":{"size":2548,"mtime_ns":1782728407211506878,"hash":"26b9f23b2462b30adea512eeb07f92f4db597a60c0ed3610a4169bd22f7c6c26"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Secretary/SecretaryListNPlusOneTest.php":{"size":1592,"mtime_ns":1782728407211848922,"hash":"bce8c0d2597c3641885ba9322eb03bada116d979e3bd7a0b4c90d5208fdd620c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/FinancialBreakdownIntegrityTest.php":{"size":1173,"mtime_ns":1782728407212105424,"hash":"3e987494345d3a7c1cc90de7b27bfcac7bc45bb54e8fa0a7a3f790bdfa406aaf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/SettlementListPaginationTest.php":{"size":957,"mtime_ns":1782728407212820054,"hash":"74501df43886dc66c5fe19f849549a2194644dc948d94856f97d0af17c0d179c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/WalletTransactionsPaginationTest.php":{"size":1087,"mtime_ns":1782728407213026555,"hash":"8df4dfce9a91d73297d88f22e047a4127fee2b00e2fe1bc8f43eed2ff805fae9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/ErrorCodesTest.php":{"size":1547,"mtime_ns":1782728407213280973,"hash":"bf392c01cd7a70c25efe7c4ad59ffdb4579b1216576d58393c3a965524360f0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Smoke/InfraSmokeTest.php":{"size":1444,"mtime_ns":1782728407213624767,"hash":"d8d4a8c5688d7ed7168570bfc39c3cf038e2c43324498dff3239f5668afa0a1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/doctrine_object_manager.php":{"size":479,"mtime_ns":1782728407213800685,"hash":"7a99fb0ab55d30b31cdebe923546775d6372a0aa6e731b409c37fb8f98671f5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-spa-adapt-backend-audit.md":{"size":8798,"mtime_ns":1782728407083687268,"hash":"f7e83133c40658496827e06f6182a995ccaff35018d83b7ee8aa32aba25a03fb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-docker-production-hardening.md":{"size":13443,"mtime_ns":1782647901236299599,"hash":"74228033d085f739ed39f615762ad721c6b3678122d0afc3f988676c4b514589"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-symfony-deploy.md":{"size":18877,"mtime_ns":1782409236333930026,"hash":"a81d0aa4535ae4be51f69d47c5101f7a72415654ded3889e01f1baf98718715a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/full-backend-audit.md":{"size":11545,"mtime_ns":1782728407084760233,"hash":"448fb57a5fdadd9bb3176b1570c0421b6459bbf2a5bd69bd4154246ae0c61285"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/home-landing-copy-and-mobile.md":{"size":11823,"mtime_ns":1782728407085277028,"hash":"596043e27126b0500ddbd861f0e7a8c17681ca49b3381da382458f2bc2355b09"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/split-db-redis-to-coolify-resources.md":{"size":12357,"mtime_ns":1782632977626228125,"hash":"6d87685ede07fb029b01d211fa82bdb7311bde9eb31ee9869992e6c49da5c75f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/DEPLOY.md":{"size":11539,"mtime_ns":1782647901238565498,"hash":"39797d5439fd4fd0fd19ae7a5b033febf0fbf6b58d07fdd1750d3aa2799b9163"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/audit-backlog.md":{"size":19190,"mtime_ns":1782728407113021215,"hash":"63afb7aaff2eb3113700644ab9bbfa07562ccec38cba4c77c0f21cd9acb98706"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy/coolify.md":{"size":10378,"mtime_ns":1782410984792896284,"hash":"f1d06d336c14b8df1530ec41dd80021b40e7113be0895504f9dda70b112a1cdf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/SeoController.php":{"size":1860,"mtime_ns":1782728407203067196,"hash":"df1028d7b1b294928a318cc7c27de5ca99b00d583d81ef6f400494c22380b6a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara.json":{"size":638,"mtime_ns":1782743447395127690,"hash":"337416608afe2e6e989bfd903bb5bca1e977e6f8eb5cc02ca05a46bbda53edc4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara_pre_build.sh":{"size":559,"mtime_ns":1782735663785720587,"hash":"d9b9232a0f115eb1d752c2b149a5224ea030fd04d3c92ab964d53a6701d5e0a7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara_pre_start.sh":{"size":1063,"mtime_ns":1782747838542662883,"hash":"c5d143014bb281d056f6c286cf66faa4894b059584cceeacd150b01648cbde52"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-spa-test-suite.md":{"size":19691,"mtime_ns":1782728407084188354,"hash":"73ad644cede4254811fab6f825750f127edb1b5f08b8bad25b99b85c097a9556"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/deploy-liara-docker.md":{"size":14106,"mtime_ns":1782732118990034632,"hash":"1a5f6f8bba054ea974f99dc5c01aeb19ed1cf612c3fd18a700bc03beaded2b5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/deploy-liara-php.md":{"size":13353,"mtime_ns":1782735439025822952,"hash":"39f30d7c6d20b1869f5f06b2b532071e94b264f4bddf248c3cf84c62159ed86c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy-liara-php.md":{"size":10664,"mtime_ns":1782736008651392836,"hash":"65c93d7d9e14dd468b75c5c81dee1ae6438d267253e8ad295953d3746d68d250"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy-liara.md":{"size":8919,"mtime_ns":1782732335270881309,"hash":"ade1392f7cf72c544736a765b03140858e45cc5f12a480cd03ba4628af17e84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260629161536.php":{"size":1115,"mtime_ns":1782749766472631367,"hash":"c0e9b10f345c3d894d27267c90618903fab9693fd4be3542a755fbed3787fcba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/AppLog.php":{"size":1707,"mtime_ns":1782749711194459630,"hash":"5b3237552e7ae040e5a3b2a289e8fc0f0518a1df84553665ea214efd36c2321d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/AppLogRepository.php":{"size":1042,"mtime_ns":1782929739410604413,"hash":"1ea5a9d3ace2fce4b476ccb2b0954b06f3d4c364fa9e7aa9d77c25a8a6631d1c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/DbLogger.php":{"size":3546,"mtime_ns":1782749810227775663,"hash":"4d5328c774fe4619eb75f9de434173ae4a4b5ca53f7729383399b12c2a222805"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Admin/AdminLogsTest.php":{"size":1600,"mtime_ns":1782750195979032925,"hash":"a8f899cc061053e5664833c2ebcbf1fe2613c8d5b150973bb95e621750267c61"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/DbLoggerTest.php":{"size":1768,"mtime_ns":1782749879165982208,"hash":"48db5c733cc7e02a8a226fc4ed552cd5282c91d400dc72b32f3f122c127033bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/project-wide-logging.md":{"size":14450,"mtime_ns":1782749549958444881,"hash":"3970d300cb4b804fed477773b47b653edb7aa3754b8cefd0e3f7d31a49417e6f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryImportController.php":{"size":3511,"mtime_ns":1782843840412881578,"hash":"721aecace95083433388fa4205e063cb45867b202d5430f44c1b0bbb1faa4465"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Category/CategoryImportTest.php":{"size":3925,"mtime_ns":1782839178845925849,"hash":"03c15491170644124dd399b100bbac0982d3ffad86ccffa9a2b9f4076bfabaad"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/category-import.md":{"size":5124,"mtime_ns":1782844030493510597,"hash":"d7c221bd66dc2ed13630b80966c57f9f824126dfcff92928ea41a28441d30879"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/cities.json":{"size":44860,"mtime_ns":1782974609739911468,"hash":"2144bca0e7b2104d30fe6440466b3cc0c6a8e45e37d302bf878c79a2375be79c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/doctor_services.json":{"size":46716,"mtime_ns":1782843868777989827,"hash":"3a5610d926bb9581c868449c387e80feef104aec7c9bdc6ed39835e87c287015"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/provinces.json":{"size":4364,"mtime_ns":1782843868770610383,"hash":"c28e9c29f212ac946af73f8122b545bd3761766ebc2c8e0a47567ef6a9fc5197"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/specialties.json":{"size":18764,"mtime_ns":1782843868775505763,"hash":"9bcf8a9b8f83e159a290b14c13b17b485185812c9e53ef62df4e33f84b216e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Command/SeedCategoriesCommand.php":{"size":2775,"mtime_ns":1782843891881834765,"hash":"13a71e6dab76fcb921270b6e2f996145b78e3c09d69b38592612a879707d87dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Service/CategoryImporter.php":{"size":11240,"mtime_ns":1782974082771482078,"hash":"7b56b3429cfc36bc155e5848b12d8412ecaff681183a32df088ec93e6cfc2146"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/production-fixes-cors-payment-gateways.md":{"size":15490,"mtime_ns":1782896794174529460,"hash":"4a016b326e836f770e919fd1f5d3bf3f5f70fc4dd7aa9676c198e9b7e63f7b91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-full-system-audit.md":{"size":15299,"mtime_ns":1782894418024832296,"hash":"8cccd87e3d45acefda119c2e63b85e013e60943b2524a9bc2e9b62074c9bb9f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-welcome-sms.md":{"size":8951,"mtime_ns":1782902722286387081,"hash":"05b7b6fbd16251df4d8049e99a7692e0fe3245c4f8ad6f0188e7f0b79fb92f4d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-settings-apikey-env-only.md":{"size":16545,"mtime_ns":1782893768608578413,"hash":"dada8658d0861aa23bbca638f3f832a420d16699a71a02d2dc6358bac834538e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/full-system-audit-report.md":{"size":18928,"mtime_ns":1782896060811421986,"hash":"0053ebf6c21b4a5da087f668332ebdacbceef6a781cd3767155d08647b165b9d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/Command/PruneLogsCommand.php":{"size":866,"mtime_ns":1782929791849281801,"hash":"e80ac76c51bb7ac78fe69679cbe82454f65f5ba6b35d3b3c3a01260698c35c6d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/LogPruneService.php":{"size":883,"mtime_ns":1782929784989711179,"hash":"9fe084116ccdb7a551ccae4c8d48626f7370549ae386e31c112cb579d8647ba6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/Message/PruneLogsMessage.php":{"size":73,"mtime_ns":1782929786004422877,"hash":"d060dc486c8bcd48d507d001c65b68f4e3b84eb5cdccede2272bcfd2437ca142"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/MessageHandler/PruneLogsHandler.php":{"size":463,"mtime_ns":1782929788291896556,"hash":"20acb36c09cd00f50865c9d8bd04f8234eb0a76285a744e34d5cd2e50e3f4eaf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260702063537.php":{"size":651,"mtime_ns":1782974183036403270,"hash":"2d3311a9342c690139154fabd01bcf942f32b1533612dbdf7de677ee04dc34db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ios-safari-css-fallbacks.md":{"size":9046,"mtime_ns":1782975691974719871,"hash":"48e210b06690285c3db657ab7a964830ecfc5d826e7624eb0a64df550fdccdca"}} \ No newline at end of file diff --git a/graphify-out/graph.json b/graphify-out/graph.json index 7ee14a2e..9b19f452 100644 --- a/graphify-out/graph.json +++ b/graphify-out/graph.json @@ -70,7 +70,7 @@ "source_location": "L1", "_origin": "ast", "id": "components_freevisitprice", - "community": 13, + "community": 452, "norm_label": "freevisitprice.tsx" }, { @@ -80,7 +80,7 @@ "source_location": "L7", "_origin": "ast", "id": "components_freevisitprice_pricing", - "community": 13, + "community": 452, "norm_label": "pricing" }, { @@ -90,7 +90,7 @@ "source_location": "L9", "_origin": "ast", "id": "components_freevisitprice_freevisitprice", - "community": 13, + "community": 452, "norm_label": "freevisitprice()" }, { @@ -210,7 +210,7 @@ "source_location": "L1", "_origin": "ast", "id": "components_tenantinsurancecontracts", - "community": 77, + "community": 8, "norm_label": "tenantinsurancecontracts.tsx" }, { @@ -220,7 +220,7 @@ "source_location": "L9", "_origin": "ast", "id": "components_tenantinsurancecontracts_contract", - "community": 77, + "community": 8, "norm_label": "contract" }, { @@ -230,7 +230,7 @@ "source_location": "L20", "_origin": "ast", "id": "components_tenantinsurancecontracts_insuranceoption", - "community": 77, + "community": 8, "norm_label": "insuranceoption" }, { @@ -240,7 +240,7 @@ "source_location": "L26", "_origin": "ast", "id": "components_tenantinsurancecontracts_kind_label", - "community": 77, + "community": 8, "norm_label": "kind_label" }, { @@ -250,7 +250,7 @@ "source_location": "L31", "_origin": "ast", "id": "components_tenantinsurancecontracts_tenantinsurancecontracts", - "community": 77, + "community": 8, "norm_label": "tenantinsurancecontracts()" }, { @@ -280,7 +280,7 @@ "source_location": "L1", "_origin": "ast", "id": "layout_sidebar", - "community": 8, + "community": 0, "norm_label": "sidebar.tsx" }, { @@ -290,7 +290,7 @@ "source_location": "L33", "_origin": "ast", "id": "layout_sidebar_sectionitem", - "community": 8, + "community": 0, "norm_label": "sectionitem" }, { @@ -300,7 +300,7 @@ "source_location": "L39", "_origin": "ast", "id": "layout_sidebar_section", - "community": 8, + "community": 0, "norm_label": "section" }, { @@ -310,7 +310,7 @@ "source_location": "L41", "_origin": "ast", "id": "layout_sidebar_buildsections", - "community": 8, + "community": 0, "norm_label": "buildsections()" }, { @@ -320,7 +320,7 @@ "source_location": "L420", "_origin": "ast", "id": "layout_sidebar_role_labels", - "community": 8, + "community": 0, "norm_label": "role_labels" }, { @@ -330,7 +330,7 @@ "source_location": "L429", "_origin": "ast", "id": "layout_sidebar_hues", - "community": 8, + "community": 0, "norm_label": "hues" }, { @@ -340,7 +340,7 @@ "source_location": "L431", "_origin": "ast", "id": "layout_sidebar_avatarbg", - "community": 8, + "community": 0, "norm_label": "avatarbg()" }, { @@ -350,7 +350,7 @@ "source_location": "L436", "_origin": "ast", "id": "layout_sidebar_props", - "community": 8, + "community": 0, "norm_label": "props" }, { @@ -360,7 +360,7 @@ "source_location": "L441", "_origin": "ast", "id": "layout_sidebar_sidebar", - "community": 8, + "community": 0, "norm_label": "sidebar()" }, { @@ -390,7 +390,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_appointmentstatusdropdown", - "community": 2, + "community": 13, "norm_label": "appointmentstatusdropdown.tsx" }, { @@ -400,7 +400,7 @@ "source_location": "L8", "_origin": "ast", "id": "ui_appointmentstatusdropdown_status_meta", - "community": 2, + "community": 13, "norm_label": "status_meta" }, { @@ -410,7 +410,7 @@ "source_location": "L18", "_origin": "ast", "id": "ui_appointmentstatusdropdown_transitions", - "community": 2, + "community": 13, "norm_label": "transitions" }, { @@ -420,7 +420,7 @@ "source_location": "L23", "_origin": "ast", "id": "ui_appointmentstatusdropdown_props", - "community": 2, + "community": 13, "norm_label": "props" }, { @@ -430,7 +430,7 @@ "source_location": "L30", "_origin": "ast", "id": "ui_appointmentstatusdropdown_appointmentstatusdropdown", - "community": 2, + "community": 13, "norm_label": "appointmentstatusdropdown()" }, { @@ -520,7 +520,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_featuregate", - "community": 8, + "community": 0, "norm_label": "featuregate.tsx" }, { @@ -530,7 +530,7 @@ "source_location": "L6", "_origin": "ast", "id": "ui_featuregate_featuregateprops", - "community": 8, + "community": 0, "norm_label": "featuregateprops" }, { @@ -540,7 +540,7 @@ "source_location": "L11", "_origin": "ast", "id": "ui_featuregate_featuregate", - "community": 8, + "community": 0, "norm_label": "featuregate()" }, { @@ -550,7 +550,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_invitedoctormodal", - "community": 452, + "community": 21, "norm_label": "invitedoctormodal.tsx" }, { @@ -560,7 +560,7 @@ "source_location": "L12", "_origin": "ast", "id": "ui_invitedoctormodal_inviteschema", - "community": 452, + "community": 21, "norm_label": "inviteschema" }, { @@ -570,7 +570,7 @@ "source_location": "L17", "_origin": "ast", "id": "ui_invitedoctormodal_inviteform", - "community": 452, + "community": 21, "norm_label": "inviteform" }, { @@ -580,7 +580,7 @@ "source_location": "L19", "_origin": "ast", "id": "ui_invitedoctormodal_props", - "community": 452, + "community": 21, "norm_label": "props" }, { @@ -590,7 +590,7 @@ "source_location": "L25", "_origin": "ast", "id": "ui_invitedoctormodal_invitedoctormodal", - "community": 452, + "community": 21, "norm_label": "invitedoctormodal()" }, { @@ -600,7 +600,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_mobileinput", - "community": 452, + "community": 3, "norm_label": "mobileinput.tsx" }, { @@ -610,7 +610,7 @@ "source_location": "L4", "_origin": "ast", "id": "ui_mobileinput_props", - "community": 452, + "community": 3, "norm_label": "props" }, { @@ -670,7 +670,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_notificationmobilecard", - "community": 452, + "community": 13, "norm_label": "notificationmobilecard.tsx" }, { @@ -680,7 +680,7 @@ "source_location": "L8", "_origin": "ast", "id": "ui_notificationmobilecard_notificationmobiledata", - "community": 452, + "community": 13, "norm_label": "notificationmobiledata" }, { @@ -690,7 +690,7 @@ "source_location": "L12", "_origin": "ast", "id": "ui_notificationmobilecard_props", - "community": 452, + "community": 13, "norm_label": "props" }, { @@ -700,7 +700,7 @@ "source_location": "L16", "_origin": "ast", "id": "ui_notificationmobilecard_notificationmobilecard", - "community": 452, + "community": 13, "norm_label": "notificationmobilecard()" }, { @@ -710,7 +710,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_pageheader", - "community": 13, + "community": 71, "norm_label": "pageheader.tsx" }, { @@ -720,7 +720,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_pageheader_crumb", - "community": 13, + "community": 71, "norm_label": "crumb" }, { @@ -730,7 +730,7 @@ "source_location": "L10", "_origin": "ast", "id": "ui_pageheader_props", - "community": 13, + "community": 71, "norm_label": "props" }, { @@ -740,7 +740,7 @@ "source_location": "L17", "_origin": "ast", "id": "ui_pageheader_pageheader", - "community": 13, + "community": 71, "norm_label": "pageheader()" }, { @@ -770,7 +770,7 @@ "source_location": "L12", "_origin": "ast", "id": "ui_pagination_pagination", - "community": 21, + "community": 3, "norm_label": "pagination()" }, { @@ -890,7 +890,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_persiandateinput", - "community": 3, + "community": 452, "norm_label": "persiandateinput.tsx" }, { @@ -900,7 +900,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_persiandateinput_props", - "community": 3, + "community": 452, "norm_label": "props" }, { @@ -910,7 +910,7 @@ "source_location": "L15", "_origin": "ast", "id": "ui_persiandateinput_persiandateinput", - "community": 3, + "community": 452, "norm_label": "persiandateinput()" }, { @@ -920,7 +920,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_persiandatepicker", - "community": 2, + "community": 452, "norm_label": "persiandatepicker.tsx" }, { @@ -930,7 +930,7 @@ "source_location": "L6", "_origin": "ast", "id": "ui_persiandatepicker_props", - "community": 2, + "community": 452, "norm_label": "props" }, { @@ -940,7 +940,7 @@ "source_location": "L16", "_origin": "ast", "id": "ui_persiandatepicker_persiandatepicker", - "community": 2, + "community": 452, "norm_label": "persiandatepicker()" }, { @@ -1010,7 +1010,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_pwainstallbanner", - "community": 635, + "community": 0, "norm_label": "pwainstallbanner.tsx" }, { @@ -1020,7 +1020,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_pwainstallbanner_pwainstallbanner", - "community": 635, + "community": 0, "norm_label": "pwainstallbanner()" }, { @@ -1030,7 +1030,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_pwalogincard", - "community": 635, + "community": 0, "norm_label": "pwalogincard.tsx" }, { @@ -1040,7 +1040,7 @@ "source_location": "L6", "_origin": "ast", "id": "ui_pwalogincard_detectios", - "community": 635, + "community": 0, "norm_label": "detectios()" }, { @@ -1050,7 +1050,7 @@ "source_location": "L10", "_origin": "ast", "id": "ui_pwalogincard_pwalogincard", - "community": 635, + "community": 0, "norm_label": "pwalogincard()" }, { @@ -1060,7 +1060,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_searchableselect", - "community": 77, + "community": 8, "norm_label": "searchableselect.tsx" }, { @@ -1070,7 +1070,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_searchableselect_selectoption", - "community": 77, + "community": 8, "norm_label": "selectoption" }, { @@ -1080,7 +1080,7 @@ "source_location": "L10", "_origin": "ast", "id": "ui_searchableselect_props", - "community": 77, + "community": 8, "norm_label": "props" }, { @@ -1090,7 +1090,7 @@ "source_location": "L23", "_origin": "ast", "id": "ui_searchableselect_searchableselect", - "community": 77, + "community": 8, "norm_label": "searchableselect()" }, { @@ -1100,7 +1100,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_statcard", - "community": 665, + "community": 537, "norm_label": "statcard.tsx" }, { @@ -1110,7 +1110,7 @@ "source_location": "L3", "_origin": "ast", "id": "ui_statcard_stattone", - "community": 665, + "community": 537, "norm_label": "stattone" }, { @@ -1120,7 +1120,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_statcard_tone", - "community": 665, + "community": 537, "norm_label": "tone" }, { @@ -1130,7 +1130,7 @@ "source_location": "L12", "_origin": "ast", "id": "ui_statcard_props", - "community": 665, + "community": 537, "norm_label": "props" }, { @@ -1140,7 +1140,7 @@ "source_location": "L19", "_origin": "ast", "id": "ui_statcard_statcard", - "community": 665, + "community": 537, "norm_label": "statcard()" }, { @@ -1150,7 +1150,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_statusbadge", - "community": 19, + "community": 3, "norm_label": "statusbadge.tsx" }, { @@ -1160,7 +1160,7 @@ "source_location": "L4", "_origin": "ast", "id": "ui_statusbadge_badgecolor", - "community": 19, + "community": 3, "norm_label": "badgecolor" }, { @@ -1170,7 +1170,7 @@ "source_location": "L6", "_origin": "ast", "id": "ui_statusbadge_appointmentmap", - "community": 19, + "community": 3, "norm_label": "appointmentmap" }, { @@ -1180,7 +1180,7 @@ "source_location": "L16", "_origin": "ast", "id": "ui_statusbadge_paymentmap", - "community": 19, + "community": 3, "norm_label": "paymentmap" }, { @@ -1190,7 +1190,7 @@ "source_location": "L24", "_origin": "ast", "id": "ui_statusbadge_smsmap", - "community": 19, + "community": 3, "norm_label": "smsmap" }, { @@ -1200,7 +1200,7 @@ "source_location": "L31", "_origin": "ast", "id": "ui_statusbadge_settlementmap", - "community": 19, + "community": 3, "norm_label": "settlementmap" }, { @@ -1210,7 +1210,7 @@ "source_location": "L37", "_origin": "ast", "id": "ui_statusbadge_props", - "community": 19, + "community": 3, "norm_label": "props" }, { @@ -1220,7 +1220,7 @@ "source_location": "L42", "_origin": "ast", "id": "ui_statusbadge_statusbadge", - "community": 19, + "community": 3, "norm_label": "statusbadge()" }, { @@ -1250,7 +1250,7 @@ "source_location": "L1", "_origin": "ast", "id": "hooks_hooks_test", - "community": 2, + "community": 0, "norm_label": "hooks.test.tsx" }, { @@ -1260,7 +1260,7 @@ "source_location": "L16", "_origin": "ast", "id": "hooks_hooks_test_get", - "community": 2, + "community": 0, "norm_label": "get" }, { @@ -1300,7 +1300,7 @@ "source_location": "L16", "_origin": "ast", "id": "hooks_usepaymentconfig_usepaymentconfig", - "community": 13, + "community": 2, "norm_label": "usepaymentconfig()" }, { @@ -1310,7 +1310,7 @@ "source_location": "L1", "_origin": "ast", "id": "hooks_usepwainstall", - "community": 635, + "community": 0, "norm_label": "usepwainstall.ts" }, { @@ -1320,7 +1320,7 @@ "source_location": "L3", "_origin": "ast", "id": "hooks_usepwainstall_beforeinstallpromptevent", - "community": 635, + "community": 0, "norm_label": "beforeinstallpromptevent" }, { @@ -1330,7 +1330,7 @@ "source_location": "L10", "_origin": "ast", "id": "hooks_usepwainstall_usepwainstall", - "community": 635, + "community": 0, "norm_label": "usepwainstall()" }, { @@ -1340,7 +1340,7 @@ "source_location": "L1", "_origin": "ast", "id": "hooks_usesubscription", - "community": 8, + "community": 0, "norm_label": "usesubscription.ts" }, { @@ -1350,7 +1350,7 @@ "source_location": "L7", "_origin": "ast", "id": "hooks_usesubscription_usesubscription", - "community": 8, + "community": 0, "norm_label": "usesubscription()" }, { @@ -1390,7 +1390,7 @@ "source_location": "L1", "_origin": "ast", "id": "lib_api_test", - "community": 654, + "community": 13, "norm_label": "api.test.ts" }, { @@ -1400,7 +1400,7 @@ "source_location": "L3", "_origin": "ast", "id": "lib_api_test_refreshmock_logoutmock", - "community": 654, + "community": 13, "norm_label": "{ refreshmock, logoutmock }" }, { @@ -1410,7 +1410,7 @@ "source_location": "L14", "_origin": "ast", "id": "lib_api_test_replacemock", - "community": 654, + "community": 13, "norm_label": "replacemock" }, { @@ -1420,7 +1420,7 @@ "source_location": "L16", "_origin": "ast", "id": "lib_api_test_jsonres", - "community": 654, + "community": 13, "norm_label": "jsonres()" }, { @@ -1430,7 +1430,7 @@ "source_location": "L20", "_origin": "ast", "id": "lib_api_test_settoken", - "community": 654, + "community": 13, "norm_label": "settoken()" }, { @@ -1440,7 +1440,7 @@ "source_location": "L1", "_origin": "ast", "id": "lib_api", - "community": 2, + "community": 13, "norm_label": "api.ts" }, { @@ -1450,7 +1450,7 @@ "source_location": "L5", "_origin": "ast", "id": "lib_api_gettoken", - "community": 2, + "community": 13, "norm_label": "gettoken()" }, { @@ -1460,7 +1460,7 @@ "source_location": "L16", "_origin": "ast", "id": "lib_api_apierror", - "community": 654, + "community": 13, "norm_label": "apierror" }, { @@ -1470,7 +1470,7 @@ "source_location": "L17", "_origin": "ast", "id": "lib_api_apierror_constructor", - "community": 654, + "community": 13, "norm_label": ".constructor()" }, { @@ -1480,7 +1480,7 @@ "source_location": "L29", "_origin": "ast", "id": "lib_api_refreshonce", - "community": 2, + "community": 13, "norm_label": "refreshonce()" }, { @@ -1490,7 +1490,7 @@ "source_location": "L38", "_origin": "ast", "id": "lib_api_request", - "community": 2, + "community": 13, "norm_label": "request()" }, { @@ -1500,7 +1500,7 @@ "source_location": "L77", "_origin": "ast", "id": "lib_api_api", - "community": 2, + "community": 13, "norm_label": "api" }, { @@ -1510,7 +1510,7 @@ "source_location": "L88", "_origin": "ast", "id": "lib_api_apiresponse", - "community": 3, + "community": 13, "norm_label": "apiresponse" }, { @@ -1550,7 +1550,7 @@ "source_location": "L3", "_origin": "ast", "id": "lib_utils_formatrial", - "community": 13, + "community": 452, "norm_label": "formatrial()" }, { @@ -1580,7 +1580,7 @@ "source_location": "L19", "_origin": "ast", "id": "lib_utils_formatdate", - "community": 3, + "community": 452, "norm_label": "formatdate()" }, { @@ -1590,7 +1590,7 @@ "source_location": "L27", "_origin": "ast", "id": "lib_utils_formatdatetime", - "community": 19, + "community": 452, "norm_label": "formatdatetime()" }, { @@ -1680,7 +1680,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_adminsubscriptionpage", - "community": 13, + "community": 2, "norm_label": "adminsubscriptionpage.tsx" }, { @@ -1690,7 +1690,7 @@ "source_location": "L19", "_origin": "ast", "id": "pages_adminsubscriptionpage_reportrow", - "community": 13, + "community": 2, "norm_label": "reportrow" }, { @@ -1700,7 +1700,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_adminsubscriptionpage_planschema", - "community": 13, + "community": 2, "norm_label": "planschema" }, { @@ -1710,7 +1710,7 @@ "source_location": "L40", "_origin": "ast", "id": "pages_adminsubscriptionpage_planform", - "community": 13, + "community": 2, "norm_label": "planform" }, { @@ -1720,7 +1720,7 @@ "source_location": "L42", "_origin": "ast", "id": "pages_adminsubscriptionpage_periodschema", - "community": 13, + "community": 2, "norm_label": "periodschema" }, { @@ -1730,7 +1730,7 @@ "source_location": "L51", "_origin": "ast", "id": "pages_adminsubscriptionpage_periodform", - "community": 13, + "community": 2, "norm_label": "periodform" }, { @@ -1740,7 +1740,7 @@ "source_location": "L55", "_origin": "ast", "id": "pages_adminsubscriptionpage_feature_labels", - "community": 13, + "community": 2, "norm_label": "feature_labels" }, { @@ -1750,7 +1750,7 @@ "source_location": "L62", "_origin": "ast", "id": "pages_adminsubscriptionpage_feature_keys", - "community": 13, + "community": 2, "norm_label": "feature_keys" }, { @@ -1760,7 +1760,7 @@ "source_location": "L64", "_origin": "ast", "id": "pages_adminsubscriptionpage_emptyfeatures", - "community": 13, + "community": 2, "norm_label": "emptyfeatures()" }, { @@ -1770,7 +1770,7 @@ "source_location": "L67", "_origin": "ast", "id": "pages_adminsubscriptionpage_plan_display", - "community": 13, + "community": 2, "norm_label": "plan_display" }, { @@ -1780,7 +1780,7 @@ "source_location": "L75", "_origin": "ast", "id": "pages_adminsubscriptionpage_switchtoggle", - "community": 13, + "community": 2, "norm_label": "switchtoggle" }, { @@ -1790,7 +1790,7 @@ "source_location": "L88", "_origin": "ast", "id": "pages_adminsubscriptionpage_planstab", - "community": 13, + "community": 2, "norm_label": "planstab()" }, { @@ -1800,7 +1800,7 @@ "source_location": "L365", "_origin": "ast", "id": "pages_adminsubscriptionpage_reporttab", - "community": 13, + "community": 2, "norm_label": "reporttab()" }, { @@ -1810,7 +1810,7 @@ "source_location": "L431", "_origin": "ast", "id": "pages_adminsubscriptionpage_adminsubscriptionpage", - "community": 13, + "community": 2, "norm_label": "adminsubscriptionpage()" }, { @@ -1820,7 +1820,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_appointmentdetailpage", - "community": 19, + "community": 452, "norm_label": "appointmentdetailpage.tsx" }, { @@ -1830,7 +1830,7 @@ "source_location": "L15", "_origin": "ast", "id": "pages_appointmentdetailpage_all_statuses", - "community": 19, + "community": 452, "norm_label": "all_statuses" }, { @@ -1840,7 +1840,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_appointmentdetailpage_inforow", - "community": 19, + "community": 452, "norm_label": "inforow()" }, { @@ -1850,7 +1850,7 @@ "source_location": "L34", "_origin": "ast", "id": "pages_appointmentdetailpage_appointmentdetailpage", - "community": 19, + "community": 452, "norm_label": "appointmentdetailpage()" }, { @@ -2130,7 +2130,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_blogformpage_test", - "community": 2, + "community": 13, "norm_label": "blogformpage.test.tsx" }, { @@ -2140,7 +2140,7 @@ "source_location": "L18", "_origin": "ast", "id": "pages_blogformpage_test_post", - "community": 2, + "community": 13, "norm_label": "post" }, { @@ -2150,7 +2150,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_blogformpage", - "community": 2, + "community": 13, "norm_label": "blogformpage.tsx" }, { @@ -2160,7 +2160,7 @@ "source_location": "L17", "_origin": "ast", "id": "pages_blogformpage_schema", - "community": 2, + "community": 13, "norm_label": "schema" }, { @@ -2170,7 +2170,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_blogformpage_formdata", - "community": 2, + "community": 13, "norm_label": "formdata" }, { @@ -2180,7 +2180,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_blogformpage_uploadblogimage", - "community": 2, + "community": 13, "norm_label": "uploadblogimage()" }, { @@ -2190,7 +2190,7 @@ "source_location": "L46", "_origin": "ast", "id": "pages_blogformpage_blogformpage", - "community": 2, + "community": 13, "norm_label": "blogformpage()" }, { @@ -2200,7 +2200,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_blogspage_test", - "community": 2, + "community": 13, "norm_label": "blogspage.test.tsx" }, { @@ -2210,7 +2210,7 @@ "source_location": "L14", "_origin": "ast", "id": "pages_blogspage_test_get", - "community": 2, + "community": 13, "norm_label": "get" }, { @@ -2220,7 +2220,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_blogspage", - "community": 3, + "community": 13, "norm_label": "blogspage.tsx" }, { @@ -2230,7 +2230,7 @@ "source_location": "L14", "_origin": "ast", "id": "pages_blogspage_status_filters", - "community": 3, + "community": 13, "norm_label": "status_filters" }, { @@ -2240,7 +2240,7 @@ "source_location": "L20", "_origin": "ast", "id": "pages_blogspage_blogspage", - "community": 3, + "community": 13, "norm_label": "blogspage()" }, { @@ -2250,7 +2250,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_categoriespage", - "community": 41, + "community": 19, "norm_label": "categoriespage.tsx" }, { @@ -2260,7 +2260,7 @@ "source_location": "L22", "_origin": "ast", "id": "pages_categoriespage_tabkey", - "community": 41, + "community": 19, "norm_label": "tabkey" }, { @@ -2270,7 +2270,7 @@ "source_location": "L24", "_origin": "ast", "id": "pages_categoriespage_importerror", - "community": 41, + "community": 19, "norm_label": "importerror" }, { @@ -2280,7 +2280,7 @@ "source_location": "L26", "_origin": "ast", "id": "pages_categoriespage_tabconfig", - "community": 41, + "community": 19, "norm_label": "tabconfig" }, { @@ -2290,7 +2290,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_categoriespage_tabs", - "community": 41, + "community": 19, "norm_label": "tabs" }, { @@ -2300,7 +2300,7 @@ "source_location": "L44", "_origin": "ast", "id": "pages_categoriespage_logouploadfield", - "community": 41, + "community": 19, "norm_label": "logouploadfield()" }, { @@ -2310,7 +2310,7 @@ "source_location": "L111", "_origin": "ast", "id": "pages_categoriespage_sbadge", - "community": 41, + "community": 19, "norm_label": "sbadge()" }, { @@ -2320,7 +2320,7 @@ "source_location": "L122", "_origin": "ast", "id": "pages_categoriespage_exportjson", - "community": 41, + "community": 19, "norm_label": "exportjson()" }, { @@ -2330,7 +2330,7 @@ "source_location": "L136", "_origin": "ast", "id": "pages_categoriespage_tabactions", - "community": 41, + "community": 19, "norm_label": "tabactions()" }, { @@ -2340,7 +2340,7 @@ "source_location": "L264", "_origin": "ast", "id": "pages_categoriespage_provinceschema", - "community": 41, + "community": 19, "norm_label": "provinceschema" }, { @@ -2350,7 +2350,7 @@ "source_location": "L269", "_origin": "ast", "id": "pages_categoriespage_provinceform", - "community": 41, + "community": 19, "norm_label": "provinceform" }, { @@ -2360,7 +2360,7 @@ "source_location": "L271", "_origin": "ast", "id": "pages_categoriespage_provincestab", - "community": 41, + "community": 19, "norm_label": "provincestab()" }, { @@ -2370,7 +2370,7 @@ "source_location": "L371", "_origin": "ast", "id": "pages_categoriespage_cityschema", - "community": 41, + "community": 19, "norm_label": "cityschema" }, { @@ -2380,7 +2380,7 @@ "source_location": "L386", "_origin": "ast", "id": "pages_categoriespage_cityform", - "community": 41, + "community": 19, "norm_label": "cityform" }, { @@ -2390,7 +2390,7 @@ "source_location": "L388", "_origin": "ast", "id": "pages_categoriespage_citiestab", - "community": 41, + "community": 19, "norm_label": "citiestab()" }, { @@ -2400,7 +2400,7 @@ "source_location": "L587", "_origin": "ast", "id": "pages_categoriespage_specialtyschema", - "community": 41, + "community": 19, "norm_label": "specialtyschema" }, { @@ -2410,7 +2410,7 @@ "source_location": "L593", "_origin": "ast", "id": "pages_categoriespage_specialtyform", - "community": 41, + "community": 19, "norm_label": "specialtyform" }, { @@ -2420,7 +2420,7 @@ "source_location": "L595", "_origin": "ast", "id": "pages_categoriespage_specialtiestab", - "community": 41, + "community": 19, "norm_label": "specialtiestab()" }, { @@ -2430,7 +2430,7 @@ "source_location": "L715", "_origin": "ast", "id": "pages_categoriespage_serviceschema", - "community": 41, + "community": 19, "norm_label": "serviceschema" }, { @@ -2440,7 +2440,7 @@ "source_location": "L721", "_origin": "ast", "id": "pages_categoriespage_serviceform", - "community": 41, + "community": 19, "norm_label": "serviceform" }, { @@ -2450,7 +2450,7 @@ "source_location": "L723", "_origin": "ast", "id": "pages_categoriespage_doctorservicestab", - "community": 41, + "community": 19, "norm_label": "doctorservicestab()" }, { @@ -2460,7 +2460,7 @@ "source_location": "L840", "_origin": "ast", "id": "pages_categoriespage_insuranceschema", - "community": 41, + "community": 19, "norm_label": "insuranceschema" }, { @@ -2470,7 +2470,7 @@ "source_location": "L845", "_origin": "ast", "id": "pages_categoriespage_insuranceform", - "community": 41, + "community": 19, "norm_label": "insuranceform" }, { @@ -2480,7 +2480,7 @@ "source_location": "L847", "_origin": "ast", "id": "pages_categoriespage_insurancestab", - "community": 41, + "community": 19, "norm_label": "insurancestab()" }, { @@ -2490,7 +2490,7 @@ "source_location": "L974", "_origin": "ast", "id": "pages_categoriespage_tagschema", - "community": 41, + "community": 19, "norm_label": "tagschema" }, { @@ -2500,7 +2500,7 @@ "source_location": "L978", "_origin": "ast", "id": "pages_categoriespage_tagform", - "community": 41, + "community": 19, "norm_label": "tagform" }, { @@ -2510,7 +2510,7 @@ "source_location": "L980", "_origin": "ast", "id": "pages_categoriespage_tagstab", - "community": 41, + "community": 19, "norm_label": "tagstab()" }, { @@ -2520,7 +2520,7 @@ "source_location": "L1070", "_origin": "ast", "id": "pages_categoriespage_categoriespage", - "community": 41, + "community": 19, "norm_label": "categoriespage()" }, { @@ -2530,7 +2530,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_claimspage", - "community": 77, + "community": 71, "norm_label": "claimspage.tsx" }, { @@ -2540,7 +2540,7 @@ "source_location": "L14", "_origin": "ast", "id": "pages_claimspage_isondaysago", - "community": 77, + "community": 71, "norm_label": "isondaysago()" }, { @@ -2550,7 +2550,7 @@ "source_location": "L19", "_origin": "ast", "id": "pages_claimspage_todayiso", - "community": 77, + "community": 71, "norm_label": "todayiso()" }, { @@ -2560,7 +2560,7 @@ "source_location": "L21", "_origin": "ast", "id": "pages_claimspage_tounix", - "community": 77, + "community": 71, "norm_label": "tounix()" }, { @@ -2570,7 +2570,7 @@ "source_location": "L26", "_origin": "ast", "id": "pages_claimspage_endofdayunix", - "community": 77, + "community": 71, "norm_label": "endofdayunix()" }, { @@ -2580,7 +2580,7 @@ "source_location": "L32", "_origin": "ast", "id": "pages_claimspage_claimitem", - "community": 77, + "community": 71, "norm_label": "claimitem" }, { @@ -2590,7 +2590,7 @@ "source_location": "L43", "_origin": "ast", "id": "pages_claimspage_claim", - "community": 77, + "community": 71, "norm_label": "claim" }, { @@ -2600,7 +2600,7 @@ "source_location": "L58", "_origin": "ast", "id": "pages_claimspage_insuranceoption", - "community": 77, + "community": 71, "norm_label": "insuranceoption" }, { @@ -2610,7 +2610,7 @@ "source_location": "L60", "_origin": "ast", "id": "pages_claimspage_debtrow", - "community": 77, + "community": 71, "norm_label": "debtrow" }, { @@ -2620,7 +2620,7 @@ "source_location": "L69", "_origin": "ast", "id": "pages_claimspage_status_meta", - "community": 77, + "community": 71, "norm_label": "status_meta" }, { @@ -2630,7 +2630,7 @@ "source_location": "L77", "_origin": "ast", "id": "pages_claimspage_kind_label", - "community": 77, + "community": 71, "norm_label": "kind_label" }, { @@ -2640,7 +2640,7 @@ "source_location": "L78", "_origin": "ast", "id": "pages_claimspage_status_filters", - "community": 77, + "community": 71, "norm_label": "status_filters" }, { @@ -2650,7 +2650,7 @@ "source_location": "L80", "_origin": "ast", "id": "pages_claimspage_claimspage", - "community": 77, + "community": 71, "norm_label": "claimspage()" }, { @@ -2660,7 +2660,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_clinicdetailpage", - "community": 452, + "community": 21, "norm_label": "clinicdetailpage.tsx" }, { @@ -2670,7 +2670,7 @@ "source_location": "L35", "_origin": "ast", "id": "pages_clinicdetailpage_hues_list", - "community": 452, + "community": 21, "norm_label": "hues_list" }, { @@ -2680,7 +2680,7 @@ "source_location": "L36", "_origin": "ast", "id": "pages_clinicdetailpage_iran_center", - "community": 452, + "community": 21, "norm_label": "iran_center" }, { @@ -2690,7 +2690,7 @@ "source_location": "L41", "_origin": "ast", "id": "pages_clinicdetailpage_clinicinvitation", - "community": 452, + "community": 21, "norm_label": "clinicinvitation" }, { @@ -2700,7 +2700,7 @@ "source_location": "L54", "_origin": "ast", "id": "pages_clinicdetailpage_clinicdoctoritem", - "community": 452, + "community": 21, "norm_label": "clinicdoctoritem" }, { @@ -2710,7 +2710,7 @@ "source_location": "L62", "_origin": "ast", "id": "pages_clinicdetailpage_clinicaddress", - "community": 452, + "community": 21, "norm_label": "clinicaddress" }, { @@ -2720,7 +2720,7 @@ "source_location": "L71", "_origin": "ast", "id": "pages_clinicdetailpage_opt", - "community": 452, + "community": 21, "norm_label": "opt" }, { @@ -2730,7 +2730,7 @@ "source_location": "L72", "_origin": "ast", "id": "pages_clinicdetailpage_optuuid", - "community": 452, + "community": 21, "norm_label": "optuuid" }, { @@ -2740,7 +2740,7 @@ "source_location": "L76", "_origin": "ast", "id": "pages_clinicdetailpage_urlorempty", - "community": 452, + "community": 21, "norm_label": "urlorempty" }, { @@ -2750,7 +2750,7 @@ "source_location": "L78", "_origin": "ast", "id": "pages_clinicdetailpage_editschema", - "community": 452, + "community": 21, "norm_label": "editschema" }, { @@ -2760,7 +2760,7 @@ "source_location": "L92", "_origin": "ast", "id": "pages_clinicdetailpage_editform", - "community": 452, + "community": 21, "norm_label": "editform" }, { @@ -2770,7 +2770,7 @@ "source_location": "L96", "_origin": "ast", "id": "pages_clinicdetailpage_searchableselectfield", - "community": 452, + "community": 21, "norm_label": "searchableselectfield()" }, { @@ -2780,7 +2780,7 @@ "source_location": "L190", "_origin": "ast", "id": "pages_clinicdetailpage_multichecklist", - "community": 452, + "community": 21, "norm_label": "multichecklist()" }, { @@ -2790,7 +2790,7 @@ "source_location": "L234", "_origin": "ast", "id": "pages_clinicdetailpage_mapclickhandler", - "community": 452, + "community": 21, "norm_label": "mapclickhandler()" }, { @@ -2800,7 +2800,7 @@ "source_location": "L238", "_origin": "ast", "id": "pages_clinicdetailpage_mapflycontroller", - "community": 452, + "community": 21, "norm_label": "mapflycontroller()" }, { @@ -2810,7 +2810,7 @@ "source_location": "L243", "_origin": "ast", "id": "pages_clinicdetailpage_mappicker", - "community": 452, + "community": 21, "norm_label": "mappicker()" }, { @@ -2820,7 +2820,7 @@ "source_location": "L267", "_origin": "ast", "id": "pages_clinicdetailpage_geocodecity", - "community": 452, + "community": 21, "norm_label": "geocodecity()" }, { @@ -2830,7 +2830,7 @@ "source_location": "L279", "_origin": "ast", "id": "pages_clinicdetailpage_editmodal", - "community": 452, + "community": 21, "norm_label": "editmodal()" }, { @@ -2840,7 +2840,7 @@ "source_location": "L464", "_origin": "ast", "id": "pages_clinicdetailpage_inv_status_map", - "community": 452, + "community": 21, "norm_label": "inv_status_map" }, { @@ -2860,7 +2860,7 @@ "source_location": "L1341", "_origin": "ast", "id": "pages_clinicdetailpage_infotile", - "community": 452, + "community": 21, "norm_label": "infotile()" }, { @@ -2870,7 +2870,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_clinicformpage", - "community": 452, + "community": 13, "norm_label": "clinicformpage.tsx" }, { @@ -2880,7 +2880,7 @@ "source_location": "L14", "_origin": "ast", "id": "pages_clinicformpage_schema", - "community": 452, + "community": 13, "norm_label": "schema" }, { @@ -2890,7 +2890,7 @@ "source_location": "L21", "_origin": "ast", "id": "pages_clinicformpage_formvalues", - "community": 452, + "community": 13, "norm_label": "formvalues" }, { @@ -2900,7 +2900,7 @@ "source_location": "L23", "_origin": "ast", "id": "pages_clinicformpage_cliniccreated", - "community": 452, + "community": 13, "norm_label": "cliniccreated" }, { @@ -2910,7 +2910,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_clinicformpage_clinicformpage", - "community": 452, + "community": 13, "norm_label": "clinicformpage()" }, { @@ -3020,7 +3020,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_clinicspage", - "community": 0, + "community": 3, "norm_label": "clinicspage.tsx" }, { @@ -3030,7 +3030,7 @@ "source_location": "L24", "_origin": "ast", "id": "pages_clinicspage_hues_list", - "community": 0, + "community": 3, "norm_label": "hues_list" }, { @@ -3040,7 +3040,7 @@ "source_location": "L26", "_origin": "ast", "id": "pages_clinicspage_addschema", - "community": 0, + "community": 3, "norm_label": "addschema" }, { @@ -3050,7 +3050,7 @@ "source_location": "L31", "_origin": "ast", "id": "pages_clinicspage_addform", - "community": 0, + "community": 3, "norm_label": "addform" }, { @@ -3060,7 +3060,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_clinicspage_clinicspage", - "community": 0, + "community": 3, "norm_label": "clinicspage()" }, { @@ -4260,7 +4260,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_doctorformpage", - "community": 0, + "community": 8, "norm_label": "doctorformpage.tsx" }, { @@ -4270,7 +4270,7 @@ "source_location": "L22", "_origin": "ast", "id": "pages_doctorformpage_specialtyoption", - "community": 0, + "community": 8, "norm_label": "specialtyoption" }, { @@ -4280,7 +4280,7 @@ "source_location": "L26", "_origin": "ast", "id": "pages_doctorformpage_schema", - "community": 0, + "community": 8, "norm_label": "schema" }, { @@ -4290,7 +4290,7 @@ "source_location": "L34", "_origin": "ast", "id": "pages_doctorformpage_formvalues", - "community": 0, + "community": 8, "norm_label": "formvalues" }, { @@ -4300,7 +4300,7 @@ "source_location": "L38", "_origin": "ast", "id": "pages_doctorformpage_degree_options", - "community": 0, + "community": 8, "norm_label": "degree_options" }, { @@ -4310,7 +4310,7 @@ "source_location": "L45", "_origin": "ast", "id": "pages_doctorformpage_gender_options", - "community": 0, + "community": 8, "norm_label": "gender_options" }, { @@ -4320,7 +4320,7 @@ "source_location": "L52", "_origin": "ast", "id": "pages_doctorformpage_field", - "community": 0, + "community": 8, "norm_label": "field()" }, { @@ -4330,7 +4330,7 @@ "source_location": "L75", "_origin": "ast", "id": "pages_doctorformpage_selectedentry", - "community": 0, + "community": 8, "norm_label": "selectedentry" }, { @@ -4340,7 +4340,7 @@ "source_location": "L77", "_origin": "ast", "id": "pages_doctorformpage_specialtypicker", - "community": 0, + "community": 8, "norm_label": "specialtypicker()" }, { @@ -4350,7 +4350,7 @@ "source_location": "L257", "_origin": "ast", "id": "pages_doctorformpage_doctorformpage", - "community": 0, + "community": 8, "norm_label": "doctorformpage()" }, { @@ -4360,7 +4360,7 @@ "source_location": "L425", "_origin": "ast", "id": "pages_doctorformpage_sectionheader", - "community": 0, + "community": 8, "norm_label": "sectionheader()" }, { @@ -4390,7 +4390,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_doctorspage", - "community": 0, + "community": 8, "norm_label": "doctorspage.tsx" }, { @@ -4400,7 +4400,7 @@ "source_location": "L20", "_origin": "ast", "id": "pages_doctorspage_admindoctor", - "community": 0, + "community": 8, "norm_label": "admindoctor" }, { @@ -4410,7 +4410,7 @@ "source_location": "L36", "_origin": "ast", "id": "pages_doctorspage_doctorstats", - "community": 0, + "community": 8, "norm_label": "doctorstats" }, { @@ -4420,7 +4420,7 @@ "source_location": "L44", "_origin": "ast", "id": "pages_doctorspage_specialtyoption", - "community": 0, + "community": 8, "norm_label": "specialtyoption" }, { @@ -4430,7 +4430,7 @@ "source_location": "L52", "_origin": "ast", "id": "pages_doctorspage_hues_list", - "community": 0, + "community": 8, "norm_label": "hues_list" }, { @@ -4440,7 +4440,7 @@ "source_location": "L54", "_origin": "ast", "id": "pages_doctorspage_degree_badge", - "community": 0, + "community": 8, "norm_label": "degree_badge" }, { @@ -4450,7 +4450,7 @@ "source_location": "L61", "_origin": "ast", "id": "pages_doctorspage_degree_label", - "community": 0, + "community": 8, "norm_label": "degree_label" }, { @@ -4460,7 +4460,7 @@ "source_location": "L68", "_origin": "ast", "id": "pages_doctorspage_doctoravatar", - "community": 0, + "community": 8, "norm_label": "doctoravatar()" }, { @@ -4470,7 +4470,7 @@ "source_location": "L92", "_origin": "ast", "id": "pages_doctorspage_doctorspage", - "community": 0, + "community": 8, "norm_label": "doctorspage()" }, { @@ -4530,7 +4530,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_insurancepricingpage", - "community": 13, + "community": 0, "norm_label": "insurancepricingpage.tsx" }, { @@ -4540,7 +4540,7 @@ "source_location": "L6", "_origin": "ast", "id": "pages_insurancepricingpage_insurancepricingpage", - "community": 13, + "community": 0, "norm_label": "insurancepricingpage()" }, { @@ -4550,7 +4550,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_loginpage_test", - "community": 2, + "community": 13, "norm_label": "loginpage.test.tsx" }, { @@ -4560,7 +4560,7 @@ "source_location": "L12", "_origin": "ast", "id": "pages_loginpage_test_errortoast", - "community": 2, + "community": 13, "norm_label": "errortoast" }, { @@ -4930,7 +4930,7 @@ "source_location": "L1432", "_origin": "ast", "id": "pages_mypatientspage_sessionrow", - "community": 19, + "community": 21, "norm_label": "sessionrow()" }, { @@ -4960,7 +4960,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_mysecretariespage", - "community": 8, + "community": 0, "norm_label": "mysecretariespage.tsx" }, { @@ -4970,7 +4970,7 @@ "source_location": "L32", "_origin": "ast", "id": "pages_mysecretariespage_default_permissions", - "community": 8, + "community": 0, "norm_label": "default_permissions" }, { @@ -4980,7 +4980,7 @@ "source_location": "L44", "_origin": "ast", "id": "pages_mysecretariespage_permsection", - "community": 8, + "community": 0, "norm_label": "permsection" }, { @@ -4990,7 +4990,7 @@ "source_location": "L46", "_origin": "ast", "id": "pages_mysecretariespage_permission_labels", - "community": 8, + "community": 0, "norm_label": "permission_labels" }, { @@ -5000,7 +5000,7 @@ "source_location": "L86", "_origin": "ast", "id": "pages_mysecretariespage_all_actions", - "community": 8, + "community": 0, "norm_label": "all_actions" }, { @@ -5010,7 +5010,7 @@ "source_location": "L94", "_origin": "ast", "id": "pages_mysecretariespage_action_headers", - "community": 8, + "community": 0, "norm_label": "action_headers" }, { @@ -5020,7 +5020,7 @@ "source_location": "L103", "_origin": "ast", "id": "pages_mysecretariespage_permissionsmatrix", - "community": 8, + "community": 0, "norm_label": "permissionsmatrix()" }, { @@ -5030,7 +5030,7 @@ "source_location": "L247", "_origin": "ast", "id": "pages_mysecretariespage_createschema", - "community": 8, + "community": 0, "norm_label": "createschema" }, { @@ -5040,7 +5040,7 @@ "source_location": "L251", "_origin": "ast", "id": "pages_mysecretariespage_createform", - "community": 8, + "community": 0, "norm_label": "createform" }, { @@ -5050,7 +5050,7 @@ "source_location": "L253", "_origin": "ast", "id": "pages_mysecretariespage_clinicdoctor", - "community": 8, + "community": 0, "norm_label": "clinicdoctor" }, { @@ -5060,7 +5060,7 @@ "source_location": "L260", "_origin": "ast", "id": "pages_mysecretariespage_mysecretariespage", - "community": 8, + "community": 0, "norm_label": "mysecretariespage()" }, { @@ -5180,7 +5180,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_paymentdetailpage", - "community": 19, + "community": 452, "norm_label": "paymentdetailpage.tsx" }, { @@ -5190,7 +5190,7 @@ "source_location": "L12", "_origin": "ast", "id": "pages_paymentdetailpage_inforow", - "community": 19, + "community": 452, "norm_label": "inforow()" }, { @@ -5200,7 +5200,7 @@ "source_location": "L21", "_origin": "ast", "id": "pages_paymentdetailpage_paymentdetailpage", - "community": 19, + "community": 452, "norm_label": "paymentdetailpage()" }, { @@ -5240,7 +5240,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_preregistrationspage", - "community": 3, + "community": 71, "norm_label": "preregistrationspage.tsx" }, { @@ -5250,7 +5250,7 @@ "source_location": "L12", "_origin": "ast", "id": "pages_preregistrationspage_preregistration", - "community": 3, + "community": 71, "norm_label": "preregistration" }, { @@ -5260,7 +5260,7 @@ "source_location": "L23", "_origin": "ast", "id": "pages_preregistrationspage_empty", - "community": 3, + "community": 71, "norm_label": "empty" }, { @@ -5270,7 +5270,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_preregistrationspage_type_meta", - "community": 3, + "community": 71, "norm_label": "type_meta" }, { @@ -5280,7 +5280,7 @@ "source_location": "L31", "_origin": "ast", "id": "pages_preregistrationspage_status_meta", - "community": 3, + "community": 71, "norm_label": "status_meta" }, { @@ -5290,7 +5290,7 @@ "source_location": "L37", "_origin": "ast", "id": "pages_preregistrationspage_status_tabs", - "community": 3, + "community": 71, "norm_label": "status_tabs" }, { @@ -5300,7 +5300,7 @@ "source_location": "L44", "_origin": "ast", "id": "pages_preregistrationspage_preregistrationspage", - "community": 3, + "community": 71, "norm_label": "preregistrationspage()" }, { @@ -5360,7 +5360,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_representationdetailpage_representationdetailpage", - "community": 21, + "community": 3, "norm_label": "representationdetailpage()" }, { @@ -5370,7 +5370,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_representationfinancepage", - "community": 21, + "community": 452, "norm_label": "representationfinancepage.tsx" }, { @@ -5380,7 +5380,7 @@ "source_location": "L12", "_origin": "ast", "id": "pages_representationfinancepage_financerow", - "community": 21, + "community": 452, "norm_label": "financerow" }, { @@ -5390,7 +5390,7 @@ "source_location": "L24", "_origin": "ast", "id": "pages_representationfinancepage_rangekey", - "community": 21, + "community": 452, "norm_label": "rangekey" }, { @@ -5400,7 +5400,7 @@ "source_location": "L26", "_origin": "ast", "id": "pages_representationfinancepage_rangefrom", - "community": 21, + "community": 452, "norm_label": "rangefrom()" }, { @@ -5410,7 +5410,7 @@ "source_location": "L34", "_origin": "ast", "id": "pages_representationfinancepage_ranges", - "community": 21, + "community": 452, "norm_label": "ranges" }, { @@ -5420,7 +5420,7 @@ "source_location": "L41", "_origin": "ast", "id": "pages_representationfinancepage_representationfinancepage", - "community": 21, + "community": 452, "norm_label": "representationfinancepage()" }, { @@ -5430,7 +5430,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_representationprofilepage", - "community": 2, + "community": 13, "norm_label": "representationprofilepage.tsx" }, { @@ -5440,7 +5440,7 @@ "source_location": "L10", "_origin": "ast", "id": "pages_representationprofilepage_tojalali", - "community": 2, + "community": 13, "norm_label": "tojalali()" }, { @@ -5450,7 +5450,7 @@ "source_location": "L20", "_origin": "ast", "id": "pages_representationprofilepage_ibanitem", - "community": 2, + "community": 13, "norm_label": "ibanitem" }, { @@ -5460,7 +5460,7 @@ "source_location": "L28", "_origin": "ast", "id": "pages_representationprofilepage_repprofile", - "community": 2, + "community": 13, "norm_label": "repprofile" }, { @@ -5470,7 +5470,7 @@ "source_location": "L38", "_origin": "ast", "id": "pages_representationprofilepage_unwrap", - "community": 2, + "community": 13, "norm_label": "unwrap()" }, { @@ -5480,7 +5480,7 @@ "source_location": "L40", "_origin": "ast", "id": "pages_representationprofilepage_representationprofilepage", - "community": 2, + "community": 13, "norm_label": "representationprofilepage()" }, { @@ -5490,7 +5490,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_representationsettlementpage", - "community": 13, + "community": 452, "norm_label": "representationsettlementpage.tsx" }, { @@ -5500,7 +5500,7 @@ "source_location": "L9", "_origin": "ast", "id": "pages_representationsettlementpage_walletbalance", - "community": 13, + "community": 452, "norm_label": "walletbalance" }, { @@ -5510,7 +5510,7 @@ "source_location": "L10", "_origin": "ast", "id": "pages_representationsettlementpage_repsummary", - "community": 13, + "community": 452, "norm_label": "repsummary" }, { @@ -5520,7 +5520,7 @@ "source_location": "L11", "_origin": "ast", "id": "pages_representationsettlementpage_settlementrow", - "community": 13, + "community": 452, "norm_label": "settlementrow" }, { @@ -5530,7 +5530,7 @@ "source_location": "L19", "_origin": "ast", "id": "pages_representationsettlementpage_status_label", - "community": 13, + "community": 452, "norm_label": "status_label" }, { @@ -5540,7 +5540,7 @@ "source_location": "L22", "_origin": "ast", "id": "pages_representationsettlementpage_status_class", - "community": 13, + "community": 452, "norm_label": "status_class" }, { @@ -5550,7 +5550,7 @@ "source_location": "L26", "_origin": "ast", "id": "pages_representationsettlementpage_ibanitem", - "community": 13, + "community": 452, "norm_label": "ibanitem" }, { @@ -5560,7 +5560,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_representationsettlementpage_repme", - "community": 13, + "community": 452, "norm_label": "repme" }, { @@ -5570,7 +5570,7 @@ "source_location": "L29", "_origin": "ast", "id": "pages_representationsettlementpage_representationsettlementpage", - "community": 13, + "community": 452, "norm_label": "representationsettlementpage()" }, { @@ -5850,7 +5850,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_settlementdetailpage", - "community": 0, + "community": 452, "norm_label": "settlementdetailpage.tsx" }, { @@ -5860,7 +5860,7 @@ "source_location": "L14", "_origin": "ast", "id": "pages_settlementdetailpage_settlementdetail", - "community": 0, + "community": 452, "norm_label": "settlementdetail" }, { @@ -5870,7 +5870,7 @@ "source_location": "L30", "_origin": "ast", "id": "pages_settlementdetailpage_row", - "community": 0, + "community": 452, "norm_label": "row()" }, { @@ -5880,7 +5880,7 @@ "source_location": "L39", "_origin": "ast", "id": "pages_settlementdetailpage_settlementdetailpage", - "community": 0, + "community": 452, "norm_label": "settlementdetailpage()" }, { @@ -5910,7 +5910,7 @@ "source_location": "L24", "_origin": "ast", "id": "pages_settlementspage_settlementspage", - "community": 13, + "community": 3, "norm_label": "settlementspage()" }, { @@ -5920,7 +5920,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_smspage", - "community": 19, + "community": 3, "norm_label": "smspage.tsx" }, { @@ -5930,7 +5930,7 @@ "source_location": "L19", "_origin": "ast", "id": "pages_smspage_templateschema", - "community": 19, + "community": 3, "norm_label": "templateschema" }, { @@ -5940,7 +5940,7 @@ "source_location": "L23", "_origin": "ast", "id": "pages_smspage_templateformdata", - "community": 19, + "community": 3, "norm_label": "templateformdata" }, { @@ -5950,7 +5950,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_smspage_tab", - "community": 19, + "community": 3, "norm_label": "tab" }, { @@ -5960,7 +5960,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_smspage_status_log_meta", - "community": 19, + "community": 3, "norm_label": "status_log_meta" }, { @@ -5970,7 +5970,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_smspage_tag_labels", - "community": 19, + "community": 3, "norm_label": "tag_labels" }, { @@ -5980,7 +5980,7 @@ "source_location": "L43", "_origin": "ast", "id": "pages_smspage_tag_filter_options", - "community": 19, + "community": 3, "norm_label": "tag_filter_options" }, { @@ -5990,7 +5990,7 @@ "source_location": "L48", "_origin": "ast", "id": "pages_smspage_smspage", - "community": 19, + "community": 3, "norm_label": "smspage()" }, { @@ -6000,7 +6000,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_smswalletpage", - "community": 13, + "community": 2, "norm_label": "smswalletpage.tsx" }, { @@ -6010,7 +6010,7 @@ "source_location": "L22", "_origin": "ast", "id": "pages_smswalletpage_chargeschema", - "community": 13, + "community": 2, "norm_label": "chargeschema" }, { @@ -6020,7 +6020,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_smswalletpage_chargeform", - "community": 13, + "community": 2, "norm_label": "chargeform" }, { @@ -6030,7 +6030,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_smswalletpage_empty_logs", - "community": 13, + "community": 2, "norm_label": "empty_logs" }, { @@ -6040,7 +6040,7 @@ "source_location": "L29", "_origin": "ast", "id": "pages_smswalletpage_reminder_hour_options", - "community": 13, + "community": 2, "norm_label": "reminder_hour_options" }, { @@ -6050,7 +6050,7 @@ "source_location": "L31", "_origin": "ast", "id": "pages_smswalletpage_post_visit_vars", - "community": 13, + "community": 2, "norm_label": "post_visit_vars" }, { @@ -6060,7 +6060,7 @@ "source_location": "L38", "_origin": "ast", "id": "pages_smswalletpage_smswalletpageinner", - "community": 13, + "community": 2, "norm_label": "smswalletpageinner()" }, { @@ -6070,7 +6070,7 @@ "source_location": "L540", "_origin": "ast", "id": "pages_smswalletpage_smswalletpage", - "community": 13, + "community": 2, "norm_label": "smswalletpage()" }, { @@ -6140,7 +6140,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_subscriptionpage", - "community": 13, + "community": 2, "norm_label": "subscriptionpage.tsx" }, { @@ -6150,7 +6150,7 @@ "source_location": "L17", "_origin": "ast", "id": "pages_subscriptionpage_plan_feature_labels", - "community": 13, + "community": 2, "norm_label": "plan_feature_labels" }, { @@ -6160,7 +6160,7 @@ "source_location": "L23", "_origin": "ast", "id": "pages_subscriptionpage_plan_meta", - "community": 13, + "community": 2, "norm_label": "plan_meta" }, { @@ -6170,7 +6170,7 @@ "source_location": "L47", "_origin": "ast", "id": "pages_subscriptionpage_subscriptionpage", - "community": 13, + "community": 2, "norm_label": "subscriptionpage()" }, { @@ -6180,7 +6180,7 @@ "source_location": "L393", "_origin": "ast", "id": "pages_subscriptionpage_plancard", - "community": 13, + "community": 2, "norm_label": "plancard()" }, { @@ -6650,7 +6650,7 @@ "source_location": "L1", "_origin": "ast", "id": "test_utils", - "community": 2, + "community": 13, "norm_label": "utils.tsx" }, { @@ -6660,7 +6660,7 @@ "source_location": "L6", "_origin": "ast", "id": "test_utils_makeclient", - "community": 2, + "community": 13, "norm_label": "makeclient()" }, { @@ -6670,7 +6670,7 @@ "source_location": "L15", "_origin": "ast", "id": "test_utils_providers", - "community": 2, + "community": 13, "norm_label": "providers()" }, { @@ -6680,7 +6680,7 @@ "source_location": "L31", "_origin": "ast", "id": "test_utils_renderwithproviders", - "community": 2, + "community": 13, "norm_label": "renderwithproviders()" }, { @@ -6690,7 +6690,7 @@ "source_location": "L45", "_origin": "ast", "id": "test_utils_renderhookwithclient", - "community": 2, + "community": 13, "norm_label": "renderhookwithclient()" }, { @@ -6700,7 +6700,7 @@ "source_location": "L1", "_origin": "ast", "id": "types_index", - "community": 19, + "community": 3, "norm_label": "index.ts" }, { @@ -6710,7 +6710,7 @@ "source_location": "L1", "_origin": "ast", "id": "types_index_user", - "community": 19, + "community": 3, "norm_label": "user" }, { @@ -6720,7 +6720,7 @@ "source_location": "L15", "_origin": "ast", "id": "types_index_userprofile", - "community": 19, + "community": 3, "norm_label": "userprofile" }, { @@ -6730,7 +6730,7 @@ "source_location": "L26", "_origin": "ast", "id": "types_index_doctor", - "community": 19, + "community": 3, "norm_label": "doctor" }, { @@ -6740,7 +6740,7 @@ "source_location": "L40", "_origin": "ast", "id": "types_index_clinic", - "community": 0, + "community": 3, "norm_label": "clinic" }, { @@ -6750,7 +6750,7 @@ "source_location": "L51", "_origin": "ast", "id": "types_index_clinicdetail", - "community": 452, + "community": 21, "norm_label": "clinicdetail" }, { @@ -6760,7 +6760,7 @@ "source_location": "L82", "_origin": "ast", "id": "types_index_appointmentstatus", - "community": 19, + "community": 452, "norm_label": "appointmentstatus" }, { @@ -6770,7 +6770,7 @@ "source_location": "L91", "_origin": "ast", "id": "types_index_appointment", - "community": 19, + "community": 452, "norm_label": "appointment" }, { @@ -6780,7 +6780,7 @@ "source_location": "L107", "_origin": "ast", "id": "types_index_paymentstatus", - "community": 19, + "community": 3, "norm_label": "paymentstatus" }, { @@ -6790,7 +6790,7 @@ "source_location": "L113", "_origin": "ast", "id": "types_index_paymentgateway", - "community": 19, + "community": 3, "norm_label": "paymentgateway" }, { @@ -6800,7 +6800,7 @@ "source_location": "L115", "_origin": "ast", "id": "types_index_payment", - "community": 19, + "community": 452, "norm_label": "payment" }, { @@ -6810,7 +6810,7 @@ "source_location": "L127", "_origin": "ast", "id": "types_index_settlementstatus", - "community": 19, + "community": 3, "norm_label": "settlementstatus" }, { @@ -6820,7 +6820,7 @@ "source_location": "L129", "_origin": "ast", "id": "types_index_settlement", - "community": 19, + "community": 3, "norm_label": "settlement" }, { @@ -6830,7 +6830,7 @@ "source_location": "L141", "_origin": "ast", "id": "types_index_representation", - "community": 41, + "community": 3, "norm_label": "representation" }, { @@ -6840,7 +6840,7 @@ "source_location": "L157", "_origin": "ast", "id": "types_index_comment", - "community": 19, + "community": 3, "norm_label": "comment" }, { @@ -6850,7 +6850,7 @@ "source_location": "L167", "_origin": "ast", "id": "types_index_rating", - "community": 19, + "community": 3, "norm_label": "rating" }, { @@ -6860,7 +6860,7 @@ "source_location": "L180", "_origin": "ast", "id": "types_index_smstemplatestatus", - "community": 19, + "community": 3, "norm_label": "smstemplatestatus" }, { @@ -6870,7 +6870,7 @@ "source_location": "L182", "_origin": "ast", "id": "types_index_smstemplate", - "community": 19, + "community": 3, "norm_label": "smstemplate" }, { @@ -6880,7 +6880,7 @@ "source_location": "L192", "_origin": "ast", "id": "types_index_smslog", - "community": 19, + "community": 3, "norm_label": "smslog" }, { @@ -6900,7 +6900,7 @@ "source_location": "L213", "_origin": "ast", "id": "types_index_smsmessagetext", - "community": 19, + "community": 3, "norm_label": "smsmessagetext" }, { @@ -6910,7 +6910,7 @@ "source_location": "L221", "_origin": "ast", "id": "types_index_province", - "community": 41, + "community": 3, "norm_label": "province" }, { @@ -6930,7 +6930,7 @@ "source_location": "L249", "_origin": "ast", "id": "types_index_specialtyfull", - "community": 41, + "community": 19, "norm_label": "specialtyfull" }, { @@ -6940,7 +6940,7 @@ "source_location": "L259", "_origin": "ast", "id": "types_index_doctorservice", - "community": 41, + "community": 19, "norm_label": "doctorservice" }, { @@ -6950,7 +6950,7 @@ "source_location": "L269", "_origin": "ast", "id": "types_index_insurance", - "community": 41, + "community": 19, "norm_label": "insurance" }, { @@ -6960,7 +6960,7 @@ "source_location": "L278", "_origin": "ast", "id": "types_index_tag", - "community": 41, + "community": 3, "norm_label": "tag" }, { @@ -6970,7 +6970,7 @@ "source_location": "L286", "_origin": "ast", "id": "types_index_blog", - "community": 2, + "community": 13, "norm_label": "blog" }, { @@ -7000,7 +7000,7 @@ "source_location": "L336", "_origin": "ast", "id": "types_index_specialty", - "community": 19, + "community": 3, "norm_label": "specialty" }, { @@ -7020,7 +7020,7 @@ "source_location": "L354", "_origin": "ast", "id": "types_index_subscriptionplan", - "community": 13, + "community": 2, "norm_label": "subscriptionplan" }, { @@ -7030,7 +7030,7 @@ "source_location": "L363", "_origin": "ast", "id": "types_index_subscriptionperiod", - "community": 13, + "community": 2, "norm_label": "subscriptionperiod" }, { @@ -7040,7 +7040,7 @@ "source_location": "L371", "_origin": "ast", "id": "types_index_mysubscriptiondata", - "community": 13, + "community": 2, "norm_label": "mysubscriptiondata" }, { @@ -7050,7 +7050,7 @@ "source_location": "L388", "_origin": "ast", "id": "types_index_mysubscription", - "community": 19, + "community": 3, "norm_label": "mysubscription" }, { @@ -7080,7 +7080,7 @@ "source_location": "L414", "_origin": "ast", "id": "types_index_smswalletbalance", - "community": 13, + "community": 2, "norm_label": "smswalletbalance" }, { @@ -7090,7 +7090,7 @@ "source_location": "L420", "_origin": "ast", "id": "types_index_smswalletlog", - "community": 13, + "community": 2, "norm_label": "smswalletlog" }, { @@ -7100,7 +7100,7 @@ "source_location": "L428", "_origin": "ast", "id": "types_index_smssettings", - "community": 13, + "community": 2, "norm_label": "smssettings" }, { @@ -7110,7 +7110,7 @@ "source_location": "L438", "_origin": "ast", "id": "types_index_patientprofile", - "community": 19, + "community": 3, "norm_label": "patientprofile" }, { @@ -8302,7 +8302,7 @@ "source_location": "", "_origin": "ast", "id": "abstractmigration", - "community": 426, + "community": 421, "norm_label": "abstractmigration" }, { @@ -8482,7 +8482,7 @@ "source_location": "L1", "_origin": "ast", "id": "migrations_version20260609132009", - "community": 625, + "community": 421, "norm_label": "version20260609132009.php" }, { @@ -8492,7 +8492,7 @@ "source_location": "L13", "_origin": "ast", "id": "migrations_version20260609132009_version20260609132009", - "community": 625, + "community": 421, "norm_label": "version20260609132009" }, { @@ -8502,7 +8502,7 @@ "source_location": "L15", "_origin": "ast", "id": "migrations_version20260609132009_version20260609132009_getdescription", - "community": 625, + "community": 421, "norm_label": ".getdescription()" }, { @@ -8512,7 +8512,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260609132009_version20260609132009_up", - "community": 625, + "community": 421, "norm_label": ".up()" }, { @@ -8522,7 +8522,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260609132009_php_schema", - "community": 625, + "community": 421, "norm_label": "schema" }, { @@ -8532,7 +8532,7 @@ "source_location": "L27", "_origin": "ast", "id": "migrations_version20260609132009_version20260609132009_down", - "community": 625, + "community": 421, "norm_label": ".down()" }, { @@ -10222,7 +10222,7 @@ "source_location": "L1", "_origin": "ast", "id": "migrations_version20260614181629", - "community": 426, + "community": 317, "norm_label": "version20260614181629.php" }, { @@ -10232,7 +10232,7 @@ "source_location": "L13", "_origin": "ast", "id": "migrations_version20260614181629_version20260614181629", - "community": 426, + "community": 317, "norm_label": "version20260614181629" }, { @@ -10242,7 +10242,7 @@ "source_location": "L15", "_origin": "ast", "id": "migrations_version20260614181629_version20260614181629_getdescription", - "community": 426, + "community": 317, "norm_label": ".getdescription()" }, { @@ -10252,7 +10252,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260614181629_version20260614181629_up", - "community": 426, + "community": 317, "norm_label": ".up()" }, { @@ -10262,7 +10262,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260614181629_php_schema", - "community": 426, + "community": 317, "norm_label": "schema" }, { @@ -10272,7 +10272,7 @@ "source_location": "L33", "_origin": "ast", "id": "migrations_version20260614181629_version20260614181629_down", - "community": 426, + "community": 317, "norm_label": ".down()" }, { @@ -12322,7 +12322,7 @@ "source_location": "L1", "_origin": "ast", "id": "migrations_version20260628165710", - "community": 647, + "community": 430, "norm_label": "version20260628165710.php" }, { @@ -12332,7 +12332,7 @@ "source_location": "L13", "_origin": "ast", "id": "migrations_version20260628165710_version20260628165710", - "community": 647, + "community": 430, "norm_label": "version20260628165710" }, { @@ -12342,7 +12342,7 @@ "source_location": "L15", "_origin": "ast", "id": "migrations_version20260628165710_version20260628165710_getdescription", - "community": 647, + "community": 430, "norm_label": ".getdescription()" }, { @@ -12352,7 +12352,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260628165710_version20260628165710_up", - "community": 647, + "community": 430, "norm_label": ".up()" }, { @@ -12362,7 +12362,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260628165710_php_schema", - "community": 647, + "community": 430, "norm_label": "schema" }, { @@ -12372,7 +12372,7 @@ "source_location": "L26", "_origin": "ast", "id": "migrations_version20260628165710_version20260628165710_down", - "community": 647, + "community": 430, "norm_label": ".down()" }, { @@ -12616,11 +12616,21 @@ "norm_label": "@babel/preset-typescript" }, { - "label": "@hotwired/stimulus", + "label": "@csstools/postcss-oklab-function", "file_type": "code", "source_file": "package.json", "source_location": "L7", "_origin": "ast", + "id": "package_devdependencies_csstools_postcss_oklab_function", + "community": 85, + "norm_label": "@csstools/postcss-oklab-function" + }, + { + "label": "@hotwired/stimulus", + "file_type": "code", + "source_file": "package.json", + "source_location": "L8", + "_origin": "ast", "id": "package_devdependencies_hotwired_stimulus", "community": 85, "norm_label": "@hotwired/stimulus" @@ -12629,7 +12639,7 @@ "label": "@symfony/stimulus-bridge", "file_type": "code", "source_file": "package.json", - "source_location": "L8", + "source_location": "L9", "_origin": "ast", "id": "package_devdependencies_symfony_stimulus_bridge", "community": 85, @@ -12639,7 +12649,7 @@ "label": "@symfony/ux-react", "file_type": "code", "source_file": "package.json", - "source_location": "L9", + "source_location": "L10", "_origin": "ast", "id": "package_devdependencies_symfony_ux_react", "community": 85, @@ -12649,7 +12659,7 @@ "label": "@symfony/webpack-encore", "file_type": "code", "source_file": "package.json", - "source_location": "L10", + "source_location": "L11", "_origin": "ast", "id": "package_devdependencies_symfony_webpack_encore", "community": 85, @@ -12659,7 +12669,7 @@ "label": "@tailwindcss/postcss", "file_type": "code", "source_file": "package.json", - "source_location": "L11", + "source_location": "L12", "_origin": "ast", "id": "package_devdependencies_tailwindcss_postcss", "community": 85, @@ -12669,7 +12679,7 @@ "label": "@testing-library/dom", "file_type": "code", "source_file": "package.json", - "source_location": "L12", + "source_location": "L13", "_origin": "ast", "id": "package_devdependencies_testing_library_dom", "community": 85, @@ -12679,7 +12689,7 @@ "label": "@testing-library/jest-dom", "file_type": "code", "source_file": "package.json", - "source_location": "L13", + "source_location": "L14", "_origin": "ast", "id": "package_devdependencies_testing_library_jest_dom", "community": 85, @@ -12689,7 +12699,7 @@ "label": "@testing-library/react", "file_type": "code", "source_file": "package.json", - "source_location": "L14", + "source_location": "L15", "_origin": "ast", "id": "package_devdependencies_testing_library_react", "community": 85, @@ -12699,7 +12709,7 @@ "label": "@testing-library/user-event", "file_type": "code", "source_file": "package.json", - "source_location": "L15", + "source_location": "L16", "_origin": "ast", "id": "package_devdependencies_testing_library_user_event", "community": 85, @@ -12709,7 +12719,7 @@ "label": "@types/react", "file_type": "code", "source_file": "package.json", - "source_location": "L16", + "source_location": "L17", "_origin": "ast", "id": "package_devdependencies_types_react", "community": 85, @@ -12719,7 +12729,7 @@ "label": "@types/react-dom", "file_type": "code", "source_file": "package.json", - "source_location": "L17", + "source_location": "L18", "_origin": "ast", "id": "package_devdependencies_types_react_dom", "community": 85, @@ -12729,7 +12739,7 @@ "label": "@vitejs/plugin-react", "file_type": "code", "source_file": "package.json", - "source_location": "L18", + "source_location": "L19", "_origin": "ast", "id": "package_devdependencies_vitejs_plugin_react", "community": 85, @@ -12739,7 +12749,7 @@ "label": "core-js", "file_type": "code", "source_file": "package.json", - "source_location": "L19", + "source_location": "L20", "_origin": "ast", "id": "package_devdependencies_core_js", "community": 85, @@ -12749,7 +12759,7 @@ "label": "jsdom", "file_type": "code", "source_file": "package.json", - "source_location": "L20", + "source_location": "L21", "_origin": "ast", "id": "package_devdependencies_jsdom", "community": 85, @@ -12759,7 +12769,7 @@ "label": "postcss", "file_type": "code", "source_file": "package.json", - "source_location": "L21", + "source_location": "L22", "_origin": "ast", "id": "package_devdependencies_postcss", "community": 85, @@ -12769,7 +12779,7 @@ "label": "postcss-loader", "file_type": "code", "source_file": "package.json", - "source_location": "L22", + "source_location": "L23", "_origin": "ast", "id": "package_devdependencies_postcss_loader", "community": 85, @@ -12779,7 +12789,7 @@ "label": "regenerator-runtime", "file_type": "code", "source_file": "package.json", - "source_location": "L23", + "source_location": "L24", "_origin": "ast", "id": "package_devdependencies_regenerator_runtime", "community": 85, @@ -12789,7 +12799,7 @@ "label": "tailwindcss", "file_type": "code", "source_file": "package.json", - "source_location": "L24", + "source_location": "L25", "_origin": "ast", "id": "package_devdependencies_tailwindcss", "community": 85, @@ -12799,7 +12809,7 @@ "label": "ts-loader", "file_type": "code", "source_file": "package.json", - "source_location": "L25", + "source_location": "L26", "_origin": "ast", "id": "package_devdependencies_ts_loader", "community": 85, @@ -12809,7 +12819,7 @@ "label": "typescript", "file_type": "code", "source_file": "package.json", - "source_location": "L26", + "source_location": "L27", "_origin": "ast", "id": "package_devdependencies_typescript", "community": 85, @@ -12819,7 +12829,7 @@ "label": "vite-tsconfig-paths", "file_type": "code", "source_file": "package.json", - "source_location": "L27", + "source_location": "L28", "_origin": "ast", "id": "package_devdependencies_vite_tsconfig_paths", "community": 85, @@ -12829,7 +12839,7 @@ "label": "vitest", "file_type": "code", "source_file": "package.json", - "source_location": "L28", + "source_location": "L29", "_origin": "ast", "id": "package_devdependencies_vitest", "community": 85, @@ -12839,7 +12849,7 @@ "label": "webpack", "file_type": "code", "source_file": "package.json", - "source_location": "L29", + "source_location": "L30", "_origin": "ast", "id": "package_devdependencies_webpack", "community": 85, @@ -12849,7 +12859,7 @@ "label": "webpack-cli", "file_type": "code", "source_file": "package.json", - "source_location": "L30", + "source_location": "L31", "_origin": "ast", "id": "package_devdependencies_webpack_cli", "community": 85, @@ -12859,7 +12869,7 @@ "label": "dependencies", "file_type": "code", "source_file": "package.json", - "source_location": "L32", + "source_location": "L33", "_origin": "ast", "id": "package_dependencies", "community": 81, @@ -12869,7 +12879,7 @@ "label": "@ckeditor/ckeditor5-build-classic", "file_type": "code", "source_file": "package.json", - "source_location": "L33", + "source_location": "L34", "_origin": "ast", "id": "package_dependencies_ckeditor_ckeditor5_build_classic", "community": 81, @@ -12879,7 +12889,7 @@ "label": "@ckeditor/ckeditor5-react", "file_type": "code", "source_file": "package.json", - "source_location": "L34", + "source_location": "L35", "_origin": "ast", "id": "package_dependencies_ckeditor_ckeditor5_react", "community": 81, @@ -12889,7 +12899,7 @@ "label": "@fontsource/vazirmatn", "file_type": "code", "source_file": "package.json", - "source_location": "L35", + "source_location": "L36", "_origin": "ast", "id": "package_dependencies_fontsource_vazirmatn", "community": 81, @@ -12899,7 +12909,7 @@ "label": "@heroicons/react", "file_type": "code", "source_file": "package.json", - "source_location": "L36", + "source_location": "L37", "_origin": "ast", "id": "package_dependencies_heroicons_react", "community": 81, @@ -12909,7 +12919,7 @@ "label": "@hookform/resolvers", "file_type": "code", "source_file": "package.json", - "source_location": "L37", + "source_location": "L38", "_origin": "ast", "id": "package_dependencies_hookform_resolvers", "community": 81, @@ -12919,7 +12929,7 @@ "label": "@tanstack/react-query", "file_type": "code", "source_file": "package.json", - "source_location": "L38", + "source_location": "L39", "_origin": "ast", "id": "package_dependencies_tanstack_react_query", "community": 81, @@ -12929,7 +12939,7 @@ "label": "@tanstack/react-table", "file_type": "code", "source_file": "package.json", - "source_location": "L39", + "source_location": "L40", "_origin": "ast", "id": "package_dependencies_tanstack_react_table", "community": 81, @@ -12939,7 +12949,7 @@ "label": "@types/leaflet", "file_type": "code", "source_file": "package.json", - "source_location": "L40", + "source_location": "L41", "_origin": "ast", "id": "package_dependencies_types_leaflet", "community": 81, @@ -12949,7 +12959,7 @@ "label": "jalaali-js", "file_type": "code", "source_file": "package.json", - "source_location": "L41", + "source_location": "L42", "_origin": "ast", "id": "package_dependencies_jalaali_js", "community": 81, @@ -12959,7 +12969,7 @@ "label": "leaflet", "file_type": "code", "source_file": "package.json", - "source_location": "L42", + "source_location": "L43", "_origin": "ast", "id": "package_dependencies_leaflet", "community": 81, @@ -12969,7 +12979,7 @@ "label": "react", "file_type": "code", "source_file": "package.json", - "source_location": "L43", + "source_location": "L44", "_origin": "ast", "id": "package_dependencies_react", "community": 81, @@ -12979,7 +12989,7 @@ "label": "react-dom", "file_type": "code", "source_file": "package.json", - "source_location": "L44", + "source_location": "L45", "_origin": "ast", "id": "package_dependencies_react_dom", "community": 81, @@ -12989,7 +12999,7 @@ "label": "react-hook-form", "file_type": "code", "source_file": "package.json", - "source_location": "L45", + "source_location": "L46", "_origin": "ast", "id": "package_dependencies_react_hook_form", "community": 81, @@ -12999,7 +13009,7 @@ "label": "react-hot-toast", "file_type": "code", "source_file": "package.json", - "source_location": "L46", + "source_location": "L47", "_origin": "ast", "id": "package_dependencies_react_hot_toast", "community": 81, @@ -13009,7 +13019,7 @@ "label": "react-leaflet", "file_type": "code", "source_file": "package.json", - "source_location": "L47", + "source_location": "L48", "_origin": "ast", "id": "package_dependencies_react_leaflet", "community": 81, @@ -13019,7 +13029,7 @@ "label": "react-router-dom", "file_type": "code", "source_file": "package.json", - "source_location": "L48", + "source_location": "L49", "_origin": "ast", "id": "package_dependencies_react_router_dom", "community": 81, @@ -13029,7 +13039,7 @@ "label": "react-select", "file_type": "code", "source_file": "package.json", - "source_location": "L49", + "source_location": "L50", "_origin": "ast", "id": "package_dependencies_react_select", "community": 81, @@ -13039,7 +13049,7 @@ "label": "recharts", "file_type": "code", "source_file": "package.json", - "source_location": "L50", + "source_location": "L51", "_origin": "ast", "id": "package_dependencies_recharts", "community": 81, @@ -13049,7 +13059,7 @@ "label": "sonner", "file_type": "code", "source_file": "package.json", - "source_location": "L51", + "source_location": "L52", "_origin": "ast", "id": "package_dependencies_sonner", "community": 81, @@ -13059,7 +13069,7 @@ "label": "zod", "file_type": "code", "source_file": "package.json", - "source_location": "L52", + "source_location": "L53", "_origin": "ast", "id": "package_dependencies_zod", "community": 81, @@ -13069,7 +13079,7 @@ "label": "zustand", "file_type": "code", "source_file": "package.json", - "source_location": "L53", + "source_location": "L54", "_origin": "ast", "id": "package_dependencies_zustand", "community": 81, @@ -13079,7 +13089,7 @@ "label": "license", "file_type": "code", "source_file": "package.json", - "source_location": "L55", + "source_location": "L56", "_origin": "ast", "id": "package_license", "community": 498, @@ -13089,7 +13099,7 @@ "label": "private", "file_type": "code", "source_file": "package.json", - "source_location": "L56", + "source_location": "L57", "_origin": "ast", "id": "package_private", "community": 498, @@ -13099,7 +13109,7 @@ "label": "scripts", "file_type": "code", "source_file": "package.json", - "source_location": "L57", + "source_location": "L58", "_origin": "ast", "id": "package_scripts", "community": 498, @@ -13109,7 +13119,7 @@ "label": "dev-server", "file_type": "code", "source_file": "package.json", - "source_location": "L58", + "source_location": "L59", "_origin": "ast", "id": "package_scripts_dev_server", "community": 498, @@ -13119,7 +13129,7 @@ "label": "dev", "file_type": "code", "source_file": "package.json", - "source_location": "L59", + "source_location": "L60", "_origin": "ast", "id": "package_scripts_dev", "community": 498, @@ -13129,7 +13139,7 @@ "label": "watch", "file_type": "code", "source_file": "package.json", - "source_location": "L60", + "source_location": "L61", "_origin": "ast", "id": "package_scripts_watch", "community": 498, @@ -13139,7 +13149,7 @@ "label": "build", "file_type": "code", "source_file": "package.json", - "source_location": "L61", + "source_location": "L62", "_origin": "ast", "id": "package_scripts_build", "community": 498, @@ -13149,7 +13159,7 @@ "label": "test", "file_type": "code", "source_file": "package.json", - "source_location": "L62", + "source_location": "L63", "_origin": "ast", "id": "package_scripts_test", "community": 498, @@ -13159,7 +13169,7 @@ "label": "test:watch", "file_type": "code", "source_file": "package.json", - "source_location": "L63", + "source_location": "L64", "_origin": "ast", "id": "package_scripts_test_watch", "community": 498, @@ -13169,7 +13179,7 @@ "label": "test:cov", "file_type": "code", "source_file": "package.json", - "source_location": "L64", + "source_location": "L65", "_origin": "ast", "id": "package_scripts_test_cov", "community": 498, @@ -14252,7 +14262,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_myappointmentscontroller", - "community": 275, + "community": 122, "norm_label": "myappointmentscontroller.php" }, { @@ -14262,7 +14272,7 @@ "source_location": "L26", "_origin": "ast", "id": "controller_myappointmentscontroller_myappointmentscontroller", - "community": 275, + "community": 122, "norm_label": "myappointmentscontroller" }, { @@ -14272,7 +14282,7 @@ "source_location": "L29", "_origin": "ast", "id": "controller_myappointmentscontroller_myappointmentscontroller_construct", - "community": 275, + "community": 122, "norm_label": ".__construct()" }, { @@ -14282,7 +14292,7 @@ "source_location": "L39", "_origin": "ast", "id": "controller_myappointmentscontroller_myappointmentscontroller_createappointment", - "community": 275, + "community": 122, "norm_label": ".createappointment()" }, { @@ -14292,7 +14302,7 @@ "source_location": "L39", "_origin": "ast", "id": "src_appointment_controller_myappointmentscontroller_php_request", - "community": 275, + "community": 122, "norm_label": "request" }, { @@ -14302,7 +14312,7 @@ "source_location": "L39", "_origin": "ast", "id": "src_appointment_controller_myappointmentscontroller_php_user", - "community": 275, + "community": 122, "norm_label": "user" }, { @@ -14312,7 +14322,7 @@ "source_location": "L39", "_origin": "ast", "id": "src_appointment_controller_myappointmentscontroller_php_jsonresponse", - "community": 275, + "community": 122, "norm_label": "jsonresponse" }, { @@ -14322,7 +14332,7 @@ "source_location": "L98", "_origin": "ast", "id": "controller_myappointmentscontroller_myappointmentscontroller_myappointments", - "community": 275, + "community": 122, "norm_label": ".myappointments()" }, { @@ -14332,7 +14342,7 @@ "source_location": "L204", "_origin": "ast", "id": "controller_myappointmentscontroller_myappointmentscontroller_todaystats", - "community": 275, + "community": 122, "norm_label": ".todaystats()" }, { @@ -14342,7 +14352,7 @@ "source_location": "L279", "_origin": "ast", "id": "controller_myappointmentscontroller_myappointmentscontroller_canbookfordoctor", - "community": 275, + "community": 122, "norm_label": ".canbookfordoctor()" }, { @@ -14352,7 +14362,7 @@ "source_location": "L279", "_origin": "ast", "id": "src_appointment_controller_myappointmentscontroller_php_doctor", - "community": 275, + "community": 122, "norm_label": "doctor" }, { @@ -14362,7 +14372,7 @@ "source_location": "L308", "_origin": "ast", "id": "controller_myappointmentscontroller_myappointmentscontroller_secretarycanbookfordoctor", - "community": 275, + "community": 122, "norm_label": ".secretarycanbookfordoctor()" }, { @@ -14372,7 +14382,7 @@ "source_location": "L339", "_origin": "ast", "id": "controller_myappointmentscontroller_myappointmentscontroller_resolvesecretaryfilter", - "community": 275, + "community": 122, "norm_label": ".resolvesecretaryfilter()" }, { @@ -15512,7 +15522,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_dateoverriderepository", - "community": 14, + "community": 41, "norm_label": "dateoverriderepository.php" }, { @@ -15522,7 +15532,7 @@ "source_location": "L10", "_origin": "ast", "id": "repository_dateoverriderepository_dateoverriderepository", - "community": 14, + "community": 41, "norm_label": "dateoverriderepository" }, { @@ -15532,7 +15542,7 @@ "source_location": "L12", "_origin": "ast", "id": "repository_dateoverriderepository_dateoverriderepository_construct", - "community": 14, + "community": 41, "norm_label": ".__construct()" }, { @@ -15542,7 +15552,7 @@ "source_location": "L12", "_origin": "ast", "id": "src_appointment_repository_dateoverriderepository_php_managerregistry", - "community": 14, + "community": 41, "norm_label": "managerregistry" }, { @@ -15552,7 +15562,7 @@ "source_location": "L17", "_origin": "ast", "id": "repository_dateoverriderepository_dateoverriderepository_findbyuuid", - "community": 14, + "community": 41, "norm_label": ".findbyuuid()" }, { @@ -15562,7 +15572,7 @@ "source_location": "L17", "_origin": "ast", "id": "dateoverride", - "community": 14, + "community": 41, "norm_label": "dateoverride" }, { @@ -15572,7 +15582,7 @@ "source_location": "L23", "_origin": "ast", "id": "repository_dateoverriderepository_dateoverriderepository_findbydoctor", - "community": 14, + "community": 41, "norm_label": ".findbydoctor()" }, { @@ -15582,7 +15592,7 @@ "source_location": "L23", "_origin": "ast", "id": "src_appointment_repository_dateoverriderepository_php_doctor", - "community": 14, + "community": 41, "norm_label": "doctor" }, { @@ -15592,7 +15602,7 @@ "source_location": "L28", "_origin": "ast", "id": "repository_dateoverriderepository_dateoverriderepository_save", - "community": 14, + "community": 41, "norm_label": ".save()" }, { @@ -15602,7 +15612,7 @@ "source_location": "L34", "_origin": "ast", "id": "repository_dateoverriderepository_dateoverriderepository_remove", - "community": 14, + "community": 41, "norm_label": ".remove()" }, { @@ -15722,7 +15732,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_slottakenexception", - "community": 308, + "community": 275, "norm_label": "slottakenexception.php" }, { @@ -15732,7 +15742,7 @@ "source_location": "L5", "_origin": "ast", "id": "repository_slottakenexception_slottakenexception", - "community": 308, + "community": 275, "norm_label": "slottakenexception" }, { @@ -15742,7 +15752,7 @@ "source_location": "", "_origin": "ast", "id": "runtimeexception", - "community": 308, + "community": 275, "norm_label": "runtimeexception" }, { @@ -15862,7 +15872,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_appointmentexpiryservice", - "community": 16, + "community": 647, "norm_label": "appointmentexpiryservice.php" }, { @@ -15872,7 +15882,7 @@ "source_location": "L10", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice", - "community": 16, + "community": 647, "norm_label": "appointmentexpiryservice" }, { @@ -15882,7 +15892,7 @@ "source_location": "L12", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice_construct", - "community": 16, + "community": 647, "norm_label": ".__construct()" }, { @@ -15892,7 +15902,7 @@ "source_location": "L23", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice_expirestale", - "community": 16, + "community": 647, "norm_label": ".expirestale()" }, { @@ -15902,7 +15912,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_slotcalculatorservice", - "community": 169, + "community": 20, "norm_label": "slotcalculatorservice.php" }, { @@ -15912,7 +15922,7 @@ "source_location": "L13", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice", - "community": 169, + "community": 20, "norm_label": "slotcalculatorservice" }, { @@ -15922,7 +15932,7 @@ "source_location": "L15", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_construct", - "community": 169, + "community": 20, "norm_label": ".__construct()" }, { @@ -15932,7 +15942,7 @@ "source_location": "L28", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_getavailableslots", - "community": 169, + "community": 20, "norm_label": ".getavailableslots()" }, { @@ -15942,7 +15952,7 @@ "source_location": "L28", "_origin": "ast", "id": "src_appointment_service_slotcalculatorservice_php_doctor", - "community": 169, + "community": 20, "norm_label": "doctor" }, { @@ -15952,7 +15962,7 @@ "source_location": "L39", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_resolveslotlocationid", - "community": 169, + "community": 20, "norm_label": ".resolveslotlocationid()" }, { @@ -15962,7 +15972,7 @@ "source_location": "L60", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_getallslotswithavailability", - "community": 169, + "community": 20, "norm_label": ".getallslotswithavailability()" }, { @@ -15972,7 +15982,7 @@ "source_location": "L78", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_hasanyavailability", - "community": 169, + "community": 20, "norm_label": ".hasanyavailability()" }, { @@ -15982,7 +15992,7 @@ "source_location": "L87", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_iswithinbookingwindow", - "community": 169, + "community": 20, "norm_label": ".iswithinbookingwindow()" }, { @@ -15992,7 +16002,7 @@ "source_location": "L106", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_getbookingmeta", - "community": 169, + "community": 20, "norm_label": ".getbookingmeta()" }, { @@ -16002,7 +16012,7 @@ "source_location": "L117", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "community": 169, + "community": 20, "norm_label": ".buildallsessions()" }, { @@ -16012,7 +16022,7 @@ "source_location": "L180", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_buildsessionsfromoverride", - "community": 169, + "community": 20, "norm_label": ".buildsessionsfromoverride()" }, { @@ -16022,7 +16032,7 @@ "source_location": "L225", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_buildsessionslots", - "community": 169, + "community": 20, "norm_label": ".buildsessionslots()" }, { @@ -16032,7 +16042,7 @@ "source_location": "L269", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_filterbookedslots", - "community": 169, + "community": 20, "norm_label": ".filterbookedslots()" }, { @@ -16042,7 +16052,7 @@ "source_location": "L278", "_origin": "ast", "id": "service_slotcalculatorservice_slotcalculatorservice_parsetime", - "community": 169, + "community": 20, "norm_label": ".parsetime()" }, { @@ -17442,7 +17452,7 @@ "source_location": "L1", "_origin": "ast", "id": "security_passwordauthenticator", - "community": 227, + "community": 225, "norm_label": "passwordauthenticator.php" }, { @@ -17452,7 +17462,7 @@ "source_location": "L22", "_origin": "ast", "id": "security_passwordauthenticator_passwordauthenticator", - "community": 227, + "community": 225, "norm_label": "passwordauthenticator" }, { @@ -17462,7 +17472,7 @@ "source_location": "", "_origin": "ast", "id": "abstractauthenticator", - "community": 227, + "community": 225, "norm_label": "abstractauthenticator" }, { @@ -17472,7 +17482,7 @@ "source_location": "L24", "_origin": "ast", "id": "security_passwordauthenticator_passwordauthenticator_construct", - "community": 227, + "community": 225, "norm_label": ".__construct()" }, { @@ -17482,7 +17492,7 @@ "source_location": "L33", "_origin": "ast", "id": "security_passwordauthenticator_passwordauthenticator_supports", - "community": 227, + "community": 225, "norm_label": ".supports()" }, { @@ -17492,7 +17502,7 @@ "source_location": "L33", "_origin": "ast", "id": "src_auth_security_passwordauthenticator_php_request", - "community": 227, + "community": 225, "norm_label": "request" }, { @@ -17502,7 +17512,7 @@ "source_location": "L39", "_origin": "ast", "id": "security_passwordauthenticator_passwordauthenticator_authenticate", - "community": 227, + "community": 225, "norm_label": ".authenticate()" }, { @@ -17512,7 +17522,7 @@ "source_location": "L39", "_origin": "ast", "id": "passport", - "community": 227, + "community": 225, "norm_label": "passport" }, { @@ -17522,7 +17532,7 @@ "source_location": "L56", "_origin": "ast", "id": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", - "community": 227, + "community": 225, "norm_label": ".onauthenticationsuccess()" }, { @@ -17532,7 +17542,7 @@ "source_location": "L56", "_origin": "ast", "id": "tokeninterface", - "community": 227, + "community": 225, "norm_label": "tokeninterface" }, { @@ -17542,7 +17552,7 @@ "source_location": "L56", "_origin": "ast", "id": "src_auth_security_passwordauthenticator_php_response", - "community": 227, + "community": 225, "norm_label": "response" }, { @@ -17552,7 +17562,7 @@ "source_location": "L92", "_origin": "ast", "id": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", - "community": 227, + "community": 225, "norm_label": ".onauthenticationfailure()" }, { @@ -18902,7 +18912,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_invoiceitemrepository", - "community": 53, + "community": 308, "norm_label": "invoiceitemrepository.php" }, { @@ -18912,7 +18922,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_invoiceitemrepository_invoiceitemrepository", - "community": 53, + "community": 308, "norm_label": "invoiceitemrepository" }, { @@ -18922,7 +18932,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_invoiceitemrepository_invoiceitemrepository_construct", - "community": 53, + "community": 308, "norm_label": ".__construct()" }, { @@ -18932,7 +18942,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_billing_repository_invoiceitemrepository_php_managerregistry", - "community": 53, + "community": 308, "norm_label": "managerregistry" }, { @@ -18942,7 +18952,7 @@ "source_location": "L16", "_origin": "ast", "id": "repository_invoiceitemrepository_invoiceitemrepository_save", - "community": 53, + "community": 308, "norm_label": ".save()" }, { @@ -18952,7 +18962,7 @@ "source_location": "L16", "_origin": "ast", "id": "src_billing_repository_invoiceitemrepository_php_invoiceitem", - "community": 53, + "community": 308, "norm_label": "invoiceitem" }, { @@ -18962,7 +18972,7 @@ "source_location": "L29", "_origin": "ast", "id": "repository_invoiceitemrepository_invoiceitemrepository_detailsforids", - "community": 53, + "community": 308, "norm_label": ".detailsforids()" }, { @@ -19462,7 +19472,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_blogcontroller", - "community": 58, + "community": 103, "norm_label": "blogcontroller.php" }, { @@ -19472,7 +19482,7 @@ "source_location": "L18", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller", - "community": 58, + "community": 103, "norm_label": "blogcontroller" }, { @@ -19482,7 +19492,7 @@ "source_location": "L21", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_construct", - "community": 58, + "community": 103, "norm_label": ".__construct()" }, { @@ -19492,7 +19502,7 @@ "source_location": "L29", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_list", - "community": 58, + "community": 103, "norm_label": ".list()" }, { @@ -19502,7 +19512,7 @@ "source_location": "L29", "_origin": "ast", "id": "src_blog_controller_blogcontroller_php_request", - "community": 58, + "community": 103, "norm_label": "request" }, { @@ -19512,7 +19522,7 @@ "source_location": "L29", "_origin": "ast", "id": "src_blog_controller_blogcontroller_php_jsonresponse", - "community": 58, + "community": 103, "norm_label": "jsonresponse" }, { @@ -19522,7 +19532,7 @@ "source_location": "L71", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_detail", - "community": 58, + "community": 103, "norm_label": ".detail()" }, { @@ -19532,7 +19542,7 @@ "source_location": "L116", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_create", - "community": 58, + "community": 103, "norm_label": ".create()" }, { @@ -19542,7 +19552,7 @@ "source_location": "L116", "_origin": "ast", "id": "src_blog_controller_blogcontroller_php_user", - "community": 58, + "community": 103, "norm_label": "user" }, { @@ -19552,7 +19562,7 @@ "source_location": "L204", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_update", - "community": 58, + "community": 103, "norm_label": ".update()" }, { @@ -19562,7 +19572,7 @@ "source_location": "L272", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_delete", - "community": 58, + "community": 103, "norm_label": ".delete()" }, { @@ -19572,7 +19582,7 @@ "source_location": "L321", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_uploadimage", - "community": 58, + "community": 103, "norm_label": ".uploadimage()" }, { @@ -21762,7 +21772,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_clinicinvitationservice", - "community": 225, + "community": 122, "norm_label": "clinicinvitationservice.php" }, { @@ -21772,7 +21782,7 @@ "source_location": "L14", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice", - "community": 225, + "community": 122, "norm_label": "clinicinvitationservice" }, { @@ -21782,7 +21792,7 @@ "source_location": "L16", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice_construct", - "community": 225, + "community": 122, "norm_label": ".__construct()" }, { @@ -21792,7 +21802,7 @@ "source_location": "L25", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice_invite", - "community": 225, + "community": 122, "norm_label": ".invite()" }, { @@ -21802,7 +21812,7 @@ "source_location": "L25", "_origin": "ast", "id": "src_clinicinvitation_service_clinicinvitationservice_php_clinic", - "community": 225, + "community": 122, "norm_label": "clinic" }, { @@ -21812,7 +21822,7 @@ "source_location": "L25", "_origin": "ast", "id": "src_clinicinvitation_service_clinicinvitationservice_php_user", - "community": 225, + "community": 122, "norm_label": "user" }, { @@ -21822,7 +21832,7 @@ "source_location": "L25", "_origin": "ast", "id": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation", - "community": 225, + "community": 122, "norm_label": "clinicdoctorinvitation" }, { @@ -21832,7 +21842,7 @@ "source_location": "L47", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice_resend", - "community": 225, + "community": 122, "norm_label": ".resend()" }, { @@ -21842,7 +21852,7 @@ "source_location": "L58", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice_changestatus", - "community": 225, + "community": 122, "norm_label": ".changestatus()" }, { @@ -21852,7 +21862,7 @@ "source_location": "L68", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice_delete", - "community": 225, + "community": 122, "norm_label": ".delete()" }, { @@ -21862,7 +21872,7 @@ "source_location": "L74", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice_accept", - "community": 225, + "community": 122, "norm_label": ".accept()" }, { @@ -21872,7 +21882,7 @@ "source_location": "L101", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice_reject", - "community": 225, + "community": 122, "norm_label": ".reject()" }, { @@ -21882,7 +21892,7 @@ "source_location": "L111", "_origin": "ast", "id": "service_clinicinvitationservice_clinicinvitationservice_sendsms", - "community": 225, + "community": 122, "norm_label": ".sendsms()" }, { @@ -21892,7 +21902,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_clinicservicecontroller", - "community": 70, + "community": 169, "norm_label": "clinicservicecontroller.php" }, { @@ -21902,7 +21912,7 @@ "source_location": "L29", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller", - "community": 70, + "community": 169, "norm_label": "clinicservicecontroller" }, { @@ -21912,7 +21922,7 @@ "source_location": "L33", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_construct", - "community": 70, + "community": 169, "norm_label": ".__construct()" }, { @@ -21922,7 +21932,7 @@ "source_location": "L47", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_listsections", - "community": 70, + "community": 169, "norm_label": ".listsections()" }, { @@ -21932,7 +21942,7 @@ "source_location": "L47", "_origin": "ast", "id": "src_clinicservice_controller_clinicservicecontroller_php_user", - "community": 70, + "community": 169, "norm_label": "user" }, { @@ -21942,7 +21952,7 @@ "source_location": "L47", "_origin": "ast", "id": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "community": 70, + "community": 169, "norm_label": "jsonresponse" }, { @@ -21952,7 +21962,7 @@ "source_location": "L61", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_createsection", - "community": 70, + "community": 169, "norm_label": ".createsection()" }, { @@ -21962,7 +21972,7 @@ "source_location": "L61", "_origin": "ast", "id": "src_clinicservice_controller_clinicservicecontroller_php_request", - "community": 70, + "community": 169, "norm_label": "request" }, { @@ -21972,7 +21982,7 @@ "source_location": "L80", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_updatesection", - "community": 70, + "community": 169, "norm_label": ".updatesection()" }, { @@ -21982,7 +21992,7 @@ "source_location": "L104", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_deletesection", - "community": 70, + "community": 169, "norm_label": ".deletesection()" }, { @@ -21992,7 +22002,7 @@ "source_location": "L122", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_listitems", - "community": 70, + "community": 169, "norm_label": ".listitems()" }, { @@ -22002,7 +22012,7 @@ "source_location": "L140", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_createitem", - "community": 70, + "community": 169, "norm_label": ".createitem()" }, { @@ -22012,7 +22022,7 @@ "source_location": "L184", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_updateitem", - "community": 70, + "community": 169, "norm_label": ".updateitem()" }, { @@ -22022,7 +22032,7 @@ "source_location": "L227", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_deleteitem", - "community": 70, + "community": 169, "norm_label": ".deleteitem()" }, { @@ -22032,7 +22042,7 @@ "source_location": "L256", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_listtariffs", - "community": 70, + "community": 169, "norm_label": ".listtariffs()" }, { @@ -22042,7 +22052,7 @@ "source_location": "L276", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_settariff", - "community": 70, + "community": 169, "norm_label": ".settariff()" }, { @@ -22052,7 +22062,7 @@ "source_location": "L307", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "community": 70, + "community": 169, "norm_label": ".resolveentity()" }, { @@ -22062,7 +22072,7 @@ "source_location": "L322", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate", - "community": 70, + "community": 169, "norm_label": ".assertservicesgate()" }, { @@ -22072,7 +22082,7 @@ "source_location": "L333", "_origin": "ast", "id": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "community": 70, + "community": 169, "norm_label": ".ownssection()" }, { @@ -22082,7 +22092,7 @@ "source_location": "L333", "_origin": "ast", "id": "src_clinicservice_controller_clinicservicecontroller_php_servicesection", - "community": 70, + "community": 169, "norm_label": "servicesection" }, { @@ -22982,7 +22992,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_siteconfigcontroller", - "community": 108, + "community": 227, "norm_label": "siteconfigcontroller.php" }, { @@ -22992,7 +23002,7 @@ "source_location": "L14", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller", - "community": 108, + "community": 227, "norm_label": "siteconfigcontroller" }, { @@ -23002,7 +23012,7 @@ "source_location": "L43", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller_construct", - "community": 108, + "community": 227, "norm_label": ".__construct()" }, { @@ -23012,7 +23022,7 @@ "source_location": "L49", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller_get", - "community": 108, + "community": 227, "norm_label": ".get()" }, { @@ -23022,7 +23032,7 @@ "source_location": "L49", "_origin": "ast", "id": "src_config_controller_siteconfigcontroller_php_jsonresponse", - "community": 108, + "community": 227, "norm_label": "jsonresponse" }, { @@ -23032,7 +23042,7 @@ "source_location": "L58", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller_patch", - "community": 108, + "community": 227, "norm_label": ".patch()" }, { @@ -23042,7 +23052,7 @@ "source_location": "L58", "_origin": "ast", "id": "src_config_controller_siteconfigcontroller_php_request", - "community": 108, + "community": 227, "norm_label": "request" }, { @@ -23052,7 +23062,7 @@ "source_location": "L58", "_origin": "ast", "id": "src_config_controller_siteconfigcontroller_php_user", - "community": 108, + "community": 227, "norm_label": "user" }, { @@ -23062,7 +23072,7 @@ "source_location": "L90", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", - "community": 108, + "community": 227, "norm_label": ".taxhistory()" }, { @@ -23242,7 +23252,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_siteconfigrepository", - "community": 537, + "community": 401, "norm_label": "siteconfigrepository.php" }, { @@ -23252,7 +23262,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository", - "community": 537, + "community": 401, "norm_label": "siteconfigrepository" }, { @@ -23262,7 +23272,7 @@ "source_location": "L35", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_construct", - "community": 537, + "community": 401, "norm_label": ".__construct()" }, { @@ -23272,7 +23282,7 @@ "source_location": "L35", "_origin": "ast", "id": "src_config_repository_siteconfigrepository_php_managerregistry", - "community": 537, + "community": 401, "norm_label": "managerregistry" }, { @@ -23282,7 +23292,7 @@ "source_location": "L40", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_get", - "community": 537, + "community": 401, "norm_label": ".get()" }, { @@ -23292,7 +23302,7 @@ "source_location": "L49", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_getall", - "community": 537, + "community": 401, "norm_label": ".getall()" }, { @@ -23302,7 +23312,7 @@ "source_location": "L65", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_set", - "community": 537, + "community": 401, "norm_label": ".set()" }, { @@ -23372,7 +23382,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_dashboardcontroller", - "community": 206, + "community": 122, "norm_label": "dashboardcontroller.php" }, { @@ -23382,7 +23392,7 @@ "source_location": "L24", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller", - "community": 206, + "community": 122, "norm_label": "dashboardcontroller" }, { @@ -23392,7 +23402,7 @@ "source_location": "L27", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_construct", - "community": 206, + "community": 122, "norm_label": ".__construct()" }, { @@ -23402,7 +23412,7 @@ "source_location": "L40", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_clinic", - "community": 206, + "community": 122, "norm_label": ".clinic()" }, { @@ -23412,7 +23422,7 @@ "source_location": "L40", "_origin": "ast", "id": "src_dashboard_controller_dashboardcontroller_php_request", - "community": 206, + "community": 122, "norm_label": "request" }, { @@ -23422,7 +23432,7 @@ "source_location": "L40", "_origin": "ast", "id": "src_dashboard_controller_dashboardcontroller_php_user", - "community": 206, + "community": 122, "norm_label": "user" }, { @@ -23432,7 +23442,7 @@ "source_location": "L40", "_origin": "ast", "id": "src_dashboard_controller_dashboardcontroller_php_jsonresponse", - "community": 206, + "community": 122, "norm_label": "jsonresponse" }, { @@ -23442,7 +23452,7 @@ "source_location": "L160", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_doctor", - "community": 206, + "community": 122, "norm_label": ".doctor()" }, { @@ -23452,7 +23462,7 @@ "source_location": "L255", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_secretary", - "community": 206, + "community": 122, "norm_label": ".secretary()" }, { @@ -23462,7 +23472,7 @@ "source_location": "L284", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", - "community": 206, + "community": 122, "norm_label": ".secretarydoctordashboard()" }, { @@ -23472,7 +23482,7 @@ "source_location": "L284", "_origin": "ast", "id": "src_dashboard_controller_dashboardcontroller_php_doctorsecretary", - "community": 206, + "community": 122, "norm_label": "doctorsecretary" }, { @@ -23482,7 +23492,7 @@ "source_location": "L339", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", - "community": 206, + "community": 122, "norm_label": ".secretaryclinicdashboard()" }, { @@ -23492,7 +23502,7 @@ "source_location": "L339", "_origin": "ast", "id": "src_dashboard_controller_dashboardcontroller_php_clinic", - "community": 206, + "community": 122, "norm_label": "clinic" }, { @@ -24792,7 +24802,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_doctorservicecontroller", - "community": 317, + "community": 253, "norm_label": "doctorservicecontroller.php" }, { @@ -24802,7 +24812,7 @@ "source_location": "L16", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller", - "community": 317, + "community": 253, "norm_label": "doctorservicecontroller" }, { @@ -24812,7 +24822,7 @@ "source_location": "L19", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_construct", - "community": 317, + "community": 253, "norm_label": ".__construct()" }, { @@ -24822,7 +24832,7 @@ "source_location": "L24", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_list", - "community": 317, + "community": 253, "norm_label": ".list()" }, { @@ -24832,7 +24842,7 @@ "source_location": "L24", "_origin": "ast", "id": "src_doctorservice_controller_doctorservicecontroller_php_request", - "community": 317, + "community": 253, "norm_label": "request" }, { @@ -24842,7 +24852,7 @@ "source_location": "L24", "_origin": "ast", "id": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse", - "community": 317, + "community": 253, "norm_label": "jsonresponse" }, { @@ -24852,7 +24862,7 @@ "source_location": "L37", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_create", - "community": 317, + "community": 253, "norm_label": ".create()" }, { @@ -24862,7 +24872,7 @@ "source_location": "L62", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_update", - "community": 317, + "community": 253, "norm_label": ".update()" }, { @@ -24872,7 +24882,7 @@ "source_location": "L85", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_delete", - "community": 317, + "community": 253, "norm_label": ".delete()" }, { @@ -24882,7 +24892,7 @@ "source_location": "L98", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", - "community": 317, + "community": 253, "norm_label": ".adminlist()" }, { @@ -24892,7 +24902,7 @@ "source_location": "L130", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_slugify", - "community": 317, + "community": 253, "norm_label": ".slugify()" }, { @@ -25082,7 +25092,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_doctorservicerepository", - "community": 430, + "community": 4, "norm_label": "doctorservicerepository.php" }, { @@ -25092,7 +25102,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_doctorservicerepository_doctorservicerepository", - "community": 430, + "community": 4, "norm_label": "doctorservicerepository" }, { @@ -25102,7 +25112,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_doctorservicerepository_doctorservicerepository_construct", - "community": 430, + "community": 4, "norm_label": ".__construct()" }, { @@ -25112,7 +25122,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_doctorservice_repository_doctorservicerepository_php_managerregistry", - "community": 430, + "community": 4, "norm_label": "managerregistry" }, { @@ -25122,7 +25132,7 @@ "source_location": "L17", "_origin": "ast", "id": "repository_doctorservicerepository_doctorservicerepository_findactive", - "community": 430, + "community": 4, "norm_label": ".findactive()" }, { @@ -25132,7 +25142,7 @@ "source_location": "L31", "_origin": "ast", "id": "repository_doctorservicerepository_doctorservicerepository_save", - "community": 430, + "community": 4, "norm_label": ".save()" }, { @@ -25142,7 +25152,7 @@ "source_location": "L31", "_origin": "ast", "id": "doctorservice", - "community": 430, + "community": 4, "norm_label": "doctorservice" }, { @@ -25152,7 +25162,7 @@ "source_location": "L37", "_origin": "ast", "id": "repository_doctorservicerepository_doctorservicerepository_remove", - "community": 430, + "community": 4, "norm_label": ".remove()" }, { @@ -26232,7 +26242,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_doctorinsurancerepository", - "community": 602, + "community": 53, "norm_label": "doctorinsurancerepository.php" }, { @@ -26242,7 +26252,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_doctorinsurancerepository_doctorinsurancerepository", - "community": 602, + "community": 53, "norm_label": "doctorinsurancerepository" }, { @@ -26252,7 +26262,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_doctorinsurancerepository_doctorinsurancerepository_construct", - "community": 602, + "community": 53, "norm_label": ".__construct()" }, { @@ -26262,7 +26272,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_insurance_repository_doctorinsurancerepository_php_managerregistry", - "community": 602, + "community": 53, "norm_label": "managerregistry" }, { @@ -26272,7 +26282,7 @@ "source_location": "L16", "_origin": "ast", "id": "repository_doctorinsurancerepository_doctorinsurancerepository_save", - "community": 602, + "community": 53, "norm_label": ".save()" }, { @@ -26282,7 +26292,7 @@ "source_location": "L16", "_origin": "ast", "id": "src_insurance_repository_doctorinsurancerepository_php_doctorinsurance", - "community": 602, + "community": 53, "norm_label": "doctorinsurance" }, { @@ -26292,7 +26302,7 @@ "source_location": "L24", "_origin": "ast", "id": "repository_doctorinsurancerepository_doctorinsurancerepository_remove", - "community": 602, + "community": 53, "norm_label": ".remove()" }, { @@ -27792,7 +27802,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_patientcontroller", - "community": 103, + "community": 175, "norm_label": "patientcontroller.php" }, { @@ -27802,7 +27812,7 @@ "source_location": "L29", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller", - "community": 103, + "community": 175, "norm_label": "patientcontroller" }, { @@ -27812,7 +27822,7 @@ "source_location": "L33", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_construct", - "community": 103, + "community": 175, "norm_label": ".__construct()" }, { @@ -27822,7 +27832,7 @@ "source_location": "L50", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_buildpatientprofile", - "community": 103, + "community": 175, "norm_label": ".buildpatientprofile()" }, { @@ -27832,7 +27842,7 @@ "source_location": "L50", "_origin": "ast", "id": "src_patient_controller_patientcontroller_php_user", - "community": 103, + "community": 175, "norm_label": "user" }, { @@ -27842,7 +27852,7 @@ "source_location": "L77", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_searchuser", - "community": 103, + "community": 175, "norm_label": ".searchuser()" }, { @@ -27852,7 +27862,7 @@ "source_location": "L77", "_origin": "ast", "id": "src_patient_controller_patientcontroller_php_request", - "community": 103, + "community": 175, "norm_label": "request" }, { @@ -27862,7 +27872,7 @@ "source_location": "L77", "_origin": "ast", "id": "src_patient_controller_patientcontroller_php_jsonresponse", - "community": 103, + "community": 175, "norm_label": "jsonresponse" }, { @@ -27872,7 +27882,7 @@ "source_location": "L101", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_list", - "community": 103, + "community": 175, "norm_label": ".list()" }, { @@ -27882,7 +27892,7 @@ "source_location": "L122", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_create", - "community": 103, + "community": 175, "norm_label": ".create()" }, { @@ -27892,7 +27902,7 @@ "source_location": "L189", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_show", - "community": 103, + "community": 175, "norm_label": ".show()" }, { @@ -27902,7 +27912,7 @@ "source_location": "L206", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_sessions", - "community": 103, + "community": 175, "norm_label": ".sessions()" }, { @@ -27912,7 +27922,7 @@ "source_location": "L230", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_createsession", - "community": 103, + "community": 175, "norm_label": ".createsession()" }, { @@ -27922,7 +27932,7 @@ "source_location": "L255", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_autocreateclaim", - "community": 103, + "community": 175, "norm_label": ".autocreateclaim()" }, { @@ -27932,7 +27942,7 @@ "source_location": "L255", "_origin": "ast", "id": "src_patient_controller_patientcontroller_php_patientsession", - "community": 103, + "community": 175, "norm_label": "patientsession" }, { @@ -27942,7 +27952,7 @@ "source_location": "L273", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_updatesession", - "community": 103, + "community": 175, "norm_label": ".updatesession()" }, { @@ -27952,7 +27962,7 @@ "source_location": "L294", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_resolveentity", - "community": 103, + "community": 175, "norm_label": ".resolveentity()" }, { @@ -27962,7 +27972,7 @@ "source_location": "L329", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_assertpatientgate", - "community": 103, + "community": 175, "norm_label": ".assertpatientgate()" }, { @@ -27972,7 +27982,7 @@ "source_location": "L340", "_origin": "ast", "id": "controller_patientcontroller_patientcontroller_ownsrecord", - "community": 103, + "community": 175, "norm_label": ".ownsrecord()" }, { @@ -29202,7 +29212,7 @@ "source_location": "L613", "_origin": "ast", "id": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface", - "community": 15, + "community": 351, "norm_label": "paymentgatewayinterface" }, { @@ -29582,7 +29592,7 @@ "source_location": "L1", "_origin": "ast", "id": "gateway_mellatgateway", - "community": 372, + "community": 482, "norm_label": "mellatgateway.php" }, { @@ -29592,7 +29602,7 @@ "source_location": "L9", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway", - "community": 351, + "community": 206, "norm_label": "mellatgateway" }, { @@ -29602,7 +29612,7 @@ "source_location": "L13", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_construct", - "community": 351, + "community": 206, "norm_label": ".__construct()" }, { @@ -29612,7 +29622,7 @@ "source_location": "L22", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_getname", - "community": 351, + "community": 206, "norm_label": ".getname()" }, { @@ -29622,7 +29632,7 @@ "source_location": "L24", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_isconfigured", - "community": 351, + "community": 206, "norm_label": ".isconfigured()" }, { @@ -29632,7 +29642,7 @@ "source_location": "L31", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_cfg", - "community": 351, + "community": 206, "norm_label": ".cfg()" }, { @@ -29642,7 +29652,7 @@ "source_location": "L36", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_initiate", - "community": 351, + "community": 206, "norm_label": ".initiate()" }, { @@ -29652,7 +29662,7 @@ "source_location": "L36", "_origin": "ast", "id": "src_payment_gateway_mellatgateway_php_paymentinitresult", - "community": 351, + "community": 206, "norm_label": "paymentinitresult" }, { @@ -29662,7 +29672,7 @@ "source_location": "L63", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_verify", - "community": 351, + "community": 206, "norm_label": ".verify()" }, { @@ -29672,7 +29682,7 @@ "source_location": "L63", "_origin": "ast", "id": "src_payment_gateway_mellatgateway_php_paymentverifyresult", - "community": 351, + "community": 206, "norm_label": "paymentverifyresult" }, { @@ -29682,7 +29692,7 @@ "source_location": "L97", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_buildrequestpayload", - "community": 351, + "community": 206, "norm_label": ".buildrequestpayload()" }, { @@ -29692,7 +29702,7 @@ "source_location": "L123", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_buildverifypayload", - "community": 351, + "community": 206, "norm_label": ".buildverifypayload()" }, { @@ -29702,7 +29712,7 @@ "source_location": "L145", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_parserescode", - "community": 351, + "community": 206, "norm_label": ".parserescode()" }, { @@ -29712,7 +29722,7 @@ "source_location": "L152", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_parserefid", - "community": 351, + "community": 206, "norm_label": ".parserefid()" }, { @@ -29742,7 +29752,7 @@ "source_location": "L1", "_origin": "ast", "id": "gateway_mockgateway", - "community": 15, + "community": 351, "norm_label": "mockgateway.php" }, { @@ -29752,7 +29762,7 @@ "source_location": "L5", "_origin": "ast", "id": "gateway_mockgateway_mockgateway", - "community": 15, + "community": 351, "norm_label": "mockgateway" }, { @@ -29762,7 +29772,7 @@ "source_location": "L7", "_origin": "ast", "id": "gateway_mockgateway_mockgateway_getname", - "community": 15, + "community": 351, "norm_label": ".getname()" }, { @@ -29772,7 +29782,7 @@ "source_location": "L9", "_origin": "ast", "id": "gateway_mockgateway_mockgateway_isconfigured", - "community": 15, + "community": 351, "norm_label": ".isconfigured()" }, { @@ -29782,7 +29792,7 @@ "source_location": "L11", "_origin": "ast", "id": "gateway_mockgateway_mockgateway_initiate", - "community": 15, + "community": 351, "norm_label": ".initiate()" }, { @@ -29792,7 +29802,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_payment_gateway_mockgateway_php_paymentinitresult", - "community": 15, + "community": 351, "norm_label": "paymentinitresult" }, { @@ -29802,7 +29812,7 @@ "source_location": "L17", "_origin": "ast", "id": "gateway_mockgateway_mockgateway_verify", - "community": 15, + "community": 351, "norm_label": ".verify()" }, { @@ -29812,7 +29822,7 @@ "source_location": "L17", "_origin": "ast", "id": "src_payment_gateway_mockgateway_php_paymentverifyresult", - "community": 15, + "community": 351, "norm_label": "paymentverifyresult" }, { @@ -29952,7 +29962,7 @@ "source_location": "L1", "_origin": "ast", "id": "gateway_sepgateway", - "community": 372, + "community": 352, "norm_label": "sepgateway.php" }, { @@ -31172,7 +31182,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_raterepository", - "community": 456, + "community": 22, "norm_label": "raterepository.php" }, { @@ -31182,7 +31192,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_raterepository_raterepository", - "community": 456, + "community": 22, "norm_label": "raterepository" }, { @@ -31192,7 +31202,7 @@ "source_location": "L13", "_origin": "ast", "id": "repository_raterepository_raterepository_construct", - "community": 456, + "community": 22, "norm_label": ".__construct()" }, { @@ -31202,7 +31212,7 @@ "source_location": "L13", "_origin": "ast", "id": "src_rating_repository_raterepository_php_managerregistry", - "community": 456, + "community": 22, "norm_label": "managerregistry" }, { @@ -31212,7 +31222,7 @@ "source_location": "L15", "_origin": "ast", "id": "repository_raterepository_raterepository_findbyuseranddoctor", - "community": 456, + "community": 22, "norm_label": ".findbyuseranddoctor()" }, { @@ -31222,7 +31232,7 @@ "source_location": "L15", "_origin": "ast", "id": "src_rating_repository_raterepository_php_user", - "community": 456, + "community": 22, "norm_label": "user" }, { @@ -31232,7 +31242,7 @@ "source_location": "L15", "_origin": "ast", "id": "src_rating_repository_raterepository_php_doctor", - "community": 456, + "community": 22, "norm_label": "doctor" }, { @@ -31242,7 +31252,7 @@ "source_location": "L15", "_origin": "ast", "id": "rate", - "community": 456, + "community": 22, "norm_label": "rate" }, { @@ -31252,7 +31262,7 @@ "source_location": "L22", "_origin": "ast", "id": "repository_raterepository_raterepository_getaggregate", - "community": 456, + "community": 22, "norm_label": ".getaggregate()" }, { @@ -31262,7 +31272,7 @@ "source_location": "L53", "_origin": "ast", "id": "repository_raterepository_raterepository_save", - "community": 456, + "community": 22, "norm_label": ".save()" }, { @@ -31272,7 +31282,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_representationactioncontroller", - "community": 71, + "community": 20, "norm_label": "representationactioncontroller.php" }, { @@ -31282,7 +31292,7 @@ "source_location": "L27", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller", - "community": 71, + "community": 20, "norm_label": "representationactioncontroller" }, { @@ -31292,7 +31302,7 @@ "source_location": "L31", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_construct", - "community": 71, + "community": 20, "norm_label": ".__construct()" }, { @@ -31302,7 +31312,7 @@ "source_location": "L41", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_me", - "community": 71, + "community": 20, "norm_label": ".me()" }, { @@ -31312,7 +31322,7 @@ "source_location": "L41", "_origin": "ast", "id": "src_representation_controller_representationactioncontroller_php_user", - "community": 71, + "community": 20, "norm_label": "user" }, { @@ -31322,7 +31332,7 @@ "source_location": "L41", "_origin": "ast", "id": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "community": 71, + "community": 20, "norm_label": "jsonresponse" }, { @@ -31332,7 +31342,7 @@ "source_location": "L62", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_repprofile", - "community": 71, + "community": 20, "norm_label": ".repprofile()" }, { @@ -31342,7 +31352,7 @@ "source_location": "L62", "_origin": "ast", "id": "src_representation_controller_representationactioncontroller_php_representation", - "community": 71, + "community": 20, "norm_label": "representation" }, { @@ -31352,7 +31362,7 @@ "source_location": "L70", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", - "community": 71, + "community": 20, "norm_label": ".verifynationalcode()" }, { @@ -31362,7 +31372,7 @@ "source_location": "L70", "_origin": "ast", "id": "src_representation_controller_representationactioncontroller_php_request", - "community": 71, + "community": 20, "norm_label": "request" }, { @@ -31372,7 +31382,7 @@ "source_location": "L114", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_addiban", - "community": 71, + "community": 20, "norm_label": ".addiban()" }, { @@ -31382,7 +31392,7 @@ "source_location": "L178", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_removeiban", - "community": 71, + "community": 20, "norm_label": ".removeiban()" }, { @@ -31392,7 +31402,7 @@ "source_location": "L200", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", - "community": 71, + "community": 20, "norm_label": ".normalizeiban()" }, { @@ -31402,7 +31412,7 @@ "source_location": "L213", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", - "community": 71, + "community": 20, "norm_label": ".normalizebirthdate()" }, { @@ -31412,7 +31422,7 @@ "source_location": "L231", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_createdoctor", - "community": 71, + "community": 20, "norm_label": ".createdoctor()" }, { @@ -31422,7 +31432,7 @@ "source_location": "L320", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_createclinic", - "community": 71, + "community": 20, "norm_label": ".createclinic()" }, { @@ -31432,7 +31442,7 @@ "source_location": "L399", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_doctors", - "community": 71, + "community": 20, "norm_label": ".doctors()" }, { @@ -31442,7 +31452,7 @@ "source_location": "L456", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_clinics", - "community": 71, + "community": 20, "norm_label": ".clinics()" }, { @@ -31452,7 +31462,7 @@ "source_location": "L509", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_appointments", - "community": 71, + "community": 20, "norm_label": ".appointments()" }, { @@ -31462,7 +31472,7 @@ "source_location": "L587", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_doctorstats", - "community": 71, + "community": 20, "norm_label": ".doctorstats()" }, { @@ -31472,7 +31482,7 @@ "source_location": "L618", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", - "community": 71, + "community": 20, "norm_label": ".toggledoctorstatus()" }, { @@ -31482,7 +31492,7 @@ "source_location": "L649", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", - "community": 71, + "community": 20, "norm_label": ".dashboardsummary()" }, { @@ -31492,7 +31502,7 @@ "source_location": "L700", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", - "community": 71, + "community": 20, "norm_label": ".doctorsperformance()" }, { @@ -31502,7 +31512,7 @@ "source_location": "L771", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_financereport", - "community": 71, + "community": 20, "norm_label": ".financereport()" }, { @@ -31512,7 +31522,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_representationcontroller", - "community": 175, + "community": 122, "norm_label": "representationcontroller.php" }, { @@ -31522,7 +31532,7 @@ "source_location": "L21", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller", - "community": 175, + "community": 122, "norm_label": "representationcontroller" }, { @@ -31532,7 +31542,7 @@ "source_location": "L25", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller_construct", - "community": 175, + "community": 122, "norm_label": ".__construct()" }, { @@ -31542,7 +31552,7 @@ "source_location": "L34", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller_create", - "community": 175, + "community": 122, "norm_label": ".create()" }, { @@ -31552,7 +31562,7 @@ "source_location": "L34", "_origin": "ast", "id": "src_representation_controller_representationcontroller_php_request", - "community": 175, + "community": 122, "norm_label": "request" }, { @@ -31562,7 +31572,7 @@ "source_location": "L34", "_origin": "ast", "id": "src_representation_controller_representationcontroller_php_jsonresponse", - "community": 175, + "community": 122, "norm_label": "jsonresponse" }, { @@ -31572,7 +31582,7 @@ "source_location": "L127", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller_get", - "community": 175, + "community": 122, "norm_label": ".get()" }, { @@ -31582,7 +31592,7 @@ "source_location": "L127", "_origin": "ast", "id": "src_representation_controller_representationcontroller_php_user", - "community": 175, + "community": 122, "norm_label": "user" }, { @@ -31592,7 +31602,7 @@ "source_location": "L165", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller_update", - "community": 175, + "community": 122, "norm_label": ".update()" }, { @@ -31602,7 +31612,7 @@ "source_location": "L243", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller_delete", - "community": 175, + "community": 122, "norm_label": ".delete()" }, { @@ -31612,7 +31622,7 @@ "source_location": "L283", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller_dashboardmonthly", - "community": 175, + "community": 122, "norm_label": ".dashboardmonthly()" }, { @@ -31622,7 +31632,7 @@ "source_location": "L341", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller_dashboardyearly", - "community": 175, + "community": 122, "norm_label": ".dashboardyearly()" }, { @@ -31632,7 +31642,7 @@ "source_location": "L418", "_origin": "ast", "id": "controller_representationcontroller_representationcontroller_buildstats", - "community": 175, + "community": 122, "norm_label": ".buildstats()" }, { @@ -31642,7 +31652,7 @@ "source_location": "L418", "_origin": "ast", "id": "src_representation_controller_representationcontroller_php_representation", - "community": 175, + "community": 122, "norm_label": "representation" }, { @@ -32022,7 +32032,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_jalalidateservice", - "community": 253, + "community": 20, "norm_label": "jalalidateservice.php" }, { @@ -32032,7 +32042,7 @@ "source_location": "L8", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice", - "community": 253, + "community": 20, "norm_label": "jalalidateservice" }, { @@ -32042,7 +32052,7 @@ "source_location": "L10", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice_tojalali", - "community": 253, + "community": 20, "norm_label": ".tojalali()" }, { @@ -32052,7 +32062,7 @@ "source_location": "L10", "_origin": "ast", "id": "datetimeinterface", - "community": 253, + "community": 20, "norm_label": "datetimeinterface" }, { @@ -32062,7 +32072,7 @@ "source_location": "L17", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice_gregoriantojalali", - "community": 253, + "community": 20, "norm_label": ".gregoriantojalali()" }, { @@ -32072,7 +32082,7 @@ "source_location": "L47", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice_formatdatetime", - "community": 253, + "community": 20, "norm_label": ".formatdatetime()" }, { @@ -32082,7 +32092,7 @@ "source_location": "L61", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice_jalaliyear", - "community": 253, + "community": 20, "norm_label": ".jalaliyear()" }, { @@ -32092,7 +32102,7 @@ "source_location": "L70", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice_jalalimonth", - "community": 253, + "community": 20, "norm_label": ".jalalimonth()" }, { @@ -32102,7 +32112,7 @@ "source_location": "L80", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice_jalalimonthrange", - "community": 253, + "community": 20, "norm_label": ".jalalimonthrange()" }, { @@ -32112,7 +32122,7 @@ "source_location": "L93", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice_jalaliyearrange", - "community": 253, + "community": 20, "norm_label": ".jalaliyearrange()" }, { @@ -32122,7 +32132,7 @@ "source_location": "L104", "_origin": "ast", "id": "service_jalalidateservice_jalalidateservice_jalalitogregorian", - "community": 253, + "community": 20, "norm_label": ".jalalitogregorian()" }, { @@ -33762,7 +33772,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_commissionservice", - "community": 405, + "community": 6, "norm_label": "commissionservice.php" }, { @@ -33772,7 +33782,7 @@ "source_location": "L20", "_origin": "ast", "id": "service_commissionservice_commissionservice", - "community": 405, + "community": 6, "norm_label": "commissionservice" }, { @@ -33782,7 +33792,7 @@ "source_location": "L22", "_origin": "ast", "id": "service_commissionservice_commissionservice_construct", - "community": 405, + "community": 6, "norm_label": ".__construct()" }, { @@ -33792,7 +33802,7 @@ "source_location": "L35", "_origin": "ast", "id": "service_commissionservice_commissionservice_processappointment", - "community": 405, + "community": 6, "norm_label": ".processappointment()" }, { @@ -33802,7 +33812,7 @@ "source_location": "L35", "_origin": "ast", "id": "src_settlement_service_commissionservice_php_payment", - "community": 405, + "community": 6, "norm_label": "payment" }, { @@ -33812,7 +33822,7 @@ "source_location": "L56", "_origin": "ast", "id": "service_commissionservice_commissionservice_processsubscription", - "community": 405, + "community": 6, "norm_label": ".processsubscription()" }, { @@ -33822,7 +33832,7 @@ "source_location": "L73", "_origin": "ast", "id": "service_commissionservice_commissionservice_resolverep", - "community": 405, + "community": 6, "norm_label": ".resolverep()" }, { @@ -33832,7 +33842,7 @@ "source_location": "L73", "_origin": "ast", "id": "src_settlement_service_commissionservice_php_representation", - "community": 405, + "community": 6, "norm_label": "representation" }, { @@ -33842,7 +33852,7 @@ "source_location": "L80", "_origin": "ast", "id": "service_commissionservice_commissionservice_settle", - "community": 405, + "community": 6, "norm_label": ".settle()" }, { @@ -33852,7 +33862,7 @@ "source_location": "L1", "_origin": "ast", "id": "constant_errorcodes", - "community": 70, + "community": 169, "norm_label": "errorcodes.php" }, { @@ -33862,7 +33872,7 @@ "source_location": "L5", "_origin": "ast", "id": "constant_errorcodes_errorcodes", - "community": 70, + "community": 169, "norm_label": "errorcodes" }, { @@ -33872,7 +33882,7 @@ "source_location": "L103", "_origin": "ast", "id": "constant_errorcodes_errorcodes_message", - "community": 70, + "community": 169, "norm_label": ".message()" }, { @@ -33952,7 +33962,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_healthcontroller", - "community": 300, + "community": 122, "norm_label": "healthcontroller.php" }, { @@ -33962,7 +33972,7 @@ "source_location": "L10", "_origin": "ast", "id": "controller_healthcontroller_healthcontroller", - "community": 300, + "community": 122, "norm_label": "healthcontroller" }, { @@ -33972,7 +33982,7 @@ "source_location": "L12", "_origin": "ast", "id": "controller_healthcontroller_healthcontroller_construct", - "community": 300, + "community": 122, "norm_label": ".__construct()" }, { @@ -33982,7 +33992,7 @@ "source_location": "L17", "_origin": "ast", "id": "controller_healthcontroller_healthcontroller_invoke", - "community": 300, + "community": 122, "norm_label": ".__invoke()" }, { @@ -33992,7 +34002,7 @@ "source_location": "L17", "_origin": "ast", "id": "src_shared_controller_healthcontroller_php_jsonresponse", - "community": 300, + "community": 122, "norm_label": "jsonresponse" }, { @@ -34312,7 +34322,7 @@ "source_location": "L1", "_origin": "ast", "id": "exception_appexception", - "community": 308, + "community": 275, "norm_label": "appexception.php" }, { @@ -34322,7 +34332,7 @@ "source_location": "L7", "_origin": "ast", "id": "exception_appexception_appexception", - "community": 308, + "community": 275, "norm_label": "appexception" }, { @@ -34332,7 +34342,7 @@ "source_location": "L9", "_origin": "ast", "id": "exception_appexception_appexception_construct", - "community": 308, + "community": 275, "norm_label": ".__construct()" }, { @@ -34342,7 +34352,7 @@ "source_location": "L18", "_origin": "ast", "id": "exception_appexception_appexception_geterrorcode", - "community": 308, + "community": 275, "norm_label": ".geterrorcode()" }, { @@ -34352,7 +34362,7 @@ "source_location": "L19", "_origin": "ast", "id": "exception_appexception_appexception_gethttpstatus", - "community": 308, + "community": 275, "norm_label": ".gethttpstatus()" }, { @@ -34362,7 +34372,7 @@ "source_location": "L20", "_origin": "ast", "id": "exception_appexception_appexception_getfield", - "community": 308, + "community": 275, "norm_label": ".getfield()" }, { @@ -34372,7 +34382,7 @@ "source_location": "L1", "_origin": "ast", "id": "logging_applog", - "community": 401, + "community": 16, "norm_label": "applog.php" }, { @@ -34382,7 +34392,7 @@ "source_location": "L8", "_origin": "ast", "id": "logging_applog_applog", - "community": 401, + "community": 16, "norm_label": "applog" }, { @@ -34392,7 +34402,7 @@ "source_location": "L37", "_origin": "ast", "id": "logging_applog_applog_construct", - "community": 401, + "community": 16, "norm_label": ".__construct()" }, { @@ -34402,7 +34412,7 @@ "source_location": "L47", "_origin": "ast", "id": "logging_applog_applog_toarray", - "community": 401, + "community": 16, "norm_label": ".toarray()" }, { @@ -34552,7 +34562,7 @@ "source_location": "", "_origin": "ast", "id": "loggerinterface", - "community": 372, + "community": 482, "norm_label": "loggerinterface" }, { @@ -34682,7 +34692,7 @@ "source_location": "L1", "_origin": "ast", "id": "logging_logpruneservice", - "community": 16, + "community": 641, "norm_label": "logpruneservice.php" }, { @@ -34692,7 +34702,7 @@ "source_location": "L11", "_origin": "ast", "id": "logging_logpruneservice_logpruneservice", - "community": 16, + "community": 641, "norm_label": "logpruneservice" }, { @@ -34702,7 +34712,7 @@ "source_location": "L13", "_origin": "ast", "id": "logging_logpruneservice_logpruneservice_construct", - "community": 16, + "community": 641, "norm_label": ".__construct()" }, { @@ -34712,7 +34722,7 @@ "source_location": "L19", "_origin": "ast", "id": "logging_logpruneservice_logpruneservice_prunebyretention", - "community": 16, + "community": 641, "norm_label": ".prunebyretention()" }, { @@ -34822,7 +34832,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_apiirservice", - "community": 372, + "community": 482, "norm_label": "apiirservice.php" }, { @@ -34982,7 +34992,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_inputvalidator", - "community": 641, + "community": 20, "norm_label": "inputvalidator.php" }, { @@ -34992,7 +35002,7 @@ "source_location": "L9", "_origin": "ast", "id": "service_inputvalidator_inputvalidator", - "community": 641, + "community": 20, "norm_label": "inputvalidator" }, { @@ -35002,7 +35012,7 @@ "source_location": "L11", "_origin": "ast", "id": "service_inputvalidator_inputvalidator_isvalidiranmobile", - "community": 641, + "community": 20, "norm_label": ".isvalidiranmobile()" }, { @@ -35012,7 +35022,7 @@ "source_location": "L17", "_origin": "ast", "id": "service_inputvalidator_inputvalidator_isvalidirannationalcode", - "community": 641, + "community": 20, "norm_label": ".isvalidirannationalcode()" }, { @@ -35022,7 +35032,7 @@ "source_location": "L27", "_origin": "ast", "id": "service_inputvalidator_inputvalidator_maskmobile", - "community": 641, + "community": 20, "norm_label": ".maskmobile()" }, { @@ -35032,7 +35042,7 @@ "source_location": "L37", "_origin": "ast", "id": "service_inputvalidator_inputvalidator_toenglishdigits", - "community": 641, + "community": 20, "norm_label": ".toenglishdigits()" }, { @@ -35252,7 +35262,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_smsmessagecontroller", - "community": 542, + "community": 108, "norm_label": "smsmessagecontroller.php" }, { @@ -35262,7 +35272,7 @@ "source_location": "L18", "_origin": "ast", "id": "controller_smsmessagecontroller_smsmessagecontroller", - "community": 542, + "community": 108, "norm_label": "smsmessagecontroller" }, { @@ -35272,7 +35282,7 @@ "source_location": "L22", "_origin": "ast", "id": "controller_smsmessagecontroller_smsmessagecontroller_construct", - "community": 542, + "community": 108, "norm_label": ".__construct()" }, { @@ -35282,7 +35292,7 @@ "source_location": "L26", "_origin": "ast", "id": "controller_smsmessagecontroller_smsmessagecontroller_list", - "community": 542, + "community": 108, "norm_label": ".list()" }, { @@ -35292,7 +35302,7 @@ "source_location": "L26", "_origin": "ast", "id": "src_sms_controller_smsmessagecontroller_php_jsonresponse", - "community": 542, + "community": 108, "norm_label": "jsonresponse" }, { @@ -35302,7 +35312,7 @@ "source_location": "L55", "_origin": "ast", "id": "controller_smsmessagecontroller_smsmessagecontroller_update", - "community": 542, + "community": 108, "norm_label": ".update()" }, { @@ -35312,7 +35322,7 @@ "source_location": "L55", "_origin": "ast", "id": "src_sms_controller_smsmessagecontroller_php_request", - "community": 542, + "community": 108, "norm_label": "request" }, { @@ -36472,7 +36482,7 @@ "source_location": "L1", "_origin": "ast", "id": "provider_ranginehprovider", - "community": 372, + "community": 407, "norm_label": "ranginehprovider.php" }, { @@ -36482,7 +36492,7 @@ "source_location": "L8", "_origin": "ast", "id": "provider_ranginehprovider_ranginehprovider", - "community": 372, + "community": 407, "norm_label": "ranginehprovider" }, { @@ -36492,7 +36502,7 @@ "source_location": "L12", "_origin": "ast", "id": "provider_ranginehprovider_ranginehprovider_construct", - "community": 372, + "community": 407, "norm_label": ".__construct()" }, { @@ -36502,7 +36512,7 @@ "source_location": "L21", "_origin": "ast", "id": "provider_ranginehprovider_ranginehprovider_getname", - "community": 372, + "community": 407, "norm_label": ".getname()" }, { @@ -36512,7 +36522,7 @@ "source_location": "L23", "_origin": "ast", "id": "provider_ranginehprovider_ranginehprovider_send", - "community": 372, + "community": 407, "norm_label": ".send()" }, { @@ -36522,7 +36532,7 @@ "source_location": "L38", "_origin": "ast", "id": "provider_ranginehprovider_ranginehprovider_sendtemplate", - "community": 372, + "community": 407, "norm_label": ".sendtemplate()" }, { @@ -36632,7 +36642,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_smsmessagetemplaterepository", - "community": 525, + "community": 205, "norm_label": "smsmessagetemplaterepository.php" }, { @@ -36642,7 +36652,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository", - "community": 525, + "community": 205, "norm_label": "smsmessagetemplaterepository" }, { @@ -36652,7 +36662,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_construct", - "community": 525, + "community": 205, "norm_label": ".__construct()" }, { @@ -36662,7 +36672,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_sms_repository_smsmessagetemplaterepository_php_managerregistry", - "community": 525, + "community": 205, "norm_label": "managerregistry" }, { @@ -36672,7 +36682,7 @@ "source_location": "L16", "_origin": "ast", "id": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_findbytag", - "community": 525, + "community": 205, "norm_label": ".findbytag()" }, { @@ -36682,7 +36692,7 @@ "source_location": "L16", "_origin": "ast", "id": "smsmessagetemplate", - "community": 525, + "community": 205, "norm_label": "smsmessagetemplate" }, { @@ -36692,7 +36702,7 @@ "source_location": "L21", "_origin": "ast", "id": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_save", - "community": 525, + "community": 205, "norm_label": ".save()" }, { @@ -36702,7 +36712,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_smssettingsrepository", - "community": 53, + "community": 405, "norm_label": "smssettingsrepository.php" }, { @@ -36712,7 +36722,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_smssettingsrepository_smssettingsrepository", - "community": 53, + "community": 405, "norm_label": "smssettingsrepository" }, { @@ -36722,7 +36732,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_smssettingsrepository_smssettingsrepository_construct", - "community": 53, + "community": 405, "norm_label": ".__construct()" }, { @@ -36732,7 +36742,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_sms_repository_smssettingsrepository_php_managerregistry", - "community": 53, + "community": 405, "norm_label": "managerregistry" }, { @@ -36742,7 +36752,7 @@ "source_location": "L16", "_origin": "ast", "id": "repository_smssettingsrepository_smssettingsrepository_findbyentity", - "community": 53, + "community": 405, "norm_label": ".findbyentity()" }, { @@ -36752,7 +36762,7 @@ "source_location": "L16", "_origin": "ast", "id": "smssettings", - "community": 53, + "community": 405, "norm_label": "smssettings" }, { @@ -36762,7 +36772,7 @@ "source_location": "L21", "_origin": "ast", "id": "repository_smssettingsrepository_smssettingsrepository_save", - "community": 53, + "community": 405, "norm_label": ".save()" }, { @@ -37152,7 +37162,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_smstextresolver", - "community": 525, + "community": 205, "norm_label": "smstextresolver.php" }, { @@ -37162,7 +37172,7 @@ "source_location": "L12", "_origin": "ast", "id": "service_smstextresolver_smstextresolver", - "community": 525, + "community": 205, "norm_label": "smstextresolver" }, { @@ -37172,7 +37182,7 @@ "source_location": "L14", "_origin": "ast", "id": "service_smstextresolver_smstextresolver_construct", - "community": 525, + "community": 205, "norm_label": ".__construct()" }, { @@ -37182,7 +37192,7 @@ "source_location": "L19", "_origin": "ast", "id": "service_smstextresolver_smstextresolver_resolve", - "community": 525, + "community": 205, "norm_label": ".resolve()" }, { @@ -40552,7 +40562,7 @@ "source_location": "L21", "_origin": "ast", "id": "entitymanagerinterface", - "community": 300, + "community": 122, "norm_label": "entitymanagerinterface" }, { @@ -40562,7 +40572,7 @@ "source_location": "L23", "_origin": "ast", "id": "tests_apitestcase_apitestcase_setup", - "community": 300, + "community": 122, "norm_label": ".setup()" }, { @@ -40802,7 +40812,7 @@ "source_location": "L1", "_origin": "ast", "id": "appointment_dateoverrideownershiptest", - "community": 86, + "community": 41, "norm_label": "dateoverrideownershiptest.php" }, { @@ -40812,7 +40822,7 @@ "source_location": "L12", "_origin": "ast", "id": "appointment_dateoverrideownershiptest_dateoverrideownershiptest", - "community": 86, + "community": 41, "norm_label": "dateoverrideownershiptest" }, { @@ -40822,7 +40832,7 @@ "source_location": "L14", "_origin": "ast", "id": "appointment_dateoverrideownershiptest_dateoverrideownershiptest_makeoverride", - "community": 86, + "community": 41, "norm_label": ".makeoverride()" }, { @@ -40832,7 +40842,7 @@ "source_location": "L26", "_origin": "ast", "id": "appointment_dateoverrideownershiptest_dateoverrideownershiptest_testownercanread", - "community": 86, + "community": 41, "norm_label": ".testownercanread()" }, { @@ -40842,7 +40852,7 @@ "source_location": "L33", "_origin": "ast", "id": "appointment_dateoverrideownershiptest_dateoverrideownershiptest_testotheruserisforbidden", - "community": 86, + "community": 41, "norm_label": ".testotheruserisforbidden()" }, { @@ -42042,7 +42052,7 @@ "source_location": "L1", "_origin": "ast", "id": "rating_commentlistnplusonetest", - "community": 651, + "community": 525, "norm_label": "commentlistnplusonetest.php" }, { @@ -42052,7 +42062,7 @@ "source_location": "L17", "_origin": "ast", "id": "rating_commentlistnplusonetest_commentlistnplusonetest", - "community": 651, + "community": 525, "norm_label": "commentlistnplusonetest" }, { @@ -42062,7 +42072,7 @@ "source_location": "L19", "_origin": "ast", "id": "rating_commentlistnplusonetest_commentlistnplusonetest_testtreeisserializedcorrectly", - "community": 651, + "community": 525, "norm_label": ".testtreeisserializedcorrectly()" }, { @@ -42072,7 +42082,7 @@ "source_location": "L52", "_origin": "ast", "id": "rating_commentlistnplusonetest_commentlistnplusonetest_jsonget", - "community": 651, + "community": 525, "norm_label": ".jsonget()" }, { @@ -42082,7 +42092,7 @@ "source_location": "L64", "_origin": "ast", "id": "rating_commentlistnplusonetest_commentlistnplusonetest_testrepositoryfetchjoinscollections", - "community": 651, + "community": 525, "norm_label": ".testrepositoryfetchjoinscollections()" }, { @@ -42212,7 +42222,7 @@ "source_location": "L1", "_origin": "ast", "id": "secretary_secretarylistnplusonetest", - "community": 655, + "community": 86, "norm_label": "secretarylistnplusonetest.php" }, { @@ -42222,7 +42232,7 @@ "source_location": "L13", "_origin": "ast", "id": "secretary_secretarylistnplusonetest_secretarylistnplusonetest", - "community": 655, + "community": 86, "norm_label": "secretarylistnplusonetest" }, { @@ -42232,7 +42242,7 @@ "source_location": "L16", "_origin": "ast", "id": "secretary_secretarylistnplusonetest_secretarylistnplusonetest_makedoctorwithsecretaries", - "community": 655, + "community": 86, "norm_label": ".makedoctorwithsecretaries()" }, { @@ -42242,7 +42252,7 @@ "source_location": "L32", "_origin": "ast", "id": "secretary_secretarylistnplusonetest_secretarylistnplusonetest_testquerycountdoesnotgrowwithsecretarycount", - "community": 655, + "community": 86, "norm_label": ".testquerycountdoesnotgrowwithsecretarycount()" }, { @@ -42645,6 +42655,136 @@ "community": 621, "norm_label": "encore" }, + { + "label": "admin-ios-safari-css-fallbacks.md", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks", + "community": 70, + "norm_label": "admin-ios-safari-css-fallbacks.md" + }, + { + "label": "\u0631\u0641\u0639 \u0628\u0647\u0645\u200c\u0631\u06cc\u062e\u062a\u06af\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 \u0631\u0648\u06cc iPhone 8 (Safari/Chrome iOS)", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", + "community": 70, + "norm_label": "\u0631\u0641\u0639 \u0628\u0647\u0645\u200c\u0631\u06cc\u062e\u062a\u06af\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 \u0631\u0648\u06cc iphone 8 (safari/chrome ios)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u067e\u0631\u0648\u0698\u0647", + "community": 70, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u0632\u0645\u06cc\u0646\u0647", + "community": 70, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 70, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L23", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 70, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L31", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 70, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L68", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", + "community": 70, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. fallback \u0647\u06af\u0632 sRGB \u0628\u0631\u0627\u06cc \u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0631\u0646\u06af\u0650 \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 oklch", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L70", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u06f1_fallback_\u0647\u06af\u0632_srgb_\u0628\u0631\u0627\u06cc_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0631\u0646\u06af_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_oklch", + "community": 70, + "norm_label": "\u06f1. fallback \u0647\u06af\u0632 srgb \u0628\u0631\u0627\u06cc \u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0631\u0646\u06af \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 oklch" + }, + { + "label": "\u06f2. fallback \u0628\u0631\u0627\u06cc color-mix \u062f\u0631 \u0642\u0648\u0627\u0646\u06cc\u0646 inline", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L97", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u06f2_fallback_\u0628\u0631\u0627\u06cc_color_mix_\u062f\u0631_\u0642\u0648\u0627\u0646\u06cc\u0646_inline", + "community": 70, + "norm_label": "\u06f2. fallback \u0628\u0631\u0627\u06cc color-mix \u062f\u0631 \u0642\u0648\u0627\u0646\u06cc\u0646 inline" + }, + { + "label": "\u06f3. \u062a\u0635\u0645\u06cc\u0645 \u062f\u0631\u0628\u0627\u0631\u0647 Tailwind v4", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L119", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u06f3_\u062a\u0635\u0645\u06cc\u0645_\u062f\u0631\u0628\u0627\u0631\u0647_tailwind_v4", + "community": 70, + "norm_label": "\u06f3. \u062a\u0635\u0645\u06cc\u0645 \u062f\u0631\u0628\u0627\u0631\u0647 tailwind v4" + }, + { + "label": "\u06f4. \u062a\u0633\u062a", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L127", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u06f4_\u062a\u0633\u062a", + "community": 70, + "norm_label": "\u06f4. \u062a\u0633\u062a" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L133", + "_origin": "ast", + "id": "prompt_admin_ios_safari_css_fallbacks_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 70, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, { "label": "admin-pwa.md", "file_type": "document", @@ -60492,7 +60632,7 @@ "source_location": "L2643", "_origin": "ast", "id": "docs_clinicpro_manual_v2_29_get_clinic_list", - "community": 304, + "community": 649, "norm_label": "29. \ud83d\udfe2 `get` clinic list \ud83c\udd95" }, { @@ -60502,7 +60642,7 @@ "source_location": "L2653", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2653", - "community": 304, + "community": 649, "norm_label": "\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc query" }, { @@ -60512,7 +60652,7 @@ "source_location": "L2664", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2664", - "community": 304, + "community": 649, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -60542,7 +60682,7 @@ "source_location": "L3011", "_origin": "ast", "id": "docs_clinicpro_manual_v2_31_patch_patch", - "community": 649, + "community": 439, "norm_label": "31. \ud83d\udfe1 `patch` patch" }, { @@ -60552,7 +60692,7 @@ "source_location": "L3021", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3021", - "community": 649, + "community": 439, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -60562,7 +60702,7 @@ "source_location": "L3027", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_3027", - "community": 649, + "community": 439, "norm_label": "request body" }, { @@ -60572,7 +60712,7 @@ "source_location": "L3044", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3044", - "community": 649, + "community": 439, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -60582,7 +60722,7 @@ "source_location": "L3067", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3067", - "community": 649, + "community": 439, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -60592,7 +60732,7 @@ "source_location": "L3075", "_origin": "ast", "id": "docs_clinicpro_manual_v2_32_post_post", - "community": 650, + "community": 456, "norm_label": "32. \ud83d\udd35 `post` post" }, { @@ -60602,7 +60742,7 @@ "source_location": "L3085", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3085", - "community": 650, + "community": 456, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -60612,7 +60752,7 @@ "source_location": "L3091", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_3091", - "community": 650, + "community": 456, "norm_label": "request body" }, { @@ -60622,7 +60762,7 @@ "source_location": "L3110", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3110", - "community": 650, + "community": 456, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -60632,7 +60772,7 @@ "source_location": "L3145", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3145", - "community": 650, + "community": 456, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -60642,7 +60782,7 @@ "source_location": "L3153", "_origin": "ast", "id": "docs_clinicpro_manual_v2_33_post_image_clinic", - "community": 681, + "community": 304, "norm_label": "33. \ud83d\udd35 `post` image_clinic" }, { @@ -60652,7 +60792,7 @@ "source_location": "L3161", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3161", - "community": 681, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -60662,7 +60802,7 @@ "source_location": "L3169", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3169", - "community": 681, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -60672,7 +60812,7 @@ "source_location": "L3177", "_origin": "ast", "id": "docs_clinicpro_manual_v2_34_post_image_logo", - "community": 682, + "community": 650, "norm_label": "34. \ud83d\udd35 `post` image logo" }, { @@ -60682,7 +60822,7 @@ "source_location": "L3185", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3185", - "community": 682, + "community": 650, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -60692,7 +60832,7 @@ "source_location": "L3193", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3193", - "community": 682, + "community": 650, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -60752,7 +60892,7 @@ "source_location": "L3250", "_origin": "ast", "id": "docs_clinicpro_manual_v2_36_get_get_my_rate", - "community": 304, + "community": 651, "norm_label": "36. \ud83d\udfe2 `get` get my rate" }, { @@ -60762,7 +60902,7 @@ "source_location": "L3260", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3260", - "community": 304, + "community": 651, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -60772,7 +60912,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3267", - "community": 304, + "community": 651, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -60832,7 +60972,7 @@ "source_location": "L3324", "_origin": "ast", "id": "docs_clinicpro_manual_v2_38_get_unapproved_comments", - "community": 653, + "community": 542, "norm_label": "38. \ud83d\udfe2 `get` unapproved comments" }, { @@ -60842,7 +60982,7 @@ "source_location": "L3332", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3332", - "community": 653, + "community": 542, "norm_label": "\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc query" }, { @@ -60852,7 +60992,7 @@ "source_location": "L3339", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3339", - "community": 653, + "community": 542, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -60862,7 +61002,7 @@ "source_location": "L3346", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3346", - "community": 653, + "community": 542, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -61002,7 +61142,7 @@ "source_location": "L3461", "_origin": "ast", "id": "docs_clinicpro_manual_v2_42_delete_delete", - "community": 683, + "community": 653, "norm_label": "42. \ud83d\udd34 `delete` delete" }, { @@ -61012,7 +61152,7 @@ "source_location": "L3469", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3469", - "community": 683, + "community": 653, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -61022,7 +61162,7 @@ "source_location": "L3476", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3476", - "community": 683, + "community": 653, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -61032,7 +61172,7 @@ "source_location": "L3484", "_origin": "ast", "id": "docs_clinicpro_manual_v2_43_get_get", - "community": 684, + "community": 304, "norm_label": "43. \ud83d\udfe2 `get` get" }, { @@ -61042,7 +61182,7 @@ "source_location": "L3492", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3492", - "community": 684, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -61052,7 +61192,7 @@ "source_location": "L3498", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3498", - "community": 684, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -61062,7 +61202,7 @@ "source_location": "L3506", "_origin": "ast", "id": "docs_clinicpro_manual_v2_44_get_list_comment", - "community": 677, + "community": 602, "norm_label": "44. \ud83d\udfe2 `get` list comment" }, { @@ -61072,7 +61212,7 @@ "source_location": "L3514", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3514", - "community": 677, + "community": 602, "norm_label": "\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc query" }, { @@ -61082,7 +61222,7 @@ "source_location": "L3521", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3521", - "community": 677, + "community": 602, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -61092,7 +61232,7 @@ "source_location": "L3528", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3528", - "community": 677, + "community": 602, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -61102,7 +61242,7 @@ "source_location": "L3536", "_origin": "ast", "id": "docs_clinicpro_manual_v2_45_post_post", - "community": 678, + "community": 625, "norm_label": "45. \ud83d\udd35 `post` post" }, { @@ -61112,7 +61252,7 @@ "source_location": "L3544", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3544", - "community": 678, + "community": 625, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -61122,7 +61262,7 @@ "source_location": "L3551", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3551", - "community": 678, + "community": 625, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -61132,7 +61272,7 @@ "source_location": "L3557", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3557", - "community": 678, + "community": 625, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -61142,7 +61282,7 @@ "source_location": "L3565", "_origin": "ast", "id": "docs_clinicpro_manual_v2_46_patch_patch", - "community": 680, + "community": 635, "norm_label": "46. \ud83d\udfe1 `patch` patch" }, { @@ -61152,7 +61292,7 @@ "source_location": "L3573", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3573", - "community": 680, + "community": 635, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -61162,7 +61302,7 @@ "source_location": "L3580", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3580", - "community": 680, + "community": 635, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -61172,7 +61312,7 @@ "source_location": "L3586", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3586", - "community": 680, + "community": 635, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -61712,7 +61852,7 @@ "source_location": "L3994", "_origin": "ast", "id": "docs_clinicpro_manual_v2_61_post_post", - "community": 664, + "community": 27, "norm_label": "61. \ud83d\udd35 `post` post" }, { @@ -61722,7 +61862,7 @@ "source_location": "L4002", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4002", - "community": 664, + "community": 27, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -61732,7 +61872,7 @@ "source_location": "L4009", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_4009", - "community": 664, + "community": 27, "norm_label": "request body" }, { @@ -61742,7 +61882,7 @@ "source_location": "L4016", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4016", - "community": 664, + "community": 27, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -61752,7 +61892,7 @@ "source_location": "L4025", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4025", - "community": 664, + "community": 27, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -63542,7 +63682,7 @@ "source_location": "L38", "_origin": "ast", "id": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "community": 500, + "community": 459, "norm_label": "\u0627\u067e\u06cc\u06a9\u200c\u0647\u0627" }, { @@ -65802,7 +65942,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_appointment_settings", - "community": 439, + "community": 202, "norm_label": "appointment-settings.md" }, { @@ -65812,7 +65952,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_appointment_settings_appointment_settings_api", - "community": 439, + "community": 202, "norm_label": "appointment settings api" }, { @@ -66262,7 +66402,7 @@ "source_location": "L547", "_origin": "ast", "id": "api_appointment_settings_slot_calculation_logic_reference", - "community": 439, + "community": 202, "norm_label": "slot calculation logic (reference)" }, { @@ -66272,7 +66412,7 @@ "source_location": "L572", "_origin": "ast", "id": "api_appointment_settings_available_locations", - "community": 439, + "community": 202, "norm_label": "available locations" }, { @@ -66282,7 +66422,7 @@ "source_location": "L574", "_origin": "ast", "id": "api_appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid", - "community": 439, + "community": 202, "norm_label": "`get /api/v1/appointment-settings/available-locations/{doctoruuid}`" }, { @@ -66292,7 +66432,7 @@ "source_location": "L580", "_origin": "ast", "id": "api_appointment_settings_response_200_580", - "community": 439, + "community": 202, "norm_label": "response `200`" }, { @@ -66302,7 +66442,7 @@ "source_location": "L623", "_origin": "ast", "id": "api_appointment_settings_errors_623", - "community": 439, + "community": 202, "norm_label": "errors" }, { @@ -69072,7 +69212,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_doctor_service", - "community": 274, + "community": 92, "norm_label": "doctor-service.md" }, { @@ -69842,7 +69982,7 @@ "source_location": "L47", "_origin": "ast", "id": "api_insurance_get_api_v1_admin_insurances", - "community": 673, + "community": 228, "norm_label": "get `/api/v1/admin/insurances`" }, { @@ -69852,7 +69992,7 @@ "source_location": "L53", "_origin": "ast", "id": "api_insurance_query_parameters_53", - "community": 673, + "community": 228, "norm_label": "query parameters" }, { @@ -69862,7 +70002,7 @@ "source_location": "L61", "_origin": "ast", "id": "api_insurance_response_200_61", - "community": 673, + "community": 228, "norm_label": "response `200`" }, { @@ -69872,7 +70012,7 @@ "source_location": "L70", "_origin": "ast", "id": "api_insurance_errors", - "community": 673, + "community": 228, "norm_label": "errors" }, { @@ -70012,7 +70152,7 @@ "source_location": "L180", "_origin": "ast", "id": "api_insurance_post_api_v1_insurance", - "community": 674, + "community": 228, "norm_label": "post `/api/v1/insurance/`" }, { @@ -70022,7 +70162,7 @@ "source_location": "L186", "_origin": "ast", "id": "api_insurance_request_body_application_json_186", - "community": 674, + "community": 228, "norm_label": "request body (`application/json`)" }, { @@ -70032,7 +70172,7 @@ "source_location": "L201", "_origin": "ast", "id": "api_insurance_response_201_201", - "community": 674, + "community": 228, "norm_label": "response `201`" }, { @@ -70042,7 +70182,7 @@ "source_location": "L214", "_origin": "ast", "id": "api_insurance_errors_214", - "community": 674, + "community": 228, "norm_label": "errors" }, { @@ -70072,7 +70212,7 @@ "source_location": "L235", "_origin": "ast", "id": "api_insurance_patch_api_v1_insurance_id", - "community": 228, + "community": 372, "norm_label": "patch `/api/v1/insurance/{id}`" }, { @@ -70082,7 +70222,7 @@ "source_location": "L241", "_origin": "ast", "id": "api_insurance_request_body", - "community": 228, + "community": 372, "norm_label": "request body" }, { @@ -70092,7 +70232,7 @@ "source_location": "L246", "_origin": "ast", "id": "api_insurance_response_200_246", - "community": 228, + "community": 372, "norm_label": "response `200`" }, { @@ -70102,7 +70242,7 @@ "source_location": "L249", "_origin": "ast", "id": "api_insurance_errors_249", - "community": 228, + "community": 372, "norm_label": "errors" }, { @@ -73822,7 +73962,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_tag", - "community": 274, + "community": 102, "norm_label": "tag.md" }, { @@ -99294,9 +99434,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_field", - "confidence_score": 1.0 + "target": "pages_settingspage_field" }, { "relation": "contains", @@ -99324,9 +99464,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_sectiondef", - "confidence_score": 1.0 + "target": "pages_settingspage_sectiondef" }, { "relation": "contains", @@ -99334,9 +99474,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_sectionhead", - "confidence_score": 1.0 + "target": "pages_settingspage_sectionhead" }, { "relation": "contains", @@ -99344,9 +99484,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_sectionid", - "confidence_score": 1.0 + "target": "pages_settingspage_sectionid" }, { "relation": "contains", @@ -99354,9 +99494,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_sections", - "confidence_score": 1.0 + "target": "pages_settingspage_sections" }, { "relation": "contains", @@ -99394,9 +99534,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_toform", - "confidence_score": 1.0 + "target": "pages_settingspage_toform" }, { "relation": "contains", @@ -99404,9 +99544,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_toggle", - "confidence_score": 1.0 + "target": "pages_settingspage_toggle" }, { "relation": "inherits", @@ -99415,9 +99555,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage_settings", - "target": "pages_settingspage_formvalues", - "confidence_score": 1.0 + "target": "pages_settingspage_formvalues" }, { "relation": "contains", @@ -108677,6 +108817,16 @@ "source": "package_devdependencies", "target": "package_devdependencies_core_js" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L7", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_csstools_postcss_oklab_function", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -165425,6 +165575,126 @@ "source": "webpack_config", "target": "webpack_config_encore" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks", + "target": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", + "target": "prompt_admin_ios_safari_css_fallbacks_\u0632\u0645\u06cc\u0646\u0647" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", + "target": "prompt_admin_ios_safari_css_fallbacks_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", + "target": "prompt_admin_ios_safari_css_fallbacks_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", + "target": "prompt_admin_ios_safari_css_fallbacks_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", + "target": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", + "target": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0631\u0641\u0639_\u0628\u0647\u0645_\u0631\u06cc\u062e\u062a\u06af\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0631\u0648\u06cc_iphone_8_safari_chrome_ios", + "target": "prompt_admin_ios_safari_css_fallbacks_\u067e\u0631\u0648\u0698\u0647" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_admin_ios_safari_css_fallbacks_\u06f1_fallback_\u0647\u06af\u0632_srgb_\u0628\u0631\u0627\u06cc_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0631\u0646\u06af_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_oklch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_admin_ios_safari_css_fallbacks_\u06f2_fallback_\u0628\u0631\u0627\u06cc_color_mix_\u062f\u0631_\u0642\u0648\u0627\u0646\u06cc\u0646_inline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_admin_ios_safari_css_fallbacks_\u06f3_\u062a\u0635\u0645\u06cc\u0645_\u062f\u0631\u0628\u0627\u0631\u0647_tailwind_v4" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/admin-ios-safari-css-fallbacks.md", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "prompt_admin_ios_safari_css_fallbacks_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_admin_ios_safari_css_fallbacks_\u06f4_\u062a\u0633\u062a" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -205597,5 +205867,5 @@ } ], "hyperedges": [], - "built_at_commit": "949fddc57a56dea44c605375f94017eb74b3b320" + "built_at_commit": "6d594822bf3c0fa761c582b83de301eb58791ca5" } \ No newline at end of file diff --git a/graphify-out/manifest.json b/graphify-out/manifest.json index 21ef3bd0..fc1f9a92 100644 --- a/graphify-out/manifest.json +++ b/graphify-out/manifest.json @@ -780,13 +780,13 @@ "semantic_hash": "" }, "package.json": { - "mtime": 1782728407.1808863, - "ast_hash": "954f828ef2f79f0ac46b6154fb18c6dd", + "mtime": 1782976135.2818882, + "ast_hash": "a1d6d0993877d027bf35d702f382e373", "semantic_hash": "" }, "postcss.config.js": { - "mtime": 1781030344.3535159, - "ast_hash": "d75cf5f9f66171ccb397e82a93408a65", + "mtime": 1782976147.0592823, + "ast_hash": "5b09c51f443a992b100f644d2899c9b6", "semantic_hash": "" }, "public/index.php": { @@ -3508,5 +3508,10 @@ "mtime": 1782974183.0364032, "ast_hash": "dc5d90afffa97b8150bcacba60846c8d", "semantic_hash": "" + }, + ".claude/prompt/admin-ios-safari-css-fallbacks.md": { + "mtime": 1782975691.9747198, + "ast_hash": "9583fb5ebc728ab1014038ac44d1d09a", + "semantic_hash": "" } } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index dbab6a1f..eca9ab13 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "clinicpro", + "name": "html", "lockfileVersion": 3, "requires": true, "packages": { @@ -33,20 +33,29 @@ "@babel/preset-env": "^7.16.0", "@babel/preset-react": "^7.0.0", "@babel/preset-typescript": "^7.0.0", + "@csstools/postcss-oklab-function": "^5.0.6", "@hotwired/stimulus": "^3.0.0", "@symfony/stimulus-bridge": "^3.2.0 || ^4.0.0", "@symfony/ux-react": "file:vendor/symfony/ux-react/assets", "@symfony/webpack-encore": "^6.0.0", "@tailwindcss/postcss": "^4.0.0", + "@testing-library/dom": "^10.4.1", + "@testing-library/jest-dom": "^6.9.1", + "@testing-library/react": "^16.3.2", + "@testing-library/user-event": "^14.6.1", "@types/react": "^19.0.0", "@types/react-dom": "^19.0.0", + "@vitejs/plugin-react": "^4", "core-js": "^3.38.0", + "jsdom": "^29.1.1", "postcss": "^8.0.0", "postcss-loader": "^8.0.0", "regenerator-runtime": "^0.13.9", "tailwindcss": "^4.0.0", "ts-loader": "^9.6.0", "typescript": "^5.0.0", + "vite-tsconfig-paths": "^6.1.1", + "vitest": "^2", "webpack": "^5.72", "webpack-cli": "^6.0.0" } @@ -72,25 +81,55 @@ } }, "node_modules/@asamuzakjp/css-color": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz", - "integrity": "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==", + "version": "5.1.11", + "resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-5.1.11.tgz", + "integrity": "sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg==", "dev": true, "license": "MIT", "dependencies": { - "@csstools/css-calc": "^2.1.3", - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "lru-cache": "^10.4.3" + "@asamuzakjp/generational-cache": "^1.0.1", + "@csstools/css-calc": "^3.2.0", + "@csstools/css-color-parser": "^4.1.0", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" } }, - "node_modules/@asamuzakjp/css-color/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "node_modules/@asamuzakjp/dom-selector": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-7.1.1.tgz", + "integrity": "sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ==", "dev": true, - "license": "ISC" + "license": "MIT", + "dependencies": { + "@asamuzakjp/generational-cache": "^1.0.1", + "@asamuzakjp/nwsapi": "^2.3.9", + "bidi-js": "^1.0.3", + "css-tree": "^3.2.1", + "is-potential-custom-element-name": "^1.0.1" + }, + "engines": { + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" + } + }, + "node_modules/@asamuzakjp/generational-cache": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@asamuzakjp/generational-cache/-/generational-cache-1.0.1.tgz", + "integrity": "sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" + } + }, + "node_modules/@asamuzakjp/nwsapi": { + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz", + "integrity": "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==", + "dev": true, + "license": "MIT" }, "node_modules/@babel/code-frame": { "version": "7.29.7", @@ -1817,6 +1856,19 @@ "node": ">=6.9.0" } }, + "node_modules/@bramus/specificity": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@bramus/specificity/-/specificity-2.4.2.tgz", + "integrity": "sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "css-tree": "^3.0.0" + }, + "bin": { + "specificity": "bin/cli.js" + } + }, "node_modules/@ckeditor/ckeditor5-adapter-ckfinder": { "version": "44.3.0", "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-44.3.0.tgz", @@ -14813,9 +14865,9 @@ "license": "MIT" }, "node_modules/@csstools/color-helpers": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz", - "integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.1.0.tgz", + "integrity": "sha512-064IFJdjTfUqnjpCVpMOdbr8FLQBhinbZj6yRv2An2E41O/pLEXqfFRWqGq/SxlE5PEUYTlvWsG2r8MswAVvkg==", "dev": true, "funding": [ { @@ -14829,13 +14881,13 @@ ], "license": "MIT-0", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, "node_modules/@csstools/css-calc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz", - "integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, "funding": [ { @@ -14849,17 +14901,17 @@ ], "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.5", - "@csstools/css-tokenizer": "^3.0.4" + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, "node_modules/@csstools/css-color-parser": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz", - "integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.9.tgz", + "integrity": "sha512-paQcIaOO53Rk5+YrBaBjm/SgrV4INImjo2BT1DtQRYr+XeTRbeAYlS+jxXp9drqvKmtFnWRJKIalDLhZZDu42A==", "dev": true, "funding": [ { @@ -14873,21 +14925,21 @@ ], "license": "MIT", "dependencies": { - "@csstools/color-helpers": "^5.1.0", - "@csstools/css-calc": "^2.1.4" + "@csstools/color-helpers": "^6.1.0", + "@csstools/css-calc": "^3.2.1" }, "engines": { - "node": ">=18" + "node": ">=20.19.0" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.5", - "@csstools/css-tokenizer": "^3.0.4" + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, "node_modules/@csstools/css-parser-algorithms": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", - "integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, "funding": [ { @@ -14901,16 +14953,41 @@ ], "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" }, "peerDependencies": { - "@csstools/css-tokenizer": "^3.0.4" + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/css-syntax-patches-for-csstree": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.6.tgz", + "integrity": "sha512-TcJCWFbXLPpJYq6z7bfOyjWYJDiDg2/I4gyUC9pqPNqHFRIey0EB0q0L5cSnQDfWJg8Jd6VadakxdIez/3zkqQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "peerDependencies": { + "css-tree": "^3.2.1" + }, + "peerDependenciesMeta": { + "css-tree": { + "optional": true + } } }, "node_modules/@csstools/css-tokenizer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", - "integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, "funding": [ { @@ -14924,7 +15001,86 @@ ], "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-5.0.6.tgz", + "integrity": "sha512-6yZ+OySSaBybv12OfgKFBgCK1Se2mBbhh9eIDbUdWGHJUXZPQoLbtPj8S6Wg0lqe0nTqKgY/l8Ir9lHrm2TUBQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.9", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.1", + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-5.1.1.tgz", + "integrity": "sha512-b9+lusgVDTHXRBgYKE9s0RKUyEn6Q/knmMDmYmSrkZjtpb0Nd71pBtgVMf9tSpOIb0K8hyzeyy6JyKFqg5rBJw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/utilities": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/utilities/-/utilities-3.0.0.tgz", + "integrity": "sha512-etDqA/4jYvOGBM6yfKCOsEXfH96BKztZdgGmGqKi2xHnDe0ILIBraRspwgYatJH9JsCZ5HCGoCst8w18EKOAdg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, "node_modules/@discoveryjs/json-ext": { @@ -15091,6 +15247,466 @@ "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==", "license": "MIT" }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz", + "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz", + "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz", + "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz", + "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz", + "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz", + "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz", + "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz", + "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz", + "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz", + "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz", + "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz", + "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz", + "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz", + "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz", + "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz", + "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz", + "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz", + "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz", + "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz", + "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz", + "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz", + "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz", + "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz", + "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz", + "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz", + "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@exodus/bytes": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/@exodus/bytes/-/bytes-1.15.1.tgz", + "integrity": "sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" + }, + "peerDependencies": { + "@noble/hashes": "^1.8.0 || ^2.0.0" + }, + "peerDependenciesMeta": { + "@noble/hashes": { + "optional": true + } + } + }, "node_modules/@floating-ui/core": { "version": "1.7.5", "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.5.tgz", @@ -15310,16 +15926,6 @@ "@emnapi/runtime": "^1.7.1" } }, - "node_modules/@oxc-project/types": { - "version": "0.133.0", - "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz", - "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/Boshen" - } - }, "node_modules/@react-leaflet/core": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-3.0.0.tgz", @@ -15367,10 +15973,31 @@ "url": "https://opencollective.com/immer" } }, - "node_modules/@rolldown/binding-android-arm64": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz", - "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==", + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.27", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.62.2.tgz", + "integrity": "sha512-6o7ZLZK+BeenkZCFNDXqpbjw9bD6nuWonvS/lwQJp7NoVVxm6p3qE7qQ5jGuBjiFsgvqjD8mZAU5oWxTmbOeOg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.62.2.tgz", + "integrity": "sha512-BaH7BllCACHoH1LguOU56UItGfUWjujlO65kS9LAodViaN4bwIKd7oeW/ZHJ/4ljr/7MIiENnNy3HJ0zXv8Zkw==", "cpu": [ "arm64" ], @@ -15379,15 +16006,12 @@ "optional": true, "os": [ "android" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-darwin-arm64": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz", - "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==", + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.62.2.tgz", + "integrity": "sha512-v39RCCvj4He82I9sFmk+M1VZ0PLM9sfsLVikjfx2hYBNALhrrOR2D3JjQA6AhlaSOgcR+RzrKY7e1+bT6SUO/A==", "cpu": [ "arm64" ], @@ -15396,15 +16020,12 @@ "optional": true, "os": [ "darwin" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-darwin-x64": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz", - "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==", + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.62.2.tgz", + "integrity": "sha512-yl0y2vq3S3lHeuXhEdss6TWfKW8vkujImO12tn4ZkG/4oghr09LvdYm2RElVjokTQiUvDUGXLGsYeLqUMCKpGA==", "cpu": [ "x64" ], @@ -15413,15 +16034,26 @@ "optional": true, "os": [ "darwin" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-freebsd-x64": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz", - "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==", + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.62.2.tgz", + "integrity": "sha512-tT4pvt4qXD+vEoezupCWi+a1F0vvDiksiHc+PxRlYTOH1I6/X4id9jPxTP+Fg+545euaFT1jJVs4CEdHZAU1vw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.62.2.tgz", + "integrity": "sha512-6nU5F2wCW+qvCBhTn1pdIU3bzsIoF7EUwsCDRxilWGprQR6yd508YnH9+OKFCwpfS8pjZqDUmnCAr7exax0XCg==", "cpu": [ "x64" ], @@ -15430,100 +16062,233 @@ "optional": true, "os": [ "freebsd" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-linux-arm-gnueabihf": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz", - "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==", + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.62.2.tgz", + "integrity": "sha512-n1GJHPOvpIfhi3TmrCeh6S6URt9BFCt0KQE3qvexyGCTAKpR4Lg+eWvNZEqu7epxwus/8ElT3hacYEucm49SZg==", "cpu": [ "arm" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ "linux" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-linux-arm64-gnu": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz", - "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==", + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.62.2.tgz", + "integrity": "sha512-JqgflS8wEB+UXV/vS1RpRbifGBeN4D5lz8D8oOFbFZw4vedvdOgCFAjfBmIMdW3yL10XpQQ0Ambepw6MXrhOnA==", + "cpu": [ + "arm" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.2.tgz", + "integrity": "sha512-wnFJkogWvN4jm/hQRF2UBaeUmk20j5+DmHvoyWii2b8HJDyvz1MF2OU/6ynXt2KR63rbZLWkFpoytpdc/yBuSA==", "cpu": [ "arm64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ "linux" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-linux-arm64-musl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz", - "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==", + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.62.2.tgz", + "integrity": "sha512-HVu2bp0zhvJ8xHEV9+UUs7S90VadmBSY3LcIMvozbPo4AuMGDWlz3ymHLHZPX4hR67TKTt8Qp5PJ5RBg/i+RMQ==", "cpu": [ "arm64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ "linux" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-linux-ppc64-gnu": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz", - "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==", + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.62.2.tgz", + "integrity": "sha512-mQqqAV8QaoSgr9I2fKDLY2BAVvmKjWoGiu/cSYQonsLvtqwEn1E4QYfnCOcp5zoEqNhsDYin1s6jx/VJmrxlZg==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.62.2.tgz", + "integrity": "sha512-IxKLoxCQ2IWi6bT2akyDUBGsOImDKB+sPp4EsTmwFQ/fMwpCKm8uLSSgP/Kx/QYUgKis6SEZ5/Nlhup0DIA0PQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.62.2.tgz", + "integrity": "sha512-Mk5ha2RQSgyFfmYYLkBpPnUk8D8FriBxesO1u9O75X0mHgXL1UQcH5Itl2lurWL2tj0RxV9b9tJgipac0hRY9A==", "cpu": [ "ppc64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ "linux" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-linux-s390x-gnu": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz", - "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==", + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.62.2.tgz", + "integrity": "sha512-CjvEnqJL/0/TQ3TXX3OPIJ/kmBellrWd4heXUmHeJlTnmwjKpSJzoehLaL6Xk0ZnMHBu9dZuFADNOrtjF4v+2w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.62.2.tgz", + "integrity": "sha512-1SiZbzwdkaDURsew/tSOrooKiYy7EQGT6m8ufavAi9NEyQb/6VuIxFXAL1fqa4iZe3g4NbNk4P7J32z2tw5Mgg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.62.2.tgz", + "integrity": "sha512-nQts12zJ3NQRoE6uYljOH89v7szzLDvG2JD/vsX+vGXU8w/At1GowTZ5/7qeFQ8m7L55rpR8Okugnuo5bgjy2Q==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.62.2.tgz", + "integrity": "sha512-E9/ll019jhPIJgpzfZoIkBGhcz+kKNgVWYRY0zr9srBdPPFVpvOKW8VaJKUbeK+eZXyQF9ltME+Kk6affeaPgg==", "cpu": [ "s390x" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ "linux" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-linux-x64-gnu": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz", - "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==", + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.62.2.tgz", + "integrity": "sha512-5BqxR/pshjey51iliyzTD5Xi3EN0aLmQ2lZ3lvefVV9c82BvrLo2/6OT55iifpWBufs6kdwWbuOKS841DrmK9A==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.62.2.tgz", + "integrity": "sha512-uNN83XxQrRAh/w0/pmAfibcwyb6YWt4gP+dpnQKPVJshAloQ785ii8CT8ZCIxkGg9opVsvAlGhFitSm6D1Jjpg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.62.2.tgz", + "integrity": "sha512-srjEIxSH3LRnJN6THczDHWQplqEMFiAJrTab0msUryh9kwNpkICf3Ea6q6MN/2cZwRFUNx5w+h6Hpi4QuHS6Zg==", "cpu": [ "x64" ], @@ -15531,33 +16296,13 @@ "license": "MIT", "optional": true, "os": [ - "linux" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + "openbsd" + ] }, - "node_modules/@rolldown/binding-linux-x64-musl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz", - "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-openharmony-arm64": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz", - "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==", + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.62.2.tgz", + "integrity": "sha512-8hOJnxgbyObnCm5AlRA3A931xX19xq80RjVTKgJOvEKWqJruP/Uf12IbAOaDjjEXYRewwHLfmF0YRIdK3OwKWA==", "cpu": [ "arm64" ], @@ -15566,34 +16311,12 @@ "optional": true, "os": [ "openharmony" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-wasm32-wasi": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz", - "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==", - "cpu": [ - "wasm32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@emnapi/core": "1.10.0", - "@emnapi/runtime": "1.10.0", - "@napi-rs/wasm-runtime": "^1.1.4" - }, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-win32-arm64-msvc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz", - "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==", + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.62.2.tgz", + "integrity": "sha512-mmF4AY1i0hG/bLWUctUq59gtmgaSIRa3cu/A3JFRp/sCNEme2bgDEiDS22P9FbnJB8NJNF4jPJiSP5RHQpUTDg==", "cpu": [ "arm64" ], @@ -15602,15 +16325,26 @@ "optional": true, "os": [ "win32" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/binding-win32-x64-msvc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz", - "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==", + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.62.2.tgz", + "integrity": "sha512-DZgkknc6jhHrk46V25vbAM0zZkyP0nSDkJB8/dRkLTxv470dOmWDqGoEJl/9A0dFfS7yE3REOwNDxpHwSLSt0Q==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.62.2.tgz", + "integrity": "sha512-T6xr6ucWSFto+VGajA8YH26LdpHRuP4YLHEKAtCWvJDOlnmWcDZVCI2Jmjr+IFHDlt2zRaTAKE4tfjTaWLgJBg==", "cpu": [ "x64" ], @@ -15619,17 +16353,21 @@ "optional": true, "os": [ "win32" - ], - "engines": { - "node": "^20.19.0 || >=22.12.0" - } + ] }, - "node_modules/@rolldown/pluginutils": { - "version": "1.0.0-beta.27", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", - "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.62.2.tgz", + "integrity": "sha512-BfzEnDJOt9T8M989/lA37EcJgat01wLRnoi5dQf3QzOH7jzpqTAzdDbVfRljVr5r+jzKqpbHeyOfAaXxAd0PAA==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT" + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] }, "node_modules/@sinclair/typebox": { "version": "0.34.49", @@ -16209,6 +16947,34 @@ "dev": true, "license": "MIT" }, + "node_modules/@testing-library/react": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.2.tgz", + "integrity": "sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@testing-library/dom": "^10.0.0", + "@types/react": "^18.0.0 || ^19.0.0", + "@types/react-dom": "^18.0.0 || ^19.0.0", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, "node_modules/@testing-library/user-event": { "version": "14.6.1", "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz", @@ -16611,113 +17377,86 @@ } }, "node_modules/@vitest/expect": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.8.tgz", - "integrity": "sha512-h3nDO677RDLEGlBxyQ5CW8RlMThSKSRLUePLOx09gNIWRL40edgA1GCZSZgf1W55MFAG6/Sw14KeaAnqv0NKdQ==", + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.9.tgz", + "integrity": "sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw==", "dev": true, "license": "MIT", "dependencies": { - "@standard-schema/spec": "^1.1.0", - "@types/chai": "^5.2.2", - "@vitest/spy": "4.1.8", - "@vitest/utils": "4.1.8", - "chai": "^6.2.2", - "tinyrainbow": "^3.1.0" + "@vitest/spy": "2.1.9", + "@vitest/utils": "2.1.9", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" }, "funding": { "url": "https://opencollective.com/vitest" } }, - "node_modules/@vitest/mocker": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.8.tgz", - "integrity": "sha512-LEiN/xe4OSIbKe9HQIp5OC24agGD9J5CnmMgsLohVVoOPWL9a2sBoR6VBx43jQZb7Kr1l4RCuyCJzcAa0+dojw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@vitest/spy": "4.1.8", - "estree-walker": "^3.0.3", - "magic-string": "^0.30.21" - }, - "funding": { - "url": "https://opencollective.com/vitest" - }, - "peerDependencies": { - "msw": "^2.4.9", - "vite": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "msw": { - "optional": true - }, - "vite": { - "optional": true - } - } - }, "node_modules/@vitest/pretty-format": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.8.tgz", - "integrity": "sha512-9GasEBxpZ1VYIpqHf/0+YGg121uSNwCKOJqIrTwWP/TB7DmFCiaBpNl3aPZzoLWfWkuqhbH8vJIVobZkvdo2cA==", + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.9.tgz", + "integrity": "sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==", "dev": true, "license": "MIT", "dependencies": { - "tinyrainbow": "^3.1.0" + "tinyrainbow": "^1.2.0" }, "funding": { "url": "https://opencollective.com/vitest" } }, "node_modules/@vitest/runner": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.8.tgz", - "integrity": "sha512-EmVxeBAfMJvycdjd6Hm+RbFBbA9fKvo0Kx37hNpBYoYeavH3RNsBXWDooR1mgD52dCrxIIuP7UotpfiwOikvcg==", + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.9.tgz", + "integrity": "sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/utils": "4.1.8", - "pathe": "^2.0.3" + "@vitest/utils": "2.1.9", + "pathe": "^1.1.2" }, "funding": { "url": "https://opencollective.com/vitest" } }, "node_modules/@vitest/snapshot": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.8.tgz", - "integrity": "sha512-acfZboRmAIf05DEKcBQy33VXojFJjtUdLyo7oOmV9kebb2xdU01UknNiPuPZoJZQyO7DF0gZdTGTpeAzET9QPQ==", + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.9.tgz", + "integrity": "sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/pretty-format": "4.1.8", - "@vitest/utils": "4.1.8", - "magic-string": "^0.30.21", - "pathe": "^2.0.3" + "@vitest/pretty-format": "2.1.9", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" }, "funding": { "url": "https://opencollective.com/vitest" } }, "node_modules/@vitest/spy": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.8.tgz", - "integrity": "sha512-6EevtBp6OZOPF7bmz36HrGMeP3txgVSrgebWxHOafDXGkhIzfXK14f8KF6MuFfgXXUeHxmpD3BQxkV00/3s5mA==", + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.9.tgz", + "integrity": "sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ==", "dev": true, "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, "funding": { "url": "https://opencollective.com/vitest" } }, "node_modules/@vitest/utils": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.8.tgz", - "integrity": "sha512-uOJamYALNhfJ6iolExyQM40yIQwDqYnkKtQ5VCiSe17E33H0aQ/u+1GlRuz4LZBk6Mm3sg90G9hEbmEt37C1Zg==", + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.9.tgz", + "integrity": "sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/pretty-format": "4.1.8", - "convert-source-map": "^2.0.0", - "tinyrainbow": "^3.1.0" + "@vitest/pretty-format": "2.1.9", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" }, "funding": { "url": "https://opencollective.com/vitest" @@ -17168,6 +17907,15 @@ "node": ">=10" } }, + "node_modules/babel-plugin-macros/node_modules/yaml": { + "version": "1.10.3", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.3.tgz", + "integrity": "sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.4.17", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz", @@ -17234,6 +17982,16 @@ "node": ">=6.0.0" } }, + "node_modules/bidi-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", + "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "require-from-string": "^2.0.2" + } + }, "node_modules/big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", @@ -17311,6 +18069,16 @@ "dev": true, "license": "MIT" }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -17366,11 +18134,18 @@ } }, "node_modules/chai": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz", - "integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", + "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", "dev": true, "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, "engines": { "node": ">=18" } @@ -17438,6 +18213,16 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/check-error": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", + "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, "node_modules/chrome-trace-event": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", @@ -18552,6 +19337,142 @@ "node": ">=18" } }, + "node_modules/cssstyle/node_modules/@asamuzakjp/css-color": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz", + "integrity": "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@csstools/css-calc": "^2.1.3", + "@csstools/css-color-parser": "^3.0.9", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "lru-cache": "^10.4.3" + } + }, + "node_modules/cssstyle/node_modules/@csstools/color-helpers": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz", + "integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" + } + }, + "node_modules/cssstyle/node_modules/@csstools/css-calc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz", + "integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" + } + }, + "node_modules/cssstyle/node_modules/@csstools/css-color-parser": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz", + "integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^5.1.0", + "@csstools/css-calc": "^2.1.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" + } + }, + "node_modules/cssstyle/node_modules/@csstools/css-parser-algorithms": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", + "integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^3.0.4" + } + }, + "node_modules/cssstyle/node_modules/@csstools/css-tokenizer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", + "integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/cssstyle/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, "node_modules/csstype": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", @@ -18680,17 +19601,17 @@ } }, "node_modules/data-urls": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", - "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-7.0.0.tgz", + "integrity": "sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA==", "dev": true, "license": "MIT", "dependencies": { - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0" + "whatwg-mimetype": "^5.0.0", + "whatwg-url": "^16.0.0" }, "engines": { - "node": ">=18" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" } }, "node_modules/debug": { @@ -18737,6 +19658,16 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/dequal": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", @@ -18972,6 +19903,48 @@ "benchmarks" ] }, + "node_modules/esbuild": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz", + "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.28.1", + "@esbuild/android-arm": "0.28.1", + "@esbuild/android-arm64": "0.28.1", + "@esbuild/android-x64": "0.28.1", + "@esbuild/darwin-arm64": "0.28.1", + "@esbuild/darwin-x64": "0.28.1", + "@esbuild/freebsd-arm64": "0.28.1", + "@esbuild/freebsd-x64": "0.28.1", + "@esbuild/linux-arm": "0.28.1", + "@esbuild/linux-arm64": "0.28.1", + "@esbuild/linux-ia32": "0.28.1", + "@esbuild/linux-loong64": "0.28.1", + "@esbuild/linux-mips64el": "0.28.1", + "@esbuild/linux-ppc64": "0.28.1", + "@esbuild/linux-riscv64": "0.28.1", + "@esbuild/linux-s390x": "0.28.1", + "@esbuild/linux-x64": "0.28.1", + "@esbuild/netbsd-arm64": "0.28.1", + "@esbuild/netbsd-x64": "0.28.1", + "@esbuild/openbsd-arm64": "0.28.1", + "@esbuild/openbsd-x64": "0.28.1", + "@esbuild/openharmony-arm64": "0.28.1", + "@esbuild/sunos-x64": "0.28.1", + "@esbuild/win32-arm64": "0.28.1", + "@esbuild/win32-ia32": "0.28.1", + "@esbuild/win32-x64": "0.28.1" + } + }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", @@ -19239,6 +20212,13 @@ "dev": true, "license": "BSD-2-Clause" }, + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", + "dev": true, + "license": "MIT" + }, "node_modules/goober": { "version": "2.1.19", "resolved": "https://registry.npmjs.org/goober/-/goober-2.1.19.tgz", @@ -19526,16 +20506,16 @@ } }, "node_modules/html-encoding-sniffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", - "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-6.0.0.tgz", + "integrity": "sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==", "dev": true, "license": "MIT", "dependencies": { - "whatwg-encoding": "^3.1.1" + "@exodus/bytes": "^1.6.0" }, "engines": { - "node": ">=18" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" } }, "node_modules/html-void-elements": { @@ -19880,35 +20860,36 @@ } }, "node_modules/jsdom": { - "version": "26.1.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-26.1.0.tgz", - "integrity": "sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-29.1.1.tgz", + "integrity": "sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q==", "dev": true, "license": "MIT", "dependencies": { - "cssstyle": "^4.2.1", - "data-urls": "^5.0.0", - "decimal.js": "^10.5.0", - "html-encoding-sniffer": "^4.0.0", - "http-proxy-agent": "^7.0.2", - "https-proxy-agent": "^7.0.6", + "@asamuzakjp/css-color": "^5.1.11", + "@asamuzakjp/dom-selector": "^7.1.1", + "@bramus/specificity": "^2.4.2", + "@csstools/css-syntax-patches-for-csstree": "^1.1.3", + "@exodus/bytes": "^1.15.0", + "css-tree": "^3.2.1", + "data-urls": "^7.0.0", + "decimal.js": "^10.6.0", + "html-encoding-sniffer": "^6.0.0", "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.16", - "parse5": "^7.2.1", - "rrweb-cssom": "^0.8.0", + "lru-cache": "^11.3.5", + "parse5": "^8.0.1", "saxes": "^6.0.0", "symbol-tree": "^3.2.4", - "tough-cookie": "^5.1.1", + "tough-cookie": "^6.0.1", + "undici": "^7.25.0", "w3c-xmlserializer": "^5.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^3.1.1", - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.1.1", - "ws": "^8.18.0", + "webidl-conversions": "^8.0.1", + "whatwg-mimetype": "^5.0.0", + "whatwg-url": "^16.0.1", "xml-name-validator": "^5.0.0" }, "engines": { - "node": ">=18" + "node": "^20.19.0 || ^22.13.0 || >=24.0.0" }, "peerDependencies": { "canvas": "^3.0.0" @@ -19919,6 +20900,16 @@ } } }, + "node_modules/jsdom/node_modules/lru-cache": { + "version": "11.5.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz", + "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } + }, "node_modules/jsesc": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", @@ -20350,6 +21341,13 @@ "loose-envify": "cli.js" } }, + "node_modules/loupe": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", + "dev": true, + "license": "MIT" + }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -21404,9 +22402,9 @@ } }, "node_modules/obug": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.2.tgz", - "integrity": "sha512-AWGB9WFcRXOQs48Z/udjI5ZcZMHXwX8XPByNpOydgcGsDLIzjGizhoMWJyKAWze7AVW/2W1i+/gPX4YtKe5cyg==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.3.tgz", + "integrity": "sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==", "dev": true, "funding": [ "https://github.com/sponsors/sxzz", @@ -21490,26 +22488,26 @@ } }, "node_modules/parse5": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", - "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz", + "integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==", "dev": true, "license": "MIT", "dependencies": { - "entities": "^6.0.0" + "entities": "^8.0.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" } }, "node_modules/parse5/node_modules/entities": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", - "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz", + "integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==", "dev": true, "license": "BSD-2-Clause", "engines": { - "node": ">=0.12" + "node": ">=20.19.0" }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -21551,12 +22549,22 @@ } }, "node_modules/pathe": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", - "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", "dev": true, "license": "MIT" }, + "node_modules/pathval": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -22922,47 +23930,51 @@ "node": ">=0.10.0" } }, - "node_modules/rolldown": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz", - "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==", + "node_modules/rollup": { + "version": "4.62.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.62.2.tgz", + "integrity": "sha512-RFnrW4lhXA3s3eqHDZvN654g8OTjzRfqpIRJYczCGB6HzphckVAi/Qh4tbPUbRuDi7s1Llv8g/NspLkttY3gTA==", "dev": true, "license": "MIT", "dependencies": { - "@oxc-project/types": "=0.133.0", - "@rolldown/pluginutils": "^1.0.0" + "@types/estree": "1.0.9" }, "bin": { - "rolldown": "bin/cli.mjs" + "rollup": "dist/bin/rollup" }, "engines": { - "node": "^20.19.0 || >=22.12.0" + "node": ">=18.0.0", + "npm": ">=8.0.0" }, "optionalDependencies": { - "@rolldown/binding-android-arm64": "1.0.3", - "@rolldown/binding-darwin-arm64": "1.0.3", - "@rolldown/binding-darwin-x64": "1.0.3", - "@rolldown/binding-freebsd-x64": "1.0.3", - "@rolldown/binding-linux-arm-gnueabihf": "1.0.3", - "@rolldown/binding-linux-arm64-gnu": "1.0.3", - "@rolldown/binding-linux-arm64-musl": "1.0.3", - "@rolldown/binding-linux-ppc64-gnu": "1.0.3", - "@rolldown/binding-linux-s390x-gnu": "1.0.3", - "@rolldown/binding-linux-x64-gnu": "1.0.3", - "@rolldown/binding-linux-x64-musl": "1.0.3", - "@rolldown/binding-openharmony-arm64": "1.0.3", - "@rolldown/binding-wasm32-wasi": "1.0.3", - "@rolldown/binding-win32-arm64-msvc": "1.0.3", - "@rolldown/binding-win32-x64-msvc": "1.0.3" + "@rollup/rollup-android-arm-eabi": "4.62.2", + "@rollup/rollup-android-arm64": "4.62.2", + "@rollup/rollup-darwin-arm64": "4.62.2", + "@rollup/rollup-darwin-x64": "4.62.2", + "@rollup/rollup-freebsd-arm64": "4.62.2", + "@rollup/rollup-freebsd-x64": "4.62.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.62.2", + "@rollup/rollup-linux-arm-musleabihf": "4.62.2", + "@rollup/rollup-linux-arm64-gnu": "4.62.2", + "@rollup/rollup-linux-arm64-musl": "4.62.2", + "@rollup/rollup-linux-loong64-gnu": "4.62.2", + "@rollup/rollup-linux-loong64-musl": "4.62.2", + "@rollup/rollup-linux-ppc64-gnu": "4.62.2", + "@rollup/rollup-linux-ppc64-musl": "4.62.2", + "@rollup/rollup-linux-riscv64-gnu": "4.62.2", + "@rollup/rollup-linux-riscv64-musl": "4.62.2", + "@rollup/rollup-linux-s390x-gnu": "4.62.2", + "@rollup/rollup-linux-x64-gnu": "4.62.2", + "@rollup/rollup-linux-x64-musl": "4.62.2", + "@rollup/rollup-openbsd-x64": "4.62.2", + "@rollup/rollup-openharmony-arm64": "4.62.2", + "@rollup/rollup-win32-arm64-msvc": "4.62.2", + "@rollup/rollup-win32-ia32-msvc": "4.62.2", + "@rollup/rollup-win32-x64-gnu": "4.62.2", + "@rollup/rollup-win32-x64-msvc": "4.62.2", + "fsevents": "~2.3.2" } }, - "node_modules/rolldown/node_modules/@rolldown/pluginutils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz", - "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==", - "dev": true, - "license": "MIT" - }, "node_modules/rrweb-cssom": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz", @@ -23178,9 +24190,9 @@ "license": "MIT" }, "node_modules/std-env": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-4.1.0.tgz", - "integrity": "sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", "dev": true, "license": "MIT" }, @@ -23554,14 +24566,11 @@ "license": "MIT" }, "node_modules/tinyexec": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz", - "integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - } + "license": "MIT" }, "node_modules/tinyglobby": { "version": "0.2.17", @@ -23580,10 +24589,30 @@ "url": "https://github.com/sponsors/SuperchupuDev" } }, + "node_modules/tinypool": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", + "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, "node_modules/tinyrainbow": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz", - "integrity": "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", + "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", + "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", "dev": true, "license": "MIT", "engines": { @@ -23591,22 +24620,22 @@ } }, "node_modules/tldts": { - "version": "6.1.86", - "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.86.tgz", - "integrity": "sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==", + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.5.tgz", + "integrity": "sha512-RfEzKWcq5fHUOFq7J3rl3Oz6ylKGtcHqUznzj4EcXsxLSIjJcvpbXAQtWGeJQ0xKnimR5e0Cn+cn9TssfMzm+g==", "dev": true, "license": "MIT", "dependencies": { - "tldts-core": "^6.1.86" + "tldts-core": "^7.4.5" }, "bin": { "tldts": "bin/cli.js" } }, "node_modules/tldts-core": { - "version": "6.1.86", - "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.86.tgz", - "integrity": "sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==", + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.5.tgz", + "integrity": "sha512-pGrwzZDvPwKe+7NNUqAunb6rqTfynr0VOUhCMdqbu5xlvNiszsAJygRzwvpVycdzejlbpY+SWJOn+s75Og7FEA==", "dev": true, "license": "MIT" }, @@ -23634,29 +24663,29 @@ } }, "node_modules/tough-cookie": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz", - "integrity": "sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.1.tgz", + "integrity": "sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==", "dev": true, "license": "BSD-3-Clause", "dependencies": { - "tldts": "^6.1.32" + "tldts": "^7.0.5" }, "engines": { "node": ">=16" } }, "node_modules/tr46": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz", - "integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz", + "integrity": "sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==", "dev": true, "license": "MIT", "dependencies": { "punycode": "^2.3.1" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "node_modules/trim-lines": { @@ -23742,6 +24771,28 @@ "node": ">= 12" } }, + "node_modules/tsconfck": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz", + "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==", + "deprecated": "unmaintained", + "dev": true, + "license": "MIT", + "bin": { + "tsconfck": "bin/tsconfck.js" + }, + "engines": { + "node": "^18 || >=20" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", @@ -23778,6 +24829,16 @@ "node": ">=14.17" } }, + "node_modules/undici": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.28.0.tgz", + "integrity": "sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.18.1" + } + }, "node_modules/undici-types": { "version": "7.24.6", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz", @@ -24064,17 +25125,18 @@ } }, "node_modules/vite": { - "version": "8.0.16", - "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz", - "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==", + "version": "7.3.6", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.6.tgz", + "integrity": "sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==", "dev": true, "license": "MIT", "dependencies": { - "lightningcss": "^1.32.0", - "picomatch": "^4.0.4", - "postcss": "^8.5.15", - "rolldown": "1.0.3", - "tinyglobby": "^0.2.17" + "esbuild": "^0.27.0 || ^0.28.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" }, "bin": { "vite": "bin/vite.js" @@ -24090,10 +25152,9 @@ }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", - "@vitejs/devtools": "^0.1.18", - "esbuild": "^0.27.0 || ^0.28.0", "jiti": ">=1.21.0", "less": "^4.0.0", + "lightningcss": "^1.21.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", @@ -24106,18 +25167,15 @@ "@types/node": { "optional": true }, - "@vitejs/devtools": { - "optional": true - }, - "esbuild": { - "optional": true - }, "jiti": { "optional": true }, "less": { "optional": true }, + "lightningcss": { + "optional": true + }, "sass": { "optional": true }, @@ -24141,80 +25199,594 @@ } } }, - "node_modules/vitest": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.8.tgz", - "integrity": "sha512-flY6ScbCIt9HThs+C5HS7jvGOB560DJtk/Z15IQROTA6zEy49Nh8T/dofWTQL+n3vswqn87sbJNiuqw1SDp5Ig==", + "node_modules/vite-node": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.9.tgz", + "integrity": "sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/expect": "4.1.8", - "@vitest/mocker": "4.1.8", - "@vitest/pretty-format": "4.1.8", - "@vitest/runner": "4.1.8", - "@vitest/snapshot": "4.1.8", - "@vitest/spy": "4.1.8", - "@vitest/utils": "4.1.8", - "es-module-lexer": "^2.0.0", - "expect-type": "^1.3.0", - "magic-string": "^0.30.21", - "obug": "^2.1.1", - "pathe": "^2.0.3", - "picomatch": "^4.0.3", - "std-env": "^4.0.0-rc.1", + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vite-node/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/vite-node/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vite-node/node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-tsconfig-paths": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-6.1.1.tgz", + "integrity": "sha512-2cihq7zliibCCZ8P9cKJrQBkfgdvcFkOOc3Y02o3GWUDLgqjWsZudaoiuOwO/gzTzy17cS5F7ZPo4bsnS4DGkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "globrex": "^0.1.2", + "tsconfck": "^3.0.3" + }, + "peerDependencies": { + "vite": "*" + } + }, + "node_modules/vitest": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.9.tgz", + "integrity": "sha512-MSmPM9REYqDGBI8439mA4mWhV5sKmDlBKWIYbA3lRb2PTHACE0mgKwA8yQ2xq9vxDTuk4iPrECBAEW2aoFXY0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "2.1.9", + "@vitest/mocker": "2.1.9", + "@vitest/pretty-format": "^2.1.9", + "@vitest/runner": "2.1.9", + "@vitest/snapshot": "2.1.9", + "@vitest/spy": "2.1.9", + "@vitest/utils": "2.1.9", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", "tinybench": "^2.9.0", - "tinyexec": "^1.0.2", - "tinyglobby": "^0.2.15", - "tinyrainbow": "^3.1.0", - "vite": "^6.0.0 || ^7.0.0 || ^8.0.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.9", "why-is-node-running": "^2.3.0" }, "bin": { "vitest": "vitest.mjs" }, "engines": { - "node": "^20.0.0 || ^22.0.0 || >=24.0.0" + "node": "^18.0.0 || >=20.0.0" }, "funding": { "url": "https://opencollective.com/vitest" }, "peerDependencies": { "@edge-runtime/vm": "*", - "@opentelemetry/api": "^1.9.0", - "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0", - "@vitest/browser-playwright": "4.1.8", - "@vitest/browser-preview": "4.1.8", - "@vitest/browser-webdriverio": "4.1.8", - "@vitest/coverage-istanbul": "4.1.8", - "@vitest/coverage-v8": "4.1.8", - "@vitest/ui": "4.1.8", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.9", + "@vitest/ui": "2.1.9", "happy-dom": "*", - "jsdom": "*", - "vite": "^6.0.0 || ^7.0.0 || ^8.0.0" + "jsdom": "*" }, "peerDependenciesMeta": { "@edge-runtime/vm": { "optional": true }, - "@opentelemetry/api": { - "optional": true - }, "@types/node": { "optional": true }, - "@vitest/browser-playwright": { - "optional": true - }, - "@vitest/browser-preview": { - "optional": true - }, - "@vitest/browser-webdriverio": { - "optional": true - }, - "@vitest/coverage-istanbul": { - "optional": true - }, - "@vitest/coverage-v8": { + "@vitest/browser": { "optional": true }, "@vitest/ui": { @@ -24225,9 +25797,523 @@ }, "jsdom": { "optional": true + } + } + }, + "node_modules/vitest/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@vitest/mocker": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.9.tgz", + "integrity": "sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.9", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true }, "vite": { - "optional": false + "optional": true + } + } + }, + "node_modules/vitest/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vitest/node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true } } }, @@ -24270,13 +26356,13 @@ } }, "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.1.tgz", + "integrity": "sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==", "dev": true, "license": "BSD-2-Clause", "engines": { - "node": ">=12" + "node": ">=20" } }, "node_modules/webpack": { @@ -24460,27 +26546,28 @@ } }, "node_modules/whatwg-mimetype": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", - "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-5.0.0.tgz", + "integrity": "sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw==", "dev": true, "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20" } }, "node_modules/whatwg-url": { - "version": "14.2.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz", - "integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==", + "version": "16.0.1", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-16.0.1.tgz", + "integrity": "sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==", "dev": true, "license": "MIT", "dependencies": { - "tr46": "^5.1.0", - "webidl-conversions": "^7.0.0" + "@exodus/bytes": "^1.11.0", + "tr46": "^6.0.0", + "webidl-conversions": "^8.0.1" }, "engines": { - "node": ">=18" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" } }, "node_modules/which": { @@ -24569,15 +26656,6 @@ "dev": true, "license": "ISC" }, - "node_modules/yaml": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.3.tgz", - "integrity": "sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==", - "license": "ISC", - "engines": { - "node": ">= 6" - } - }, "node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", @@ -24676,6 +26754,426 @@ "react": "^18.0 || ^19.0", "react-dom": "^18.0 || ^19.0" } + }, + "vendor/symfony/ux-react/assets/node_modules/@vitest/expect": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.9.tgz", + "integrity": "sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@standard-schema/spec": "^1.1.0", + "@types/chai": "^5.2.2", + "@vitest/spy": "4.1.9", + "@vitest/utils": "4.1.9", + "chai": "^6.2.2", + "tinyrainbow": "^3.1.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "vendor/symfony/ux-react/assets/node_modules/@vitest/pretty-format": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.9.tgz", + "integrity": "sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^3.1.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "vendor/symfony/ux-react/assets/node_modules/@vitest/runner": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.9.tgz", + "integrity": "sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "4.1.9", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "vendor/symfony/ux-react/assets/node_modules/@vitest/snapshot": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.9.tgz", + "integrity": "sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "4.1.9", + "@vitest/utils": "4.1.9", + "magic-string": "^0.30.21", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "vendor/symfony/ux-react/assets/node_modules/@vitest/spy": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.9.tgz", + "integrity": "sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "vendor/symfony/ux-react/assets/node_modules/@vitest/utils": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.9.tgz", + "integrity": "sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "4.1.9", + "convert-source-map": "^2.0.0", + "tinyrainbow": "^3.1.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "vendor/symfony/ux-react/assets/node_modules/chai": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz", + "integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "vendor/symfony/ux-react/assets/node_modules/data-urls": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", + "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "vendor/symfony/ux-react/assets/node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "vendor/symfony/ux-react/assets/node_modules/html-encoding-sniffer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^3.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "vendor/symfony/ux-react/assets/node_modules/jsdom": { + "version": "26.1.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-26.1.0.tgz", + "integrity": "sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssstyle": "^4.2.1", + "data-urls": "^5.0.0", + "decimal.js": "^10.5.0", + "html-encoding-sniffer": "^4.0.0", + "http-proxy-agent": "^7.0.2", + "https-proxy-agent": "^7.0.6", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.16", + "parse5": "^7.2.1", + "rrweb-cssom": "^0.8.0", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^5.1.1", + "w3c-xmlserializer": "^5.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^3.1.1", + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.1.1", + "ws": "^8.18.0", + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "canvas": "^3.0.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "vendor/symfony/ux-react/assets/node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "vendor/symfony/ux-react/assets/node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "vendor/symfony/ux-react/assets/node_modules/std-env": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-4.1.0.tgz", + "integrity": "sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==", + "dev": true, + "license": "MIT" + }, + "vendor/symfony/ux-react/assets/node_modules/tinyexec": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz", + "integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "vendor/symfony/ux-react/assets/node_modules/tinyrainbow": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz", + "integrity": "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "vendor/symfony/ux-react/assets/node_modules/tldts": { + "version": "6.1.86", + "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.86.tgz", + "integrity": "sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tldts-core": "^6.1.86" + }, + "bin": { + "tldts": "bin/cli.js" + } + }, + "vendor/symfony/ux-react/assets/node_modules/tldts-core": { + "version": "6.1.86", + "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.86.tgz", + "integrity": "sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==", + "dev": true, + "license": "MIT" + }, + "vendor/symfony/ux-react/assets/node_modules/tough-cookie": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz", + "integrity": "sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tldts": "^6.1.32" + }, + "engines": { + "node": ">=16" + } + }, + "vendor/symfony/ux-react/assets/node_modules/tr46": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz", + "integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "engines": { + "node": ">=18" + } + }, + "vendor/symfony/ux-react/assets/node_modules/vitest": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.9.tgz", + "integrity": "sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "4.1.9", + "@vitest/mocker": "4.1.9", + "@vitest/pretty-format": "4.1.9", + "@vitest/runner": "4.1.9", + "@vitest/snapshot": "4.1.9", + "@vitest/spy": "4.1.9", + "@vitest/utils": "4.1.9", + "es-module-lexer": "^2.0.0", + "expect-type": "^1.3.0", + "magic-string": "^0.30.21", + "obug": "^2.1.1", + "pathe": "^2.0.3", + "picomatch": "^4.0.3", + "std-env": "^4.0.0-rc.1", + "tinybench": "^2.9.0", + "tinyexec": "^1.0.2", + "tinyglobby": "^0.2.15", + "tinyrainbow": "^3.1.0", + "vite": "^6.0.0 || ^7.0.0 || ^8.0.0", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@opentelemetry/api": "^1.9.0", + "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0", + "@vitest/browser-playwright": "4.1.9", + "@vitest/browser-preview": "4.1.9", + "@vitest/browser-webdriverio": "4.1.9", + "@vitest/coverage-istanbul": "4.1.9", + "@vitest/coverage-v8": "4.1.9", + "@vitest/ui": "4.1.9", + "happy-dom": "*", + "jsdom": "*", + "vite": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@opentelemetry/api": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser-playwright": { + "optional": true + }, + "@vitest/browser-preview": { + "optional": true + }, + "@vitest/browser-webdriverio": { + "optional": true + }, + "@vitest/coverage-istanbul": { + "optional": true + }, + "@vitest/coverage-v8": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + }, + "vite": { + "optional": false + } + } + }, + "vendor/symfony/ux-react/assets/node_modules/vitest/node_modules/@vitest/mocker": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.9.tgz", + "integrity": "sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "4.1.9", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.21" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "vendor/symfony/ux-react/assets/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "vendor/symfony/ux-react/assets/node_modules/whatwg-mimetype": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "vendor/symfony/ux-react/assets/node_modules/whatwg-url": { + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz", + "integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "^5.1.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=18" + } } } } diff --git a/package.json b/package.json index d7626610..16827154 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "@babel/preset-env": "^7.16.0", "@babel/preset-react": "^7.0.0", "@babel/preset-typescript": "^7.0.0", + "@csstools/postcss-oklab-function": "^5.0.6", "@hotwired/stimulus": "^3.0.0", "@symfony/stimulus-bridge": "^3.2.0 || ^4.0.0", "@symfony/ux-react": "file:vendor/symfony/ux-react/assets", diff --git a/postcss.config.js b/postcss.config.js index e5640725..cc98ed4f 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,5 +1,8 @@ module.exports = { plugins: { '@tailwindcss/postcss': {}, + // sRGB fallback خودکار برای oklch()های استاتیک (پالت Tailwind v4) روی WebKit قدیمی iPhone 8. + // preserve:true → مرورگر مدرن همچنان oklch می‌گیرد؛ قدیمی fallback rgb. + '@csstools/postcss-oklab-function': { preserve: true, subFeatures: { displayP3: false } }, }, }; diff --git a/yarn.lock b/yarn.lock index bdb86be1..6b28b04c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12,9 +12,20 @@ resolved "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz" integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== +"@asamuzakjp/css-color@^3.2.0": + version "3.2.0" + resolved "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz" + integrity sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw== + dependencies: + "@csstools/css-calc" "^2.1.3" + "@csstools/css-color-parser" "^3.0.9" + "@csstools/css-parser-algorithms" "^3.0.4" + "@csstools/css-tokenizer" "^3.0.3" + lru-cache "^10.4.3" + "@asamuzakjp/css-color@^5.1.11": version "5.1.11" - resolved "https://registry.yarnpkg.com/@asamuzakjp/css-color/-/css-color-5.1.11.tgz#28a0aac8220a4cc19045ac3bd9a813d4060bd375" + resolved "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-5.1.11.tgz" integrity sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg== dependencies: "@asamuzakjp/generational-cache" "^1.0.1" @@ -25,7 +36,7 @@ "@asamuzakjp/dom-selector@^7.1.1": version "7.1.1" - resolved "https://registry.yarnpkg.com/@asamuzakjp/dom-selector/-/dom-selector-7.1.1.tgz#01880086bb2490098f167beb58555da1a6c9adbd" + resolved "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-7.1.1.tgz" integrity sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ== dependencies: "@asamuzakjp/generational-cache" "^1.0.1" @@ -36,12 +47,12 @@ "@asamuzakjp/generational-cache@^1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@asamuzakjp/generational-cache/-/generational-cache-1.0.1.tgz#3d0bf6be4fc059851390a7070720c6007af793ec" + resolved "https://registry.npmjs.org/@asamuzakjp/generational-cache/-/generational-cache-1.0.1.tgz" integrity sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg== "@asamuzakjp/nwsapi@^2.3.9": version "2.3.9" - resolved "https://registry.yarnpkg.com/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz#ad5549322dfe9d153d4b4dd6f7ff2ae234b06e24" + resolved "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz" integrity sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q== "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.29.7": @@ -58,7 +69,7 @@ resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz" integrity sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg== -"@babel/core@^7.17.0", "@babel/core@^7.28.0": +"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.0.0-0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.12.0", "@babel/core@^7.12.0 || ^8.0.0-beta.1", "@babel/core@^7.13.0", "@babel/core@^7.17.0", "@babel/core@^7.28.0", "@babel/core@^7.4.0 || ^8.0.0-0 <8.0.0": version "7.29.7" resolved "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz" integrity sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA== @@ -660,19 +671,19 @@ "@babel/plugin-transform-react-jsx-self@^7.27.1": version "7.29.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.29.7.tgz#c24424527858220624fd59a5b1eab4fa413c803a" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.29.7.tgz" integrity sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw== dependencies: "@babel/helper-plugin-utils" "^7.29.7" "@babel/plugin-transform-react-jsx-source@^7.27.1": version "7.29.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.29.7.tgz#5cf25a3689906b58e2f0a2f2b374789e6627b15f" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.29.7.tgz" integrity sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q== dependencies: "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-react-jsx@^7.29.7": +"@babel/plugin-transform-react-jsx@^7.12.11", "@babel/plugin-transform-react-jsx@^7.29.7": version "7.29.7" resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.29.7.tgz" integrity sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A== @@ -877,7 +888,7 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-react@^7.0.0": +"@babel/preset-react@^7.0.0", "@babel/preset-react@^7.9.0": version "7.29.7" resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.29.7.tgz" integrity sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA== @@ -937,7 +948,7 @@ "@bramus/specificity@^2.4.2": version "2.4.2" - resolved "https://registry.yarnpkg.com/@bramus/specificity/-/specificity-2.4.2.tgz#aa8db8eb173fdee7324f82284833106adeecc648" + resolved "https://registry.npmjs.org/@bramus/specificity/-/specificity-2.4.2.tgz" integrity sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw== dependencies: css-tree "^3.0.0" @@ -951,6 +962,15 @@ "@ckeditor/ckeditor5-upload" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-adapter-ckfinder@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-48.2.0.tgz" + integrity sha512-CSXIUWc5/DHqJJL6L3WnjgFMKpHERmB3jpzrAIupdZLnPbg1H01Ki8yeWcghzfc4nm5fy9ZSfxT4okWFPWsEpA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-upload" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-alignment@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz" @@ -961,6 +981,17 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-alignment@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-48.2.0.tgz" + integrity sha512-N6UL341Kq1UFhwJlmdZHJdoxoIxQJUoEcK+vEY6fafDzNO7jIVzkFr3BdgAIgOTuarerqt/gkQbs+oLHndvgsQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-autoformat@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-44.3.0.tgz" @@ -973,6 +1004,17 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-autoformat@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-48.2.0.tgz" + integrity sha512-KzJpfKSA+VtyaSR7asMOdM5Qz9iTUeRy5VMuXRahaQ1KWK4jgju0kJKlAgVyVCneO8Hs+44R7BEzz+nzxrhvlQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-heading" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-autosave@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz" @@ -983,6 +1025,16 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-autosave@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-48.2.0.tgz" + integrity sha512-qTNEUlKWbfqDM67hUtzVw12czaAsBXS4oDluAtz7Gs7ap3C+3p0i+GnNZM6NC8u7vboymi6fqLlM5aaiyUU1jA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-basic-styles@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-44.3.0.tgz" @@ -994,6 +1046,18 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-basic-styles@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-48.2.0.tgz" + integrity sha512-ulOc3xhQNmVfXL5xaWiHjDv8H+5fYtZ3+UKXbUMB5mnzGUX0ICx0aY63idKJe5lNPvFFetJI+PlPps6EhclHbw== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-block-quote@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-44.3.0.tgz" @@ -1006,6 +1070,19 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-block-quote@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-48.2.0.tgz" + integrity sha512-cE4piVJA1Wruqz/jEGXJuI1IR9qzGAbb8F+bo0D/Jy2D9kSunJwHyeHQt4sQ2sFaude5AbW8n9DYyeS11LYDag== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-bookmark@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-bookmark/-/ckeditor5-bookmark-44.3.0.tgz" @@ -1018,6 +1095,20 @@ "@ckeditor/ckeditor5-widget" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-bookmark@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-bookmark/-/ckeditor5-bookmark-48.2.0.tgz" + integrity sha512-st8EIDRjawJX4Iv93S0cXnZEW3tLyhye54bj0PvOuMWjNtbxoWDCwDPUkTTckrfTJJ1wY+FN17J+HkwoLJS1DA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-link" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + "@ckeditor/ckeditor5-build-classic@^44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-build-classic/-/ckeditor5-build-classic-44.3.0.tgz" @@ -1060,6 +1151,23 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-ckbox@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-48.2.0.tgz" + integrity sha512-qttYjAJVjCdkFHMVRxgWgPzh+7Eppp0wo9I/wqHgT1+pBq/z1fWlzlyCNy1xlXbhMa4jJeA94OjmQvIF1OK87A== + dependencies: + "@ckeditor/ckeditor5-cloud-services" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-image" "48.2.0" + "@ckeditor/ckeditor5-link" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-upload" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + blurhash "2.0.5" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-ckfinder@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-44.3.0.tgz" @@ -1071,6 +1179,19 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-ckfinder@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-48.2.0.tgz" + integrity sha512-OnoYi8R1fI6KHMFQHMBXXajHHAQXVkVpRKMa2uTwS7BEzbcQhAJUJ6QI/JxH+mJ1EDdK2xDUiOb3fvPKbjeuvQ== + dependencies: + "@ckeditor/ckeditor5-adapter-ckfinder" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-image" "48.2.0" + "@ckeditor/ckeditor5-link" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-clipboard@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-44.3.0.tgz" @@ -1083,6 +1204,18 @@ "@ckeditor/ckeditor5-widget" "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-clipboard@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-48.2.0.tgz" + integrity sha512-2xPSy1ib0NidKvxrjakvAfz8BPCpw5uxh4Azr2DEdEF+zBjlsdCk+nqlU3lO9/OiGROImq+hP2M6dcpS0CUTog== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-cloud-services@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-44.3.0.tgz" @@ -1092,6 +1225,15 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-cloud-services@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-48.2.0.tgz" + integrity sha512-3PsW/6uv3ecYShuVAJcMBrdMIMyfWljrm5GkXmeW5E0MG5KacfIMRjuKqXP3DhacvuxBwpN0IKp1BgvwmWmPow== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-upload" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-code-block@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz" @@ -1105,6 +1247,19 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-code-block@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-48.2.0.tgz" + integrity sha512-49+8UKuZY0X4g91SkZS02+dHQ7bUSXnjWK8mENZOJ3RGxdeOw5SaxNtvMlaMvgQGRSGQOlzRBKO8+a3mOLoIVQ== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-core@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-44.3.0.tgz" @@ -1116,6 +1271,17 @@ "@ckeditor/ckeditor5-watchdog" "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-core@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-48.2.0.tgz" + integrity sha512-ooTO/BxSF2hx4MKcihq4zFWiNOGO8bVN8fE2I/El6qdnHaTV+brZwd5Ge0ykxEpy7uydmqGNeeoywMnY4j2I/A== + dependencies: + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-watchdog" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-easy-image@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-44.3.0.tgz" @@ -1127,6 +1293,17 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-easy-image@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-48.2.0.tgz" + integrity sha512-jeC6seMQ3+LmodTzLsYXsvcFplSvJj+iJ+FMYHcm6HW1e4EyUsbl8IDLzNdiNsVEk8BTgwDioa22IpCBIdZodw== + dependencies: + "@ckeditor/ckeditor5-cloud-services" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-image" "48.2.0" + "@ckeditor/ckeditor5-upload" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-editor-balloon@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz" @@ -1139,6 +1316,17 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-editor-balloon@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-48.2.0.tgz" + integrity sha512-hyONQSh6m4Yy+lgPzPbMh9mq7EjAXY+WcYyyVIdxbVTgZkd29aLEgJgJzHZrcfM52k1uGSGzxvLtv5JttKbpYw== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-editor-classic@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-44.3.0.tgz" @@ -1151,6 +1339,17 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-editor-classic@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-48.2.0.tgz" + integrity sha512-1QJ3/xUdIRNI5vfRSfLrS8QYru82cQ6/QAg0B42GzxGfVL8BJQW7UZsglrpDR2zwYuHyLQu7N4eZZXzDmb2ohQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-editor-decoupled@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz" @@ -1163,6 +1362,17 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-editor-decoupled@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-48.2.0.tgz" + integrity sha512-kB6TBJjZKXsTi4PgMeRvQ7Ln8AsVCshq2onIwubzQO8hFKXJr8+Q1aIx3co+tXgF12gF0p8rK6+B4hIxd78+oQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-editor-inline@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz" @@ -1175,6 +1385,17 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-editor-inline@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-48.2.0.tgz" + integrity sha512-z30QvsTlOc8maqQjHwEXJqGsLpb9wIz4ow/2BXw+B0uUadmBd56YAwQ2yYlvQFs5rbgdvP/5stN0epcqTHUHHw== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-editor-multi-root@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-44.3.0.tgz" @@ -1187,6 +1408,17 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-editor-multi-root@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-48.2.0.tgz" + integrity sha512-PkLK5OCanAZ3wjG5pR4bCfzH/UkKD0UTAOfgmOAt3+9ORXReiSQmt5p4npkDnpr60wQ/9dkAx+bCF5FhvM/RxA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-emoji@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz" @@ -1201,6 +1433,20 @@ fuzzysort "3.1.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-emoji@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-48.2.0.tgz" + integrity sha512-CWhAfLcpq48PrjWh9M84jmigwDlV2aFwgR9h9Djv7FVvV7LPBWkaU2JrSKxn7KMcVn7Rtjmje9j51VmPh772tQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-mention" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + fuzzysort "3.1.0" + "@ckeditor/ckeditor5-engine@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-44.3.0.tgz" @@ -1209,6 +1455,14 @@ "@ckeditor/ckeditor5-utils" "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-engine@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-48.2.0.tgz" + integrity sha512-80ku17bnA+U8JHrTMPMSyDZY0B9RRogfGqEw8hYhOHj6N96sbMNXQyvnnSh/szwPyAIDo2cTgbOlKkqUNn+4rA== + dependencies: + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-enter@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-44.3.0.tgz" @@ -1218,6 +1472,15 @@ "@ckeditor/ckeditor5-engine" "44.3.0" "@ckeditor/ckeditor5-utils" "44.3.0" +"@ckeditor/ckeditor5-enter@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-48.2.0.tgz" + integrity sha512-YZGbLDDyIzRMmITlEsVNmFhyTSFg4ZLQfQf70YnPOIXu38rnHrCS3cKPA+IYedc7pwdLHNA3zvSlGh8F30+V3w== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-essentials@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-44.3.0.tgz" @@ -1232,6 +1495,19 @@ "@ckeditor/ckeditor5-undo" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-essentials@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-48.2.0.tgz" + integrity sha512-ZWA+RvckTsjnajg7p9FE3Q4RoEqKuQClLoHB+SiLCmCN0grFp4K+msLk2h8n4Wrr1gzTO61Fs0VpFjLd8pN8nA== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-select-all" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-undo" "48.2.0" + "@ckeditor/ckeditor5-find-and-replace@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz" @@ -1243,6 +1519,18 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-find-and-replace@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-48.2.0.tgz" + integrity sha512-TcmhZ2Z8gq8PT9BVhI//2G6g4dBESznJ5LzniGR9m5w/dNPxUo+Qf4Aipp7u68nFYtevJAckMLSKF9EpYhmDQw== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-font@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz" @@ -1254,6 +1542,29 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-font@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-48.2.0.tgz" + integrity sha512-YB8/u4gOktKwHfxHGM+b+PM464JY1JwY32/TDd4GV7ptg3dRxK7pbLglSR9FjxISMg1fC7t+noMZJ4G/ni6zQg== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + +"@ckeditor/ckeditor5-fullscreen@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-fullscreen/-/ckeditor5-fullscreen-48.2.0.tgz" + integrity sha512-34dTisns5muLJzwpIpLy5FWnqLEKyBKp7X9F6zHR0lEIWv8x0jSfVGNsLsGHWQh7QIkPMWwx8HhsJJwQOOwB0w== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-editor-classic" "48.2.0" + "@ckeditor/ckeditor5-editor-decoupled" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-heading@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-44.3.0.tgz" @@ -1266,6 +1577,19 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-heading@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-48.2.0.tgz" + integrity sha512-KCtnFyTIwTPq5Sq6HqjS4qmLtSvN0CC7IvE5ER6Mqu8gusmbjdwU2hKyCKrOwnasgmenUxL4ZlIG0C3yrylDKA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-paragraph" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-highlight@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz" @@ -1276,6 +1600,17 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-highlight@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-48.2.0.tgz" + integrity sha512-kDnyioMZVxq+QuFu8mFIG4pPQLobjwfenrDfWbdhfBdX9w45SzomT4qQJGC+PXhX31+IjuLiwtKzoR9hRz6W6A== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-horizontal-line@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz" @@ -1287,6 +1622,18 @@ "@ckeditor/ckeditor5-widget" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-horizontal-line@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-48.2.0.tgz" + integrity sha512-EHOS2ynz+LO5xd8rBCtyOL1OfywjttMRWUiIU7Bj9/2wBNWcxHFURpNRpJtSKioYszyAfBZmU+dPWpFXONMFZw== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + "@ckeditor/ckeditor5-html-embed@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz" @@ -1298,6 +1645,18 @@ "@ckeditor/ckeditor5-widget" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-html-embed@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-48.2.0.tgz" + integrity sha512-KT/Bj8S6ZGmoxDBHRzdlKRlQWNHPRtMU7T0wPtX6idVcK97ZaINRY6qfGuxJLKBNiymzaiWlc6wsN7NdIAp5Vg== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + "@ckeditor/ckeditor5-html-support@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz" @@ -1315,6 +1674,29 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-html-support@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-48.2.0.tgz" + integrity sha512-fjGj6abXEOXzUnOIkP0hdnNMxhKlnP+UdrtWep3cNy9YnXCNypBGnhqAE/jfI+Q17DsEajnxNfLwiH1OTZ4B+A== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-heading" "48.2.0" + "@ckeditor/ckeditor5-image" "48.2.0" + "@ckeditor/ckeditor5-list" "48.2.0" + "@ckeditor/ckeditor5-remove-format" "48.2.0" + "@ckeditor/ckeditor5-table" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + es-toolkit "1.45.1" + +"@ckeditor/ckeditor5-icons@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-icons/-/ckeditor5-icons-48.2.0.tgz" + integrity sha512-w5WVrweq8iaXhf7msnZ9b9GtlGSM1jQe6jvezVs+X4OkZd+QMkkQ+ROPp1TZniXLUKx3+Q872KUPxsl9FBSMMg== + "@ckeditor/ckeditor5-image@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-44.3.0.tgz" @@ -1332,6 +1714,23 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-image@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-48.2.0.tgz" + integrity sha512-rbl6MRlNjotA+LhXroksLhspDxIiwRTeciY/B1OShMzjNIFc07pY691uIM/roJzu+L84TLQfejC3SdzY2xufXg== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-undo" "48.2.0" + "@ckeditor/ckeditor5-upload" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-indent@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-44.3.0.tgz" @@ -1345,6 +1744,19 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-indent@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-48.2.0.tgz" + integrity sha512-Nwu0HqLzpHdqOpKHNjk4KDcGGS3BwAELjH2piIDQsc3HkHQRfmfi25KlTk/gfbnwBebTvKfPyy/1opD69aJxBA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-heading" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-list" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-integrations-common@^2.4.0": version "2.4.1" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-integrations-common/-/ckeditor5-integrations-common-2.4.1.tgz" @@ -1360,6 +1772,16 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-language@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-48.2.0.tgz" + integrity sha512-XnzCyoiB+pIpFTQInmo9jgHfR/8UBLdVFO2mLMfwdSpWI0iJRwtMzTZx2dEikebGX1/6PIJAiWFBDb/dzYeSqQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-link@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-44.3.0.tgz" @@ -1377,6 +1799,23 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-link@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-48.2.0.tgz" + integrity sha512-kwENWSQdFIjyioIftXgXNxXts2UMcN95iG50P5LM8dNDkWES76KuFrPb7r3ihdTKCnZN6gJjTFxi3HHehhWEQg== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-image" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-list@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-44.3.0.tgz" @@ -1391,6 +1830,22 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-list@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-48.2.0.tgz" + integrity sha512-i5PwMQ26w3o+AoH7ouChmLBa4wIenlPy9QHKsh2mSZz0qZl8fbTf6lU+LPCI4wIUt2qHUPya/SUkFIz3+8bXOA== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-font" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-markdown-gfm@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz" @@ -1406,6 +1861,30 @@ turndown "7.2.0" turndown-plugin-gfm "1.0.2" +"@ckeditor/ckeditor5-markdown-gfm@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-48.2.0.tgz" + integrity sha512-XD8+taDeUH7WBKyQuwk421j70uUg8gIBO5hUYzwoEhuTWzkZEe9hfATh4qKE9iDYkHA3HXVHtcHXr9L001Qakw== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@types/hast" "3.0.4" + hast-util-from-dom "5.0.1" + hast-util-to-html "9.0.5" + hast-util-to-mdast "10.1.2" + hastscript "9.0.1" + rehype-dom-parse "5.0.2" + rehype-dom-stringify "4.0.2" + rehype-remark "10.0.1" + remark-breaks "4.0.0" + remark-gfm "4.0.1" + remark-parse "11.0.0" + remark-rehype "11.1.2" + remark-stringify "11.0.0" + unified "11.0.5" + unist-util-visit "5.0.0" + "@ckeditor/ckeditor5-media-embed@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-44.3.0.tgz" @@ -1421,6 +1900,21 @@ "@ckeditor/ckeditor5-widget" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-media-embed@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-48.2.0.tgz" + integrity sha512-uM1FhPw/jj/xr+RabIMaXHvcHnLUUFEWlPWx5wE7RWW2lucKt0mJ5xAMUo6TqATKuavKrVX3fL98/Cbv+Y6bpg== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-undo" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + "@ckeditor/ckeditor5-mention@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz" @@ -1433,6 +1927,18 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-mention@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-48.2.0.tgz" + integrity sha512-826BaVDvvkZT/qb7UTwpzLkoKuBFfBd9UQDJg1+iwppTbIl9XmwFW1SVcpOQNwv4eH8aZqEylMEJk+DoSalEoA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-minimap@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz" @@ -1444,6 +1950,16 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-minimap@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-48.2.0.tgz" + integrity sha512-BrqFY9XpHdxqeswY/NWYlcmYTy/LshUFGHADvMCmyjbRMd78ws1cMiP21oxy18Z6LvkL/IsiC9g1tk4G1hB5zQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-page-break@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz" @@ -1455,6 +1971,18 @@ "@ckeditor/ckeditor5-widget" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-page-break@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-48.2.0.tgz" + integrity sha512-cddeD4R9c5soyZ0Y218i/t373qDiYgfvdW4Sm8KgpEj90kDx2Hy1OlZB29BXYg7a7rIujIZsXsHZcVHPHaOxzA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + "@ckeditor/ckeditor5-paragraph@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-44.3.0.tgz" @@ -1465,6 +1993,17 @@ "@ckeditor/ckeditor5-ui" "44.3.0" "@ckeditor/ckeditor5-utils" "44.3.0" +"@ckeditor/ckeditor5-paragraph@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-48.2.0.tgz" + integrity sha512-vo8xor5aAzRelxpQt0ZghjpYi2N5Hy2iAtyU1scMlgxGEJzX85b2qN+xN/lKVQUbEzvHFqQHaATjSiuMGDG8ZA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-paste-from-office@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-44.3.0.tgz" @@ -1475,6 +2014,16 @@ "@ckeditor/ckeditor5-engine" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-paste-from-office@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-48.2.0.tgz" + integrity sha512-8T1/DS3iXJOE4xseTAOBsHqTrRqQB4axGaXW11Mrfw3IVdMwfJV9N/4Yeja+AovPkgOyGLluTxxcpyNCMXITMQ== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-react@^11.2.0": version "11.2.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-react/-/ckeditor5-react-11.2.0.tgz" @@ -1492,6 +2041,17 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-remove-format@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-48.2.0.tgz" + integrity sha512-dPwkXs3E0ckisv0YZHcLKjyk2hOO/ZUq4AcOxW6BgfsVRAiXMicuYmQRjNPGussb80+54ZEaYS++f72SDRc4XA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-restricted-editing@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz" @@ -1503,6 +2063,19 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-restricted-editing@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-48.2.0.tgz" + integrity sha512-l1Q1/y4zseqHhTTG/VsgSPIQ17WW6TrpUOk2W6w/kvmiuD3L0WuClQ+YJ9SNKItMeO0Rp5DbzKfH6daI9DAXRA== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-select-all@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-44.3.0.tgz" @@ -1513,6 +2086,17 @@ "@ckeditor/ckeditor5-ui" "44.3.0" "@ckeditor/ckeditor5-utils" "44.3.0" +"@ckeditor/ckeditor5-select-all@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-48.2.0.tgz" + integrity sha512-HFC8lPT/bT71uUHqvEwoLFwKu3UnsXXOghh1XIcTgILnRjDWHEY3ttSrpGTsQxlRjmSb6IPxf1hkj+RHmqv5zg== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-show-blocks@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz" @@ -1523,6 +2107,17 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-show-blocks@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-48.2.0.tgz" + integrity sha512-ty0Hg0YYQOrbvpWoCyw63x/vfWURhAzbqyZyG733A3NF+LDmONgxDW1LVhvb7T2hhnvhUGwYsFRLN4P65tTCaA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-source-editing@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz" @@ -1534,6 +2129,16 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-source-editing@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-48.2.0.tgz" + integrity sha512-TIXQDtsBHhh3+7Z6e5CEgBJ7T1gYY3+mp8FiaSUzzKLZEqq0QQVERBoNx1ojG9uWmVn9wctjF/vAlnY0xs0doA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-special-characters@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz" @@ -1545,6 +2150,17 @@ "@ckeditor/ckeditor5-utils" "44.3.0" ckeditor5 "44.3.0" +"@ckeditor/ckeditor5-special-characters@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-48.2.0.tgz" + integrity sha512-jvydvV/3+UqOabg/wcZZYaP5q36aPk+NEBqF0nTsR0oIPGxlaw8ihbXsdcF8UX8+kkkXU/awr+Uowiay8hs2AA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-style@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz" @@ -1560,6 +2176,21 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-style@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-48.2.0.tgz" + integrity sha512-N0RJNPrP8NcCvPLKCAYeaJSnx4qg+cZL9u9hvYtdnI0NITUYdhgVCurZqOjubw9CQrfUYAVkka40M1Q2/0eUOg== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-html-support" "48.2.0" + "@ckeditor/ckeditor5-list" "48.2.0" + "@ckeditor/ckeditor5-table" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-table@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-44.3.0.tgz" @@ -1574,6 +2205,21 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-table@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-48.2.0.tgz" + integrity sha512-YsqUdqGQiY+StFWTYKtWzqkuUgR970czEe8tJabPzh46fgvHEGxATPqHVnHq6Y5Fmx7TL+df+CvLTyElYAFmsQ== + dependencies: + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-theme-lark@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz" @@ -1591,6 +2237,16 @@ "@ckeditor/ckeditor5-utils" "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-typing@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-48.2.0.tgz" + integrity sha512-aYigcMZn3Ae9qfEDcy6Wg+W0xjw9Z+nT9Iryl8JIqyLTCbLW7eOrLy2aXWmoHvcegFfAtTLaIigRT8j4ZQm3SQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-ui@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-44.3.0.tgz" @@ -1606,6 +2262,22 @@ lodash-es "4.17.21" vanilla-colorful "0.7.2" +"@ckeditor/ckeditor5-ui@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-48.2.0.tgz" + integrity sha512-J43uo8TPR5awC8fw7CBlgx+tXGiyD2kuomELEJeaeoOw26ADEpLfnYZKlB1mb+VKnXJ43IHuqv/6GFF1hPKhpg== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-editor-multi-root" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@types/color-convert" "2.0.4" + color-convert "3.1.0" + color-parse "2.0.2" + es-toolkit "1.45.1" + vanilla-colorful "0.7.2" + "@ckeditor/ckeditor5-undo@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-44.3.0.tgz" @@ -1616,6 +2288,17 @@ "@ckeditor/ckeditor5-ui" "44.3.0" "@ckeditor/ckeditor5-utils" "44.3.0" +"@ckeditor/ckeditor5-undo@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-48.2.0.tgz" + integrity sha512-nWGPcFI9K/Pl1UhErAHN3HZRucU3FuK9ECyufc+640I5UWdFwCDMEdij+lfdegEIwvN2T3tZE52f1BnL83wdzQ== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-upload@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-44.3.0.tgz" @@ -1624,6 +2307,14 @@ "@ckeditor/ckeditor5-core" "44.3.0" "@ckeditor/ckeditor5-utils" "44.3.0" +"@ckeditor/ckeditor5-upload@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-48.2.0.tgz" + integrity sha512-sY/wuaBypDxQknplKI90zhtiY0VnpSB07zvHw2ednU3QjxnTLXYsEEENuEswLd9tWwuQ1v5qvqKRM5LFuiaKZg== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-utils@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-44.3.0.tgz" @@ -1633,6 +2324,14 @@ "@types/lodash-es" "4.17.12" lodash-es "4.17.21" +"@ckeditor/ckeditor5-utils@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-48.2.0.tgz" + integrity sha512-htCvovEGW2MCKnnX8T0jwoxGqsLiwBp8wg65sr5nXx8i+B9IUAHZlnIK1VNE8g1ZLl1qhoaQTpbQTL12W5sTTw== + dependencies: + "@ckeditor/ckeditor5-ui" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-watchdog@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-44.3.0.tgz" @@ -1644,6 +2343,16 @@ "@ckeditor/ckeditor5-utils" "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-watchdog@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-48.2.0.tgz" + integrity sha512-o8i6a20WzgxGOqk2ZYgithtDyfVjNog7I/NECsDFyEU1u8hkrO/IdYblUOEFQgT8QySIcUBKiV+5fA8wZSv+XA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-widget@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-44.3.0.tgz" @@ -1657,6 +2366,20 @@ "@ckeditor/ckeditor5-utils" "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-widget@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-48.2.0.tgz" + integrity sha512-O8V7juKYJ6muzeRw1dm+o3jQ75PG6Tm582XFegIFMnAA+j1iXb2fEaw2Mvb07uGC9x8Xpaz63b2sSYC1EheJ6A== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@ckeditor/ckeditor5-word-count@44.3.0": version "44.3.0" resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz" @@ -1668,71 +2391,111 @@ ckeditor5 "44.3.0" lodash-es "4.17.21" +"@ckeditor/ckeditor5-word-count@48.2.0": + version "48.2.0" + resolved "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-48.2.0.tgz" + integrity sha512-CzXyNmkd2nqo9TR+JeQQWPXSh8sP3akqaKy5OUMlDee7l849heOn+q6mMesqzWxySdq51cy/YgfHOJnfWuv2eA== + dependencies: + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + es-toolkit "1.45.1" + "@colordx/core@^5.4.3": version "5.4.3" resolved "https://registry.npmjs.org/@colordx/core/-/core-5.4.3.tgz" integrity sha512-kIxYSfA5T8HXjav55UaaH/o/cKivF6jCCGIb8eqtcsfI46wsvlSiT8jMDyrl779qLec3c2c2oHBZo4oAhvbjrQ== +"@csstools/color-helpers@^5.1.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz" + integrity sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA== + "@csstools/color-helpers@^6.1.0": version "6.1.0" - resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-6.1.0.tgz#18903248db1da28285e8458793b038f60d738cf1" + resolved "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.1.0.tgz" integrity sha512-064IFJdjTfUqnjpCVpMOdbr8FLQBhinbZj6yRv2An2E41O/pLEXqfFRWqGq/SxlE5PEUYTlvWsG2r8MswAVvkg== +"@csstools/css-calc@^2.1.3", "@csstools/css-calc@^2.1.4": + version "2.1.4" + resolved "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz" + integrity sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ== + "@csstools/css-calc@^3.2.0", "@csstools/css-calc@^3.2.1": version "3.2.1" - resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-3.2.1.tgz#b30e061ca9f297ccb2b3b032bfee32fda02b1b27" + resolved "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz" integrity sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg== -"@csstools/css-color-parser@^4.1.0": +"@csstools/css-color-parser@^3.0.9": + version "3.1.0" + resolved "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz" + integrity sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA== + dependencies: + "@csstools/color-helpers" "^5.1.0" + "@csstools/css-calc" "^2.1.4" + +"@csstools/css-color-parser@^4.1.0", "@csstools/css-color-parser@^4.1.9": version "4.1.9" - resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-4.1.9.tgz#a39145a8582dfe07640dff5ccab8b92934242987" + resolved "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.9.tgz" integrity sha512-paQcIaOO53Rk5+YrBaBjm/SgrV4INImjo2BT1DtQRYr+XeTRbeAYlS+jxXp9drqvKmtFnWRJKIalDLhZZDu42A== dependencies: "@csstools/color-helpers" "^6.1.0" "@csstools/css-calc" "^3.2.1" +"@csstools/css-parser-algorithms@^3.0.4", "@csstools/css-parser-algorithms@^3.0.5": + version "3.0.5" + resolved "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz" + integrity sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ== + "@csstools/css-parser-algorithms@^4.0.0": version "4.0.0" - resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz#e1c65dc09378b42f26a111fca7f7075fc2c26164" + resolved "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz" integrity sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w== "@csstools/css-syntax-patches-for-csstree@^1.1.3": version "1.1.6" - resolved "https://registry.yarnpkg.com/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.6.tgz#3a1e91cefb65b4a74ae7dd78c9b2dd60cdbf3ad4" + resolved "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.6.tgz" integrity sha512-TcJCWFbXLPpJYq6z7bfOyjWYJDiDg2/I4gyUC9pqPNqHFRIey0EB0q0L5cSnQDfWJg8Jd6VadakxdIez/3zkqQ== +"@csstools/css-tokenizer@^3.0.3", "@csstools/css-tokenizer@^3.0.4": + version "3.0.4" + resolved "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz" + integrity sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw== + "@csstools/css-tokenizer@^4.0.0": version "4.0.0" - resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz#798a33950d11226a0ebb6acafa60f5594424967f" + resolved "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz" integrity sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA== +"@csstools/postcss-oklab-function@^5.0.6": + version "5.0.6" + resolved "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-5.0.6.tgz" + integrity sha512-6yZ+OySSaBybv12OfgKFBgCK1Se2mBbhh9eIDbUdWGHJUXZPQoLbtPj8S6Wg0lqe0nTqKgY/l8Ir9lHrm2TUBQ== + dependencies: + "@csstools/css-color-parser" "^4.1.9" + "@csstools/css-parser-algorithms" "^4.0.0" + "@csstools/css-tokenizer" "^4.0.0" + "@csstools/postcss-progressive-custom-properties" "^5.1.1" + "@csstools/utilities" "^3.0.0" + +"@csstools/postcss-progressive-custom-properties@^5.1.1": + version "5.1.1" + resolved "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-5.1.1.tgz" + integrity sha512-b9+lusgVDTHXRBgYKE9s0RKUyEn6Q/knmMDmYmSrkZjtpb0Nd71pBtgVMf9tSpOIb0K8hyzeyy6JyKFqg5rBJw== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/utilities@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@csstools/utilities/-/utilities-3.0.0.tgz" + integrity sha512-etDqA/4jYvOGBM6yfKCOsEXfH96BKztZdgGmGqKi2xHnDe0ILIBraRspwgYatJH9JsCZ5HCGoCst8w18EKOAdg== + "@discoveryjs/json-ext@^0.6.1": version "0.6.3" resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz" integrity sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ== -"@emnapi/core@^1.10.0": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.11.1.tgz#b9e1064f3a6b1631e241e638eb48d736bfd372a6" - integrity sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ== - dependencies: - "@emnapi/wasi-threads" "1.2.2" - tslib "^2.4.0" - -"@emnapi/runtime@^1.10.0": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.11.1.tgz#58f1f3d5d81a9b12f793ab688c96371901027c24" - integrity sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw== - dependencies: - tslib "^2.4.0" - -"@emnapi/wasi-threads@1.2.2", "@emnapi/wasi-threads@^1.2.1": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz#4c93becf5bfa3b13d1bbdcc06aee38321ad8139a" - integrity sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA== - dependencies: - tslib "^2.4.0" - "@emotion/babel-plugin@^11.13.5": version "11.13.5" resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz" @@ -1821,124 +2584,19 @@ resolved "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz" integrity sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg== -"@esbuild/aix-ppc64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" - integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== - -"@esbuild/android-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" - integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== - -"@esbuild/android-arm@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" - integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== - -"@esbuild/android-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" - integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== - -"@esbuild/darwin-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" - integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== - -"@esbuild/darwin-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" - integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== - -"@esbuild/freebsd-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" - integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== - -"@esbuild/freebsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" - integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== - "@esbuild/linux-arm64@0.21.5": version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz" integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== -"@esbuild/linux-arm@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" - integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== - -"@esbuild/linux-ia32@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" - integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== - -"@esbuild/linux-loong64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" - integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== - -"@esbuild/linux-mips64el@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" - integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== - -"@esbuild/linux-ppc64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" - integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== - -"@esbuild/linux-riscv64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" - integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== - -"@esbuild/linux-s390x@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" - integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== - -"@esbuild/linux-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" - integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== - -"@esbuild/netbsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" - integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== - -"@esbuild/openbsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" - integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== - -"@esbuild/sunos-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" - integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== - -"@esbuild/win32-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" - integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== - -"@esbuild/win32-ia32@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" - integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== - -"@esbuild/win32-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" - integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== +"@esbuild/linux-arm64@0.28.1": + version "0.28.1" + resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz" + integrity sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g== "@exodus/bytes@^1.11.0", "@exodus/bytes@^1.15.0", "@exodus/bytes@^1.6.0": version "1.15.1" - resolved "https://registry.yarnpkg.com/@exodus/bytes/-/bytes-1.15.1.tgz#b13bc464ca162c17abf0837fb3a11aeab79e45d1" + resolved "https://registry.npmjs.org/@exodus/bytes/-/bytes-1.15.1.tgz" integrity sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q== "@floating-ui/core@^1.7.5": @@ -1983,7 +2641,7 @@ resolved "https://registry.npmjs.org/@hotwired/stimulus-webpack-helpers/-/stimulus-webpack-helpers-1.0.1.tgz" integrity sha512-wa/zupVG0eWxRYJjC1IiPBdt3Lruv0RqGN+/DTMmUWUyMAEB27KXmVY6a8YpUVTM7QwVuaLNGW4EqDgrS2upXQ== -"@hotwired/stimulus@^3.0.0": +"@hotwired/stimulus@^3.0", "@hotwired/stimulus@^3.0.0", "@hotwired/stimulus@>= 3.0": version "3.2.2" resolved "https://registry.npmjs.org/@hotwired/stimulus/-/stimulus-3.2.2.tgz" integrity sha512-eGeIqNOQpXoPAIP7tC1+1Yc1yl1xnwYqg+3mzqxyrbE5pg5YFBZcA6YoTiByJB6DKAEsiWtl6tjTJS4IYtbB7A== @@ -2073,13 +2731,6 @@ resolved "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz" integrity sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw== -"@napi-rs/wasm-runtime@^1.1.4": - version "1.1.6" - resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz#ed33806d0f9be98dc76d0c3d4fd872fda701b5d5" - integrity sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg== - dependencies: - "@tybys/wasm-util" "^0.10.3" - "@react-leaflet/core@^3.0.0": version "3.0.0" resolved "https://registry.npmjs.org/@react-leaflet/core/-/core-3.0.0.tgz" @@ -2099,140 +2750,20 @@ "@rolldown/pluginutils@1.0.0-beta.27": version "1.0.0-beta.27" - resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz#47d2bf4cef6d470b22f5831b420f8964e0bf755f" + resolved "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz" integrity sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA== -"@rollup/rollup-android-arm-eabi@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.62.2.tgz#5e9849b661c2229cf967a08dbe2dbbe9e8c991e5" - integrity sha512-6o7ZLZK+BeenkZCFNDXqpbjw9bD6nuWonvS/lwQJp7NoVVxm6p3qE7qQ5jGuBjiFsgvqjD8mZAU5oWxTmbOeOg== - -"@rollup/rollup-android-arm64@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.62.2.tgz#5b0699ee5dd484b222c9ed74aff43c91ea8b17f8" - integrity sha512-BaH7BllCACHoH1LguOU56UItGfUWjujlO65kS9LAodViaN4bwIKd7oeW/ZHJ/4ljr/7MIiENnNy3HJ0zXv8Zkw== - -"@rollup/rollup-darwin-arm64@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.62.2.tgz#8bc52c9d7a3ce8d0533c351a9c935de781daa06f" - integrity sha512-v39RCCvj4He82I9sFmk+M1VZ0PLM9sfsLVikjfx2hYBNALhrrOR2D3JjQA6AhlaSOgcR+RzrKY7e1+bT6SUO/A== - -"@rollup/rollup-darwin-x64@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.62.2.tgz#ba2ef3e8fb310f0af35588f270cfa5aa96e48764" - integrity sha512-yl0y2vq3S3lHeuXhEdss6TWfKW8vkujImO12tn4ZkG/4oghr09LvdYm2RElVjokTQiUvDUGXLGsYeLqUMCKpGA== - -"@rollup/rollup-freebsd-arm64@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.62.2.tgz#93b10bdbfe8ada226b8bc0c02ef6b7f544474d96" - integrity sha512-tT4pvt4qXD+vEoezupCWi+a1F0vvDiksiHc+PxRlYTOH1I6/X4id9jPxTP+Fg+545euaFT1jJVs4CEdHZAU1vw== - -"@rollup/rollup-freebsd-x64@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.62.2.tgz#3e8aa38ef3c9c300946871e3fdbb0c30e0a20f86" - integrity sha512-6nU5F2wCW+qvCBhTn1pdIU3bzsIoF7EUwsCDRxilWGprQR6yd508YnH9+OKFCwpfS8pjZqDUmnCAr7exax0XCg== - -"@rollup/rollup-linux-arm-gnueabihf@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.62.2.tgz#1d7994384bb0ad1bc41921b506e1642d4f9d7fc3" - integrity sha512-n1GJHPOvpIfhi3TmrCeh6S6URt9BFCt0KQE3qvexyGCTAKpR4Lg+eWvNZEqu7epxwus/8ElT3hacYEucm49SZg== - -"@rollup/rollup-linux-arm-musleabihf@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.62.2.tgz#a6540f47cf844a56b80ca9ff95d2acdfb2cef97b" - integrity sha512-JqgflS8wEB+UXV/vS1RpRbifGBeN4D5lz8D8oOFbFZw4vedvdOgCFAjfBmIMdW3yL10XpQQ0Ambepw6MXrhOnA== - "@rollup/rollup-linux-arm64-gnu@4.62.2": version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.2.tgz#404f2045651840cbf48da91ba6d0f490f0bc2cbf" + resolved "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.2.tgz" integrity sha512-wnFJkogWvN4jm/hQRF2UBaeUmk20j5+DmHvoyWii2b8HJDyvz1MF2OU/6ynXt2KR63rbZLWkFpoytpdc/yBuSA== -"@rollup/rollup-linux-arm64-musl@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.62.2.tgz#a3404ffddf7b474b48c99b9c893b6247bb765ba5" - integrity sha512-HVu2bp0zhvJ8xHEV9+UUs7S90VadmBSY3LcIMvozbPo4AuMGDWlz3ymHLHZPX4hR67TKTt8Qp5PJ5RBg/i+RMQ== - -"@rollup/rollup-linux-loong64-gnu@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.62.2.tgz#e8aac6d549b377945e349882f199b7c8eb75ca38" - integrity sha512-mQqqAV8QaoSgr9I2fKDLY2BAVvmKjWoGiu/cSYQonsLvtqwEn1E4QYfnCOcp5zoEqNhsDYin1s6jx/VJmrxlZg== - -"@rollup/rollup-linux-loong64-musl@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.62.2.tgz#6e2e44ea50310b3a582078a915e5feb879c820d4" - integrity sha512-IxKLoxCQ2IWi6bT2akyDUBGsOImDKB+sPp4EsTmwFQ/fMwpCKm8uLSSgP/Kx/QYUgKis6SEZ5/Nlhup0DIA0PQ== - -"@rollup/rollup-linux-ppc64-gnu@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.62.2.tgz#6898302da6d77a0537cde64b2b4c6b60659bd110" - integrity sha512-Mk5ha2RQSgyFfmYYLkBpPnUk8D8FriBxesO1u9O75X0mHgXL1UQcH5Itl2lurWL2tj0RxV9b9tJgipac0hRY9A== - -"@rollup/rollup-linux-ppc64-musl@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.62.2.tgz#333717c95dd5a66bef8f63e7ef8a9fd845fd18d0" - integrity sha512-CjvEnqJL/0/TQ3TXX3OPIJ/kmBellrWd4heXUmHeJlTnmwjKpSJzoehLaL6Xk0ZnMHBu9dZuFADNOrtjF4v+2w== - -"@rollup/rollup-linux-riscv64-gnu@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.62.2.tgz#81bc06ba380352004d01f4826eb7cdccefa05bad" - integrity sha512-1SiZbzwdkaDURsew/tSOrooKiYy7EQGT6m8ufavAi9NEyQb/6VuIxFXAL1fqa4iZe3g4NbNk4P7J32z2tw5Mgg== - -"@rollup/rollup-linux-riscv64-musl@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.62.2.tgz#95a7cd39de21389ad6788a5284eaaa738e29ca4c" - integrity sha512-nQts12zJ3NQRoE6uYljOH89v7szzLDvG2JD/vsX+vGXU8w/At1GowTZ5/7qeFQ8m7L55rpR8Okugnuo5bgjy2Q== - -"@rollup/rollup-linux-s390x-gnu@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.62.2.tgz#06e6db2ec1bc48b5374c7923ef83c2eb024b2452" - integrity sha512-E9/ll019jhPIJgpzfZoIkBGhcz+kKNgVWYRY0zr9srBdPPFVpvOKW8VaJKUbeK+eZXyQF9ltME+Kk6affeaPgg== - -"@rollup/rollup-linux-x64-gnu@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.62.2.tgz#5dc818988285e09e88790c6462def72413df2da3" - integrity sha512-5BqxR/pshjey51iliyzTD5Xi3EN0aLmQ2lZ3lvefVV9c82BvrLo2/6OT55iifpWBufs6kdwWbuOKS841DrmK9A== - -"@rollup/rollup-linux-x64-musl@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.62.2.tgz#2080f4a93349e9afd34be6fc1a37e01fc8bfc80f" - integrity sha512-uNN83XxQrRAh/w0/pmAfibcwyb6YWt4gP+dpnQKPVJshAloQ785ii8CT8ZCIxkGg9opVsvAlGhFitSm6D1Jjpg== - -"@rollup/rollup-openbsd-x64@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.62.2.tgz#21d64a8acb66221724b923e51af5333df1af044b" - integrity sha512-srjEIxSH3LRnJN6THczDHWQplqEMFiAJrTab0msUryh9kwNpkICf3Ea6q6MN/2cZwRFUNx5w+h6Hpi4QuHS6Zg== - -"@rollup/rollup-openharmony-arm64@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.62.2.tgz#8e0fcd9d02141e337b4c5b5cff576cb9a76b1ba0" - integrity sha512-8hOJnxgbyObnCm5AlRA3A931xX19xq80RjVTKgJOvEKWqJruP/Uf12IbAOaDjjEXYRewwHLfmF0YRIdK3OwKWA== - -"@rollup/rollup-win32-arm64-msvc@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.62.2.tgz#bdb4cc4efd58efe808203347f0f5463f0ea16e52" - integrity sha512-mmF4AY1i0hG/bLWUctUq59gtmgaSIRa3cu/A3JFRp/sCNEme2bgDEiDS22P9FbnJB8NJNF4jPJiSP5RHQpUTDg== - -"@rollup/rollup-win32-ia32-msvc@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.62.2.tgz#dbaebde5afd24eae0eefe915d901632e7cb59860" - integrity sha512-DZgkknc6jhHrk46V25vbAM0zZkyP0nSDkJB8/dRkLTxv470dOmWDqGoEJl/9A0dFfS7yE3REOwNDxpHwSLSt0Q== - -"@rollup/rollup-win32-x64-gnu@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.62.2.tgz#84109e85fea5f8f1353499f96578fdc2a0e8b138" - integrity sha512-T6xr6ucWSFto+VGajA8YH26LdpHRuP4YLHEKAtCWvJDOlnmWcDZVCI2Jmjr+IFHDlt2zRaTAKE4tfjTaWLgJBg== - -"@rollup/rollup-win32-x64-msvc@4.62.2": - version "4.62.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.62.2.tgz#3671ce3f9b928d5c01f879792d5c0b60ae14d4ad" - integrity sha512-BfzEnDJOt9T8M989/lA37EcJgat01wLRnoi5dQf3QzOH7jzpqTAzdDbVfRljVr5r+jzKqpbHeyOfAaXxAd0PAA== - "@sinclair/typebox@^0.34.0": version "0.34.49" resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.49.tgz" integrity sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A== -"@standard-schema/spec@^1.0.0": +"@standard-schema/spec@^1.0.0", "@standard-schema/spec@^1.1.0": version "1.1.0" resolved "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz" integrity sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w== @@ -2242,7 +2773,7 @@ resolved "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz" integrity sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g== -"@symfony/stimulus-bridge@^3.2.0 || ^4.0.0": +"@symfony/stimulus-bridge@^3.0.0 || ^4.0.0", "@symfony/stimulus-bridge@^3.2.0 || ^4.0.0": version "4.0.1" resolved "https://registry.npmjs.org/@symfony/stimulus-bridge/-/stimulus-bridge-4.0.1.tgz" integrity sha512-+/kSQ4qFXMbZS+HjkhzOxwdN+60pMev7kzzDpQV/Tdm/iIWoxx5GDsVcdLaBb2783BVQHyrBP72JerF2SXTbTg== @@ -2254,6 +2785,7 @@ "@symfony/ux-react@file:vendor/symfony/ux-react/assets": version "2.35.0" + resolved "file:vendor/symfony/ux-react/assets" "@symfony/webpack-encore@^6.0.0": version "6.0.0" @@ -2290,31 +2822,6 @@ source-map-js "^1.2.1" tailwindcss "4.3.0" -"@tailwindcss/oxide-android-arm64@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.0.tgz#e4533b6125236fe81a899cf5a82028c85244def8" - integrity sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng== - -"@tailwindcss/oxide-darwin-arm64@4.3.0": - version "4.3.0" - resolved "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.0.tgz" - integrity sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ== - -"@tailwindcss/oxide-darwin-x64@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.0.tgz#0d9638d06d38684339b2dc06631966a7296bb64e" - integrity sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA== - -"@tailwindcss/oxide-freebsd-x64@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.0.tgz#efc7acd17cd38d7585c07cb938a4f1b703f79d7a" - integrity sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ== - -"@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.0.tgz#e41c945e529670cd93fd6ed0c6a2880de5c40333" - integrity sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA== - "@tailwindcss/oxide-linux-arm64-gnu@4.3.0": version "4.3.0" resolved "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.0.tgz" @@ -2325,38 +2832,6 @@ resolved "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.0.tgz" integrity sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ== -"@tailwindcss/oxide-linux-x64-gnu@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.0.tgz#5267c0bb2597426c0d2e759acb5389cde2aa71fd" - integrity sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ== - -"@tailwindcss/oxide-linux-x64-musl@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.0.tgz#fb2da97c67b218e5c7c723cb32782d55d7e4a5d5" - integrity sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg== - -"@tailwindcss/oxide-wasm32-wasi@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.0.tgz#3f6538e511066d67d8683863dcaeeb16c22de849" - integrity sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA== - dependencies: - "@emnapi/core" "^1.10.0" - "@emnapi/runtime" "^1.10.0" - "@emnapi/wasi-threads" "^1.2.1" - "@napi-rs/wasm-runtime" "^1.1.4" - "@tybys/wasm-util" "^0.10.1" - tslib "^2.8.1" - -"@tailwindcss/oxide-win32-arm64-msvc@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.0.tgz#ec45fba773c76759338c05d4fe5cf42c4eea2e4e" - integrity sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ== - -"@tailwindcss/oxide-win32-x64-msvc@4.3.0": - version "4.3.0" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.0.tgz#58cdd6e06adbe2e3160274edfcd0b0b43e17fee4" - integrity sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA== - "@tailwindcss/oxide@4.3.0": version "4.3.0" resolved "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.0.tgz" @@ -2410,9 +2885,9 @@ resolved "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.3.tgz" integrity sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg== -"@testing-library/dom@^10.4.1": +"@testing-library/dom@^10.0.0", "@testing-library/dom@^10.4.0", "@testing-library/dom@^10.4.1", "@testing-library/dom@>=7.21.4": version "10.4.1" - resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-10.4.1.tgz#d444f8a889e9a46e9a3b4f3b88e0fcb3efb6cf95" + resolved "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz" integrity sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg== dependencies: "@babel/code-frame" "^7.10.4" @@ -2424,9 +2899,9 @@ picocolors "1.1.1" pretty-format "^27.0.2" -"@testing-library/jest-dom@^6.9.1": +"@testing-library/jest-dom@^6.6.3", "@testing-library/jest-dom@^6.9.1": version "6.9.1" - resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz#7613a04e146dd2976d24ddf019730d57a89d56c2" + resolved "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz" integrity sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA== dependencies: "@adobe/css-tools" "^4.4.0" @@ -2438,30 +2913,16 @@ "@testing-library/react@^16.3.2": version "16.3.2" - resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-16.3.2.tgz#672883b7acb8e775fc0492d9e9d25e06e89786d0" + resolved "https://registry.npmjs.org/@testing-library/react/-/react-16.3.2.tgz" integrity sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g== dependencies: "@babel/runtime" "^7.12.5" "@testing-library/user-event@^14.6.1": version "14.6.1" - resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.6.1.tgz#13e09a32d7a8b7060fe38304788ebf4197cd2149" + resolved "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz" integrity sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw== -"@tybys/wasm-util@^0.10.1": - version "0.10.2" - resolved "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz" - integrity sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg== - dependencies: - tslib "^2.4.0" - -"@tybys/wasm-util@^0.10.3": - version "0.10.3" - resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.3.tgz#015cba9e9dd47ce14d03d2a8c5d547bfb169665d" - integrity sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg== - dependencies: - tslib "^2.4.0" - "@types/aria-query@^5.0.1": version "5.0.4" resolved "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz" @@ -2469,7 +2930,7 @@ "@types/babel__core@^7.20.5": version "7.20.5" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz" integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== dependencies: "@babel/parser" "^7.20.7" @@ -2480,14 +2941,14 @@ "@types/babel__generator@*": version "7.27.0" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.27.0.tgz#b5819294c51179957afaec341442f9341e4108a9" + resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz" integrity sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": version "7.4.4" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz" integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== dependencies: "@babel/parser" "^7.1.0" @@ -2495,11 +2956,19 @@ "@types/babel__traverse@*": version "7.28.0" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.28.0.tgz#07d713d6cce0d265c9849db0cbe62d3f61f36f74" + resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz" integrity sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q== dependencies: "@babel/types" "^7.28.2" +"@types/chai@^5.2.2": + version "5.2.3" + resolved "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz" + integrity sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA== + dependencies: + "@types/deep-eql" "*" + assertion-error "^2.0.1" + "@types/color-convert@2.0.4": version "2.0.4" resolved "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.4.tgz" @@ -2563,7 +3032,19 @@ resolved "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz" integrity sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw== -"@types/estree@1.0.9", "@types/estree@^1.0.0", "@types/estree@^1.0.8": +"@types/debug@^4.0.0": + version "4.1.13" + resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz" + integrity sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw== + dependencies: + "@types/ms" "*" + +"@types/deep-eql@*": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz" + integrity sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== + +"@types/estree@^1.0.0", "@types/estree@^1.0.8", "@types/estree@1.0.9": version "1.0.9" resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz" integrity sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg== @@ -2573,6 +3054,13 @@ resolved "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz" integrity sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg== +"@types/hast@^3.0.0", "@types/hast@3.0.4": + version "3.0.4" + resolved "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz" + integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== + dependencies: + "@types/unist" "*" + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.6": version "2.0.6" resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz" @@ -2621,7 +3109,19 @@ resolved "https://registry.npmjs.org/@types/marked/-/marked-4.3.2.tgz" integrity sha512-a79Yc3TOk6dGdituy8hmTTJXjOkZ7zsFYV10L337ttq/rec8lRMDBpV7fL3uLx6TgbFCa5DU/h8FmIBQPSbU0w== -"@types/node@*": +"@types/mdast@^4.0.0": + version "4.0.4" + resolved "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz" + integrity sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA== + dependencies: + "@types/unist" "*" + +"@types/ms@*": + version "2.1.0" + resolved "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz" + integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== + +"@types/node@*", "@types/node@^18.0.0 || >=20.0.0", "@types/node@^20.0.0 || ^22.0.0 || >=24.0.0", "@types/node@^20.19.0 || >=22.12.0": version "25.9.2" resolved "https://registry.npmjs.org/@types/node/-/node-25.9.2.tgz" integrity sha512-G05zqtJhcDLb8uslf5EjCxXg9G1KQxiV8OS0R26IC//Eoyitzqe8z37I7cqvnZlrlSfgocQRfSn/AHBZJJFyGw== @@ -2633,7 +3133,7 @@ resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz" integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== -"@types/react-dom@^19.0.0": +"@types/react-dom@^18.0 || ^19.0", "@types/react-dom@^18.0.0 || ^19.0.0", "@types/react-dom@^19.0.0": version "19.2.3" resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz" integrity sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ== @@ -2643,7 +3143,7 @@ resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz" integrity sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w== -"@types/react@^19.0.0": +"@types/react@*", "@types/react@^18.0 || ^19.0", "@types/react@^18.0.0 || ^19.0.0", "@types/react@^18.2.25 || ^19", "@types/react@^19.0.0", "@types/react@^19.2.0", "@types/react@>=18.0.0": version "19.2.17" resolved "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz" integrity sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw== @@ -2655,12 +3155,17 @@ resolved "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.5.tgz" integrity sha512-TL2IgGgc7B5j78rIccBtlYAnkuv8nUQqhQc+DSYV5j9Be9XOcm/SKOVRuA47xAVI3680Tk9B1d8flK2GWT2+4w== +"@types/unist@*", "@types/unist@^3.0.0": + version "3.0.3" + resolved "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz" + integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== + "@types/use-sync-external-store@^0.0.6": version "0.0.6" resolved "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz" integrity sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg== -"@types/webpack-env@^1.16.4": +"@types/webpack-env@^1.16", "@types/webpack-env@^1.16.4": version "1.18.8" resolved "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.18.8.tgz" integrity sha512-G9eAoJRMLjcvN4I08wB5I7YofOb/kaJNd5uoCMX+LbKXTPCF+ZIHuqTnFaK9Jz1rgs035f9JUPUhNFtqgucy/A== @@ -2677,14 +3182,14 @@ dependencies: "@types/yargs-parser" "*" -"@ungap/structured-clone@^1.3.0": +"@ungap/structured-clone@^1.0.0", "@ungap/structured-clone@^1.3.0": version "1.3.1" resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz" integrity sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ== -"@vitejs/plugin-react@^4": +"@vitejs/plugin-react@^4", "@vitejs/plugin-react@^4.1.0": version "4.7.0" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz#647af4e7bb75ad3add578e762ad984b90f4a24b9" + resolved "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz" integrity sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA== dependencies: "@babel/core" "^7.28.0" @@ -2696,7 +3201,7 @@ "@vitest/expect@2.1.9": version "2.1.9" - resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-2.1.9.tgz#b566ea20d58ea6578d8dc37040d6c1a47ebe5ff8" + resolved "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.9.tgz" integrity sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw== dependencies: "@vitest/spy" "2.1.9" @@ -2704,56 +3209,116 @@ chai "^5.1.2" tinyrainbow "^1.2.0" +"@vitest/expect@4.1.9": + version "4.1.9" + resolved "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.9.tgz" + integrity sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA== + dependencies: + "@standard-schema/spec" "^1.1.0" + "@types/chai" "^5.2.2" + "@vitest/spy" "4.1.9" + "@vitest/utils" "4.1.9" + chai "^6.2.2" + tinyrainbow "^3.1.0" + "@vitest/mocker@2.1.9": version "2.1.9" - resolved "https://registry.yarnpkg.com/@vitest/mocker/-/mocker-2.1.9.tgz#36243b27351ca8f4d0bbc4ef91594ffd2dc25ef5" + resolved "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.9.tgz" integrity sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg== dependencies: "@vitest/spy" "2.1.9" estree-walker "^3.0.3" magic-string "^0.30.12" -"@vitest/pretty-format@2.1.9", "@vitest/pretty-format@^2.1.9": +"@vitest/mocker@4.1.9": + version "4.1.9" + resolved "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.9.tgz" + integrity sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw== + dependencies: + "@vitest/spy" "4.1.9" + estree-walker "^3.0.3" + magic-string "^0.30.21" + +"@vitest/pretty-format@^2.1.9", "@vitest/pretty-format@2.1.9": version "2.1.9" - resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-2.1.9.tgz#434ff2f7611689f9ce70cd7d567eceb883653fdf" + resolved "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.9.tgz" integrity sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ== dependencies: tinyrainbow "^1.2.0" +"@vitest/pretty-format@4.1.9": + version "4.1.9" + resolved "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.9.tgz" + integrity sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A== + dependencies: + tinyrainbow "^3.1.0" + "@vitest/runner@2.1.9": version "2.1.9" - resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-2.1.9.tgz#cc18148d2d797fd1fd5908d1f1851d01459be2f6" + resolved "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.9.tgz" integrity sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g== dependencies: "@vitest/utils" "2.1.9" pathe "^1.1.2" +"@vitest/runner@4.1.9": + version "4.1.9" + resolved "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.9.tgz" + integrity sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg== + dependencies: + "@vitest/utils" "4.1.9" + pathe "^2.0.3" + "@vitest/snapshot@2.1.9": version "2.1.9" - resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-2.1.9.tgz#24260b93f798afb102e2dcbd7e61c6dfa118df91" + resolved "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.9.tgz" integrity sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ== dependencies: "@vitest/pretty-format" "2.1.9" magic-string "^0.30.12" pathe "^1.1.2" +"@vitest/snapshot@4.1.9": + version "4.1.9" + resolved "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.9.tgz" + integrity sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA== + dependencies: + "@vitest/pretty-format" "4.1.9" + "@vitest/utils" "4.1.9" + magic-string "^0.30.21" + pathe "^2.0.3" + "@vitest/spy@2.1.9": version "2.1.9" - resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-2.1.9.tgz#cb28538c5039d09818b8bfa8edb4043c94727c60" + resolved "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.9.tgz" integrity sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ== dependencies: tinyspy "^3.0.2" +"@vitest/spy@4.1.9": + version "4.1.9" + resolved "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.9.tgz" + integrity sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA== + "@vitest/utils@2.1.9": version "2.1.9" - resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-2.1.9.tgz#4f2486de8a54acf7ecbf2c5c24ad7994a680a6c1" + resolved "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.9.tgz" integrity sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ== dependencies: "@vitest/pretty-format" "2.1.9" loupe "^3.1.2" tinyrainbow "^1.2.0" -"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1": +"@vitest/utils@4.1.9": + version "4.1.9" + resolved "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.9.tgz" + integrity sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA== + dependencies: + "@vitest/pretty-format" "4.1.9" + convert-source-map "^2.0.0" + tinyrainbow "^3.1.0" + +"@webassemblyjs/ast@^1.14.1", "@webassemblyjs/ast@1.14.1": version "1.14.1" resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz" integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ== @@ -2854,7 +3419,7 @@ "@webassemblyjs/wasm-gen" "1.14.1" "@webassemblyjs/wasm-parser" "1.14.1" -"@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.14.1": +"@webassemblyjs/wasm-parser@^1.14.1", "@webassemblyjs/wasm-parser@1.14.1": version "1.14.1" resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz" integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ== @@ -2904,7 +3469,7 @@ acorn-import-phases@^1.0.3: resolved "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz" integrity sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ== -acorn@^8.15.0, acorn@^8.16.0: +acorn@^8.14.0, acorn@^8.15.0, acorn@^8.16.0: version "8.16.0" resolved "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz" integrity sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw== @@ -2917,6 +3482,11 @@ adjust-sourcemap-loader@^4.0.0: loader-utils "^2.0.0" regex-parser "^2.2.11" +agent-base@^7.1.0, agent-base@^7.1.2: + version "7.1.4" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz" + integrity sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== + ajv-formats@^2.1.1: version "2.1.1" resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" @@ -2931,7 +3501,7 @@ ajv-keywords@^5.1.0: dependencies: fast-deep-equal "^3.1.3" -ajv@^8.0.0, ajv@^8.9.0: +ajv@^8.0.0, ajv@^8.8.2, ajv@^8.9.0: version "8.20.0" resolved "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz" integrity sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA== @@ -2963,7 +3533,7 @@ argparse@^2.0.1: resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-query@5.3.0, aria-query@^5.0.0: +aria-query@^5.0.0, aria-query@5.3.0: version "5.3.0" resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz" integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== @@ -3015,6 +3585,11 @@ babel-plugin-polyfill-regenerator@^0.6.6: dependencies: "@babel/helper-define-polyfill-provider" "^0.6.8" +bail@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz" + integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== + baseline-browser-mapping@^2.10.12: version "2.10.35" resolved "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.35.tgz" @@ -3022,7 +3597,7 @@ baseline-browser-mapping@^2.10.12: bidi-js@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/bidi-js/-/bidi-js-1.0.3.tgz#6f8bcf3c877c4d9220ddf49b9bb6930c88f877d2" + resolved "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz" integrity sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw== dependencies: require-from-string "^2.0.2" @@ -3049,7 +3624,7 @@ braces@^3.0.3: dependencies: fill-range "^7.1.1" -browserslist@^4.0.0, browserslist@^4.24.0, browserslist@^4.28.1, browserslist@^4.28.2: +browserslist@^4.0.0, browserslist@^4.24.0, browserslist@^4.28.1, browserslist@^4.28.2, "browserslist@>= 4.21.0": version "4.28.2" resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz" integrity sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg== @@ -3067,7 +3642,7 @@ buffer-from@^1.0.0: cac@^6.7.14: version "6.7.14" - resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" + resolved "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz" integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== callsites@^3.0.0: @@ -3090,9 +3665,14 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001782: resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001797.tgz" integrity sha512-l8xKG+gwAIExZGl9FrF7KUwuOmk6wbEPC9Xoy/RtnWv1XG0Q4LFlagaLpUv3Kiza3W/wm27zy0yWJEieYKAP6w== +ccount@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz" + integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== + chai@^5.1.2: version "5.3.3" - resolved "https://registry.yarnpkg.com/chai/-/chai-5.3.3.tgz#dd3da955e270916a4bd3f625f4b919996ada7e06" + resolved "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz" integrity sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw== dependencies: assertion-error "^2.0.1" @@ -3101,6 +3681,11 @@ chai@^5.1.2: loupe "^3.1.0" pathval "^2.0.0" +chai@^6.2.2: + version "6.2.2" + resolved "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz" + integrity sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg== + chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" @@ -3109,9 +3694,24 @@ chalk@^4.1.0, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" +character-entities-html4@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz" + integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== + +character-entities-legacy@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz" + integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== + +character-entities@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz" + integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== + check-error@^2.1.1: version "2.1.3" - resolved "https://registry.yarnpkg.com/check-error/-/check-error-2.1.3.tgz#2427361117b70cca8dc89680ead32b157019caf5" + resolved "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz" integrity sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA== chrome-trace-event@^1.0.2: @@ -3124,6 +3724,72 @@ ci-info@^4.2.0: resolved "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz" integrity sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg== +"ckeditor5@>=42.0.0 || ^0.0.0-nightly", "ckeditor5@>=46.0.0 || ^0.0.0-nightly || ^0.0.0-internal": + version "48.2.0" + resolved "https://registry.npmjs.org/ckeditor5/-/ckeditor5-48.2.0.tgz" + integrity sha512-qhK0KDC8sks9u7XziILfdL9NrK6Rv7n0mD4FhMWV9q6Nec13F1a9IlxffZRdJlQCgnlOPfH7ZzhjecZQLCflFw== + dependencies: + "@ckeditor/ckeditor5-adapter-ckfinder" "48.2.0" + "@ckeditor/ckeditor5-alignment" "48.2.0" + "@ckeditor/ckeditor5-autoformat" "48.2.0" + "@ckeditor/ckeditor5-autosave" "48.2.0" + "@ckeditor/ckeditor5-basic-styles" "48.2.0" + "@ckeditor/ckeditor5-block-quote" "48.2.0" + "@ckeditor/ckeditor5-bookmark" "48.2.0" + "@ckeditor/ckeditor5-ckbox" "48.2.0" + "@ckeditor/ckeditor5-ckfinder" "48.2.0" + "@ckeditor/ckeditor5-clipboard" "48.2.0" + "@ckeditor/ckeditor5-cloud-services" "48.2.0" + "@ckeditor/ckeditor5-code-block" "48.2.0" + "@ckeditor/ckeditor5-core" "48.2.0" + "@ckeditor/ckeditor5-easy-image" "48.2.0" + "@ckeditor/ckeditor5-editor-balloon" "48.2.0" + "@ckeditor/ckeditor5-editor-classic" "48.2.0" + "@ckeditor/ckeditor5-editor-decoupled" "48.2.0" + "@ckeditor/ckeditor5-editor-inline" "48.2.0" + "@ckeditor/ckeditor5-editor-multi-root" "48.2.0" + "@ckeditor/ckeditor5-emoji" "48.2.0" + "@ckeditor/ckeditor5-engine" "48.2.0" + "@ckeditor/ckeditor5-enter" "48.2.0" + "@ckeditor/ckeditor5-essentials" "48.2.0" + "@ckeditor/ckeditor5-find-and-replace" "48.2.0" + "@ckeditor/ckeditor5-font" "48.2.0" + "@ckeditor/ckeditor5-fullscreen" "48.2.0" + "@ckeditor/ckeditor5-heading" "48.2.0" + "@ckeditor/ckeditor5-highlight" "48.2.0" + "@ckeditor/ckeditor5-horizontal-line" "48.2.0" + "@ckeditor/ckeditor5-html-embed" "48.2.0" + "@ckeditor/ckeditor5-html-support" "48.2.0" + "@ckeditor/ckeditor5-icons" "48.2.0" + "@ckeditor/ckeditor5-image" "48.2.0" + "@ckeditor/ckeditor5-indent" "48.2.0" + "@ckeditor/ckeditor5-language" "48.2.0" + "@ckeditor/ckeditor5-link" "48.2.0" + "@ckeditor/ckeditor5-list" "48.2.0" + "@ckeditor/ckeditor5-markdown-gfm" "48.2.0" + "@ckeditor/ckeditor5-media-embed" "48.2.0" + "@ckeditor/ckeditor5-mention" "48.2.0" + "@ckeditor/ckeditor5-minimap" "48.2.0" + "@ckeditor/ckeditor5-page-break" "48.2.0" + "@ckeditor/ckeditor5-paragraph" "48.2.0" + "@ckeditor/ckeditor5-paste-from-office" "48.2.0" + "@ckeditor/ckeditor5-remove-format" "48.2.0" + "@ckeditor/ckeditor5-restricted-editing" "48.2.0" + "@ckeditor/ckeditor5-select-all" "48.2.0" + "@ckeditor/ckeditor5-show-blocks" "48.2.0" + "@ckeditor/ckeditor5-source-editing" "48.2.0" + "@ckeditor/ckeditor5-special-characters" "48.2.0" + "@ckeditor/ckeditor5-style" "48.2.0" + "@ckeditor/ckeditor5-table" "48.2.0" + "@ckeditor/ckeditor5-typing" "48.2.0" + "@ckeditor/ckeditor5-ui" "48.2.0" + "@ckeditor/ckeditor5-undo" "48.2.0" + "@ckeditor/ckeditor5-upload" "48.2.0" + "@ckeditor/ckeditor5-utils" "48.2.0" + "@ckeditor/ckeditor5-watchdog" "48.2.0" + "@ckeditor/ckeditor5-widget" "48.2.0" + "@ckeditor/ckeditor5-word-count" "48.2.0" + ckeditor5@44.3.0: version "44.3.0" resolved "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz" @@ -3203,18 +3869,30 @@ clsx@^2.1.1: resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz" integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== -color-convert@2.0.1, color-convert@^2.0.1: +color-convert@^2.0.1, color-convert@2.0.1: version "2.0.1" resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" +color-convert@3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz" + integrity sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA== + dependencies: + color-name "^2.0.0" + color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-name@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/color-name/-/color-name-2.1.0.tgz" + integrity sha512-1bPaDNFm0axzE4MEAzKPuqKWeRaT43U/hyxKPBdqTfmPF+d6n7FSoTFxLVULUJOmiLp01KjhIPPH+HrXZJN4Rg== + color-parse@1.4.2: version "1.4.2" resolved "https://registry.npmjs.org/color-parse/-/color-parse-1.4.2.tgz" @@ -3222,11 +3900,23 @@ color-parse@1.4.2: dependencies: color-name "^1.0.0" +color-parse@2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz" + integrity sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw== + dependencies: + color-name "^2.0.0" + colorette@^2.0.14: version "2.0.20" resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz" integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== +comma-separated-tokens@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz" + integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== + commander@^11.1.0: version "11.1.0" resolved "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz" @@ -3247,7 +3937,12 @@ consola@^3.2.3: resolved "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz" integrity sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA== -convert-source-map@^1.5.0, convert-source-map@^1.7.0: +convert-source-map@^1.5.0: + version "1.9.0" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +convert-source-map@^1.7.0: version "1.9.0" resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== @@ -3444,12 +4139,20 @@ csso@^5.0.5: dependencies: css-tree "~2.2.0" -csstype@^3.0.2, csstype@^3.1.3, csstype@^3.2.2: +cssstyle@^4.2.1: + version "4.6.0" + resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz" + integrity sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg== + dependencies: + "@asamuzakjp/css-color" "^3.2.0" + rrweb-cssom "^0.8.0" + +csstype@^3.0.10, csstype@^3.0.2, csstype@^3.1.3, csstype@^3.2.2: version "3.2.3" resolved "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz" integrity sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ== -"d3-array@2 - 3", "d3-array@2.10.0 - 3", d3-array@^3.1.6: +d3-array@^3.1.6, "d3-array@2 - 3", "d3-array@2.10.0 - 3": version "3.2.4" resolved "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz" integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== @@ -3471,7 +4174,7 @@ d3-ease@^3.0.1: resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz" integrity sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg== -"d3-interpolate@1.2.0 - 3", d3-interpolate@^3.0.1: +d3-interpolate@^3.0.1, "d3-interpolate@1.2.0 - 3": version "3.0.1" resolved "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz" integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== @@ -3508,7 +4211,7 @@ d3-shape@^3.1.0: dependencies: d3-time "1 - 3" -"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@^3.0.0: +d3-time@^3.0.0, "d3-time@1 - 3", "d3-time@2.1.1 - 3": version "3.1.0" resolved "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz" integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== @@ -3520,15 +4223,23 @@ d3-timer@^3.0.1: resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz" integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== +data-urls@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz" + integrity sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg== + dependencies: + whatwg-mimetype "^4.0.0" + whatwg-url "^14.0.0" + data-urls@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-7.0.0.tgz#6dce8b63226a1ecfdd907ce18a8ccfb1eee506d3" + resolved "https://registry.npmjs.org/data-urls/-/data-urls-7.0.0.tgz" integrity sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA== dependencies: whatwg-mimetype "^5.0.0" whatwg-url "^16.0.0" -debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.7, debug@^4.4.3: +debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4, debug@^4.3.7, debug@^4.4.3, debug@4: version "4.4.3" resolved "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz" integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== @@ -3540,17 +4251,24 @@ decimal.js-light@^2.5.1: resolved "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz" integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== -decimal.js@^10.6.0: +decimal.js@^10.5.0, decimal.js@^10.6.0: version "10.6.0" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.6.0.tgz#e649a43e3ab953a72192ff5983865e509f37ed9a" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz" integrity sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg== +decode-named-character-reference@^1.0.0: + version "1.3.0" + resolved "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz" + integrity sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q== + dependencies: + character-entities "^2.0.0" + deep-eql@^5.0.1: version "5.0.2" - resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-5.0.2.tgz#4b756d8d770a9257300825d52a2c2cff99c3a341" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz" integrity sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q== -dequal@^2.0.3: +dequal@^2.0.0, dequal@^2.0.3: version "2.0.3" resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz" integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== @@ -3560,6 +4278,13 @@ detect-libc@^2.0.3: resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz" integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ== +devlop@^1.0.0, devlop@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz" + integrity sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA== + dependencies: + dequal "^2.0.0" + dom-accessibility-api@^0.5.9: version "0.5.16" resolved "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz" @@ -3673,9 +4398,14 @@ entities@^4.2.0: resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== +entities@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz" + integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== + entities@^8.0.0: version "8.0.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-8.0.0.tgz#c1df5fe3602429747fa233d0dd26f142f0ce4743" + resolved "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz" integrity sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA== env-paths@^2.2.1: @@ -3709,10 +4439,10 @@ es-errors@^1.3.0: es-module-lexer@^1.5.4: version "1.7.0" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.7.0.tgz#9159601561880a85f2734560a9099b2c31e5372a" + resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz" integrity sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA== -es-module-lexer@^2.1.0: +es-module-lexer@^2.0.0, es-module-lexer@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz" integrity sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ== @@ -3722,9 +4452,14 @@ es-toolkit@^1.39.3: resolved "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.47.0.tgz" integrity sha512-n1GuoD0WEQZMBk5tttoZSqwgyLx01oqa5XsBmCHwPyNe1S9jPBEmtR2pSgp2kJuWE3ciFZ6yRHmY4pM4C3OOkw== +es-toolkit@1.45.1: + version "1.45.1" + resolved "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.45.1.tgz" + integrity sha512-/jhoOj/Fx+A+IIyDNOvO3TItGmlMKhtX8ISAHKE90c4b/k1tqaqEZ+uUqfpU8DMnW5cgNJv606zS55jGvza0Xw== + esbuild@^0.21.3: version "0.21.5" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz" integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== optionalDependencies: "@esbuild/aix-ppc64" "0.21.5" @@ -3751,6 +4486,38 @@ esbuild@^0.21.3: "@esbuild/win32-ia32" "0.21.5" "@esbuild/win32-x64" "0.21.5" +"esbuild@^0.27.0 || ^0.28.0": + version "0.28.1" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz" + integrity sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw== + optionalDependencies: + "@esbuild/aix-ppc64" "0.28.1" + "@esbuild/android-arm" "0.28.1" + "@esbuild/android-arm64" "0.28.1" + "@esbuild/android-x64" "0.28.1" + "@esbuild/darwin-arm64" "0.28.1" + "@esbuild/darwin-x64" "0.28.1" + "@esbuild/freebsd-arm64" "0.28.1" + "@esbuild/freebsd-x64" "0.28.1" + "@esbuild/linux-arm" "0.28.1" + "@esbuild/linux-arm64" "0.28.1" + "@esbuild/linux-ia32" "0.28.1" + "@esbuild/linux-loong64" "0.28.1" + "@esbuild/linux-mips64el" "0.28.1" + "@esbuild/linux-ppc64" "0.28.1" + "@esbuild/linux-riscv64" "0.28.1" + "@esbuild/linux-s390x" "0.28.1" + "@esbuild/linux-x64" "0.28.1" + "@esbuild/netbsd-arm64" "0.28.1" + "@esbuild/netbsd-x64" "0.28.1" + "@esbuild/openbsd-arm64" "0.28.1" + "@esbuild/openbsd-x64" "0.28.1" + "@esbuild/openharmony-arm64" "0.28.1" + "@esbuild/sunos-x64" "0.28.1" + "@esbuild/win32-arm64" "0.28.1" + "@esbuild/win32-ia32" "0.28.1" + "@esbuild/win32-x64" "0.28.1" + escalade@^3.2.0: version "3.2.0" resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz" @@ -3761,6 +4528,11 @@ escape-string-regexp@^4.0.0: resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== +escape-string-regexp@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== + eslint-scope@5.1.1: version "5.1.1" resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" @@ -3808,10 +4580,15 @@ events@^3.2.0: resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== -expect-type@^1.1.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/expect-type/-/expect-type-1.4.0.tgz#24edf7f0cc69a44d008567ba4594ab96f3c3a3d6" - integrity sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA== +expect-type@^1.1.0, expect-type@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz" + integrity sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA== + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== fast-deep-equal@^3.1.3: version "3.1.3" @@ -3828,6 +4605,11 @@ fastest-levenshtein@^1.0.12, fastest-levenshtein@^1.0.16: resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz" integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== +fdir@^6.5.0: + version "6.5.0" + resolved "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz" + integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== + fill-range@^7.1.1: version "7.1.1" resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" @@ -3861,11 +4643,6 @@ flat@^5.0.2: resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== -fsevents@~2.3.2, fsevents@~2.3.3: - version "2.3.3" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - function-bind@^1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" @@ -3888,7 +4665,7 @@ glob-to-regexp@^0.4.1: globrex@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" + resolved "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz" integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== goober@^2.1.16: @@ -3913,6 +4690,147 @@ hasown@^2.0.3: dependencies: function-bind "^1.1.2" +hast-util-embedded@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-3.0.0.tgz" + integrity sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA== + dependencies: + "@types/hast" "^3.0.0" + hast-util-is-element "^3.0.0" + +hast-util-from-dom@^5.0.0, hast-util-from-dom@5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/hast-util-from-dom/-/hast-util-from-dom-5.0.1.tgz" + integrity sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q== + dependencies: + "@types/hast" "^3.0.0" + hastscript "^9.0.0" + web-namespaces "^2.0.0" + +hast-util-has-property@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz" + integrity sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA== + dependencies: + "@types/hast" "^3.0.0" + +hast-util-is-body-ok-link@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/hast-util-is-body-ok-link/-/hast-util-is-body-ok-link-3.0.1.tgz" + integrity sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ== + dependencies: + "@types/hast" "^3.0.0" + +hast-util-is-element@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz" + integrity sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g== + dependencies: + "@types/hast" "^3.0.0" + +hast-util-minify-whitespace@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/hast-util-minify-whitespace/-/hast-util-minify-whitespace-1.0.1.tgz" + integrity sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw== + dependencies: + "@types/hast" "^3.0.0" + hast-util-embedded "^3.0.0" + hast-util-is-element "^3.0.0" + hast-util-whitespace "^3.0.0" + unist-util-is "^6.0.0" + +hast-util-parse-selector@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz" + integrity sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A== + dependencies: + "@types/hast" "^3.0.0" + +hast-util-phrasing@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/hast-util-phrasing/-/hast-util-phrasing-3.0.1.tgz" + integrity sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ== + dependencies: + "@types/hast" "^3.0.0" + hast-util-embedded "^3.0.0" + hast-util-has-property "^3.0.0" + hast-util-is-body-ok-link "^3.0.0" + hast-util-is-element "^3.0.0" + +hast-util-to-dom@^4.0.0: + version "4.0.1" + resolved "https://registry.npmjs.org/hast-util-to-dom/-/hast-util-to-dom-4.0.1.tgz" + integrity sha512-z1VE7sZ8uFzS2baF3LEflX1IPw2gSzrdo3QFEsyoi23MkCVY3FoE9x6nLgOgjwJu8VNWgo+07iaxtONhDzKrUQ== + dependencies: + "@types/hast" "^3.0.0" + property-information "^7.0.0" + web-namespaces "^2.0.0" + +hast-util-to-html@^9.0.0, hast-util-to-html@9.0.5: + version "9.0.5" + resolved "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz" + integrity sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw== + dependencies: + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + ccount "^2.0.0" + comma-separated-tokens "^2.0.0" + hast-util-whitespace "^3.0.0" + html-void-elements "^3.0.0" + mdast-util-to-hast "^13.0.0" + property-information "^7.0.0" + space-separated-tokens "^2.0.0" + stringify-entities "^4.0.0" + zwitch "^2.0.4" + +hast-util-to-mdast@^10.0.0, hast-util-to-mdast@10.1.2: + version "10.1.2" + resolved "https://registry.npmjs.org/hast-util-to-mdast/-/hast-util-to-mdast-10.1.2.tgz" + integrity sha512-FiCRI7NmOvM4y+f5w32jPRzcxDIz+PUqDwEqn1A+1q2cdp3B8Gx7aVrXORdOKjMNDQsD1ogOr896+0jJHW1EFQ== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@ungap/structured-clone" "^1.0.0" + hast-util-phrasing "^3.0.0" + hast-util-to-html "^9.0.0" + hast-util-to-text "^4.0.0" + hast-util-whitespace "^3.0.0" + mdast-util-phrasing "^4.0.0" + mdast-util-to-hast "^13.0.0" + mdast-util-to-string "^4.0.0" + rehype-minify-whitespace "^6.0.0" + trim-trailing-lines "^2.0.0" + unist-util-position "^5.0.0" + unist-util-visit "^5.0.0" + +hast-util-to-text@^4.0.0: + version "4.0.2" + resolved "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz" + integrity sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A== + dependencies: + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + hast-util-is-element "^3.0.0" + unist-util-find-after "^5.0.0" + +hast-util-whitespace@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz" + integrity sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw== + dependencies: + "@types/hast" "^3.0.0" + +hastscript@^9.0.0, hastscript@9.0.1: + version "9.0.1" + resolved "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz" + integrity sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w== + dependencies: + "@types/hast" "^3.0.0" + comma-separated-tokens "^2.0.0" + hast-util-parse-selector "^4.0.0" + property-information "^7.0.0" + space-separated-tokens "^2.0.0" + hoist-non-react-statics@^3.3.1: version "3.3.2" resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" @@ -3920,13 +4838,25 @@ hoist-non-react-statics@^3.3.1: dependencies: react-is "^16.7.0" +html-encoding-sniffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz" + integrity sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ== + dependencies: + whatwg-encoding "^3.1.1" + html-encoding-sniffer@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-6.0.0.tgz#f8d9390b3b348b50d4f61c16dd2ef5c05980a882" + resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-6.0.0.tgz" integrity sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg== dependencies: "@exodus/bytes" "^1.6.0" +html-void-elements@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz" + integrity sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg== + htmlparser2@^6.1.0: version "6.1.0" resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz" @@ -3937,12 +4867,35 @@ htmlparser2@^6.1.0: domutils "^2.5.2" entities "^2.0.0" +http-proxy-agent@^7.0.2: + version "7.0.2" + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz" + integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== + dependencies: + agent-base "^7.1.0" + debug "^4.3.4" + +https-proxy-agent@^7.0.6: + version "7.0.6" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz" + integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== + dependencies: + agent-base "^7.1.2" + debug "4" + +iconv-lite@0.6.3: + version "0.6.3" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + icss-utils@^5.0.0, icss-utils@^5.1.0: version "5.1.0" resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz" integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== -immer@^10.1.1: +immer@^10.1.1, immer@>=9.0.6: version "10.2.0" resolved "https://registry.npmjs.org/immer/-/immer-10.2.0.tgz" integrity sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw== @@ -4005,6 +4958,11 @@ is-number@^7.0.0: resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +is-plain-obj@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz" + integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== + is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" @@ -4069,7 +5027,7 @@ jest-worker@^30.0.5: merge-stream "^2.0.0" supports-color "^8.1.1" -jiti@^2.5.1, jiti@^2.6.1: +jiti@^2.5.1, jiti@^2.6.1, jiti@>=1.21.0: version "2.7.0" resolved "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz" integrity sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ== @@ -4086,9 +5044,9 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" -jsdom@^29.1.1: +jsdom@*, jsdom@^29.1.1: version "29.1.1" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-29.1.1.tgz#5b9704906f3cd510c34aa941ae2f8f7f8179df01" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-29.1.1.tgz" integrity sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q== dependencies: "@asamuzakjp/css-color" "^5.1.11" @@ -4113,6 +5071,32 @@ jsdom@^29.1.1: whatwg-url "^16.0.1" xml-name-validator "^5.0.0" +jsdom@^26.1.0: + version "26.1.0" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-26.1.0.tgz" + integrity sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg== + dependencies: + cssstyle "^4.2.1" + data-urls "^5.0.0" + decimal.js "^10.5.0" + html-encoding-sniffer "^4.0.0" + http-proxy-agent "^7.0.2" + https-proxy-agent "^7.0.6" + is-potential-custom-element-name "^1.0.1" + nwsapi "^2.2.16" + parse5 "^7.2.1" + rrweb-cssom "^0.8.0" + saxes "^6.0.0" + symbol-tree "^3.2.4" + tough-cookie "^5.1.1" + w3c-xmlserializer "^5.0.0" + webidl-conversions "^7.0.0" + whatwg-encoding "^3.1.1" + whatwg-mimetype "^4.0.0" + whatwg-url "^14.1.1" + ws "^8.18.0" + xml-name-validator "^5.0.0" + jsesc@^3.0.2, jsesc@~3.1.0: version "3.1.0" resolved "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz" @@ -4138,36 +5122,11 @@ kind-of@^6.0.2: resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== -leaflet@^1.9.4: +leaflet@^1.9.0, leaflet@^1.9.4: version "1.9.4" resolved "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz" integrity sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA== -lightningcss-android-arm64@1.32.0: - version "1.32.0" - resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz#f033885116dfefd9c6f54787523e3514b61e1968" - integrity sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg== - -lightningcss-darwin-arm64@1.32.0: - version "1.32.0" - resolved "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz" - integrity sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ== - -lightningcss-darwin-x64@1.32.0: - version "1.32.0" - resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz#35f3e97332d130b9ca181e11b568ded6aebc6d5e" - integrity sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w== - -lightningcss-freebsd-x64@1.32.0: - version "1.32.0" - resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz#9777a76472b64ed6ff94342ad64c7bafd794a575" - integrity sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig== - -lightningcss-linux-arm-gnueabihf@1.32.0: - version "1.32.0" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz#13ae652e1ab73b9135d7b7da172f666c410ad53d" - integrity sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw== - lightningcss-linux-arm64-gnu@1.32.0: version "1.32.0" resolved "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz" @@ -4178,27 +5137,7 @@ lightningcss-linux-arm64-musl@1.32.0: resolved "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz" integrity sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg== -lightningcss-linux-x64-gnu@1.32.0: - version "1.32.0" - resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz#0b7803af4eb21cfd38dd39fe2abbb53c7dd091f6" - integrity sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA== - -lightningcss-linux-x64-musl@1.32.0: - version "1.32.0" - resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz#88dc8ba865ddddb1ac5ef04b0f161804418c163b" - integrity sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg== - -lightningcss-win32-arm64-msvc@1.32.0: - version "1.32.0" - resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz#4f30ba3fa5e925f5b79f945e8cc0d176c3b1ab38" - integrity sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw== - -lightningcss-win32-x64-msvc@1.32.0: - version "1.32.0" - resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz#141aa5605645064928902bb4af045fa7d9f4220a" - integrity sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q== - -lightningcss@1.32.0: +lightningcss@^1.21.0, lightningcss@1.32.0: version "1.32.0" resolved "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz" integrity sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ== @@ -4232,6 +5171,11 @@ loader-runner@^4.3.2: resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz" integrity sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w== +loader-utils@*, "loader-utils@^2.0.0 || ^3.0.0": + version "3.3.1" + resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz" + integrity sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg== + loader-utils@^2.0.0: version "2.0.4" resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz" @@ -4241,11 +5185,6 @@ loader-utils@^2.0.0: emojis-list "^3.0.0" json5 "^2.1.2" -"loader-utils@^2.0.0 || ^3.0.0": - version "3.3.1" - resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz" - integrity sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg== - locate-path@^5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" @@ -4285,6 +5224,11 @@ lodash@^4.17.20, lodash@^4.17.21: resolved "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz" integrity sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q== +longest-streak@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz" + integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== + loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" @@ -4294,12 +5238,17 @@ loose-envify@^1.4.0: loupe@^3.1.0, loupe@^3.1.2: version "3.2.1" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.2.1.tgz#0095cf56dc5b7a9a7c08ff5b1a8796ec8ad17e76" + resolved "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz" integrity sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ== +lru-cache@^10.4.3: + version "10.4.3" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + lru-cache@^11.3.5: version "11.5.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.5.1.tgz#f3daa3540847b9737ebc02499ddb36765e54db4a" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz" integrity sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A== lru-cache@^5.1.1: @@ -4321,11 +5270,162 @@ magic-string@^0.30.12, magic-string@^0.30.21: dependencies: "@jridgewell/sourcemap-codec" "^1.5.5" +markdown-table@^3.0.0: + version "3.0.4" + resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz" + integrity sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw== + marked@4.0.12: version "4.0.12" resolved "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz" integrity sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ== +mdast-util-find-and-replace@^3.0.0: + version "3.0.2" + resolved "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz" + integrity sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg== + dependencies: + "@types/mdast" "^4.0.0" + escape-string-regexp "^5.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" + +mdast-util-from-markdown@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz" + integrity sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + mdast-util-to-string "^4.0.0" + micromark "^4.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-decode-string "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + unist-util-stringify-position "^4.0.0" + +mdast-util-gfm-autolink-literal@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz" + integrity sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ== + dependencies: + "@types/mdast" "^4.0.0" + ccount "^2.0.0" + devlop "^1.0.0" + mdast-util-find-and-replace "^3.0.0" + micromark-util-character "^2.0.0" + +mdast-util-gfm-footnote@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz" + integrity sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.1.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + +mdast-util-gfm-strikethrough@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz" + integrity sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm-table@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz" + integrity sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + markdown-table "^3.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm-task-list-item@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz" + integrity sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz" + integrity sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ== + dependencies: + mdast-util-from-markdown "^2.0.0" + mdast-util-gfm-autolink-literal "^2.0.0" + mdast-util-gfm-footnote "^2.0.0" + mdast-util-gfm-strikethrough "^2.0.0" + mdast-util-gfm-table "^2.0.0" + mdast-util-gfm-task-list-item "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-newline-to-break@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/mdast-util-newline-to-break/-/mdast-util-newline-to-break-2.0.0.tgz" + integrity sha512-MbgeFca0hLYIEx/2zGsszCSEJJ1JSCdiY5xQxRcLDDGa8EPvlLPupJ4DSajbMPAnC0je8jfb9TiUATnxxrHUog== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-find-and-replace "^3.0.0" + +mdast-util-phrasing@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz" + integrity sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w== + dependencies: + "@types/mdast" "^4.0.0" + unist-util-is "^6.0.0" + +mdast-util-to-hast@^13.0.0: + version "13.2.1" + resolved "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz" + integrity sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@ungap/structured-clone" "^1.0.0" + devlop "^1.0.0" + micromark-util-sanitize-uri "^2.0.0" + trim-lines "^3.0.0" + unist-util-position "^5.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + +mdast-util-to-markdown@^2.0.0: + version "2.1.2" + resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz" + integrity sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + longest-streak "^3.0.0" + mdast-util-phrasing "^4.0.0" + mdast-util-to-string "^4.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-decode-string "^2.0.0" + unist-util-visit "^5.0.0" + zwitch "^2.0.0" + +mdast-util-to-string@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz" + integrity sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg== + dependencies: + "@types/mdast" "^4.0.0" + mdn-data@2.0.28: version "2.0.28" resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz" @@ -4346,6 +5446,279 @@ merge-stream@^2.0.0: resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== +micromark-core-commonmark@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz" + integrity sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg== + dependencies: + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + micromark-factory-destination "^2.0.0" + micromark-factory-label "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-factory-title "^2.0.0" + micromark-factory-whitespace "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-html-tag-name "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-subtokenize "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-autolink-literal@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz" + integrity sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-footnote@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz" + integrity sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw== + dependencies: + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-strikethrough@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz" + integrity sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw== + dependencies: + devlop "^1.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-table@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz" + integrity sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg== + dependencies: + devlop "^1.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-tagfilter@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz" + integrity sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg== + dependencies: + micromark-util-types "^2.0.0" + +micromark-extension-gfm-task-list-item@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz" + integrity sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw== + dependencies: + devlop "^1.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz" + integrity sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w== + dependencies: + micromark-extension-gfm-autolink-literal "^2.0.0" + micromark-extension-gfm-footnote "^2.0.0" + micromark-extension-gfm-strikethrough "^2.0.0" + micromark-extension-gfm-table "^2.0.0" + micromark-extension-gfm-tagfilter "^2.0.0" + micromark-extension-gfm-task-list-item "^2.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-destination@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz" + integrity sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-label@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz" + integrity sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg== + dependencies: + devlop "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-space@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz" + integrity sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-title@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz" + integrity sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw== + dependencies: + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-whitespace@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz" + integrity sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ== + dependencies: + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-character@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz" + integrity sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q== + dependencies: + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-chunked@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz" + integrity sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-classify-character@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz" + integrity sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-combine-extensions@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz" + integrity sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg== + dependencies: + micromark-util-chunked "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-decode-numeric-character-reference@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz" + integrity sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-decode-string@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz" + integrity sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ== + dependencies: + decode-named-character-reference "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-symbol "^2.0.0" + +micromark-util-encode@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz" + integrity sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw== + +micromark-util-html-tag-name@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz" + integrity sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA== + +micromark-util-normalize-identifier@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz" + integrity sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-resolve-all@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz" + integrity sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg== + dependencies: + micromark-util-types "^2.0.0" + +micromark-util-sanitize-uri@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz" + integrity sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-encode "^2.0.0" + micromark-util-symbol "^2.0.0" + +micromark-util-subtokenize@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz" + integrity sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA== + dependencies: + devlop "^1.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-symbol@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz" + integrity sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q== + +micromark-util-types@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz" + integrity sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA== + +micromark@^4.0.0: + version "4.0.2" + resolved "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz" + integrity sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA== + dependencies: + "@types/debug" "^4.0.0" + debug "^4.0.0" + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-encode "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-subtokenize "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + micromatch@^4.0.0: version "4.0.8" resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" @@ -4399,11 +5772,21 @@ nth-check@^2.0.1: dependencies: boolbase "^1.0.0" +nwsapi@^2.2.16: + version "2.2.24" + resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.24.tgz" + integrity sha512-7YRhZ3jS45LwmSCT4b2sVFHt/WuovaktDU07QrtOBY2PXskss5a9jfmR9jptyumwXST+rFjrmppMY1KT/yn35A== + object-assign@^4.1.1: version "4.1.1" resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== +obug@^2.1.1: + version "2.1.3" + resolved "https://registry.npmjs.org/obug/-/obug-2.1.3.tgz" + integrity sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg== + p-limit@^2.2.0: version "2.3.0" resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" @@ -4454,9 +5837,16 @@ parse-json@^5.0.0, parse-json@^5.2.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" +parse5@^7.2.1: + version "7.3.0" + resolved "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz" + integrity sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw== + dependencies: + entities "^6.0.0" + parse5@^8.0.1: version "8.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-8.0.1.tgz#f43bcd2cd683efe084075333e9ce0da7d06da31e" + resolved "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz" integrity sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw== dependencies: entities "^8.0.0" @@ -4483,15 +5873,20 @@ path-type@^4.0.0: pathe@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec" + resolved "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz" integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ== +pathe@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz" + integrity sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w== + pathval@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-2.0.1.tgz#8855c5a2899af072d6ac05d11e46045ad0dc605d" + resolved "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz" integrity sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ== -picocolors@1.1.1, picocolors@^1.1.0, picocolors@^1.1.1: +picocolors@^1.1.0, picocolors@^1.1.1, picocolors@1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== @@ -4501,7 +5896,7 @@ picomatch@^2.3.1: resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz" integrity sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA== -picomatch@^4.0.3: +"picomatch@^3 || ^4", picomatch@^4.0.3, picomatch@^4.0.4: version "4.0.4" resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz" integrity sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A== @@ -4561,7 +5956,7 @@ postcss-discard-overridden@^7.0.3: resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.3.tgz" integrity sha512-aNovXo9UsZuRNLzHJtp13lHIvinDPfiXBPePpXkSjCbgp++iU2FqE+YxvjIsg6EdyPZsASFbfu+JcBFVsErXIQ== -postcss-loader@^8.0.0: +postcss-loader@^8.0.0, postcss-loader@^8.1.0: version "8.2.1" resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-8.2.1.tgz" integrity sha512-k98jtRzthjj3f76MYTs9JTpRqV1RaaMhEU0Lpw9OTmQZQdppg4B30VZ74BojuBHt3F4KyubHJoXCMUeM8Bqeow== @@ -4764,7 +6159,7 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.0.0, postcss@^8.2.14, postcss@^8.4.40, postcss@^8.5.10: +"postcss@^7.0.0 || ^8.0.1", postcss@^8.0.0, postcss@^8.0.9, postcss@^8.1.0, postcss@^8.2.14, postcss@^8.3.0, postcss@^8.4, postcss@^8.4.38, postcss@^8.4.40, postcss@^8.4.43, postcss@^8.5.10, postcss@^8.5.13, postcss@^8.5.6: version "8.5.15" resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz" integrity sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A== @@ -4773,15 +6168,6 @@ postcss@^8.0.0, postcss@^8.2.14, postcss@^8.4.40, postcss@^8.5.10: picocolors "^1.1.1" source-map-js "^1.2.1" -postcss@^8.4.43: - version "8.5.16" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.16.tgz#1230ce0b5df354c24c0ea45f99ce5f6a88279d28" - integrity sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg== - dependencies: - nanoid "^3.3.12" - picocolors "^1.1.1" - source-map-js "^1.2.1" - pretty-error@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz" @@ -4808,19 +6194,24 @@ prop-types@^15.6.0, prop-types@^15.6.2: object-assign "^4.1.1" react-is "^16.13.1" +property-information@^7.0.0: + version "7.2.0" + resolved "https://registry.npmjs.org/property-information/-/property-information-7.2.0.tgz" + integrity sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg== + punycode@^2.3.1: version "2.3.1" resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== -react-dom@^19.0.0: +"react-dom@^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom@^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom@^18.0 || ^19.0", "react-dom@^18.0.0 || ^19.0.0", "react-dom@^18.0.0 || ^19.0.0 || ^19.0.0-rc", react-dom@^19.0.0, react-dom@>=16, react-dom@>=16.6.0, react-dom@>=16.8, react-dom@>=18: version "19.2.7" resolved "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz" integrity sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ== dependencies: scheduler "^0.27.0" -react-hook-form@^7.0.0: +react-hook-form@^7.0.0, react-hook-form@^7.55.0: version "7.78.0" resolved "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.78.0.tgz" integrity sha512-EEZqc+N23moyzTlz61Pj+JvcXo76ICkpfOZo8JZw+sM4+wLQGh6nI2Ms+PdMOYNluFu0ghlM7B8mCzhRYtJCnA== @@ -4833,7 +6224,7 @@ react-hot-toast@^2.0.0: csstype "^3.1.3" goober "^2.1.16" -react-is@^16.13.1, react-is@^16.7.0: +react-is@^16.13.1, react-is@^16.7.0, "react-is@^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": version "16.13.1" resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -4850,7 +6241,7 @@ react-leaflet@^5.0.0: dependencies: "@react-leaflet/core" "^3.0.0" -"react-redux@8.x.x || 9.x.x": +"react-redux@^7.2.1 || ^8.1.3 || ^9.0.0", "react-redux@8.x.x || 9.x.x": version "9.3.0" resolved "https://registry.npmjs.org/react-redux/-/react-redux-9.3.0.tgz" integrity sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g== @@ -4860,7 +6251,7 @@ react-leaflet@^5.0.0: react-refresh@^0.17.0: version "0.17.0" - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.17.0.tgz#b7e579c3657f23d04eccbe4ad2e58a8ed51e7e53" + resolved "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz" integrity sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ== react-router-dom@^7.0.0: @@ -4903,7 +6294,7 @@ react-transition-group@^4.3.0: loose-envify "^1.4.0" prop-types "^15.6.2" -react@^19.0.0: +"react@^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react@^16.8.0 || ^17 || ^18 || ^19", "react@^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react@^16.9.0 || ^17.0.0 || ^18 || ^19", "react@^18 || ^19", "react@^18.0 || ^19", "react@^18.0 || ^19.0", "react@^18.0.0 || ^19.0.0", "react@^18.0.0 || ^19.0.0 || ^19.0.0-rc", react@^19.0.0, react@^19.2.7, "react@>= 16 || ^19.0.0-rc", react@>=16, react@>=16.6.0, react@>=16.8, react@>=16.8.0, react@>=18, react@>=18.0.0: version "19.2.7" resolved "https://registry.npmjs.org/react/-/react-19.2.7.tgz" integrity sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ== @@ -4945,7 +6336,7 @@ redux-thunk@^3.1.0: resolved "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz" integrity sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw== -redux@^5.0.1: +redux@^5.0.0, redux@^5.0.1: version "5.0.1" resolved "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz" integrity sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w== @@ -4996,6 +6387,94 @@ regjsparser@^0.13.0: dependencies: jsesc "~3.1.0" +rehype-dom-parse@5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/rehype-dom-parse/-/rehype-dom-parse-5.0.2.tgz" + integrity sha512-8CqP11KaqvtWsMqVEC2yM3cZWZsDNqqpr8nPvogjraLuh45stabgcpXadCAxu1n6JaUNJ/Xr3GIqXP7okbNqLg== + dependencies: + "@types/hast" "^3.0.0" + hast-util-from-dom "^5.0.0" + unified "^11.0.0" + +rehype-dom-stringify@4.0.2: + version "4.0.2" + resolved "https://registry.npmjs.org/rehype-dom-stringify/-/rehype-dom-stringify-4.0.2.tgz" + integrity sha512-2HVFYbtmm5W3C2j8QsV9lcHdIMc2Yn/ytlPKcSC85/tRx2haZbU8V67Wxyh8STT38ZClvKlZ993Me/Hw8g88Aw== + dependencies: + "@types/hast" "^3.0.0" + hast-util-to-dom "^4.0.0" + unified "^11.0.0" + +rehype-minify-whitespace@^6.0.0: + version "6.0.2" + resolved "https://registry.npmjs.org/rehype-minify-whitespace/-/rehype-minify-whitespace-6.0.2.tgz" + integrity sha512-Zk0pyQ06A3Lyxhe9vGtOtzz3Z0+qZ5+7icZ/PL/2x1SHPbKao5oB/g/rlc6BCTajqBb33JcOe71Ye1oFsuYbnw== + dependencies: + "@types/hast" "^3.0.0" + hast-util-minify-whitespace "^1.0.0" + +rehype-remark@10.0.1: + version "10.0.1" + resolved "https://registry.npmjs.org/rehype-remark/-/rehype-remark-10.0.1.tgz" + integrity sha512-EmDndlb5NVwXGfUa4c9GPK+lXeItTilLhE6ADSaQuHr4JUlKw9MidzGzx4HpqZrNCt6vnHmEifXQiiA+CEnjYQ== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + hast-util-to-mdast "^10.0.0" + unified "^11.0.0" + vfile "^6.0.0" + +remark-breaks@4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/remark-breaks/-/remark-breaks-4.0.0.tgz" + integrity sha512-IjEjJOkH4FuJvHZVIW0QCDWxcG96kCq7An/KVH2NfJe6rKZU2AsHeB3OEjPNRxi4QC34Xdx7I2KGYn6IpT7gxQ== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-newline-to-break "^2.0.0" + unified "^11.0.0" + +remark-gfm@4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz" + integrity sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-gfm "^3.0.0" + micromark-extension-gfm "^3.0.0" + remark-parse "^11.0.0" + remark-stringify "^11.0.0" + unified "^11.0.0" + +remark-parse@^11.0.0, remark-parse@11.0.0: + version "11.0.0" + resolved "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz" + integrity sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-from-markdown "^2.0.0" + micromark-util-types "^2.0.0" + unified "^11.0.0" + +remark-rehype@11.1.2: + version "11.1.2" + resolved "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz" + integrity sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + mdast-util-to-hast "^13.0.0" + unified "^11.0.0" + vfile "^6.0.0" + +remark-stringify@^11.0.0, remark-stringify@11.0.0: + version "11.0.0" + resolved "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz" + integrity sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-to-markdown "^2.0.0" + unified "^11.0.0" + renderkid@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz" @@ -5012,7 +6491,7 @@ require-from-string@^2.0.2: resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== -reselect@5.1.1, reselect@^5.1.0: +reselect@^5.1.0, reselect@5.1.1: version "5.1.1" resolved "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz" integrity sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w== @@ -5055,9 +6534,9 @@ resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.11: path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -rollup@^4.20.0: +rollup@^4.20.0, rollup@^4.43.0: version "4.62.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.62.2.tgz#d90fc4cb811f071303c890b779595634f35f9541" + resolved "https://registry.npmjs.org/rollup/-/rollup-4.62.2.tgz" integrity sha512-RFnrW4lhXA3s3eqHDZvN654g8OTjzRfqpIRJYczCGB6HzphckVAi/Qh4tbPUbRuDi7s1Llv8g/NspLkttY3gTA== dependencies: "@types/estree" "1.0.9" @@ -5089,6 +6568,16 @@ rollup@^4.20.0: "@rollup/rollup-win32-x64-msvc" "4.62.2" fsevents "~2.3.2" +rrweb-cssom@^0.8.0: + version "0.8.0" + resolved "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz" + integrity sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw== + +"safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + sax@^1.5.0: version "1.6.0" resolved "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz" @@ -5121,7 +6610,22 @@ semver@^6.3.1: resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.3.4, semver@^7.6.2, semver@^7.6.3: +semver@^7.3.2: + version "7.8.3" + resolved "https://registry.npmjs.org/semver/-/semver-7.8.3.tgz" + integrity sha512-wnilbGyMxzbY7dNOl7jpKbLSjcfeweJWU5j4+u5qW+6/wuGD9KzIGOyZnQVSBM9E7DtWaaH3CyHkppYrKYoxwg== + +semver@^7.3.4: + version "7.8.3" + resolved "https://registry.npmjs.org/semver/-/semver-7.8.3.tgz" + integrity sha512-wnilbGyMxzbY7dNOl7jpKbLSjcfeweJWU5j4+u5qW+6/wuGD9KzIGOyZnQVSBM9E7DtWaaH3CyHkppYrKYoxwg== + +semver@^7.6.2: + version "7.8.3" + resolved "https://registry.npmjs.org/semver/-/semver-7.8.3.tgz" + integrity sha512-wnilbGyMxzbY7dNOl7jpKbLSjcfeweJWU5j4+u5qW+6/wuGD9KzIGOyZnQVSBM9E7DtWaaH3CyHkppYrKYoxwg== + +semver@^7.6.3: version "7.8.3" resolved "https://registry.npmjs.org/semver/-/semver-7.8.3.tgz" integrity sha512-wnilbGyMxzbY7dNOl7jpKbLSjcfeweJWU5j4+u5qW+6/wuGD9KzIGOyZnQVSBM9E7DtWaaH3CyHkppYrKYoxwg== @@ -5183,21 +6687,36 @@ source-map-support@~0.5.20: buffer-from "^1.0.0" source-map "^0.6.0" -source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - source-map@^0.5.7: version "0.5.7" resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + source-map@^0.7.4: version "0.7.6" resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz" integrity sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ== +source-map@0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +space-separated-tokens@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz" + integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== + stackback@0.0.2: version "0.0.2" resolved "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz" @@ -5210,9 +6729,14 @@ stackframe@^1.3.4: std-env@^3.8.0: version "3.10.0" - resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.10.0.tgz#d810b27e3a073047b2b5e40034881f5ea6f9c83b" + resolved "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz" integrity sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg== +std-env@^4.0.0-rc.1: + version "4.1.0" + resolved "https://registry.npmjs.org/std-env/-/std-env-4.1.0.tgz" + integrity sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ== + string-width@^4.2.3: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" @@ -5222,6 +6746,14 @@ string-width@^4.2.3: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" +stringify-entities@^4.0.0: + version "4.0.4" + resolved "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz" + integrity sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg== + dependencies: + character-entities-html4 "^2.0.0" + character-entities-legacy "^3.0.0" + strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" @@ -5291,7 +6823,7 @@ symbol-tree@^3.2.4: resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== -tailwindcss@4.3.0, tailwindcss@^4.0.0: +tailwindcss@^4.0.0, tailwindcss@4.3.0: version "4.3.0" resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.0.tgz" integrity sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q== @@ -5311,7 +6843,7 @@ terser-webpack-plugin@^5.3.0, terser-webpack-plugin@^5.5.0: schema-utils "^4.3.0" terser "^5.31.1" -terser@^5.31.1: +terser@^5.16.0, terser@^5.31.1, terser@^5.4.0: version "5.48.0" resolved "https://registry.npmjs.org/terser/-/terser-5.48.0.tgz" integrity sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q== @@ -5333,32 +6865,62 @@ tinybench@^2.9.0: tinyexec@^0.3.1: version "0.3.2" - resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-0.3.2.tgz#941794e657a85e496577995c6eef66f53f42b3d2" + resolved "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz" integrity sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA== +tinyexec@^1.0.2: + version "1.2.4" + resolved "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz" + integrity sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg== + +tinyglobby@^0.2.15: + version "0.2.17" + resolved "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz" + integrity sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g== + dependencies: + fdir "^6.5.0" + picomatch "^4.0.4" + tinypool@^1.0.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-1.1.1.tgz#059f2d042bd37567fbc017d3d426bdd2a2612591" + resolved "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz" integrity sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg== tinyrainbow@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/tinyrainbow/-/tinyrainbow-1.2.0.tgz#5c57d2fc0fb3d1afd78465c33ca885d04f02abb5" + resolved "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz" integrity sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ== +tinyrainbow@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz" + integrity sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw== + tinyspy@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-3.0.2.tgz#86dd3cf3d737b15adcf17d7887c84a75201df20a" + resolved "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz" integrity sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q== +tldts-core@^6.1.86: + version "6.1.86" + resolved "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.86.tgz" + integrity sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA== + tldts-core@^7.4.5: version "7.4.5" - resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-7.4.5.tgz#4d1a77adbf274206be79e9d5fd602089a4e99c72" + resolved "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.5.tgz" integrity sha512-pGrwzZDvPwKe+7NNUqAunb6rqTfynr0VOUhCMdqbu5xlvNiszsAJygRzwvpVycdzejlbpY+SWJOn+s75Og7FEA== +tldts@^6.1.32: + version "6.1.86" + resolved "https://registry.npmjs.org/tldts/-/tldts-6.1.86.tgz" + integrity sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ== + dependencies: + tldts-core "^6.1.86" + tldts@^7.0.5: version "7.4.5" - resolved "https://registry.yarnpkg.com/tldts/-/tldts-7.4.5.tgz#19648239527391393b49f0ae5eccc418f638deec" + resolved "https://registry.npmjs.org/tldts/-/tldts-7.4.5.tgz" integrity sha512-RfEzKWcq5fHUOFq7J3rl3Oz6ylKGtcHqUznzj4EcXsxLSIjJcvpbXAQtWGeJQ0xKnimR5e0Cn+cn9TssfMzm+g== dependencies: tldts-core "^7.4.5" @@ -5375,21 +6937,50 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" +tough-cookie@^5.1.1: + version "5.1.2" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz" + integrity sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A== + dependencies: + tldts "^6.1.32" + tough-cookie@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-6.0.1.tgz#a495f833836609ed983c19bc65639cfbceb54c76" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.1.tgz" integrity sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw== dependencies: tldts "^7.0.5" +tr46@^5.1.0: + version "5.1.1" + resolved "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz" + integrity sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw== + dependencies: + punycode "^2.3.1" + tr46@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-6.0.0.tgz#f5a1ae546a0adb32a277a2278d0d17fa2f9093e6" + resolved "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz" integrity sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw== dependencies: punycode "^2.3.1" -ts-loader@^9.6.0: +trim-lines@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz" + integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== + +trim-trailing-lines@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-2.1.0.tgz" + integrity sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg== + +trough@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz" + integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw== + +ts-loader@^9.0.0, ts-loader@^9.6.0: version "9.6.0" resolved "https://registry.npmjs.org/ts-loader/-/ts-loader-9.6.0.tgz" integrity sha512-dsJO0S+T7grTDWTc4a0nTygXGjKncVUpx8Y+af8EvI/D5WgTJby5UEk5eoMCB9EcLQmnvitqh99MqtjtHgAwFQ== @@ -5402,10 +6993,10 @@ ts-loader@^9.6.0: tsconfck@^3.0.3: version "3.1.6" - resolved "https://registry.yarnpkg.com/tsconfck/-/tsconfck-3.1.6.tgz#da1f0b10d82237ac23422374b3fce1edb23c3ead" + resolved "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz" integrity sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w== -tslib@^2.4.0, tslib@^2.8.1: +tslib@^2.8.1: version "2.8.1" resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz" integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== @@ -5422,7 +7013,7 @@ turndown@7.2.0: dependencies: "@mixmark-io/domino" "^2.2.0" -typescript@^5.0.0: +typescript@*, typescript@^5.0.0, typescript@^5.8.3, typescript@>=4.9.5: version "5.9.3" resolved "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz" integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw== @@ -5434,7 +7025,7 @@ typescript@^5.0.0: undici@^7.25.0: version "7.28.0" - resolved "https://registry.yarnpkg.com/undici/-/undici-7.28.0.tgz#97d64564198b285bc281f0e8e29597e3d11fe7ec" + resolved "https://registry.npmjs.org/undici/-/undici-7.28.0.tgz" integrity sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA== unicode-canonical-property-names-ecmascript@^2.0.0: @@ -5460,6 +7051,65 @@ unicode-property-aliases-ecmascript@^2.0.0: resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz" integrity sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ== +unified@^11.0.0, unified@11.0.5: + version "11.0.5" + resolved "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz" + integrity sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA== + dependencies: + "@types/unist" "^3.0.0" + bail "^2.0.0" + devlop "^1.0.0" + extend "^3.0.0" + is-plain-obj "^4.0.0" + trough "^2.0.0" + vfile "^6.0.0" + +unist-util-find-after@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz" + integrity sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + +unist-util-is@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz" + integrity sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-position@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz" + integrity sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-stringify-position@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz" + integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-visit-parents@^6.0.0: + version "6.0.2" + resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz" + integrity sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + +unist-util-visit@^5.0.0, unist-util-visit@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz" + integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" + update-browserslist-db@^1.2.3: version "1.2.3" resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz" @@ -5473,7 +7123,7 @@ use-isomorphic-layout-effect@^1.2.0: resolved "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.1.tgz" integrity sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA== -use-sync-external-store@^1.2.2, use-sync-external-store@^1.4.0: +use-sync-external-store@^1.2.2, use-sync-external-store@^1.4.0, use-sync-external-store@>=1.2.0: version "1.6.0" resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz" integrity sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w== @@ -5493,6 +7143,22 @@ vanilla-colorful@0.7.2: resolved "https://registry.npmjs.org/vanilla-colorful/-/vanilla-colorful-0.7.2.tgz" integrity sha512-z2YZusTFC6KnLERx1cgoIRX2CjPRP0W75N+3CC6gbvdX5Ch47rZkEMGO2Xnf+IEmi3RiFLxS18gayMA27iU7Kg== +vfile-message@^4.0.0: + version "4.0.3" + resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz" + integrity sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-stringify-position "^4.0.0" + +vfile@^6.0.0: + version "6.0.3" + resolved "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz" + integrity sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q== + dependencies: + "@types/unist" "^3.0.0" + vfile-message "^4.0.0" + victory-vendor@^37.0.2: version "37.3.6" resolved "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.6.tgz" @@ -5515,7 +7181,7 @@ victory-vendor@^37.0.2: vite-node@2.1.9: version "2.1.9" - resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.9.tgz#549710f76a643f1c39ef34bdb5493a944e4f895f" + resolved "https://registry.npmjs.org/vite-node/-/vite-node-2.1.9.tgz" integrity sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA== dependencies: cac "^6.7.14" @@ -5526,16 +7192,30 @@ vite-node@2.1.9: vite-tsconfig-paths@^6.1.1: version "6.1.1" - resolved "https://registry.yarnpkg.com/vite-tsconfig-paths/-/vite-tsconfig-paths-6.1.1.tgz#d5c28cba79c89ebf76489ef1040024b21df6da3a" + resolved "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-6.1.1.tgz" integrity sha512-2cihq7zliibCCZ8P9cKJrQBkfgdvcFkOOc3Y02o3GWUDLgqjWsZudaoiuOwO/gzTzy17cS5F7ZPo4bsnS4DGkg== dependencies: debug "^4.1.1" globrex "^0.1.2" tsconfck "^3.0.3" +vite@*, "vite@^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", "vite@^6.0.0 || ^7.0.0 || ^8.0.0": + version "7.3.6" + resolved "https://registry.npmjs.org/vite/-/vite-7.3.6.tgz" + integrity sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg== + dependencies: + esbuild "^0.27.0 || ^0.28.0" + fdir "^6.5.0" + picomatch "^4.0.3" + postcss "^8.5.6" + rollup "^4.43.0" + tinyglobby "^0.2.15" + optionalDependencies: + fsevents "~2.3.3" + vite@^5.0.0: version "5.4.21" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.21.tgz#84a4f7c5d860b071676d39ba513c0d598fdc7027" + resolved "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz" integrity sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw== dependencies: esbuild "^0.21.3" @@ -5546,7 +7226,7 @@ vite@^5.0.0: vitest@^2: version "2.1.9" - resolved "https://registry.yarnpkg.com/vitest/-/vitest-2.1.9.tgz#7d01ffd07a553a51c87170b5e80fea3da7fb41e7" + resolved "https://registry.npmjs.org/vitest/-/vitest-2.1.9.tgz" integrity sha512-MSmPM9REYqDGBI8439mA4mWhV5sKmDlBKWIYbA3lRb2PTHACE0mgKwA8yQ2xq9vxDTuk4iPrECBAEW2aoFXY0Q== dependencies: "@vitest/expect" "2.1.9" @@ -5570,6 +7250,32 @@ vitest@^2: vite-node "2.1.9" why-is-node-running "^2.3.0" +vitest@^4.1.0: + version "4.1.9" + resolved "https://registry.npmjs.org/vitest/-/vitest-4.1.9.tgz" + integrity sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ== + dependencies: + "@vitest/expect" "4.1.9" + "@vitest/mocker" "4.1.9" + "@vitest/pretty-format" "4.1.9" + "@vitest/runner" "4.1.9" + "@vitest/snapshot" "4.1.9" + "@vitest/spy" "4.1.9" + "@vitest/utils" "4.1.9" + es-module-lexer "^2.0.0" + expect-type "^1.3.0" + magic-string "^0.30.21" + obug "^2.1.1" + pathe "^2.0.3" + picomatch "^4.0.3" + std-env "^4.0.0-rc.1" + tinybench "^2.9.0" + tinyexec "^1.0.2" + tinyglobby "^0.2.15" + tinyrainbow "^3.1.0" + vite "^6.0.0 || ^7.0.0 || ^8.0.0" + why-is-node-running "^2.3.0" + w3c-xmlserializer@^5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz" @@ -5585,12 +7291,22 @@ watchpack@^2.5.1: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" +web-namespaces@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz" + integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ== + +webidl-conversions@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz" + integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== + webidl-conversions@^8.0.1: version "8.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-8.0.1.tgz#0657e571fe6f06fcb15ca50ed1fdbcb495cd1686" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.1.tgz" integrity sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ== -webpack-cli@^6.0.0: +webpack-cli@^6.0.0, webpack-cli@6.x.x: version "6.0.1" resolved "https://registry.npmjs.org/webpack-cli/-/webpack-cli-6.0.1.tgz" integrity sha512-MfwFQ6SfwinsUVi0rNJm7rHZ31GyTcpVE5pgVA3hwFRb7COD4TzjUUwhGWKfO50+xdc2MQPuEBBJoqIMGt3JDw== @@ -5639,7 +7355,7 @@ webpack-sources@^3.5.0: resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.5.0.tgz" integrity sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ== -webpack@^5.72: +"webpack@^4.0.0 || ^5.0.0", webpack@^5.0.0, webpack@^5.1.0, webpack@^5.27.0, webpack@^5.72, webpack@^5.75.0, webpack@^5.82.0, webpack@>=5.61.0: version "5.107.2" resolved "https://registry.npmjs.org/webpack/-/webpack-5.107.2.tgz" integrity sha512-v7RhXaJbpMlV0D7hC7lb2EbnxkoeUqf9qhKr6lozx3Q48pmFrqqNRmZFUEGmi7pSwm6fCQ2H1IjvCkHqdpVdjQ== @@ -5668,14 +7384,34 @@ webpack@^5.72: watchpack "^2.5.1" webpack-sources "^3.5.0" +whatwg-encoding@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz" + integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== + dependencies: + iconv-lite "0.6.3" + +whatwg-mimetype@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz" + integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== + whatwg-mimetype@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-5.0.0.tgz#d8232895dbd527ceaee74efd4162008fb8a8cf48" + resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-5.0.0.tgz" integrity sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw== +whatwg-url@^14.0.0, whatwg-url@^14.1.1: + version "14.2.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz" + integrity sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw== + dependencies: + tr46 "^5.1.0" + webidl-conversions "^7.0.0" + whatwg-url@^16.0.0, whatwg-url@^16.0.1: version "16.0.1" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-16.0.1.tgz#047f7f4bd36ef76b7198c172d1b1cebc66f764dd" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-16.0.1.tgz" integrity sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw== dependencies: "@exodus/bytes" "^1.11.0" @@ -5702,6 +7438,11 @@ wildcard@^2.0.1: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== +ws@^8.18.0: + version "8.21.0" + resolved "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz" + integrity sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g== + xml-name-validator@^5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz" @@ -5741,3 +7482,8 @@ zustand@^5.0.0: version "5.0.14" resolved "https://registry.npmjs.org/zustand/-/zustand-5.0.14.tgz" integrity sha512-/8tAspM5LMPr28b3fwLYrtdj77ECpfZviaP75CMTnwO8ISyaE4GDIG/9rDDYq/cH9D2Xw2A2RXglLInmVBQB/g== + +zwitch@^2.0.0, zwitch@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz" + integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==