:root {
    --bg: #f3f5fc;
    --surface: #ffffff;
    --text: #202124;
    --muted: #5f6368;
    --primary: #1a73e8;
    --primary-soft: rgba(26, 115, 232, 0.15);
    --shadow: 0 6px 18px rgba(32, 33, 36, 0.08);
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 24px;
}

.app-wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 12px;
}

.card {
    background: var(--surface);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e8eaed;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #1a73e8, #5d9cff);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
}

.progress-bar.active {
    opacity: 1;
    animation: progress-fill 2.2s cubic-bezier(0.1, 0.6, 0.4, 1) forwards;
}

@keyframes progress-fill {
    0%   { width: 0%; }
    40%  { width: 65%; }
    70%  { width: 82%; }
    90%  { width: 91%; }
    100% { width: 96%; }
}

.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #d8e1ee;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
    box-shadow: 0 2px 10px rgba(26, 115, 232, 0.06);
}

.inline-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    margin-bottom: 0;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1d9e6;
    background: #f5f8ff;
    color: #294262;
    font-size: 0.86rem;
    font-weight: 500;
}

.inline-toggle input {
    margin: 0;
}

.warning-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: #d39a00;
    font-size: 0.88rem;
    line-height: 1;
    cursor: help;
    user-select: none;
}

.warning-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    max-width: 260px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fff8dd;
    border: 1px solid #f0c36d;
    color: #6a5300;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: normal;
    box-shadow: 0 8px 18px rgba(32, 33, 36, 0.16);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.15s ease;
    z-index: 20;
}

.warning-tooltip:hover::after,
.warning-tooltip:focus::after {
    opacity: 1;
    visibility: visible;
}

h2 {
    margin: 0;
    font-weight: 500;
    font-size: 1.55rem;
}

.version-badge {
    font-size: 0.73rem;
    font-weight: 500;
    color: #1558ae;
    background: rgba(26, 115, 232, 0.15);
    border: 1px solid rgba(26, 115, 232, 0.32);
    border-radius: 999px;
    padding: 4px 10px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.version-badge:hover {
    color: #0d47a1;
    background: rgba(26, 115, 232, 0.28);
    border-color: rgba(26, 115, 232, 0.6);
}

label {
    display: block;
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.editor-wrapper {
    display: flex;
    width: 100%;
    height: 280px;
    border-radius: 10px;
    border: 1px solid #dfe1e6;
    overflow: hidden;
    background: #fcfdff;
}

.line-numbers {
    background: #f1f3f5;
    color: #757a83;
    padding: 10px 8px;
    text-align: right;
    user-select: none;
    overflow: hidden;
    border-right: 1px solid #dfe1e6;
    min-width: 40px;
    white-space: pre;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
}

.line-number {
    display: block;
    padding: 0 2px;
    border-radius: 4px;
}

.line-number.error-line {
    background: #ffd8d8;
    color: #9f1d1d;
    font-weight: 700;
}

.line-number.neighbor-line {
    background: #fff4b8;
    color: #7a5a00;
    font-weight: 600;
}

.editor-highlight-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.editor-highlight {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.4;
    white-space: pre;
    overflow: hidden;
    overflow-wrap: normal;
    word-break: normal;
    pointer-events: none;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    box-shadow: none;
}

textarea {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    resize: none;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    overflow: auto;
    background: transparent;
    color: transparent;
    caret-color: var(--text);
    white-space: pre;
    overflow-wrap: normal;
    word-break: normal;
    box-sizing: border-box;
}

.drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
    padding: 20px 24px;
    border: 2px dashed #c2d0e8;
    border-radius: 12px;
    background: #f8fbff;
    color: #5a7ab5;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, color 0.18s ease;
    text-align: center;
    user-select: none;
}

.drop-zone:hover {
    border-color: #1a73e8;
    background: #f0f6ff;
}

.drop-zone.drag-over {
    border-color: #1a73e8;
    border-style: solid;
    background: #e8f0fe;
    transform: scale(1.012);
    color: #1a73e8;
}

.drop-zone-icon {
    color: #7fa8d4;
    transition: color 0.18s ease, transform 0.18s ease;
}

.drop-zone.drag-over .drop-zone-icon {
    color: #1a73e8;
    transform: translateY(-4px);
}

.drop-zone-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: #2c4a7a;
}

.drop-zone.drag-over .drop-zone-text {
    color: #1a73e8;
}

.drop-zone-hint {
    font-size: 0.8rem;
    color: #8a9ab8;
}

.drop-zone-filename {
    display: none;
    margin-top: 4px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1a73e8;
}

.drop-zone-filename:not(:empty) {
    display: block;
}

.drop-zone input[type=file] {
    display: none;
}

.actions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.preset-input-wrapper {
    border-radius: 8px;
    border: 1px solid #d1d9e6;
    background: #f5f8ff;
    color: #1a73e8;
    font-weight: 500;
    padding: 6px 10px;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.preset-select {
    border: 1px solid #c8d2e4;
    border-radius: 6px;
    background: #fff;
    color: #294262;
    font-size: 0.86rem;
    padding: 6px 8px;
}

.preset-select:focus {
    outline: none;
    border-color: #8fb0e0;
}

.actions button:first-of-type {
    margin-left: 0;
}

button {
    padding: 11px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.18);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 45%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
    transform: translateX(-150%) skewX(-18deg);
    pointer-events: none;
}

.btn-primary.animating::after {
    animation: btn-shimmer 0.45s ease-out forwards;
}

.btn-primary:active {
    transform: scale(0.96);
    box-shadow: 0 1px 4px rgba(26, 115, 232, 0.18);
    transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.btn-secondary {
    background: #edf3ff;
    color: #1a73e8;
}

button:hover,
button:focus {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(26, 115, 232, 0.28);
    outline: none;
}

pre {
    background: #f4f6fb;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dce4ee;
    color: #1f2937;
    font-size: 0.89rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    white-space: pre-wrap;
    max-height: 260px;
    overflow: auto;
}

.result-card {
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8 0%, #5d9cff 50%, #8ab7ff 100%);
}

.result-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.result-card-title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1f2f48;
}

.result-status-icon {
    display: none;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.result-status-icon.is-success {
    display: flex;
    color: #2f8b44;
    background: #d6f2dc;
    animation: icon-pop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.result-status-icon.is-error {
    display: flex;
    color: #c44141;
    background: #fde0e0;
    animation: icon-pop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes icon-pop {
    0%   { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1);   opacity: 1; }
}

.result-status {
    display: none;
    margin: 0 0 10px 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 4px solid transparent;
}

.result-status.is-success {
    border: 1px solid #a8d6ae;
    border-left-color: #2f8b44;
    background: #e9f8ec;
    color: #1f6f2c;
}

.result-status.is-error {
    border: 1px solid #ef9a9a;
    border-left-color: #c44141;
    background: #fdeaea;
    color: #b42318;
}

#resultOutput {
    border-radius: 10px;
    border-color: #d5dfeb;
    background: #f7faff;
}

.hl-key     { color: #3b78c9; font-weight: 500; }
.hl-string  { color: #3a9e5f; }
.hl-bool    { color: #c97830; }
.hl-number  { color: #c97830; }
.hl-comment { color: #9099a8; font-style: italic; }

.error-panel {
    display: none;
    margin: 0 0 10px 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #f0c36d;
    background: #fff8dd;
}

.error-panel-title {
    margin: 0 0 6px 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: #735400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.error-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.error-panel-item {
    width: 100%;
    text-align: left;
    border: 1px solid #eac670;
    background: #fff2bf;
    color: #5c4200;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.86rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
}

.error-panel-item:hover,
.error-panel-item:focus {
    transform: none;
    box-shadow: none;
    border-color: #d7ab47;
    background: #ffe9a0;
    outline: none;
}

.diff-panel {
    margin-top: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    padding: 0 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: max-height 180ms ease-out, opacity 140ms ease-out, transform 180ms ease-out, margin-top 180ms ease-out, padding 180ms ease-out, border-color 180ms ease-out, background-color 180ms ease-out;
}

.diff-panel.is-visible {
    margin-top: 12px;
    border-color: #d9e2ef;
    background: #f8fbff;
    padding: 10px;
    max-height: 340px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.diff-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #37557f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.diff-legend {
    display: grid;
    grid-template-columns: 3.5em 3.5em 1.5em minmax(0, 1fr);
    column-gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #577198;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 6px 0;
    padding: 0 8px;
}

.diff-column {
    margin: 0;
    background: #fff;
    border: 1px solid #dce4ee;
    border-radius: 8px;
    padding: 8px;
    font-family: monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    max-height: 250px;
    overflow: auto;
}

.diff-line {
    display: grid;
    grid-template-columns: 3.5em 3.5em 1.5em minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
    font-variant-numeric: tabular-nums;
    border-radius: 4px;
    padding: 1px 0;
}

.diff-line + .diff-line {
    margin-top: 2px;
}

.diff-line-number {
    display: block;
    text-align: right;
    color: #7a8798;
}

.diff-line-number.empty {
    color: transparent;
}

.diff-line-marker {
    display: block;
    text-align: center;
    font-weight: 700;
}

.diff-line-text {
    min-width: 0;
    overflow-x: auto;
    white-space: pre;
}

.diff-line.added {
    background: #e9f8ec;
    color: #1f6f2c;
    border-left: 3px solid #4aa768;
}

.diff-line.removed {
    background: #fdeaea;
    color: #8f2e2e;
    border-left: 3px solid #d36b6b;
}

.theme-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    position: relative;
}

.header-controls .theme-switch {
    margin-bottom: 0;
}

.header-row .theme-switch {
    margin-bottom: 0;
}

.theme-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.theme-switch .switch {
    position: relative;
    width: 52px;
    height: 28px;
    display: inline-block;
    border-radius: 999px;
    background: #d1d9e6;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.theme-switch .switch::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.theme-switch input[type="checkbox"]:checked + .switch {
    background: #1a73e8;
}

.theme-switch input[type="checkbox"]:checked + .switch::before {
    transform: translateX(24px);
}

.theme-switch label {
    font-size: 0.9rem;
    color: inherit;
    cursor: pointer;
    margin-left: 8px;
}

.rn-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(26, 115, 232, 0.25);
    background: #f0f5ff;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.rn-link:hover {
    background: #deeaff;
    border-color: rgba(26, 115, 232, 0.5);
}

.dark-mode .rn-link {
    background: #2a3550;
    border-color: rgba(100, 160, 255, 0.3);
    color: #7eb3ff;
}

.dark-mode .rn-link:hover {
    background: #344060;
    border-color: rgba(100, 160, 255, 0.5);
}

.dark-mode body {
    --bg: #2f3645;
    --surface: #3d4757;
    --text: #e5e8f0;
    --muted: #aab0bc;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    --primary-soft: rgba(98, 0, 238, 0.16);
}

.dark-mode .card {
    background: #414c5f;
    border-color: #5d6d88;
}

.dark-mode .inline-toggle {
    border-color: #5d6b82;
    background: #4a5669;
    color: #dbe8ff;
}

.dark-mode .warning-tooltip {
    color: #ffd35f;
}

.dark-mode .warning-tooltip::after {
    background: #4a4426;
    border-color: #8a7330;
    color: #ffe6a0;
}

.dark-mode .editor-wrapper {
    background: #343d4d;
    border-color: #5d6b82;
}

.dark-mode .line-numbers {
    background: #3f4b60;
    color: #9da6b5;
    border-right-color: #5d6b82;
}

.dark-mode .line-number.error-line {
    background: #6f2f3a;
    color: #ffd7dd;
}

.dark-mode .line-number.neighbor-line {
    background: #6b5c24;
    color: #fff2b8;
}

.dark-mode textarea {
    background: transparent;
    color: transparent;
    caret-color: #e6ebff;
}

.dark-mode pre {
    background: #49566d;
    border-color: #6f829f;
    color: #d7dff5;
}

.dark-mode .version-badge {
    color: #c9d1e8;
    background: rgba(35, 100, 230, 0.22);
    border-color: rgba(140, 170, 240, 0.45);
}

.dark-mode .version-badge:hover {
    color: #e0e8ff;
    background: rgba(35, 100, 230, 0.4);
    border-color: rgba(140, 170, 240, 0.75);
}

.dark-mode .btn-secondary {
    background: #566f8e;
    color: #bbd2ff;
}

.dark-mode .drop-zone {
    border-color: #4a5d7a;
    background: #3a4558;
    color: #8dabd4;
}

.dark-mode .drop-zone:hover {
    border-color: #7ab3f5;
    background: #3d5070;
}

.dark-mode .drop-zone.drag-over {
    border-color: #7ab3f5;
    background: #2d4060;
    color: #7ab3f5;
}

.dark-mode .drop-zone-icon {
    color: #6a93c0;
}

.dark-mode .drop-zone.drag-over .drop-zone-icon {
    color: #7ab3f5;
}

.dark-mode .drop-zone-text {
    color: #c5d5ef;
}

.dark-mode .drop-zone.drag-over .drop-zone-text {
    color: #7ab3f5;
}

.dark-mode .drop-zone-hint {
    color: #6a7d9a;
}

.dark-mode .drop-zone-filename {
    color: #7ab3f5;
}

.dark-mode .preset-input-wrapper {
    border-color: #5d6b82;
    background: #4a5669;
    color: #d7e6ff;
}

.dark-mode .preset-select {
    border-color: #6b7d9b;
    background: #2d3442;
    color: #dbe8ff;
}

.dark-mode .editor-toolbar {
    border-color: #55637a;
    background: linear-gradient(180deg, #404a5f 0%, #3a4458 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.dark-mode .result-card-title {
    color: #e0e8fb;
}

.dark-mode .result-status-icon.is-success {
    color: #79d48f;
    background: #23442b;
}

.dark-mode .result-status-icon.is-error {
    color: #ff9f9f;
    background: #4a2428;
}

.dark-mode #resultOutput {
    border-color: #5f7291;
    background: #445169;
}

.dark-mode .hl-key     { color: #7ab3f5; }
.dark-mode .hl-string  { color: #7ecda0; }
.dark-mode .hl-bool    { color: #f0a860; }
.dark-mode .hl-number  { color: #f0a860; }
.dark-mode .hl-comment { color: #7a8499; }

.dark-mode .result-status.is-success {
    border-color: #5ca86a;
    border-left-color: #79d48f;
    background: #23442b;
    color: #bdebc8;
}

.dark-mode .result-status.is-error {
    border-color: #d67a7a;
    border-left-color: #ff9f9f;
    background: #4a2428;
    color: #ffd3d3;
}

.dark-mode .error-panel {
    border-color: #8a7330;
    background: #4a4426;
}

.dark-mode .error-panel-title {
    color: #ffe6a0;
}

.dark-mode .error-panel-item {
    border-color: #9e8341;
    background: #5c522c;
    color: #ffe9ae;
}

.dark-mode .error-panel-item:hover,
.dark-mode .error-panel-item:focus {
    border-color: #b3954f;
    background: #695d31;
}

.dark-mode .diff-panel {
    border-color: #5d6b82;
    background: #394356;
}

.dark-mode .diff-title {
    color: #d4e3ff;
}

.dark-mode .diff-legend {
    color: #9fb6d8;
}

.dark-mode .diff-column {
    background: #2d3442;
    border-color: #5d6b82;
    color: #dbe8ff;
}

.dark-mode .diff-line-number {
    color: #aebcd3;
}

.dark-mode .diff-line-number.empty {
    color: #7f8ea6;
}

.dark-mode .diff-line.added {
    background: #22452b;
    color: #c8f3d2;
    border-left-color: #63c281;
}

.dark-mode .diff-line.removed {
    background: #54282c;
    color: #ffd7db;
    border-left-color: #e38888;
}

.version-footer {
    position: fixed;
    bottom: 12px;
    right: 16px;
    font-size: 0.75rem;
    color: #aab0bc;
    background: transparent;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 999;
}

.dark-mode .version-footer {
    color: #7a8296;
}

@keyframes btn-shimmer {
    0%   { transform: translateX(-150%) skewX(-18deg); }
    100% { transform: translateX(250%) skewX(-18deg); }
}

/* Loading overlay */
@keyframes spinner-rotate {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease-out, visibility 160ms ease-out;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.loading-spinner {
    width: 52px;
    height: 52px;
    border: 5px solid rgba(26, 115, 232, 0.18);
    border-top-color: #1a73e8;
    border-radius: 50%;
    animation: spinner-rotate 0.75s linear infinite;
}

.loading-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1558ae;
    margin: 0;
    letter-spacing: 0.02em;
}

.dark-mode .loading-overlay {
    background: rgba(28, 36, 50, 0.78);
}

.dark-mode .loading-spinner {
    border-color: rgba(100, 160, 255, 0.18);
    border-top-color: #7eb3ff;
}

.dark-mode .loading-label {
    color: #c9d1e8;
}

