
/* /src/components/ui.module.css */
/* Shared UI primitives for all admin pages. Every class here follows the
   solid2-reference design language: monochrome, hairline borders, status
   dots as the only color. */

/* ── Page header ── */

._pageHeader_6bltr_7 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

._pageTitle_6bltr_15 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

._pageExplain_6bltr_21 {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-tertiary);
  margin-top: 8px;
  max-width: 60ch;
}

._pageActions_6bltr_29 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

._backLink_6bltr_36 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  transition: color 0.12s;
}

._backLink_6bltr_36:hover {
  color: var(--text-primary);
}

/* ── Sections ── */

._section_6bltr_52 {
  margin-bottom: 40px;
}

._sectionHeader_6bltr_56 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

._sectionLabel_6bltr_64 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

._sectionExplain_6bltr_70 {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* ── Metric cards ── */

._metricsGrid_6bltr_79 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

._metricsGridWide_6bltr_86 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

._metricCard_6bltr_90 {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  background: var(--bg);
}

._metricCardLink_6bltr_97 {
  display: block;
  transition: border-color 0.12s;
}

._metricCardLink_6bltr_97:hover {
  border-color: #d4d4d4;
}

._metricLabel_6bltr_106 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

._metricValue_6bltr_115 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 3px;
}

._metricChange_6bltr_123 {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ── Tables ── */

._table_6bltr_130 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

._table_6bltr_130 th {
  padding: 0 10px 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

._table_6bltr_130 td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

._table_6bltr_130 th:first-child,
._table_6bltr_130 td:first-child {
  padding-left: 0;
}

._table_6bltr_130 th:last-child,
._table_6bltr_130 td:last-child {
  padding-right: 0;
}

._table_6bltr_130 td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

._rowLink_6bltr_170 {
  cursor: pointer;
  transition: background 0.12s;
}

._rowLink_6bltr_170:hover td {
  background: color-mix(in srgb, var(--hover) 55%, transparent);
}

._num_6bltr_179 {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

._table_6bltr_130 th._num_6bltr_179 {
  text-align: right;
}

._mono_6bltr_189 {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0;
}

._cellSub_6bltr_195 {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ── Status dots and badges ── */

/* Lives here, not in styles.css: CSS modules localize the animation-name
   the pulse classes reference, so the keyframes must be localized with it. */
@keyframes _status-pulse_6bltr_1 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}

._dot_6bltr_217 {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

._dotGreen_6bltr_225 {
  background: var(--status-green);
}

._dotGreenPulse_6bltr_229 {
  background: var(--status-green);
  animation: _status-pulse_6bltr_1 2s ease-in-out infinite;
}

._dotAmber_6bltr_234 {
  background: var(--status-amber);
}

._dotAmberPulse_6bltr_238 {
  background: var(--status-amber);
  animation: _status-pulse_6bltr_1 2s ease-in-out infinite;
}

._dotBlue_6bltr_243 {
  background: var(--unread);
}

._dotRed_6bltr_247 {
  background: var(--destructive);
}

._dotNeutral_6bltr_251 {
  background: var(--text-tertiary);
}

._statusText_6bltr_255 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

._statusBadge_6bltr_264 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
}

/* ── Pills (config chips, tags) ── */

._pill_6bltr_278 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  white-space: nowrap;
  background: var(--bg);
}

._pillLink_6bltr_291 {
  transition:
    border-color 0.12s,
    color 0.12s;
}

._pillLink_6bltr_291:hover {
  border-color: var(--text-tertiary);
  color: var(--text-primary);
}

._pillRow_6bltr_302 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ── Bars ── */

._barRow_6bltr_310 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

._barLabel_6bltr_317 {
  width: 150px;
  flex-shrink: 0;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._barTrack_6bltr_326 {
  flex: 1;
  height: 6px;
  background: var(--hover);
  border-radius: 999px;
  overflow: hidden;
}

._barFill_6bltr_334 {
  height: 100%;
  background: var(--text-primary);
  border-radius: 999px;
}

._barFillOver_6bltr_340 {
  background: var(--destructive);
}

._barValue_6bltr_344 {
  flex-shrink: 0;
  min-width: 44px;
  text-align: right;
  color: var(--text-tertiary);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── Buttons ── */

._buttonPrimary_6bltr_356 {
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  background: var(--text-primary);
  border: 1px solid var(--text-primary);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s;
}

._buttonPrimary_6bltr_356:hover {
  background: #222222;
}

._buttonPrimary_6bltr_356:disabled {
  background: var(--text-tertiary);
  border-color: var(--text-tertiary);
  cursor: default;
}

._buttonSecondary_6bltr_379 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 0.12s,
    background 0.12s;
}

._buttonSecondary_6bltr_379:hover {
  border-color: var(--text-tertiary);
}

._buttonQuiet_6bltr_398 {
  font-size: 13px;
  color: var(--text-tertiary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border);
  transition:
    color 0.12s,
    text-decoration-color 0.12s;
  white-space: nowrap;
}

._buttonQuiet_6bltr_398:hover {
  color: var(--text-secondary);
  text-decoration-color: var(--text-tertiary);
}

/* ── Inputs ── */

._input_6bltr_421 {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.12s;
}

._input_6bltr_421::placeholder {
  color: var(--text-tertiary);
}

._input_6bltr_421:hover,
._input_6bltr_421:focus {
  border-color: var(--text-tertiary);
}

._input_6bltr_421:focus-visible {
  outline: none;
}

._textarea_6bltr_446 {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
  resize: vertical;
  min-height: 80px;
  width: 100%;
  transition: border-color 0.12s;
}

._textarea_6bltr_446:hover,
._textarea_6bltr_446:focus {
  border-color: var(--text-tertiary);
}

._textarea_6bltr_446:focus-visible {
  outline: none;
}

._select_6bltr_471 {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.12s;
}

._select_6bltr_471:hover,
._select_6bltr_471:focus {
  border-color: var(--text-tertiary);
}

._select_6bltr_471:focus-visible {
  outline: none;
}

/* ── Toolbar (filters above tables) ── */

._toolbar_6bltr_495 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

._toolbarSpacer_6bltr_503 {
  flex: 1;
}

._segmented_6bltr_507 {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px;
}

._segmentedOption_6bltr_516 {
  font-size: 13px;
  color: var(--text-tertiary);
  background: none;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.12s,
    color 0.12s;
}

._segmentedOption_6bltr_516:hover {
  color: var(--text-secondary);
}

._segmentedOptionActive_6bltr_534,
._segmentedOptionActive_6bltr_534:hover {
  background: var(--hover);
  color: var(--text-primary);
  font-weight: 500;
}

/* ── Modal ── */

._modalOverlay_6bltr_543 {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

._modalCard_6bltr_554 {
  width: 100%;
  max-width: 420px;
  background: var(--bg);
  border-radius: 14px;
  padding: 32px 32px 24px;
  animation: _modal-enter_6bltr_1 0.15s ease;
}

@keyframes _modal-enter_6bltr_1 {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

._modalTitle_6bltr_574 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

._modalBody_6bltr_581 {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

._modalActions_6bltr_587 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 24px;
}

._formField_6bltr_595 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}

._formLabel_6bltr_602 {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ── Key-value rows ── */

._kvGrid_6bltr_610 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 32px;
}

._kvItem_6bltr_616 {
  min-width: 0;
}

._kvLabel_6bltr_620 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

._kvValue_6bltr_629 {
  font-size: 14px;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Cards ── */

._card_6bltr_639 {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  background: var(--bg);
}

._cardLink_6bltr_646 {
  display: block;
  transition: border-color 0.12s;
}

._cardLink_6bltr_646:hover {
  border-color: #d4d4d4;
}

._cardGrid_6bltr_655 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* ── Empty state ── */

._empty_6bltr_663 {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
}

._emptyTitle_6bltr_670 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

._emptyBody_6bltr_676 {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── Misc ── */

._metaLine_6bltr_683 {
  font-size: 13px;
  color: var(--text-secondary);
}

._metaSep_6bltr_688 {
  color: var(--text-tertiary);
  margin: 0 6px;
}

._dangerText_6bltr_693 {
  color: var(--destructive);
}


/* /src/components/Shell.module.css */
._app_u01m4_1 {
  display: flex;
  height: 100dvh;
}

._sidebar_u01m4_6 {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

._sidebarHeader_u01m4_16 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

._orgBlock_u01m4_24 {
  min-width: 0;
}

._orgName_u01m4_28 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._orgSub_u01m4_37 {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 1px;
}

._sidebarContent_u01m4_43 {
  flex: 1;
  overflow-y: auto;
  padding-top: 8px;
}

._navSection_u01m4_49 {
  padding: 8px 0;
}

._navLabel_u01m4_53 {
  padding: 8px 24px 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

._navItem_u01m4_63 {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  column-gap: 10px;
  align-items: center;
  padding: 9px 14px;
  margin: 2px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px transparent;
  transition:
    background 0.12s,
    box-shadow 0.12s;
}

._navItem_u01m4_63:hover {
  background: var(--hover);
  box-shadow: inset 0 0 0 1px var(--border);
}

._navItemActive_u01m4_85,
._navItemActive_u01m4_85:hover {
  background: var(--active);
  box-shadow: inset 0 0 0 1px var(--border);
}

._navIcon_u01m4_91 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

._navName_u01m4_98 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.25;
}

._navCount_u01m4_105 {
  font-size: 12px;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}

._sidebarFooter_u01m4_111 {
  border-top: 1px solid var(--border);
  padding: 8px 0 12px;
}

._account_u01m4_116 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px 4px;
}

._accountAvatar_u01m4_123 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--active);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
}

._accountCopy_u01m4_137 {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

._accountName_u01m4_143 {
  font-size: 13px;
  font-weight: 500;
}

._accountEmail_u01m4_148 {
  font-size: 11px;
  color: var(--text-tertiary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._main_u01m4_156 {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
}

._content_u01m4_162 {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px 48px 96px;
}


/* /node_modules/@fontsource-variable/geist/index.css */
/* geist-cyrillic-ext-wght-normal */
@font-face {
  font-family: 'Geist Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist/files/geist-cyrillic-ext-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* geist-cyrillic-wght-normal */
@font-face {
  font-family: 'Geist Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist/files/geist-cyrillic-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* geist-vietnamese-wght-normal */
@font-face {
  font-family: 'Geist Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist/files/geist-vietnamese-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* geist-latin-ext-wght-normal */
@font-face {
  font-family: 'Geist Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist/files/geist-latin-ext-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* geist-latin-wght-normal */
@font-face {
  font-family: 'Geist Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist/files/geist-latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* /node_modules/@fontsource-variable/geist-mono/index.css */
/* geist-mono-cyrillic-ext-wght-normal */
@font-face {
  font-family: 'Geist Mono Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist-mono/files/geist-mono-cyrillic-ext-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* geist-mono-cyrillic-wght-normal */
@font-face {
  font-family: 'Geist Mono Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist-mono/files/geist-mono-cyrillic-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* geist-mono-symbols2-wght-normal */
@font-face {
  font-family: 'Geist Mono Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist-mono/files/geist-mono-symbols2-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+2000-2001,U+2004-2008,U+200A,U+23B8-23BD,U+2500-259F;
}

/* geist-mono-vietnamese-wght-normal */
@font-face {
  font-family: 'Geist Mono Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist-mono/files/geist-mono-vietnamese-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* geist-mono-latin-ext-wght-normal */
@font-face {
  font-family: 'Geist Mono Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist-mono/files/geist-mono-latin-ext-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* geist-mono-latin-wght-normal */
@font-face {
  font-family: 'Geist Mono Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/node_modules/@fontsource-variable/geist-mono/files/geist-mono-latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}